Connector does not response with expected messages #106
Replies: 2 comments 2 replies
-
I have figured out that I get with Version 0.2.1 is used |
Beta Was this translation helpful? Give feedback.
-
EDC follows Json-LD semantics, I suggest to take a look at the Json-LD specs for details. In every case, further suggestion is to always "expand" the json documents returned by EDC before evaluating them.
Every type that the EDC produces has a
Samples should be aligned with the latest version of the EDC, currently at |
Beta Was this translation helpful? Give feedback.
-
I'm using the transfer-06-consumer-pull-http example as a basis for my own connector with extensions which I require for my use case. At the moment, I have just added the provision-http extensions.
When the Connector sends the provision request to my Provisioner, It makes some request to the connector back, for example with these requests against the connector the Provisioner wants to know the ID of the consumer. To get this information, it firsts requests for the
transferprosesses
which the provisioner is currently processing. This DataObject holds thecontractId
information, which then is used to request for the ContractAgreement DataObject, which has the desired information about the Consumer.Now, when the provisioner does the first request to get the Transferprocess DataObject, I can see in the logs that the following data was returned.
The received data is parsed into a TransferRequestDto Model, which I have generated from the openapi scheme. But now errors occur because the received data does not match the model.
edc:
prefix? This is not in the api schema and for my understanding a mismatch between schema and data.edc:
in its key name.@type": "edc:TransferProcess"
, is this really the type of the received data scheme?gradle.properties
)0.1.0
, which is defined in thegradle.properties
.Beta Was this translation helpful? Give feedback.
All reactions