Replies: 1 comment 1 reply
-
Hey @Miyagi61! If the first part of this discussion fixes the injection problem, could you create a PR with your fix? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When trying to run the samples transfer-05-file-transfer-cloud as it is I encounter an error on the following phase:
https://github.com/eclipse-edc/Samples/blob/main/transfer/transfer-05-file-transfer-cloud/README.md#1-boot-connectors
Trying to run the consumer with the command
java -Dedc.fs.config=transfer/transfer-05-file-transfer-cloud/cloud-transfer-consumer/config.properties -jar transfer/transfer-05-file-transfer-cloud/cloud-transfer-consumer/build/libs/consumer.jar
I get the error:And on the provider (
java -Dedc.fs.config=transfer/transfer-05-file-transfer-cloud/cloud-transfer-provider/config.properties -jar transfer/transfer-05-file-transfer-cloud/cloud-transfer-provider/build/libs/provider.jar
) I get the error:I got them to execute by adding the depedencies:
Now the problem is with the first CURL request:
Which returns an
HTTP ERROR 404 Not Found
. Following some tips I updated the url tohttp://localhost:9192/management/v2/catalog/request
and the new error is aHTTP ERROR 400 Bad Request
which is more detailed in the consumer logs refering to a possibly missing @contextChanging the curl to:
I get the response
HTTP ERROR 405 HTTP method POST is not supported by this URL
.Is any of the corrections I made wrong? I don't know what else to try.
Beta Was this translation helpful? Give feedback.
All reactions