No Endpoint Generator Function Registered for Source Data Type HttpData #274
-
Hi everyone, The asset created in transfer-01-negotiation is of type HttpData. Here are my logs:
Here are my dependencies val edcVersion = "0.7.0"
dependencies {
// the core control-plane module set
implementation("org.eclipse.edc:control-plane-core:${edcVersion}")
// the dsp protocol module
implementation("org.eclipse.edc:dsp:${edcVersion}")
// a test implementation of the `IdentityService`
implementation("org.eclipse.edc:iam-mock:${edcVersion}")
// management api, will permit to manage the connector through a REST interface
implementation("org.eclipse.edc:management-api:${edcVersion}")
// the core data-plane-selector module set
implementation("org.eclipse.edc:data-plane-selector-core:${edcVersion}")
// the core data-plane module set
implementation("org.eclipse.edc:data-plane-core:${edcVersion}")
// the core edr data store
implementation("org.eclipse.edc:edr-store-core:${edcVersion}")
// Additional plugins
implementation("org.eclipse.edc:control-plane-api:${edcVersion}")
implementation("org.eclipse.edc:control-plane-api-client:${edcVersion}")
implementation("org.eclipse.edc:configuration-filesystem:${edcVersion}")
implementation("org.eclipse.edc:data-plane-selector-api:${edcVersion}")
implementation("org.eclipse.edc:data-plane-signaling-api:${edcVersion}")
implementation("org.eclipse.edc:data-plane-signaling-api-configuration:${edcVersion}")
implementation("org.eclipse.edc:data-plane-signaling-client:${edcVersion}")
implementation("org.eclipse.edc:data-plane-signaling-transform:${edcVersion}")
implementation("org.eclipse.edc:data-plane-http:${edcVersion}")
implementation("org.eclipse.edc:data-plane-control-api:${edcVersion}")
implementation("org.eclipse.edc:data-plane-public-api:${edcVersion}")
implementation("org.eclipse.edc:transfer-data-plane:${edcVersion}")
implementation("org.eclipse.edc:transfer-pull-http-receiver:${edcVersion}")
implementation("org.eclipse.edc:transfer-data-plane-signaling:${edcVersion}")
implementation("org.eclipse.edc:validator-data-address-http-data:${edcVersion}")
implementation("org.eclipse.edc:data-plane-self-registration:${edcVersion}")
implementation("org.eclipse.edc:edr-store-receiver:${edcVersion}")
implementation("org.eclipse.edc:edr-cache-api:${edcVersion}")
} My guess is I am missing a class or dependency that implements Endpoint generator function registered for source data type 'HttpData'` ? I am new to dataspaces, so any suggestion would be a great help :) ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hi, this is likely your culprit: you'll need the first one is also deprecated |
Beta Was this translation helpful? Give feedback.
hi, this is likely your culprit:
implementation("org.eclipse.edc:data-plane-public-api:${edcVersion}")
you'll need
implementation("org.eclipse.edc:data-plane-public-api-v2:${edcVersion}")
the first one is also deprecated