EDC as Provider with other DSP compliant connector as consumer - help needed #4494
-
Hello, I'm testing and verifying our connector against Samples EDC connectors and have following usecase:
consumerPid is autogenerated and agreementId is obtained from negotiation (if agreement is not correct I get TransferErrorMessage saying agreement not ok) Response received is
while in provider logs I have following:
From logs provided, I was not able to figure out what was not correct. Following Dataspace Protocol documentation and example requests provided, I'm guessing that request and order of the requests are OK. Expected behavior is that provider sends TransferStartMessage on callbackAddress provided and I can get information from this message to get the artifact (containing DataAddress elements). Any help is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
this looks to be the potential culprit:
the format needs to be in the format |
Beta Was this translation helpful? Give feedback.
this looks to be the potential culprit:
the format needs to be in the format
<destination_type>-<flow_type>
, so, in your case, if you want to achieve an http pull, the format should be:HttpData-PULL
(like it's done in the samples: https://github.com/eclipse-edc/Samples/blob/main/transfer/transfer-02-consumer-pull/resources/start-transfer.json#L11)