This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Replies: 0 comments 4 replies
-
Am also facing the same issue |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, could you try building the connector with You can also use our pre-built Docker images. Docker-compose examples including how to set a custom config.json and custom properties can be found here. |
Beta Was this translation helpful? Give feedback.
2 replies
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.
-
HI Guys,
I have downloaded the certificates[.p12/.cert/.key] given by fraunhour & placed it in conf folders
As per your documentation i have changed the below in config.json & appilication.properties file,
After changing i have rebuild it again with ./maven clean package, build failure occurs with the below error message
can you any guide me?
Config.json
"ids:connectorDeployMode" : {
"@id" : "idsc:PRODUCTIVE_DEPLOYMENT"
},
"ids:connectorDescription" : {
"@type" : "ids:BaseConnector",
"@id" : "https://test.ids.com",
"ids:hasDefaultEndpoint" : {
"@type" : "ids:ConnectorEndpoint",
"@id" : "https://w3id.org/idsa/autogen/connectorEndpoint/e5e2ab04-633a-44b9-87d9-a097ae6da3cf",
"ids:accessURL" : {
"@id" : "https://test.ids.com/api/ids/data"
}
"ids:connectorStatus" : {
"@id" : "idsc:CONNECTOR_ONLINE"
},
"ids:keyStore" : {
"@id" : "file:///conf/test.ids.com.p12"
}
appilication.properties
TLS
server.ssl.enabled=true
server.ssl.key-store-type=PKCS12
server.ssl.key-store=classpath:conf/test.ids.com.p12
server.ssl.key-store-password=password
server.ssl.key-alias=1
#security.require-ssl=true
IDSCP
application.http.base-url=https://test.ids.com
idscp2.enabled=false
idscp2.keystore=./src/main/resources/conf/test.ids.com.p12
idscp2.truststore=./src/main/resources/conf/truststore.p12
Error
[INFO] Results:
[INFO]
[ERROR] Errors:
[ERROR] ContractAgreementHandlerTest.handleMessage_validAgreement_returnMessageProcessedNotificationMessageAndLogToCH:248 ClassCast
[ERROR] ContractRequestHandlerTest.checkContractRequest_validRequest_returnOk:493 ClassCast
[ERROR] DescriptionRequestHandlerTest.handleMessage_validResourceDescriptionMsgKnownId_returnResourceDescription:176 ClassCast
[ERROR] DescriptionRequestHandlerTest.handleMessage_validSelfDescriptionMsg_returnSelfDescription:114 ClassCast
[INFO]
[ERROR] Tests run: 1341, Failures: 0, Errors: 4, Skipped: 1
[INFO]
Beta Was this translation helpful? Give feedback.
All reactions