Fraunhofer-AISEC / ids-clearing-house-service

This is an implementation of the IDS Clearing House
Apache License 2.0
0 stars 11 forks source link

Fail to connect to Clearing House (Log message not send) #5

Closed jfernandezsqs closed 2 years ago

jfernandezsqs commented 2 years ago

I have an error when the DSC A acting as provider tries to send log message to the Clearing House service. I obtain a message in the logs specifying that “WARN - Message handling or processing failed. [exception=(Failed to connect to localhost/127.0.0.1:9999)]” “WARN - Failed to send log message. [exception=(Message handling or processing failed.)]” “WARN - Failed to send contract agreement to clearing house. [exception=(Log message could not be sent.)]”

The application.properties file for the clearing.house.url of connector A and B are: clearing.house.url=http://localhost:9999/messages/log/ I have done all the negotiation process from connector B acting as consumer to connector A acting as provider. I receive the following response body with the POST /api/ids/contract

{ "creationDate": "2021-12-14T14:45:05.079+0000", "modificationDate": "2021-12-14T14:45:05.079+0000", "remoteId": "https://connectora:7000/api/agreements/44645e6d-95ea-46c7-b88f-0f95a1872aaf", "confirmed": true, "value": "{\n \"@context\" : {\n \"ids\" : \"https://w3id.org/idsa/core/\",\n \"idsc\" : \"https://w3id.org/idsa/code/\"\n },\n \"@type\" : \"ids:ContractAgreement\",\n \"@id\" : \"https://connectora:7000/api/agreements/44645e6d-95ea-46c7-b88f-0f95a1872aaf\",\n \"ids:provider\" : {\n \"@id\" : \"https://connector_A\"\n },\n \"ids:permission\" : [ {\n \"@type\" : \"ids:Permission\",\n \"@id\" : \"https://connectora:7000/api/rules/fd9bf8e2-f7e6-4578-899c-a48bb3012881\",\n \"ids:description\" : [ {\n \"@value\" : \"provide-access\",\n \"@type\" : \"http://www.w3.org/2001/XMLSchema#string\"\n } ],\n \"ids:title\" : [ {\n \"@value\" : \"Allow Data Usage\",\n \"@type\" : \"http://www.w3.org/2001/XMLSchema#string\"\n } ],\n \"ids:assignee\" : [ {\n \"@id\" : \"https://connector_B\"\n } ],\n \"ids:assigner\" : [ {\n \"@id\" : \"https://connector_A\"\n } ],\n \"ids:postDuty\" : [ ],\n \"ids:action\" : [ {\n \"@id\" : \"https://w3id.org/idsa/code/USE\"\n } ],\n \"ids:constraint\" : [ ],\n \"ids:preDuty\" : [ ],\n \"ids:target\" : {\n \"@id\" : \"https://connectora:7000/api/artifacts/2df83600-b668-484e-ad2d-5a9982785094\"\n }\n } ],\n \"ids:consumer\" : {\n \"@id\" : \"https://connector_B\"\n },\n \"ids:prohibition\" : [ ],\n \"ids:obligation\" : [ ],\n \"ids:contractStart\" : {\n \"@value\" : \"2021-12-14T14:45:01.677Z\",\n \"@type\" : \"http://www.w3.org/2001/XMLSchema#dateTimeStamp\"\n },\n \"ids:contractDate\" : {\n \"@value\" : \"2021-12-14T14:45:01.676Z\",\n \"@type\" : \"http://www.w3.org/2001/XMLSchema#dateTimeStamp\"\n }\n}", "_links": { "self": { "href": "https://localhost:7001/api/agreements/58c42be5-5879-43d0-87d9-4ace0634ad99" }, "artifacts": { "href": "https://localhost:7001/api/agreements/58c42be5-5879-43d0-87d9-4ace0634ad99/artifacts{?page,size}", "templated": true }}}

This is the docker-compose .yml file I am using for the Clearing House:

version: '3' services: clearing-house-api: image: sqs-service-api
container_name: "clearing-house-api" depends_on:

  • document-api
  • keyring-api
  • clearing-house-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Debug ports:
  • "8000:8000"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/Rocket.toml:/server/Rocket.toml
  • ./data/keys:/server/keys
  • ./data/certs:/server/certs clearing-house-mongo: container_name: "clearing-house-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: process ports:

    This is solely for debugging purposes. Remove for deployment

  • "27019:27017" document-api: image: sqs-document-api container_name: "document-api" depends_on:
  • keyring-api
  • document-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8001:8001"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/document-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs document-mongo: container_name: "document-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: document
    ports:

    This is solely for debugging purposes. Remove for deployment

  • "27017:27017" keyring-api: image: sqs-keyring-api container_name: "keyring-api" depends_on:
  • keyring-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8002:8002"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/keyring-api/init_db:/server/init_db
  • ./data/keyring-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs keyring-mongo: container_name: "keyring-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: keyring ports:

    This is solely for debugging purposes. Remove for deployment

  • "27018:27017"

    The core platform, mounts docker control socket and route definition into the image

    tc-core: container_name: "tc-core" image: fraunhoferaisec/trusted-connector-core:5.0.2 tty: true stdin_open: true volumes:

  • /var/run/docker.sock:/var/run/docker.sock
  • ./data/trusted-connector/allow-all-flows.pl:/root/deploy/allow-all-flows.pl
  • ./data/trusted-connector/ch-ids.p12:/root/etc/keystore.p12
  • ./data/trusted-connector/truststore.p12:/root/etc/truststore.p12
  • ./data/trusted-connector/clearing-house-processors-0.7.2.jar:/root/jars/clearing-house-processors.jar
  • ./data/trusted-connector/routes/clearing-house-routes.xml:/root/deploy/clearing-house-routes.xml environment: TC_DAPS_URL: http://omejdn:4567

    Enable this port mappings for debugging or UI access from localhost

    ports:

    - "5005:5005"

    - "8181:8181"

  • "8443:8443"

    Enable this port mapping (along with "ports:" above) to allow access to IDSCP from outside the ids-wide network

    - "9292:9292"

  • "9999:9999"

    expose:

    - "9999"

    networks: default: external: name: broker-localhost_default

I attach also the logs obtained from the Connector A, connector B and the Clearing House logs. ConnectorA_logs.docx ConnectorB_logs.docx ClearingHouse_logs.docx

I have also tried changing the clearing.house.url with the following configuration:

clearing.house.url=http://localhost:9999/

but it is still showing the same error.

I do not know how to proceed with this WARN message that blocks me from sending the logs to the CH. Do you know what is the problem or how to fix this issue? I will post also this issue at the DSC repository so that I can obtain help from them also. Thanks in advance,

tmberthold commented 2 years ago

https://github.com/International-Data-Spaces-Association/DataspaceConnector/issues/794#issuecomment-993666386

tmberthold commented 2 years ago

Update:

The communication from the Dataspace Connector to the ClearingHouse is now working, however the ClearingHouse now responds that it cannot reach the DAPS. Could someone who is familiar with the configuration of the ClearingHouse help here, how to configure it to call a running omejdn-container as DAPS? https://github.com/International-Data-Spaces-Association/DataspaceConnector/issues/794#issuecomment-994731952

jfernandezsqs commented 2 years ago

Update: Mark I have followed your solution.

  1. Change to directory ids-clearing-house-service/clearing-house-app/clearing-house-api

  2. Run cargo clean

  3. Run cargo build

  4. Change to the directory ids-clearing-house-service/

  5. Build the docker container using a new unique tag, e.g. by using docker build -f docker/clearing-house-api-multistage.Dockerfile . -t sqs-ch-latest

  6. Change docker-compose.yml to use the new image of clearing-house-api

Previously I obtained at the clearing house logs:

clearing-house-api | [2021-12-15][11:50:55][ch_lib::model::ids::response][DEBUG] ids-response: {"@context":{"ids":"https://w3id.org/idsa/core/","idsc":"https://w3id.org/idsa/code/"},"@type":"ids:RejectionMessage","@id":"https://w3id.org/idsa/autogen/RejectionMessage/a2a683e3-f336-47d2-89b8-b2ed2cb26ad5","ids:modelVersion":"4.0.0","ids:correlationMessage":"https://w3id.org/idsa/autogen/logMessage/e01a4e8f-fd44-456a-8f59-4f77818e1c9d","ids:issued":"2021-12-15T11:50:55.159538607+00:00","ids:issuerConnector":"https://clearing_house/","ids:senderAgent":"https://clearing_house","ids:recipientConnector":["https://connector_A"],"ids:recipientAgent":["https://connector_A"]} clearing-house-api | [2021-12-15][11:50:55][][INFO] Outcome: Success clearing-house-api | [2021-12-15][11:50:55][][INFO] Response succeeded.

And now I am obtaining:

clearing-house-api | [2021-12-17][13:16:34][ch_lib::model::ids::response][DEBUG] ids-response: {"@context":{"idsc":"https://w3id.org/idsa/code/","ids":"https://w3id.org/idsa/core/"},"@type":"ids:MessageProcessedNotificationMessage","@id":"https://w3id.org/idsa/autogen/MessageProcessedNotificationMessage/7101983b-bd81-4b42-b0fd-6e48a6123634","ids:modelVersion":"4.0.0","ids:correlationMessage":"https://w3id.org/idsa/autogen/logMessage/2f0a5dfe-bde7-4763-a9b6-274eed17dc4c","ids:issued":"2021-12-17T13:16:34.568693563+00:00","ids:issuerConnector":"https://clearing_house/","ids:senderAgent":"https://clearing_house","ids:recipientConnector":["https://connector_A"],"ids:recipientAgent":["https://connector_A"]} clearing-house-api | [2021-12-17][13:16:34][][INFO] Outcome: Success clearing-house-api | [2021-12-17][13:16:34][][INFO] Response succeeded.

This part seems to be correct, but I am still obtaining the same errors at Connector A logs and at Clearing House logs.

2021-12-17 13:16:35.319 ERROR 1 --- [qtp881075670-40] d.f.a.i.i.d.d.a.AisecDapsDriver : Failed to request token issued with parameters: Issuer: 9D:19:9B:F3:00:E4:79:9B:A8:2B:0E:5C:AB:22:C3:BF:3B:13:BD:40:keyid:CB:8C:C7:B6:85:79:A8:23:A6:CB:15:AB:17:50:2F:E6:65:43:5D:E8, Subject: 9D:19:9B:F3:00:E4:79:9B:A8:2B:0E:5C:AB:22:C3:BF:3B:13:BD:40:keyid:CB:8C:C7:B6:85:79:A8:23:A6:CB:15:AB:17:50:2F:E6:65:43:5D:E8, Expiration: Sat Dec 18 13:16:34 GMT 2021, IssuedAt: Fri Dec 17 13:16:34 GMT 2021, NotBefore: Fri Dec 17 13:16:34 GMT 2021, Audience: idsc:IDS_CONNECTORS_ALL testidsa12 | 2021-12-17 13:16:35.326 ERROR 1 --- [qtp881075670-40] o.a.c.p.e.DefaultErrorHandler : Failed delivery for (MessageId: ID-e1062e4bd080-1639746993432-0-2 on ExchangeId: ID-e1062e4bd080-1639746993432-0-1). Exhausted after delivery attempt: 1 caught: de.fhg.aisec.ids.idscp2.idscp_core.error.DatException: Received non-200 http response: 404

I attach here the logs of connector A, connector B and Clearing House logs. ConnectorA_logs.docx ConnectorB_logs.docx Clearing_House_logs.docx

Do you know what is the issue know? Also, where can I access to logs from the CH?

kragall commented 2 years ago

From the logs I can tell that you now have containers using the latest version and that the original problem you encountered is solved.

Your current problem has to do with the DAPS you are using. The trusted connector library used by the Clearing House adds /v2/token to the url of the DAPS when it tries to get a DAPS token. As a result getting the token from your DAPS fails and you get the error you are seeing in the log.

For you there is one quick solution and one solution that will only be available next year:

  1. Change the url of your DAPS such that a token can be requested from http://omejdn:4567/v2/token. But be aware that http://omejdn:4567/.well-known/jwks.json needs to remain where it is. E.g. you could use an nginx as a proxy to rewrite the urls.
  2. Wait until this issue it fixed. As it is a problem with a dependency of the Clearing House, i.e. a trusted connector library, I have contacted them and asked them how we can solve this. But with the holidays approaching fast, this will not be resolved this year.
sbuchholz79 commented 2 years ago

@kragall : Option 1 ist not really a option for us since it's does not reflect the to-be solution rather a workaround. What is the current status and ETA for option 2 for fixing the issue?

kragall commented 2 years ago

I just noticed that my answer is based on the assumption that the token url of your deployed DAPS is indeed different from http://omejdn:4567/v2/token.

@jfernandezsqs Can you please verify that this assumption is true? What is the correct url the connectors use to get a DAT for your DAPS?

Please refer to this issue I opened at the trusted connector library for an ETA.

jfernandezsqs commented 2 years ago

The correct URL for the DAPS is: http://omejdn:4567/token

kragall commented 2 years ago

Ok, thx. So my assumption was correct and we need the dependency fixed here https://github.com/industrial-data-space/idscp2-java/issues/7

kragall commented 2 years ago

I was just noticed that the URL problem should be fixed with the new release of the trusted-connector. So update your docker-compose to use: image: fraunhoferaisec/trusted-connector-core:6.0.0 Please let me know if the issue is now resolved.

jfernandezsqs commented 2 years ago

I have changed the docker-compose.yml file to use image: fraunhoferaisec/trusted-connector-core:6.0.0 These are the logs obtained from connector A:

2022-01-20T14:23:42,419 [https-jsse-nio-7000-exec-10] INFO - Received incoming message. 2022-01-20T14:23:42,439 [https-jsse-nio-7000-exec-10] INFO - Successfully verified claims. 2022-01-20T14:23:42,875 [https-jsse-nio-7000-exec-2] INFO - Received incoming message. 2022-01-20T14:23:42,928 [https-jsse-nio-7000-exec-2] INFO - Successfully verified claims. 2022-01-20T14:23:43,110 [https-jsse-nio-7000-exec-2] INFO - Sending request to http://testidsa12:9999/messages/log/27edaf0f-6989-4a12-b385-e0a4b353ed9d ... 2022-01-20T14:23:43,121 [https-jsse-nio-7000-exec-2] WARN - Message handling or processing failed. [exception=(Failed to connect to testidsa12/172.18.0.6:9999)] java.net.ConnectException: Failed to connect to testidsa12/172.18.0.6:9999 at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:297) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.1.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendRequest(IdsHttpService.java:362) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.send(IdsHttpService.java:232) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendAndCheckDat(IdsHttpService.java:452) ~[messaging-4.2.2.jar!/:?] at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:112) [classes!/:6.2.0] at io.dataspaceconnector.service.message.builder.type.LogMessageService.sendMessage(LogMessageService.java:82) [classes!/:6.2.0] at io.dataspaceconnector.common.ids.message.ClearingHouseService.sendToClearingHouse(ClearingHouseService.java:60) [classes!/:6.2.0] at io.dataspaceconnector.service.usagecontrol.PolicyExecutionService.sendAgreement(PolicyExecutionService.java:70) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.event.AgreementEventHandler.handleAgreementEvent(AgreementEventHandler.java:46) [classes!/:6.2.0] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:344) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:229) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:166) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:391) [spring-context-5.3.9.jar!/:5.3.9] at io.dataspaceconnector.service.message.handler.processor.AgreementComparisonProcessor.processInternal(AgreementComparisonProcessor.java:104) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.processor.base.IdsProcessor.process(IdsProcessor.java:42) [classes!/:6.2.0] at org.apache.camel.support.processor.DelegateSyncProcessor.process(DelegateSyncProcessor.java:66) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:195) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:369) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:182) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:119) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$1.doInTransactionWithoutResult(TransactionErrorHandler.java:207) [camel-spring-3.11.1.jar!/:3.11.1] at org.springframework.transaction.support.TransactionCallbackWithoutResult.doInTransaction(TransactionCallbackWithoutResult.java:36) [spring-tx-5.3.9.jar!/:5.3.9] at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) [spring-tx-5.3.9.jar!/:5.3.9] at org.apache.camel.spring.spi.TransactionErrorHandler.doInTransactionTemplate(TransactionErrorHandler.java:200) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processInTransaction(TransactionErrorHandler.java:155) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:123) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleMain(DefaultReactiveExecutor.java:64) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:184) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.component.direct.DirectProducer.process(DirectProducer.java:96) [camel-direct-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:217) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor$1.process(SharedCamelInternalProcessor.java:111) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:108) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.support.cache.DefaultProducerCache.send(DefaultProducerCache.java:190) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:176) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:148) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:131) [camel-base-engine-3.11.1.jar!/:3.11.1] at io.dataspaceconnector.service.message.handler.type.base.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:79) [classes!/:6.2.0] at de.fraunhofer.ids.messaging.dispatcher.MessageDispatcher.process(MessageDispatcher.java:198) [messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.endpoint.MessageController.handleIDSMessage(MessageController.java:144) [messaging-4.2.2.jar!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1064) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) [tomcat-embed-websocket-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) [spring-boot-actuator-2.5.4.jar!/:2.5.4] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at io.opentracing.contrib.web.servlet.filter.TracingFilter.doFilter(TracingFilter.java:189) [opentracing-web-servlet-filter-0.4.0.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.52.jar!/:?] at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.net.ConnectException: Connection refused (Connection refused) at java.net.PlainSocketImpl.socketConnect(Native Method) ~[?:?] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:399) ~[?:?] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:242) ~[?:?] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:224) ~[?:?] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:?] at java.net.Socket.connect(Socket.java:609) ~[?:?] at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:120) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.1.jar!/:?] ... 200 more 2022-01-20T14:23:43,123 [https-jsse-nio-7000-exec-2] WARN - Failed to send log message. [exception=(Message handling or processing failed.)] io.dataspaceconnector.common.exception.MessageException: Message handling or processing failed. at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:142) ~[classes!/:6.2.0] at io.dataspaceconnector.service.message.builder.type.LogMessageService.sendMessage(LogMessageService.java:82) [classes!/:6.2.0] at io.dataspaceconnector.common.ids.message.ClearingHouseService.sendToClearingHouse(ClearingHouseService.java:60) [classes!/:6.2.0] at io.dataspaceconnector.service.usagecontrol.PolicyExecutionService.sendAgreement(PolicyExecutionService.java:70) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.event.AgreementEventHandler.handleAgreementEvent(AgreementEventHandler.java:46) [classes!/:6.2.0] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:344) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:229) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:166) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:391) [spring-context-5.3.9.jar!/:5.3.9] at io.dataspaceconnector.service.message.handler.processor.AgreementComparisonProcessor.processInternal(AgreementComparisonProcessor.java:104) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.processor.base.IdsProcessor.process(IdsProcessor.java:42) [classes!/:6.2.0] at org.apache.camel.support.processor.DelegateSyncProcessor.process(DelegateSyncProcessor.java:66) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:195) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:369) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:182) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:119) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$1.doInTransactionWithoutResult(TransactionErrorHandler.java:207) [camel-spring-3.11.1.jar!/:3.11.1] at org.springframework.transaction.support.TransactionCallbackWithoutResult.doInTransaction(TransactionCallbackWithoutResult.java:36) [spring-tx-5.3.9.jar!/:5.3.9] at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) [spring-tx-5.3.9.jar!/:5.3.9] at org.apache.camel.spring.spi.TransactionErrorHandler.doInTransactionTemplate(TransactionErrorHandler.java:200) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processInTransaction(TransactionErrorHandler.java:155) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:123) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleMain(DefaultReactiveExecutor.java:64) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:184) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.component.direct.DirectProducer.process(DirectProducer.java:96) [camel-direct-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:217) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor$1.process(SharedCamelInternalProcessor.java:111) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:108) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.support.cache.DefaultProducerCache.send(DefaultProducerCache.java:190) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:176) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:148) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:131) [camel-base-engine-3.11.1.jar!/:3.11.1] at io.dataspaceconnector.service.message.handler.type.base.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:79) [classes!/:6.2.0] at de.fraunhofer.ids.messaging.dispatcher.MessageDispatcher.process(MessageDispatcher.java:198) [messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.endpoint.MessageController.handleIDSMessage(MessageController.java:144) [messaging-4.2.2.jar!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1064) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) [tomcat-embed-websocket-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) [spring-boot-actuator-2.5.4.jar!/:2.5.4] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at io.opentracing.contrib.web.servlet.filter.TracingFilter.doFilter(TracingFilter.java:189) [opentracing-web-servlet-filter-0.4.0.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.52.jar!/:?] at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.net.ConnectException: Failed to connect to testidsa12/172.18.0.6:9999 at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:297) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.1.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendRequest(IdsHttpService.java:362) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.send(IdsHttpService.java:232) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendAndCheckDat(IdsHttpService.java:452) ~[messaging-4.2.2.jar!/:?] at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:112) ~[classes!/:6.2.0] ... 181 more Caused by: java.net.ConnectException: Connection refused (Connection refused) at java.net.PlainSocketImpl.socketConnect(Native Method) ~[?:?] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:399) ~[?:?] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:242) ~[?:?] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:224) ~[?:?] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:?] at java.net.Socket.connect(Socket.java:609) ~[?:?] at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:120) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.1.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendRequest(IdsHttpService.java:362) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.send(IdsHttpService.java:232) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendAndCheckDat(IdsHttpService.java:452) ~[messaging-4.2.2.jar!/:?] at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:112) ~[classes!/:6.2.0] ... 181 more 2022-01-20T14:23:43,125 [https-jsse-nio-7000-exec-2] WARN - Failed to send contract agreement to clearing house. [exception=(Log message could not be sent.)] 2022-01-20T14:23:43,386 [https-jsse-nio-7000-exec-1] INFO - Received incoming message. 2022-01-20T14:23:43,418 [https-jsse-nio-7000-exec-1] INFO - Successfully verified claims.

These are the logs obtained from connector B:

2022-01-20T14:23:42,384 [https-jsse-nio-7001-exec-8] INFO - Sending request to https://connectora:7000/api/ids/data ... 2022-01-20T14:23:42,604 [https-jsse-nio-7001-exec-8] INFO - Successfully received response to request. 2022-01-20T14:23:42,617 [https-jsse-nio-7001-exec-8] INFO - Successfully passed SHACL-Validation. 2022-01-20T14:23:42,697 [https-jsse-nio-7001-exec-8] INFO - Successfully verified claims. 2022-01-20T14:23:42,863 [https-jsse-nio-7001-exec-8] INFO - Sending request to https://connectora:7000/api/ids/data ... 2022-01-20T14:23:43,207 [https-jsse-nio-7001-exec-8] INFO - Successfully received response to request. 2022-01-20T14:23:43,246 [https-jsse-nio-7001-exec-8] INFO - Successfully passed SHACL-Validation. 2022-01-20T14:23:43,253 [https-jsse-nio-7001-exec-8] ERROR - [line: 1, col: 9 ] Unrecognized token 'Received': was expecting (JSON String, Number, Array, Object or token 'null', 'true' or 'false') 2022-01-20T14:23:43,265 [https-jsse-nio-7001-exec-8] INFO - Successfully verified claims. 2022-01-20T14:23:43,376 [https-jsse-nio-7001-exec-8] INFO - Sending request to https://connectora:7000/api/ids/data ... 2022-01-20T14:23:43,855 [https-jsse-nio-7001-exec-8] INFO - Successfully received response to request. 2022-01-20T14:23:43,881 [https-jsse-nio-7001-exec-8] INFO - Successfully passed SHACL-Validation. 2022-01-20T14:23:43,893 [https-jsse-nio-7001-exec-8] INFO - Successfully verified claims.

These are the Clearing House logs:

sqs@sqs-VirtualBox:~/TESTBED_FINAL/CLEARING_HOUSE$ docker-compose up Starting clearing-house-mongo ... done Starting testidsa12 ... done Starting keyring-mongo ... done Starting document-mongo ... done Starting keyring-api ... done Starting document-api ... done Starting clearing-house-api ... done Attaching to clearing-house-mongo, keyring-mongo, testidsa12, document-mongo, keyring-api, document-api, clearing-house-api clearing-house-api | [2022-01-20][14:21:36][ch_lib::db][DEBUG] clear_db: false found. Preparing to clear database... clearing-house-api | [2022-01-20][14:21:36][ch_lib::db][DEBUG] Using database url: '"mongodb://clearing-house-mongo:27017"' clearing-house-mongo | clearing-house-mongo | WARNING: MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that! clearing-house-mongo | see https://www.mongodb.com/community/forums/t/mongodb-5-0-cpu-intel-g4650-compatibility/116610/2 clearing-house-mongo | see also https://github.com/docker-library/mongo/issues/485#issuecomment-891991814 clearing-house-mongo | clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.954+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.964+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.964+00:00"},"s":"I", "c":"NETWORK", "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.968+00:00"},"s":"I", "c":"STORAGE", "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"8ee2063b85bc"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.968+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.8","gitVersion":"83b8bb8b6b325d8d8d3dfd2ad9f744bdad7d6ca0","openSSLVersion":"OpenSSL 1.1.1f 31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.968+00:00"},"s":"I", "c":"CONTROL", "id":51765, "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.968+00:00"},"s":"I", "c":"CONTROL", "id":21951, "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"*"}}}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.975+00:00"},"s":"I", "c":"STORAGE", "id":22270, "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.976+00:00"},"s":"I", "c":"STORAGE", "id":22297, "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:30.976+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=4348M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:31.683+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:683459][1:0x7fdda21bfcc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 4 through 5"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:31.741+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:741016][1:0x7fdda21bfcc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 5 through 5"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:31.827+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:826987][1:0x7fdda21bfcc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 4/5376 to 5/256"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:31.940+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:940359][1:0x7fdda21bfcc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 4 through 5"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.011+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:11495][1:0x7fdda21bfcc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 5 through 5"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.124+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:124372][1:0x7fdda21bfcc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.129+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:129366][1:0x7fdda21bfcc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.149+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:149811][1:0x7fdda21bfcc0], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINTPROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 159"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.168+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":1192}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.168+00:00"},"s":"I", "c":"RECOVERY", "id":23987, "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.169+00:00"},"s":"I", "c":"STORAGE", "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.170+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.198+00:00"},"s":"W", "c":"CONTROL", "id":22120, "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.230+00:00"},"s":"I", "c":"STORAGE", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.238+00:00"},"s":"I", "c":"FTDC", "id":20625, "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.277+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.277+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:32.277+00:00"},"s":"I", "c":"NETWORK", "id":23016, "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}} document-api | [2022-01-20][14:21:35][rocket::launch][WARN] 🔧 Configured for release. document-api | [2022-01-20][14:21:35][rocket::launch][WARN] address: 0.0.0.0 document-api | [2022-01-20][14:21:35][rocket::launch][WARN] port: 8001 document-api | [2022-01-20][14:21:35][rocket::launch][WARN] workers: 3 document-api | [2022-01-20][14:21:35][rocket::launch][WARN] ident: Rocket document-api | [2022-01-20][14:21:35][rocket::launch][WARN] keep-alive: 5s document-api | [2022-01-20][14:21:35][rocket::launch][WARN] limits: bytes = 8KiB, data-form = 2MiB, file = 1MiB, form = 32KiB, forms = 32KiB, json = 5MiB, msgpack = 1MiB, string = 8KiB document-api | [2022-01-20][14:21:35][rocket::launch][WARN] tls: disabled document-api | [2022-01-20][14:21:35][rocket::launch][WARN] temp dir: /tmp document-api | [2022-01-20][14:21:35][rocket::launch][WARN] log level: normal document-api | [2022-01-20][14:21:35][rocket::launch][WARN] cli colors: true document-api | [2022-01-20][14:21:35][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s document-api | [2022-01-20][14:21:35][rocket::launch][WARN] 🛰 Routes: document-api | [2022-01-20][14:21:35][rocket::launch_][WARN] (create_encdocument) POST /doc/ application/json document-api | [2022-01-20][14:21:35][rocket::launch][WARN] (get_enc_documents_for_pid) GET /doc/?&&& application/json document-api | [2022-01-20][14:21:35][rocket::launch_][WARN] (deletedocument) DELETE /doc// application/json document-api | [2022-01-20][14:21:35][rocket::launch][WARN] (get_encdocument) GET /doc//? application/json document-api | [2022-01-20][14:21:35][rocket::launch][WARN] GET /cors/ document-api | [2022-01-20][14:21:35][rocket::launch][WARN] 📡 Fairings: document-api | [2022-01-20][14:21:35][rocket::launch][WARN] CORS (ignite, request, response) document-api | [2022-01-20][14:21:35][rocket::launch][WARN] Configuring Document Database (ignite) document-api | [2022-01-20][14:21:35][rocket::launch][WARN] Mounting Document API (ignite) document-api | [2022-01-20][14:21:35][rocket::launch][WARN] Adding CORS rules (ignite) document-api | [2022-01-20][14:21:35][rocket::launch][WARN] Configuring Keyring Api Client (ignite) document-api | [2022-01-20][14:21:35][rocket::launch][WARN] Shield (liftoff, response, singleton) document-api | [2022-01-20][14:21:35][rocket::launch][WARN] Configuring Daps Api Client (ignite) document-api | [2022-01-20][14:21:35][rocket::shield::shield][INFO] 🛡️ Shield: document-api | [2022-01-20][14:21:35][][INFO] Permissions-Policy: interest-cohort=() document-api | [2022-01-20][14:21:35][][INFO] X-Content-Type-Options: nosniff document-api | [2022-01-20][14:21:35][][INFO] X-Frame-Options: SAMEORIGIN document-api | [2022-01-20][14:21:35][rocket::launch][WARN] 🚀 Rocket has launched from http://0.0.0.0:8001 document-mongo | document-mongo | WARNING: MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that! document-mongo | see https://www.mongodb.com/community/forums/t/mongodb-5-0-cpu-intel-g4650-compatibility/116610/2 document-mongo | see also https://github.com/docker-library/mongo/issues/485#issuecomment-891991814 document-mongo | document-mongo | {"t":{"$date":"2022-01-20T14:21:32.464+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.469+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.470+00:00"},"s":"I", "c":"NETWORK", "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.470+00:00"},"s":"I", "c":"STORAGE", "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"30dd988a0b55"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.470+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.8","gitVersion":"83b8bb8b6b325d8d8d3dfd2ad9f744bdad7d6ca0","openSSLVersion":"OpenSSL 1.1.1f 31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.470+00:00"},"s":"I", "c":"CONTROL", "id":51765, "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.470+00:00"},"s":"I", "c":"CONTROL", "id":21951, "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"*"}}}} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.471+00:00"},"s":"I", "c":"STORAGE", "id":22270, "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.471+00:00"},"s":"I", "c":"STORAGE", "id":22297, "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]} document-mongo | {"t":{"$date":"2022-01-20T14:21:32.471+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=4348M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.195+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:195877][1:0x7fe39c6b9cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 4 through 5"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.250+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:250006][1:0x7fe39c6b9cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 5 through 5"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.340+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:340937][1:0x7fe39c6b9cc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 4/5248 to 5/256"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.435+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:435646][1:0x7fe39c6b9cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 4 through 5"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.547+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:547169][1:0x7fe39c6b9cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 5 through 5"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.662+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:662716][1:0x7fe39c6b9cc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.662+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:662877][1:0x7fe39c6b9cc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.687+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688493:687410][1:0x7fe39c6b9cc0], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINTPROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 159"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.716+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":1245}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.717+00:00"},"s":"I", "c":"RECOVERY", "id":23987, "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.718+00:00"},"s":"I", "c":"STORAGE", "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.740+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] 🔧 Configured for release. keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] address: 0.0.0.0 keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] port: 8002 keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] workers: 3 keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] ident: Rocket keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] keep-alive: 5s keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] limits: bytes = 8KiB, data-form = 2MiB, file = 1MiB, form = 32KiB, forms = 32KiB, json = 5MiB, msgpack = 1MiB, string = 8KiB keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] tls: disabled keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] temp dir: /tmp keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] log level: normal keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] cli colors: true keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] 🛰 Routes: keyring-api | [2022-01-20][14:21:33][rocket::launch_][WARN] (create_doctype) POST /doctype/ application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] (get_doctypes) GET /doctype/ application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] (update_doctype) POST /doctype/ application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] (delete_default_doctype) DELETE /doctype/ application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] (get_default_doctype) GET /doctype/ application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] (delete_doctype) DELETE /doctype// application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] (get_doctype) GET /doctype// application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] (decrypt_keys) GET /keyring/decrypt_keys/<_pid> application/json keyring-api | [2022-01-20][14:21:33][rocket::launch_][WARN] (generate_keys) GET /keyring/generate_keys/<_pid>? application/json keyring-api | [2022-01-20][14:21:33][rocket::launch_][WARN] (decrypt_key_map) GET /keyring/decrypt_keys/<_pid>/? application/json keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] 📡 Fairings: keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] Configuring Daps Api Client (ignite) keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] Shield (liftoff, response, singleton) keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] Mounting Document Type API (ignite) keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] Configuring Keyring Database (ignite) keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] Mounting Keyring API (ignite) keyring-api | [2022-01-20][14:21:33][rocket::shield::shield][INFO] 🛡️ Shield: keyring-api | [2022-01-20][14:21:33][][INFO] X-Content-Type-Options: nosniff keyring-api | [2022-01-20][14:21:33][][INFO] X-Frame-Options: SAMEORIGIN keyring-api | [2022-01-20][14:21:33][][INFO] Permissions-Policy: interest-cohort=() keyring-api | [2022-01-20][14:21:33][rocket::launch][WARN] 🚀 Rocket has launched from http://0.0.0.0:8002 document-mongo | {"t":{"$date":"2022-01-20T14:21:33.769+00:00"},"s":"W", "c":"CONTROL", "id":22120, "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.782+00:00"},"s":"I", "c":"STORAGE", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.785+00:00"},"s":"I", "c":"FTDC", "id":20625, "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.824+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.824+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:33.824+00:00"},"s":"I", "c":"NETWORK", "id":23016, "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}} document-mongo | {"t":{"$date":"2022-01-20T14:21:35.266+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.10:42850","connectionId":1,"connectionCount":1}} document-mongo | {"t":{"$date":"2022-01-20T14:21:35.267+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.18.0.10:42850","client":"conn1","doc":{"application":{"name":"document-api"},"driver":{"name":"mongo-rust-driver","version":"2.1.0"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} document-mongo | {"t":{"$date":"2022-01-20T14:21:35.283+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.10:42852","connectionId":2,"connectionCount":2}} document-mongo | {"t":{"$date":"2022-01-20T14:21:35.283+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.18.0.10:42852","client":"conn2","doc":{"application":{"name":"document-api"},"driver":{"name":"mongo-rust-driver","version":"2.1.0"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} keyring-mongo | keyring-mongo | WARNING: MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that! keyring-mongo | see https://www.mongodb.com/community/forums/t/mongodb-5-0-cpu-intel-g4650-compatibility/116610/2 keyring-mongo | see also https://github.com/docker-library/mongo/issues/485#issuecomment-891991814 keyring-mongo | keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.078+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.095+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.100+00:00"},"s":"I", "c":"NETWORK", "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.100+00:00"},"s":"I", "c":"STORAGE", "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"e6c5eadd6183"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.100+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.8","gitVersion":"83b8bb8b6b325d8d8d3dfd2ad9f744bdad7d6ca0","openSSLVersion":"OpenSSL 1.1.1f 31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.100+00:00"},"s":"I", "c":"CONTROL", "id":51765, "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.100+00:00"},"s":"I", "c":"CONTROL", "id":21951, "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"*"}}}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.101+00:00"},"s":"I", "c":"STORAGE", "id":22270, "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.101+00:00"},"s":"I", "c":"STORAGE", "id":22297, "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.101+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=4348M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.699+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:699720][1:0x7fb5311bacc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 4 through 5"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.756+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:756288][1:0x7fb5311bacc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 5 through 5"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.841+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:841555][1:0x7fb5311bacc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 4/5376 to 5/256"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:31.977+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688491:977169][1:0x7fb5311bacc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 4 through 5"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.145+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:145874][1:0x7fb5311bacc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 5 through 5"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.270+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:270736][1:0x7fb5311bacc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.270+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:270894][1:0x7fb5311bacc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.329+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1642688492:329749][1:0x7fb5311bacc0], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 159"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.364+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":1263}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.372+00:00"},"s":"I", "c":"RECOVERY", "id":23987, "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.388+00:00"},"s":"I", "c":"STORAGE", "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.392+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.417+00:00"},"s":"W", "c":"CONTROL", "id":22120, "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.421+00:00"},"s":"I", "c":"STORAGE", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.430+00:00"},"s":"I", "c":"FTDC", "id":20625, "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.456+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.456+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:32.456+00:00"},"s":"I", "c":"NETWORK", "id":23016, "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:33.786+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.9:34616","connectionId":1,"connectionCount":1}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:33.787+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.18.0.9:34616","client":"conn1","doc":{"application":{"name":"keyring-api"},"driver":{"name":"mongo-rust-driver","version":"2.1.0"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:33.792+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.9:34618","connectionId":2,"connectionCount":2}} keyring-mongo | {"t":{"$date":"2022-01-20T14:21:33.793+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.18.0.9:34618","client":"conn2","doc":{"application":{"name":"keyring-api"},"driver":{"name":"mongo-rust-driver","version":"2.1.0"},"os":{"type":"linux","architecture":"x8664","version":"9.13"}}}} testidsa12 | testidsa12 | . ____ testidsa12 | /\ / __' () _ \ \ \ \ testidsa12 | ( ( )__ | ' | '| | ' \/ _` | \ \ \ \ testidsa12 | \/ _)| |)| | | | | || (| | ) ) ) ) testidsa12 | ' |__| .|| ||| |\, | / / / / testidsa12 | =========|_|==============|__/=//// testidsa12 | :: Spring Boot :: (v2.5.8) testidsa12 | testidsa12 | 2022-01-20 14:21:35.496 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Starting TrustedConnector.Companion using Java 11.0.11 on 34973ce5ed73 with PID 1 (/root/jars/ids-connector-6.0.0-plain.jar started by root in /root) testidsa12 | 2022-01-20 14:21:35.522 DEBUG 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Running with Spring Boot v2.5.8, Spring v5.3.14 testidsa12 | 2022-01-20 14:21:35.523 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : No active profile set, falling back to default profiles: default clearing-house-api | [2022-01-20][14:21:36][ch_lib::db][DEBUG] Check if database is empty... clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:36.606+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.11:45476","connectionId":1,"connectionCount":1}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:36.608+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.18.0.11:45476","client":"conn1","doc":{"application":{"name":"clearing-house-api"},"driver":{"name":"mongo-rust-driver","version":"2.1.0"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:36.619+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.11:45478","connectionId":2,"connectionCount":2}} clearing-house-mongo | {"t":{"$date":"2022-01-20T14:21:36.633+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.18.0.11:45478","client":"conn2","doc":{"application":{"name":"clearing-house-api"},"driver":{"name":"mongo-rust-driver","version":"2.1.0"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-api | [2022-01-20][14:21:36][ch_lib::db][DEBUG] ... found collections: [ clearing-house-api | "processes", clearing-house-api | "transactions", clearing-house-api | ] clearing-house-api | [2022-01-20][14:21:36][ch_lib::db][DEBUG] ... database initialized. clearing-house-api | [2022-01-20][14:21:36][core_lib::api::client][DEBUG] Configuring Daps Api Client... clearing-house-api | [2022-01-20][14:21:36][core_lib::api::client][DEBUG] ...found api url: http://omejdn:4567 clearing-house-api | [2022-01-20][14:21:36][core_lib::api::client::daps_api][DEBUG] Parsing certificate certs/daps.der ... clearing-house-api | [2022-01-20][14:21:36][core_lib::api::client::daps_api][DEBUG] ... adding certificate as root certificate clearing-house-api | [2022-01-20][14:21:36][core_lib::api::client][DEBUG] Configuring Document Api Client... clearing-house-api | [2022-01-20][14:21:36][core_lib::api::client][DEBUG] ...found api url: http://document-api:8001 clearing-house-api | [2022-01-20][14:21:36][core_lib::api::client][DEBUG] Configuring Keyring Api Client... clearing-house-api | [2022-01-20][14:21:36][corelib::api::client][DEBUG] ...found api url: http://keyring-api:8002 clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] 🔧 Configured for release. clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] address: 0.0.0.0 clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] port: 8000 clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] workers: 3 clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] ident: Rocket clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] keep-alive: 5s clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] limits: bytes = 8KiB, data-form = 2MiB, file = 1MiB, form = 32KiB, forms = 32KiB, json = 5MiB, msgpack = 1MiB, string = 8KiB clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] tls: disabled clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] temp dir: /tmp clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] log level: normal clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] cli colors: true clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] 🛰 Routes: clearing-house-api | [2022-01-20][14:21:36][rocket::launch_][WARN] (get_public_signkey) GET /.well-known/jwks.json application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] (createprocess) POST /process/ application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] (unauth_create_process) POST /process/<_pid> [50] application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] (log) POST /messages/log/ application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] (unauth_log) POST /messages/log/<_pid> [50] application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch_][WARN] (querypid) POST /messages/query/?&& application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] (unauth_query_pid) POST /messages/query/<_pid> [50] application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch_][WARN] (queryid) POST /messages/query// application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] (unauth_query_id) POST /messages/query/<_pid>/<_id> [50] application/json clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] 📡 Fairings: clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Adding Signing Key (ignite) clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Configuring Keyring Api Client (ignite) clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Configuring Daps Api Client (ignite) clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Mounting Clearing House API (ignite) clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Configuring Document Api Client (ignite) clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Adding Server Info (ignite) clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Configuring Process Database (ignite) clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] Shield (liftoff, response, singleton) clearing-house-api | [2022-01-20][14:21:36][rocket::shield::shield][INFO] 🛡️ Shield: clearing-house-api | [2022-01-20][14:21:36][][INFO] X-Frame-Options: SAMEORIGIN clearing-house-api | [2022-01-20][14:21:36][][INFO] X-Content-Type-Options: nosniff clearing-house-api | [2022-01-20][14:21:36][_][INFO] Permissions-Policy: interest-cohort=() clearing-house-api | [2022-01-20][14:21:36][rocket::launch][WARN] 🚀 Rocket has launched from http://0.0.0.0:8000 testidsa12 | 2022-01-20 14:21:39.615 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) testidsa12 | 2022-01-20 14:21:39.636 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] testidsa12 | 2022-01-20 14:21:39.636 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.56] testidsa12 | 2022-01-20 14:21:39.949 INFO 1 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext testidsa12 | 2022-01-20 14:21:39.955 INFO 1 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 4173 ms testidsa12 | 2022-01-20 14:21:39.992 INFO 1 --- [ main] de.fhg.aisec.ids.webconsole.WebConsole : Registering WebConsole classes testidsa12 | 2022-01-20 14:21:40.860 INFO 1 --- [ main] d.f.a.ids.cm.ContainerManagerService : Default container management is de.fhg.aisec.ids.cm.impl.docker.DockerCM@7d126083 testidsa12 | 2022-01-20 14:21:40.903 DEBUG 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Open Settings Database /root/etc/settings.mapdb... testidsa12 | 2022-01-20 14:21:41.755 INFO 1 --- [ main] d.f.a.i.d.PolicyDecisionPoint : Loading Lucon policy from deploy/allow-all-flows.pl testidsa12 | 2022-01-20 14:21:42.597 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary testidsa12 | 2022-01-20 14:21:42.600 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Loading theory: testidsa12 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% testidsa12 | % Prolog representation of a data flow policy testidsa12 | %
testidsa12 | % Source: default testidsa12 | % testidsa12 | % Do not edit this file, it has been generated automatically testidsa12 | % by XText/Xtend. testidsa12 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% testidsa12 | % testidsa12 | % Only required for SWI-Prolog testidsa12 | % Allow the following predicates to be scattered around the prolog file. testidsa12 | % Otherwise Prolog will issue a warning if they are not stated in subsequent lines. testidsa12 | %:- discontiguous service/1. testidsa12 | %:- discontiguous has_endpoint/2. testidsa12 | %:- discontiguous creates_label/2. testidsa12 | %:- discontiguous removes_label/2. testidsa12 | %:- discontiguous rule/1. testidsa12 | %:- discontiguous rule_priority/2. testidsa12 | %:- discontiguous receives_label/1. testidsa12 | %:- discontiguous has_decision/2. testidsa12 | %:- discontiguous has_target/2. testidsa12 | %:- discontiguous has_capability/2. testidsa12 | %:- discontiguous has_property/3. testidsa12 | %:- discontiguous requires_prerequisites/2. testidsa12 | %:- discontiguous has_alternativedecision/2. testidsa12 | %:- discontiguous has_obligation/2. testidsa12 | testidsa12 | %%%%%%%%% Basic Blocking Rule %%%%%%%%%% testidsa12 | rule(dropAll). testidsa12 | rule_priority(dropAll,0). testidsa12 | has_decision(dropAll,drop). testidsa12 | receives_label(dropAll). testidsa12 | has_target(dropAll,serviceAll). testidsa12 | testidsa12 | %%%%%%%%%% Catch All Service %%%%%%%%%%% testidsa12 | service(serviceAll). testidsa12 | has_endpoint(serviceAll,'.*'). testidsa12 | testidsa12 | %%%%%%%%%%%%%%%% Rules %%%%%%%%%%%%%%%%% testidsa12 | % Allow everything testidsa12 | rule(allowAll). testidsa12 | rule_priority(allowAll, 1). testidsa12 | has_target(allowAll, serviceAll). testidsa12 | receives_label(allowAll). testidsa12 | has_decision(allowAll, allow). testidsa12 | testidsa12 | 2022-01-20 14:21:43.607 INFO 1 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [www/index.html] testidsa12 | 2022-01-20 14:21:43.878 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@4d91d2da to: org.apache.camel.support.SimpleTypeConverter@12811f95 testidsa12 | 2022-01-20 14:21:43.880 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@a11efe6 to: org.apache.camel.support.SimpleTypeConverter@5e6bbe63 testidsa12 | 2022-01-20 14:21:43.881 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@7a17ffee to: org.apache.camel.support.SimpleTypeConverter@7ffc4195 testidsa12 | 2022-01-20 14:21:44.040 INFO 1 --- [ main] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@237ee2e1 testidsa12 | 2022-01-20 14:21:44.871 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' testidsa12 | 2022-01-20 14:21:44.946 INFO 1 --- [ main] o.a.c.management.JmxManagementStrategy : JMX is enabled testidsa12 | 2022-01-20 14:21:45.217 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Routes startup (total:0 started:0) testidsa12 | 2022-01-20 14:21:45.218 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Apache Camel 3.14.0 (camel-1) started in 426ms (build:104ms init:100ms start:222ms) testidsa12 | 2022-01-20 14:21:45.229 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Started TrustedConnector.Companion in 10.997 seconds (JVM running for 12.898) testidsa12 | 2022-01-20 14:21:45.239 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Information model 4.1.0 loaded testidsa12 | 2022-01-20 14:21:45.242 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: appApi testidsa12 | 2022-01-20 14:21:45.242 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationAvailability testidsa12 | 2022-01-20 14:21:45.242 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationController testidsa12 | 2022-01-20 14:21:45.243 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationTaskExecutor testidsa12 | 2022-01-20 14:21:45.243 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: basicErrorController testidsa12 | 2022-01-20 14:21:45.244 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameHandlerMapping testidsa12 | 2022-01-20 14:21:45.246 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameViewResolver testidsa12 | 2022-01-20 14:21:45.249 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.cloud-org.apache.camel.spring.boot.cloud.CamelCloudConfigurationProperties testidsa12 | 2022-01-20 14:21:45.250 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component-org.apache.camel.spring.boot.ComponentConfigurationProperties testidsa12 | 2022-01-20 14:21:45.251 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.bean-org.apache.camel.component.bean.springboot.BeanComponentConfiguration testidsa12 | 2022-01-20 14:21:45.251 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.browse-org.apache.camel.component.browse.springboot.BrowseComponentConfiguration testidsa12 | 2022-01-20 14:21:45.252 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.class-org.apache.camel.component.beanclass.springboot.ClassComponentConfiguration testidsa12 | 2022-01-20 14:21:45.253 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.controlbus-org.apache.camel.component.controlbus.springboot.ControlBusComponentConfiguration testidsa12 | 2022-01-20 14:21:45.253 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataformat-org.apache.camel.component.dataformat.springboot.DataFormatComponentConfiguration testidsa12 | 2022-01-20 14:21:45.253 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-org.apache.camel.component.dataset.springboot.DataSetComponentConfiguration testidsa12 | 2022-01-20 14:21:45.253 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-test-org.apache.camel.component.dataset.springboot.DataSetTestComponentConfiguration testidsa12 | 2022-01-20 14:21:45.253 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-org.apache.camel.component.direct.springboot.DirectComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-vm-org.apache.camel.component.directvm.springboot.DirectVmComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.file-org.apache.camel.component.file.springboot.FileComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.http-org.apache.camel.component.http.springboot.HttpComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.language-org.apache.camel.component.language.springboot.LanguageComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.log-org.apache.camel.component.log.springboot.LogComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.mock-org.apache.camel.component.mock.springboot.MockComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.properties-org.apache.camel.spring.boot.properties.PropertiesComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.ref-org.apache.camel.component.ref.springboot.RefComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-api-org.apache.camel.component.rest.springboot.RestApiComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-org.apache.camel.component.rest.springboot.RestComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.saga-org.apache.camel.component.saga.springboot.SagaComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.scheduler-org.apache.camel.component.scheduler.springboot.SchedulerComponentConfiguration testidsa12 | 2022-01-20 14:21:45.254 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.seda-org.apache.camel.component.seda.springboot.SedaComponentConfiguration testidsa12 | 2022-01-20 14:21:45.255 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.stub-org.apache.camel.component.stub.springboot.StubComponentConfiguration testidsa12 | 2022-01-20 14:21:45.262 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.timer-org.apache.camel.component.timer.springboot.TimerComponentConfiguration testidsa12 | 2022-01-20 14:21:45.263 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.validator-org.apache.camel.component.validator.springboot.ValidatorComponentConfiguration testidsa12 | 2022-01-20 14:21:45.263 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.vm-org.apache.camel.component.vm.springboot.VmComponentConfiguration testidsa12 | 2022-01-20 14:21:45.263 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.xslt-org.apache.camel.component.xslt.springboot.XsltComponentConfiguration testidsa12 | 2022-01-20 14:21:45.265 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language-org.apache.camel.spring.boot.LanguageConfigurationProperties testidsa12 | 2022-01-20 14:21:45.265 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.bean-org.apache.camel.language.bean.springboot.BeanLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.265 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.constant-org.apache.camel.language.constant.springboot.ConstantLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.265 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.csimple-org.apache.camel.language.csimple.springboot.CSimpleLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.268 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.exchangeproperty-org.apache.camel.language.property.springboot.ExchangePropertyLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.269 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.file-org.apache.camel.language.simple.springboot.FileLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.269 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.header-org.apache.camel.language.header.springboot.HeaderLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.269 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.ref-org.apache.camel.language.ref.springboot.RefLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.269 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.simple-org.apache.camel.language.simple.springboot.SimpleLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.270 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.tokenize-org.apache.camel.language.tokenizer.springboot.TokenizeLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.270 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xpath-org.apache.camel.language.xpath.springboot.XPathLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.270 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xtokenize-org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageConfiguration testidsa12 | 2022-01-20 14:21:45.270 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.rest-org.apache.camel.model.rest.springboot.RestConfigurationDefinitionProperties testidsa12 | 2022-01-20 14:21:45.271 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.routetemplate-org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateConfigurationProperties testidsa12 | 2022-01-20 14:21:45.271 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.springboot-org.apache.camel.spring.boot.CamelConfigurationProperties testidsa12 | 2022-01-20 14:21:45.272 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.threadpool-org.apache.camel.spring.boot.threadpool.CamelThreadPoolConfigurationProperties testidsa12 | 2022-01-20 14:21:45.273 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelBeanPostProcessor testidsa12 | 2022-01-20 14:21:45.273 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelContext testidsa12 | 2022-01-20 14:21:45.274 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelEndpoint testidsa12 | 2022-01-20 14:21:45.274 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: certApi testidsa12 | 2022-01-20 14:21:45.275 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: characterEncodingFilter testidsa12 | 2022-01-20 14:21:45.275 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configApi testidsa12 | 2022-01-20 14:21:45.276 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanComponent testidsa12 | 2022-01-20 14:21:45.276 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanLanguage testidsa12 | 2022-01-20 14:21:45.276 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBrowseComponent testidsa12 | 2022-01-20 14:21:45.276 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureCSimpleLanguage testidsa12 | 2022-01-20 14:21:45.276 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureClassComponent testidsa12 | 2022-01-20 14:21:45.278 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureConstantLanguage testidsa12 | 2022-01-20 14:21:45.278 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureControlBusComponent testidsa12 | 2022-01-20 14:21:45.278 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataFormatComponent testidsa12 | 2022-01-20 14:21:45.279 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetComponent testidsa12 | 2022-01-20 14:21:45.279 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetTestComponent testidsa12 | 2022-01-20 14:21:45.282 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectComponent testidsa12 | 2022-01-20 14:21:45.282 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectVmComponent testidsa12 | 2022-01-20 14:21:45.282 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureExchangePropertyLanguage testidsa12 | 2022-01-20 14:21:45.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileComponent testidsa12 | 2022-01-20 14:21:45.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileLanguage testidsa12 | 2022-01-20 14:21:45.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHeaderLanguage testidsa12 | 2022-01-20 14:21:45.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHttpComponent testidsa12 | 2022-01-20 14:21:45.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureIdscp2 testidsa12 | 2022-01-20 14:21:45.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLanguageComponent testidsa12 | 2022-01-20 14:21:45.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLogComponent testidsa12 | 2022-01-20 14:21:45.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureMockComponent testidsa12 | 2022-01-20 14:21:45.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefComponent testidsa12 | 2022-01-20 14:21:45.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefLanguage testidsa12 | 2022-01-20 14:21:45.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestApiComponent testidsa12 | 2022-01-20 14:21:45.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestComponent testidsa12 | 2022-01-20 14:21:45.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSagaComponent testidsa12 | 2022-01-20 14:21:45.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSchedulerComponent testidsa12 | 2022-01-20 14:21:45.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSedaComponent testidsa12 | 2022-01-20 14:21:45.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSimpleLanguage testidsa12 | 2022-01-20 14:21:45.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureStubComponent testidsa12 | 2022-01-20 14:21:45.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTimerComponent testidsa12 | 2022-01-20 14:21:45.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTokenizeLanguage testidsa12 | 2022-01-20 14:21:45.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureValidatorComponent testidsa12 | 2022-01-20 14:21:45.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureVmComponent testidsa12 | 2022-01-20 14:21:45.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXMLTokenizeLanguage testidsa12 | 2022-01-20 14:21:45.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXPathLanguage testidsa12 | 2022-01-20 14:21:45.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXsltComponent testidsa12 | 2022-01-20 14:21:45.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectionAPI testidsa12 | 2022-01-20 14:21:45.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectorConfiguration testidsa12 | 2022-01-20 14:21:45.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: consumerTemplate testidsa12 | 2022-01-20 14:21:45.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: controller testidsa12 | 2022-01-20 14:21:45.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: conventionErrorViewResolver testidsa12 | 2022-01-20 14:21:45.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultServletHandlerMapping testidsa12 | 2022-01-20 14:21:45.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultValidator testidsa12 | 2022-01-20 14:21:45.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultViewResolver testidsa12 | 2022-01-20 14:21:45.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServlet testidsa12 | 2022-01-20 14:21:45.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServletRegistration testidsa12 | 2022-01-20 14:21:45.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: error testidsa12 | 2022-01-20 14:21:45.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorAttributes testidsa12 | 2022-01-20 14:21:45.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageCustomizer testidsa12 | 2022-01-20 14:21:45.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageRegistrarBeanPostProcessor testidsa12 | 2022-01-20 14:21:45.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: flashMapManager testidsa12 | 2022-01-20 14:21:45.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: fluentProducerTemplate testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: forceAutoProxyCreatorToUseClassProxying testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: formContentFilter testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerExceptionResolver testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerFunctionAdapter testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: httpRequestHandlerAdapter testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsCamelInterceptor testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsContainerManager testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsDataflowControl testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsMultipartComponent testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idscp2UsageControlComponent testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: infoModelService testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapper testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapperBuilder testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyApplicationPath testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyServletRegistration testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jettyWebServerFactoryCustomizer testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jsonComponentModule testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: lifecycleProcessor testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listBeans testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listContainers testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeCharsetMappingsCustomizer testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeResolver testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: management.endpoint.camelroutes-org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointProperties testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mappingJackson2HttpMessageConverter testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: messageConverters testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: methodValidationPostProcessor testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: metricAPI testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartConfigElement testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartResolver testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcContentNegotiationManager testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcConversionService testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcHandlerMappingIntrospector testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPathMatcher testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPatternParser testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcResourceUrlProvider testidsa12 | 2022-01-20 14:21:45.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUriComponentsContributor testidsa12 | 2022-01-20 14:21:45.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUrlPathHelper testidsa12 | 2022-01-20 14:21:45.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcValidator testidsa12 | 2022-01-20 14:21:45.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcViewResolver testidsa12 | 2022-01-20 14:21:45.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.bean.springboot.BeanComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.beanclass.springboot.ClassComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.browse.springboot.BrowseComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.controlbus.springboot.ControlBusComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.305 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataformat.springboot.DataFormatComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.305 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.306 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentConverter testidsa12 | 2022-01-20 14:21:45.306 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.306 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentConverter testidsa12 | 2022-01-20 14:21:45.306 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.direct.springboot.DirectComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.306 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.306 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentConverter testidsa12 | 2022-01-20 14:21:45.306 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.file.springboot.FileComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.307 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.307 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentConverter testidsa12 | 2022-01-20 14:21:45.307 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.language.springboot.LanguageComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.307 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentConverter testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentConverter testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.ref.springboot.RefComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestApiComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.saga.springboot.SagaComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.scheduler.springboot.SchedulerComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentConverter testidsa12 | 2022-01-20 14:21:45.308 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentConverter testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.timer.springboot.TimerComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentConverter testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentConverter testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentConverter testidsa12 | 2022-01-20 14:21:45.309 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.bean.springboot.BeanLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.constant.springboot.ConstantLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.csimple.springboot.CSimpleLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.header.springboot.HeaderLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.property.springboot.ExchangePropertyLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.ref.springboot.RefLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.FileLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.SimpleLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.310 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.tokenizer.springboot.TokenizeLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.312 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xpath.springboot.XPathLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.312 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageAutoConfiguration testidsa12 | 2022-01-20 14:21:45.312 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.model.rest.springboot.RestConfigurationDefinitionAutoConfiguration testidsa12 | 2022-01-20 14:21:45.312 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.CamelAutoConfiguration testidsa12 | 2022-01-20 14:21:45.312 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.TypeConversionConfiguration testidsa12 | 2022-01-20 14:21:45.312 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRouteControllerEndpointAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceCallConfigurationAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceChooserAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceDiscoveryAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceFilterAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.properties.PropertiesComponentAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.threadpool.CamelThreadPoolAutoConfiguration testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.aop.config.internalAutoProxyCreator testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.AutoConfigurationPackages testidsa12 | 2022-01-20 14:21:45.313 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration testidsa12 | 2022-01-20 14:21:45.314 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration testidsa12 | 2022-01-20 14:21:45.324 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration testidsa12 | 2022-01-20 14:21:45.325 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration testidsa12 | 2022-01-20 14:21:45.327 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration testidsa12 | 2022-01-20 14:21:45.327 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration testidsa12 | 2022-01-20 14:21:45.328 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration testidsa12 | 2022-01-20 14:21:45.333 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration testidsa12 | 2022-01-20 14:21:45.334 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration testidsa12 | 2022-01-20 14:21:45.334 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration testidsa12 | 2022-01-20 14:21:45.334 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration testidsa12 | 2022-01-20 14:21:45.334 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration testidsa12 | 2022-01-20 14:21:45.335 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory testidsa12 | 2022-01-20 14:21:45.335 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration testidsa12 | 2022-01-20 14:21:45.335 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration testidsa12 | 2022-01-20 14:21:45.335 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration testidsa12 | 2022-01-20 14:21:45.335 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration testidsa12 | 2022-01-20 14:21:45.336 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration testidsa12 | 2022-01-20 14:21:45.336 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration testidsa12 | 2022-01-20 14:21:45.337 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer testidsa12 | 2022-01-20 14:21:45.341 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer$JaxbObjectMapperCustomizer testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration testidsa12 | 2022-01-20 14:21:45.342 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration testidsa12 | 2022-01-20 14:21:45.343 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration testidsa12 | 2022-01-20 14:21:45.344 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration testidsa12 | 2022-01-20 14:21:45.344 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration testidsa12 | 2022-01-20 14:21:45.344 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinder testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinderFactory testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.BoundConfigurationProperties testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalCommonAnnotationProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerFactory testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: parameterNamesModule testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: persistenceExceptionTranslationPostProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: platformTransactionManagerCustomizers testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: policyApi testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: preserveErrorControllerTargetClassPostProcessor testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: producerTemplate testidsa12 | 2022-01-20 14:21:45.345 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: properties testidsa12 | 2022-01-20 14:21:45.346 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertiesParser testidsa12 | 2022-01-20 14:21:45.346 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertySourcesPlaceholderConfigurer testidsa12 | 2022-01-20 14:21:45.448 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestContextFilter testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerAdapter testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerMapping testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceConfigCustomizer testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceHandlerMapping testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-configuration testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilder testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilderConfigurer testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeApi testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeControllerEndpoint testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeManagerService testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeTemplate testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routerFunctionMapping testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollector testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollectorListener testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: scheduledBeanLazyInitializationExcludeFilter testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: server-org.springframework.boot.autoconfigure.web.ServerProperties testidsa12 | 2022-01-20 14:21:45.449 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-call-configuration testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-discovery testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-filter testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: servletWebServerFactoryCustomizer testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsApi testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsComponent testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showCamelInfo testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showConnectorProfile testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: simpleControllerHandlerAdapter testidsa12 | 2022-01-20 14:21:45.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties testidsa12 | 2022-01-20 14:21:45.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties testidsa12 | 2022-01-20 14:21:45.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jersey-org.springframework.boot.autoconfigure.jersey.JerseyProperties testidsa12 | 2022-01-20 14:21:45.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties testidsa12 | 2022-01-20 14:21:45.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties testidsa12 | 2022-01-20 14:21:45.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties testidsa12 | 2022-01-20 14:21:45.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties testidsa12 | 2022-01-20 14:21:45.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties testidsa12 | 2022-01-20 14:21:45.462 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties testidsa12 | 2022-01-20 14:21:45.462 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties testidsa12 | 2022-01-20 14:21:45.462 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.web-org.springframework.boot.autoconfigure.web.WebProperties testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: springTypeConverter testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: standardJacksonObjectMapperBuilderCustomizer testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: static-service-discovery testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: stringHttpMessageConverter testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskExecutorBuilder testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskSchedulerBuilder testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: themeResolver testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: threadPool testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactory testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactoryCustomizer testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatWebServerFactoryCustomizer testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: trustedConnector testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: typeConverter testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: userApi testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewControllerHandlerMapping testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewNameTranslator testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewResolver testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webConsole testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webServerFactoryCustomizerBeanPostProcessor testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: websocketServletWebServerCustomizer testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: welcomePageHandlerMapping testidsa12 | 2022-01-20 14:21:45.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlDeployWatcher testidsa12 | 2022-01-20 14:21:46.152 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: testidsa12 testidsa12 | 2022-01-20 14:21:46.153 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-api testidsa12 | 2022-01-20 14:21:46.154 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-api testidsa12 | 2022-01-20 14:21:46.154 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-api testidsa12 | 2022-01-20 14:21:46.154 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-mongo testidsa12 | 2022-01-20 14:21:46.155 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-mongo testidsa12 | 2022-01-20 14:21:46.155 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-mongo testidsa12 | 2022-01-20 14:21:46.155 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectorb testidsa12 | 2022-01-20 14:21:46.155 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectora testidsa12 | 2022-01-20 14:21:46.155 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: omejdn testidsa12 | 2022-01-20 14:21:46.158 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Settings or ConnectorProfile not available, or no connector entity names provided testidsa12 | 2022-01-20 14:21:46.158 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Connector couldn't be built: Maintainer URL is required! testidsa12 | 2022-01-20 14:21:46.158 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : No connector profile stored yet. testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-bean testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-class testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-browse testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-controlbus testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataformat testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset-test testidsa12 | 2022-01-20 14:21:46.161 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct testidsa12 | 2022-01-20 14:21:46.162 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct-vm testidsa12 | 2022-01-20 14:21:46.167 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-file testidsa12 | 2022-01-20 14:21:46.168 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-http testidsa12 | 2022-01-20 14:21:46.168 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-language testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-log testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-mock testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-ref testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest-api testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-saga testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-scheduler testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-seda testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-stub testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-timer testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-validator testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-vm testidsa12 | 2022-01-20 14:21:46.172 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-xslt testidsa12 | 2022-01-20 14:21:46.174 INFO 1 --- [ main] de.fhg.aisec.ids.rm.XmlDeployWatcher : XML file deploy/clearing-house-routes.xml detected, creating XmlApplicationContext... testidsa12 | 2022-01-20 14:21:47.697 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@7691655 to: org.apache.camel.support.SimpleTypeConverter@5b7b342d testidsa12 | 2022-01-20 14:21:47.699 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@561115a8 to: org.apache.camel.support.SimpleTypeConverter@3680249a testidsa12 | 2022-01-20 14:21:47.699 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@791457a1 to: org.apache.camel.support.SimpleTypeConverter@7b4ccef2 testidsa12 | 2022-01-20 14:21:47.982 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom TypeConverterRegistry: org.apache.camel.impl.converter.DefaultTypeConverter@11bd8e2a testidsa12 | 2022-01-20 14:21:47.990 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@237ee2e1 testidsa12 | 2022-01-20 14:21:48.200 INFO 1 --- [onPool-worker-3] o.a.c.management.JmxManagementStrategy : JMX is enabled clearing-house-mongo | {"t":{"$date":"2022-01-20T14:22:32.222+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1642688552:222496][1:0x7fdd9b1b0700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 160"}} keyring-mongo | {"t":{"$date":"2022-01-20T14:22:32.396+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1642688552:396547][1:0x7fb52a1ab700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 160"}} document-mongo | {"t":{"$date":"2022-01-20T14:22:33.792+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1642688553:792284][1:0x7fe3956aa700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 160"}}

It is not sending the message to the Clearing House and therefore there are no logs at the Clearing House when the negotiation agreement is stablished.

kragall commented 2 years ago

Connector A logs a "Connection refused". Are you sure your Clearing House was already running and accessible from Connector A (e.g. docker configuration was correct)?

And please note that you also have to update the TC_DAPS_URL. It's now supposed to be the token url and not the base url of the DAPS.

jfernandezsqs commented 2 years ago

I have changed the Trusted connector image and the TC_DAPS_URL image These are the logs obtained from Connector A:

2022-01-20T15:00:29,746 [https-jsse-nio-7000-exec-3] INFO - Received incoming message. 2022-01-20T15:00:29,777 [https-jsse-nio-7000-exec-3] INFO - Successfully verified claims. 2022-01-20T15:00:30,148 [https-jsse-nio-7000-exec-4] INFO - Received incoming message. 2022-01-20T15:00:30,159 [https-jsse-nio-7000-exec-4] INFO - Successfully verified claims. 2022-01-20T15:00:30,253 [https-jsse-nio-7000-exec-4] INFO - Sending request to http://testidsa12:9999/messages/log/fd6da41e-b8fe-40e1-9a61-11ff0230fae1 ... 2022-01-20T15:00:30,259 [https-jsse-nio-7000-exec-4] WARN - Message handling or processing failed. [exception=(Failed to connect to testidsa12/172.18.0.8:9999)] java.net.ConnectException: Failed to connect to testidsa12/172.18.0.8:9999 at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:297) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.1.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendRequest(IdsHttpService.java:362) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.send(IdsHttpService.java:232) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendAndCheckDat(IdsHttpService.java:452) ~[messaging-4.2.2.jar!/:?] at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:112) [classes!/:6.2.0] at io.dataspaceconnector.service.message.builder.type.LogMessageService.sendMessage(LogMessageService.java:82) [classes!/:6.2.0] at io.dataspaceconnector.common.ids.message.ClearingHouseService.sendToClearingHouse(ClearingHouseService.java:60) [classes!/:6.2.0] at io.dataspaceconnector.service.usagecontrol.PolicyExecutionService.sendAgreement(PolicyExecutionService.java:70) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.event.AgreementEventHandler.handleAgreementEvent(AgreementEventHandler.java:46) [classes!/:6.2.0] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:344) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:229) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:166) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:391) [spring-context-5.3.9.jar!/:5.3.9] at io.dataspaceconnector.service.message.handler.processor.AgreementComparisonProcessor.processInternal(AgreementComparisonProcessor.java:104) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.processor.base.IdsProcessor.process(IdsProcessor.java:42) [classes!/:6.2.0] at org.apache.camel.support.processor.DelegateSyncProcessor.process(DelegateSyncProcessor.java:66) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:195) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:369) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:182) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:119) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$1.doInTransactionWithoutResult(TransactionErrorHandler.java:207) [camel-spring-3.11.1.jar!/:3.11.1] at org.springframework.transaction.support.TransactionCallbackWithoutResult.doInTransaction(TransactionCallbackWithoutResult.java:36) [spring-tx-5.3.9.jar!/:5.3.9] at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) [spring-tx-5.3.9.jar!/:5.3.9] at org.apache.camel.spring.spi.TransactionErrorHandler.doInTransactionTemplate(TransactionErrorHandler.java:200) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processInTransaction(TransactionErrorHandler.java:155) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:123) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleMain(DefaultReactiveExecutor.java:64) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:184) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.component.direct.DirectProducer.process(DirectProducer.java:96) [camel-direct-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:217) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor$1.process(SharedCamelInternalProcessor.java:111) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:108) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.support.cache.DefaultProducerCache.send(DefaultProducerCache.java:190) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:176) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:148) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:131) [camel-base-engine-3.11.1.jar!/:3.11.1] at io.dataspaceconnector.service.message.handler.type.base.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:79) [classes!/:6.2.0] at de.fraunhofer.ids.messaging.dispatcher.MessageDispatcher.process(MessageDispatcher.java:198) [messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.endpoint.MessageController.handleIDSMessage(MessageController.java:144) [messaging-4.2.2.jar!/:?] at jdk.internal.reflect.GeneratedMethodAccessor279.invoke(Unknown Source) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1064) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) [tomcat-embed-websocket-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) [spring-boot-actuator-2.5.4.jar!/:2.5.4] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at io.opentracing.contrib.web.servlet.filter.TracingFilter.doFilter(TracingFilter.java:189) [opentracing-web-servlet-filter-0.4.0.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.52.jar!/:?] at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.net.ConnectException: Connection refused (Connection refused) at java.net.PlainSocketImpl.socketConnect(Native Method) ~[?:?] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:399) ~[?:?] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:242) ~[?:?] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:224) ~[?:?] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:?] at java.net.Socket.connect(Socket.java:609) ~[?:?] at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:120) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.1.jar!/:?] ... 199 more 2022-01-20T15:00:30,275 [https-jsse-nio-7000-exec-4] WARN - Failed to send log message. [exception=(Message handling or processing failed.)] io.dataspaceconnector.common.exception.MessageException: Message handling or processing failed. at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:142) ~[classes!/:6.2.0] at io.dataspaceconnector.service.message.builder.type.LogMessageService.sendMessage(LogMessageService.java:82) [classes!/:6.2.0] at io.dataspaceconnector.common.ids.message.ClearingHouseService.sendToClearingHouse(ClearingHouseService.java:60) [classes!/:6.2.0] at io.dataspaceconnector.service.usagecontrol.PolicyExecutionService.sendAgreement(PolicyExecutionService.java:70) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.event.AgreementEventHandler.handleAgreementEvent(AgreementEventHandler.java:46) [classes!/:6.2.0] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:344) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:229) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:166) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) [spring-context-5.3.9.jar!/:5.3.9] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:391) [spring-context-5.3.9.jar!/:5.3.9] at io.dataspaceconnector.service.message.handler.processor.AgreementComparisonProcessor.processInternal(AgreementComparisonProcessor.java:104) [classes!/:6.2.0] at io.dataspaceconnector.service.message.handler.processor.base.IdsProcessor.process(IdsProcessor.java:42) [classes!/:6.2.0] at org.apache.camel.support.processor.DelegateSyncProcessor.process(DelegateSyncProcessor.java:66) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:195) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:369) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.schedule(DefaultReactiveExecutor.java:59) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor$AsyncAfterTask.done(CamelInternalProcessor.java:274) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:377) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:182) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:119) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.doRun(RedeliveryErrorHandler.java:804) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler$RedeliveryTask.run(RedeliveryErrorHandler.java:712) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleSync(DefaultReactiveExecutor.java:69) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.errorhandler.RedeliveryErrorHandler.process(RedeliveryErrorHandler.java:208) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.access$201(TransactionErrorHandler.java:45) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$2.process(TransactionErrorHandler.java:247) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processByErrorHandler(TransactionErrorHandler.java:244) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler$1.doInTransactionWithoutResult(TransactionErrorHandler.java:207) [camel-spring-3.11.1.jar!/:3.11.1] at org.springframework.transaction.support.TransactionCallbackWithoutResult.doInTransaction(TransactionCallbackWithoutResult.java:36) [spring-tx-5.3.9.jar!/:5.3.9] at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:140) [spring-tx-5.3.9.jar!/:5.3.9] at org.apache.camel.spring.spi.TransactionErrorHandler.doInTransactionTemplate(TransactionErrorHandler.java:200) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.processInTransaction(TransactionErrorHandler.java:155) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:123) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.spring.spi.TransactionErrorHandler.process(TransactionErrorHandler.java:132) [camel-spring-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline$PipelineTask.run(Pipeline.java:109) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor$Worker.schedule(DefaultReactiveExecutor.java:179) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultReactiveExecutor.scheduleMain(DefaultReactiveExecutor.java:64) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.processor.Pipeline.process(Pipeline.java:184) [camel-core-processor-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.CamelInternalProcessor.process(CamelInternalProcessor.java:398) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.component.direct.DirectProducer.process(DirectProducer.java:96) [camel-direct-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:217) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor$1.process(SharedCamelInternalProcessor.java:111) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultAsyncProcessorAwaitManager.process(DefaultAsyncProcessorAwaitManager.java:83) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.SharedCamelInternalProcessor.process(SharedCamelInternalProcessor.java:108) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.support.cache.DefaultProducerCache.send(DefaultProducerCache.java:190) [camel-support-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:176) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:148) [camel-base-engine-3.11.1.jar!/:3.11.1] at org.apache.camel.impl.engine.DefaultProducerTemplate.send(DefaultProducerTemplate.java:131) [camel-base-engine-3.11.1.jar!/:3.11.1] at io.dataspaceconnector.service.message.handler.type.base.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:79) [classes!/:6.2.0] at de.fraunhofer.ids.messaging.dispatcher.MessageDispatcher.process(MessageDispatcher.java:198) [messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.endpoint.MessageController.handleIDSMessage(MessageController.java:144) [messaging-4.2.2.jar!/:?] at jdk.internal.reflect.GeneratedMethodAccessor279.invoke(Unknown Source) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1064) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) [spring-webmvc-5.3.9.jar!/:5.3.9] at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) [spring-webmvc-5.3.9.jar!/:5.3.9] at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) [tomcat-embed-core-9.0.52.jar!/:4.0.1] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) [tomcat-embed-websocket-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:149) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) [spring-security-web-5.5.2.jar!/:5.5.2] at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) [spring-boot-actuator-2.5.4.jar!/:2.5.4] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) [spring-web-5.3.9.jar!/:5.3.9] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) [spring-web-5.3.9.jar!/:5.3.9] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at io.opentracing.contrib.web.servlet.filter.TracingFilter.doFilter(TracingFilter.java:189) [opentracing-web-servlet-filter-0.4.0.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:893) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1726) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) [tomcat-embed-core-9.0.52.jar!/:?] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.52.jar!/:?] at java.lang.Thread.run(Thread.java:829) [?:?] Caused by: java.net.ConnectException: Failed to connect to testidsa12/172.18.0.8:9999 at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:297) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.1.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendRequest(IdsHttpService.java:362) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.send(IdsHttpService.java:232) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendAndCheckDat(IdsHttpService.java:452) ~[messaging-4.2.2.jar!/:?] at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:112) ~[classes!/:6.2.0] ... 180 more Caused by: java.net.ConnectException: Connection refused (Connection refused) at java.net.PlainSocketImpl.socketConnect(Native Method) ~[?:?] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:399) ~[?:?] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:242) ~[?:?] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:224) ~[?:?] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:?] at java.net.Socket.connect(Socket.java:609) ~[?:?] at okhttp3.internal.platform.Platform.connectSocket(Platform.kt:120) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connectSocket(RealConnection.kt:295) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealConnection.connect(RealConnection.kt:207) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.kt:226) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.kt:106) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.kt:74) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.initExchange$okhttp(RealCall.kt:255) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:32) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201) ~[okhttp-4.9.1.jar!/:?] at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154) ~[okhttp-4.9.1.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendRequest(IdsHttpService.java:362) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.send(IdsHttpService.java:232) ~[messaging-4.2.2.jar!/:?] at de.fraunhofer.ids.messaging.protocol.http.IdsHttpService.sendAndCheckDat(IdsHttpService.java:452) ~[messaging-4.2.2.jar!/:?] at io.dataspaceconnector.service.message.builder.type.base.AbstractMessageService.send(AbstractMessageService.java:112) ~[classes!/:6.2.0] ... 180 more 2022-01-20T15:00:30,286 [https-jsse-nio-7000-exec-4] WARN - Failed to send contract agreement to clearing house. [exception=(Log message could not be sent.)] 2022-01-20T15:00:30,541 [https-jsse-nio-7000-exec-5] INFO - Received incoming message. 2022-01-20T15:00:30,575 [https-jsse-nio-7000-exec-5] INFO - Successfully verified claims.

kragall commented 2 years ago

From my point of view this is a problem with your docker configuration. Either the container is not in the same network as the connectors or you have to expose the port 9999 in trusted connector. Maybe both. Didn't you have a working docker configuration with the help of the DSC guys? What changed?

jfernandezsqs commented 2 years ago

This is the docker-compose.yml file:

version: '3' services: clearing-house-api: image: sqs-service-api

image: sqs-ch-latest

container_name: "clearing-house-api" depends_on:

  • document-api
  • keyring-api
  • clearing-house-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Debug ports:
  • "8000:8000"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/Rocket.toml:/server/Rocket.toml
  • ./data/keys:/server/keys
  • ./data/certs:/server/certs clearing-house-mongo: container_name: "clearing-house-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: process ports:

    This is solely for debugging purposes. Remove for deployment

  • "27019:27017" document-api: image: sqs-document-api container_name: "document-api" depends_on:
  • keyring-api
  • document-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8001:8001"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/document-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs document-mongo: container_name: "document-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: document
    ports:

    This is solely for debugging purposes. Remove for deployment

  • "27017:27017" keyring-api: image: sqs-keyring-api container_name: "keyring-api" depends_on:
  • keyring-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8002:8002"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/keyring-api/init_db:/server/init_db
  • ./data/keyring-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs keyring-mongo: container_name: "keyring-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: keyring ports:

    This is solely for debugging purposes. Remove for deployment

  • "27018:27017"

    The core platform, mounts docker control socket and route definition into the image

    tc-core: container_name: "testidsa12" image: fraunhoferaisec/trusted-connector-core:6.0.0 tty: true stdin_open: true volumes:

  • /var/run/docker.sock:/var/run/docker.sock
  • ./data/trusted-connector/allow-all-flows.pl:/root/deploy/allow-all-flows.pl
  • ./data/trusted-connector/testidsa12.p12:/root/etc/keystore.p12
  • ./data/trusted-connector/truststore.p12:/root/etc/truststore.p12
  • ./data/trusted-connector/clearing-house-processors-0.7.2.jar:/root/jars/clearing-house-processors.jar
  • ./data/trusted-connector/routes/clearing-house-routes.xml:/root/deploy/clearing-house-routes.xml environment: TC_DAPS_URL: http://omejdn:4567/token expose:
  • "9999"
  • "8443" ports:
  • "8443:8443"
  • "9999:9999" networks: default: external: name: broker-localhost_default

This is the network, where you can see that all the components are in the same network.

docker network inspect broker-localhost_default [ { "Name": "broker-localhost_default", "Id": "724f3f0f5f76bb1342695537eae3a11f6cc9e79442ef326fd3570e9936d37e40", "Created": "2022-01-19T16:39:57.847968647+01:00", "Scope": "local", "Driver": "bridge", "EnableIPv6": false, "IPAM": { "Driver": "default", "Options": {}, "Config": [ { "Subnet": "172.18.0.0/16", "Gateway": "172.18.0.1" } ] }, "Internal": false, "Attachable": false, "Ingress": false, "ConfigFrom": { "Network": "" }, "ConfigOnly": false, "Containers": { "08ccc9b82ea486abc1c07a93ab47ba9950c4517305ffd86d31bebbc27546f891": { "Name": "document-mongo", "EndpointID": "6858d88f05f5391d1c3d1753a34677c4bed31caa2fbddefb8532b73a1a64cc9b", "MacAddress": "02:42:ac:12:00:05", "IPv4Address": "172.18.0.5/16", "IPv6Address": "" }, "0a15ffd421fd672b59aafdc7b6e322253357aa160685a72f85a6ebcc0b003ecc": { "Name": "keyring-api", "EndpointID": "4e7502581b17578bb2b94d326d85607184e331255c2c93cb7ef9fa3188b18f8a", "MacAddress": "02:42:ac:12:00:09", "IPv4Address": "172.18.0.9/16", "IPv6Address": "" }, "1dbb7d0633bed3e21a8838902da744cd3f9cf24d5338f26e9ac756433174fdf9": { "Name": "document-api", "EndpointID": "e0f5d9044d847f1e4d5d573353d2f21bd404fa22729b67d134cadf43b0107d70", "MacAddress": "02:42:ac:12:00:0a", "IPv4Address": "172.18.0.10/16", "IPv6Address": "" }, "1ee51497678ddb3e450dd7bc05a1ca515dff4807639ab9b23eb97b16df155e18": { "Name": "clearing-house-api", "EndpointID": "f1151992fe978ed6a82eae6890d04c8c634b0acda1b53650d3c3b65403faeed3", "MacAddress": "02:42:ac:12:00:0b", "IPv4Address": "172.18.0.11/16", "IPv6Address": "" }, "2a6de179b6447c692705951de02ae9aea178ecb83cf3516812fff30c110db7fb": { "Name": "testidsa12", "EndpointID": "9323ed4e2966e5418f862b21f8c8dfc5af854e70fdd41798039b3f95f2636bc5", "MacAddress": "02:42:ac:12:00:08", "IPv4Address": "172.18.0.8/16", "IPv6Address": "" }, "425ad44510289d8ff7c4281d20225bb3359ee252dfd8c3857129f9b45f11e537": { "Name": "keyring-mongo", "EndpointID": "59c7ed7b47e1cef94fd99ce9853f9bf875ac578e751a8b371e609346c260e16a", "MacAddress": "02:42:ac:12:00:07", "IPv4Address": "172.18.0.7/16", "IPv6Address": "" }, "604fd68266bd2a6fac7b4104bfdfaf28c9f4a8084aa7baa3ddb07fbe2cc8ea3c": { "Name": "connectorb", "EndpointID": "cc610d5e1f12d94c3ebdbf84cd85b39ea339892db2fdcd243231c359c9ccb084", "MacAddress": "02:42:ac:12:00:04", "IPv4Address": "172.18.0.4/16", "IPv6Address": "" }, "670e49df288294c3edc32ded8edfacc06a028f673fa430cdb0484cabc74e7c90": { "Name": "clearing-house-mongo", "EndpointID": "e290854f7a6b8f8e1de17bec0b63c7e582a0b6ce9b93442077cc57bee64cad24", "MacAddress": "02:42:ac:12:00:06", "IPv4Address": "172.18.0.6/16", "IPv6Address": "" }, "7d766ff4e42f370341edfc408897063a34e390ddb746060333c1a27f6f4906d9": { "Name": "omejdn", "EndpointID": "d7e79fe4fcb172c95af64ea3a1260666839d711db0325a90c7b1c27e34709048", "MacAddress": "02:42:ac:12:00:02", "IPv4Address": "172.18.0.2/16", "IPv6Address": "" }, "7d893f958f2be0ec151774a61ed32137080923ea7457f3f85102067d4ae4b52d": { "Name": "connectora", "EndpointID": "65a9f3fdb3cdda3046106e92f1a1ab4632d14a17515420c68dd4cc4d2f0751d3", "MacAddress": "02:42:ac:12:00:03", "IPv4Address": "172.18.0.3/16", "IPv6Address": "" } }, "Options": {}, "Labels": {} } ]

I have just changed the Trusted connector image and the TC_DAPS_URL: http://omejdn:4567/token Using image 5.0.2 of the trusted connector and TC_DAPS_URL: http://omejdn:4567 let the Connector A send the log message to the Clearing House as specified in this issue commented on 17 December (https://github.com/Fraunhofer-AISEC/ids-clearing-house-service/issues/5#issuecomment-996760120)

milux commented 2 years ago

For starters, TC_DAPS_URL: http://omejdn:4567/token is definitely wrong. This is the token endpoint. Please remove the /token, it will be appended automatically.

milux commented 2 years ago

As stated in the TC 6.0.0 release notes on GitHub (https://github.com/Fraunhofer-AISEC/trusted-connector/releases/tag/6.0.0), we did an update of Apache Camel from 3.0.x to 3.14.x. Unfortunately, this lead to breaking changes in the XML format, for example in the <setHeader> component, which cause routes to fail silently. This might also happen to you here. (Note that there is no Camel route output in your logs whatsoever now!).

kragall commented 2 years ago

The connection problems seems to stem from the fact that there are no routes deployed in the trusted connector. To check if there is a parsing problem as suggested by @milux I tried to start TC 6.0.0 with unchanged routes and on my machine the routes get deployed. We need to figure out why the routes are not getting deployed on your machine

@jfernandezsqs Can you post the contents of the routes you deployed (./data/trusted-connector/routes/clearing-house-routes.xml)?

You can enable a UI of the trusted connector by exposing port 8080 and then log into the UI using ids:ids as credentials. There you can also review the routes that have been deployed.

jfernandezsqs commented 2 years ago

This is the clearing-house-route.xml file

clearing-house-routes.docx

kragall commented 2 years ago

The routes look ok to me. So for troubleshooting please shut the docker containers of the clearing house down, pull the new versions and start again, i.e.:

  1. docker-compose down -v --remove-orphans
  2. docker-compose pull
  3. docker-compose up -d

Please wait for the containers to start and then do

jfernandezsqs commented 2 years ago

sqs@sqs-VirtualBox:~/TESTBED_FINAL/CLEARINGHOUSE$ docker logs testidsa12 -f . ____ /\ / __' () _ \ \ \ \ ( ( )__ | ' | '| | ' \/ _` | \ \ \ \ \/ _)| |)| | | | | || (| | ) ) ) ) ' |__| .|| ||| |\, | / / / / =========|_|==============|__/=//// :: Spring Boot :: (v2.5.8) 2022-01-21 09:48:43.510 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Starting TrustedConnector.Companion using Java 11.0.11 on e6ff1e81f7a2 with PID 1 (/root/jars/ids-connector-6.0.0-plain.jar started by root in /root) 2022-01-21 09:48:43.512 DEBUG 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Running with Spring Boot v2.5.8, Spring v5.3.14 2022-01-21 09:48:43.513 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : No active profile set, falling back to default profiles: default 2022-01-21 09:48:45.636 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2022-01-21 09:48:45.647 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2022-01-21 09:48:45.648 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.56] 2022-01-21 09:48:45.795 INFO 1 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2022-01-21 09:48:45.795 INFO 1 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1990 ms 2022-01-21 09:48:45.812 INFO 1 --- [ main] de.fhg.aisec.ids.webconsole.WebConsole : Registering WebConsole classes 2022-01-21 09:48:46.179 INFO 1 --- [ main] d.f.a.ids.cm.ContainerManagerService : Default container management is de.fhg.aisec.ids.cm.impl.docker.DockerCM@1f3c5308 2022-01-21 09:48:46.193 DEBUG 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Open Settings Database /root/etc/settings.mapdb... 2022-01-21 09:48:46.575 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 1 to version 4... 2022-01-21 09:48:46.586 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 09:48:46.586 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 2 to version 4... 2022-01-21 09:48:46.594 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 09:48:46.594 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 3 to version 4... 2022-01-21 09:48:46.602 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 09:48:46.647 INFO 1 --- [ main] d.f.a.i.d.PolicyDecisionPoint : Loading Lucon policy from deploy/allow-all-flows.pl 2022-01-21 09:48:47.650 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary 2022-01-21 09:48:47.653 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Loading theory: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Prolog representation of a data flow policy %
% Source: default % % Do not edit this file, it has been generated automatically % by XText/Xtend. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Only required for SWI-Prolog % Allow the following predicates to be scattered around the prolog file. % Otherwise Prolog will issue a warning if they are not stated in subsequent lines. %:- discontiguous service/1. %:- discontiguous has_endpoint/2. %:- discontiguous creates_label/2. %:- discontiguous removes_label/2. %:- discontiguous rule/1. %:- discontiguous rule_priority/2. %:- discontiguous receives_label/1. %:- discontiguous has_decision/2. %:- discontiguous has_target/2. %:- discontiguous has_capability/2. %:- discontiguous has_property/3. %:- discontiguous requires_prerequisites/2. %:- discontiguous has_alternativedecision/2. %:- discontiguous has_obligation/2. %%%%%%%%% Basic Blocking Rule %%%%%%%%%% rule(dropAll). rule_priority(dropAll,0). has_decision(dropAll,drop). receives_label(dropAll). has_target(dropAll,serviceAll). %%%%%%%%%% Catch All Service %%%%%%%%%%% service(serviceAll). has_endpoint(serviceAll,'.*'). %%%%%%%%%%%%%%%% Rules %%%%%%%%%%%%%%%%% % Allow everything rule(allowAll). rule_priority(allowAll, 1). has_target(allowAll, serviceAll). receives_label(allowAll). has_decision(allowAll, allow). 2022-01-21 09:48:48.286 INFO 1 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [www/index.html] 2022-01-21 09:48:48.462 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@77972964 to: org.apache.camel.support.SimpleTypeConverter@794f937a 2022-01-21 09:48:48.463 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@3b29d36c to: org.apache.camel.support.SimpleTypeConverter@d641499 2022-01-21 09:48:48.463 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@44e0c3d to: org.apache.camel.support.SimpleTypeConverter@71891d6b 2022-01-21 09:48:48.532 INFO 1 --- [ main] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@222eda8a 2022-01-21 09:48:48.801 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' 2022-01-21 09:48:48.850 INFO 1 --- [ main] o.a.c.management.JmxManagementStrategy : JMX is enabled 2022-01-21 09:48:49.014 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Routes startup (total:0 started:0) 2022-01-21 09:48:49.014 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Apache Camel 3.14.0 (camel-1) started in 260ms (build:59ms init:67ms start:134ms) 2022-01-21 09:48:49.022 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Started TrustedConnector.Companion in 6.421 seconds (JVM running for 7.514) 2022-01-21 09:48:49.027 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Information model 4.1.0 loaded 2022-01-21 09:48:49.029 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: appApi 2022-01-21 09:48:49.029 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationAvailability 2022-01-21 09:48:49.029 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationController 2022-01-21 09:48:49.029 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationTaskExecutor 2022-01-21 09:48:49.029 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: basicErrorController 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameHandlerMapping 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameViewResolver 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.cloud-org.apache.camel.spring.boot.cloud.CamelCloudConfigurationProperties 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component-org.apache.camel.spring.boot.ComponentConfigurationProperties 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.bean-org.apache.camel.component.bean.springboot.BeanComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.browse-org.apache.camel.component.browse.springboot.BrowseComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.class-org.apache.camel.component.beanclass.springboot.ClassComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.controlbus-org.apache.camel.component.controlbus.springboot.ControlBusComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataformat-org.apache.camel.component.dataformat.springboot.DataFormatComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-org.apache.camel.component.dataset.springboot.DataSetComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-test-org.apache.camel.component.dataset.springboot.DataSetTestComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-org.apache.camel.component.direct.springboot.DirectComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-vm-org.apache.camel.component.directvm.springboot.DirectVmComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.file-org.apache.camel.component.file.springboot.FileComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.http-org.apache.camel.component.http.springboot.HttpComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.language-org.apache.camel.component.language.springboot.LanguageComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.log-org.apache.camel.component.log.springboot.LogComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.mock-org.apache.camel.component.mock.springboot.MockComponentConfiguration 2022-01-21 09:48:49.030 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.properties-org.apache.camel.spring.boot.properties.PropertiesComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.ref-org.apache.camel.component.ref.springboot.RefComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-api-org.apache.camel.component.rest.springboot.RestApiComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-org.apache.camel.component.rest.springboot.RestComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.saga-org.apache.camel.component.saga.springboot.SagaComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.scheduler-org.apache.camel.component.scheduler.springboot.SchedulerComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.seda-org.apache.camel.component.seda.springboot.SedaComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.stub-org.apache.camel.component.stub.springboot.StubComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.timer-org.apache.camel.component.timer.springboot.TimerComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.validator-org.apache.camel.component.validator.springboot.ValidatorComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.vm-org.apache.camel.component.vm.springboot.VmComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.xslt-org.apache.camel.component.xslt.springboot.XsltComponentConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language-org.apache.camel.spring.boot.LanguageConfigurationProperties 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.bean-org.apache.camel.language.bean.springboot.BeanLanguageConfiguration 2022-01-21 09:48:49.031 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.constant-org.apache.camel.language.constant.springboot.ConstantLanguageConfiguration 2022-01-21 09:48:49.032 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.csimple-org.apache.camel.language.csimple.springboot.CSimpleLanguageConfiguration 2022-01-21 09:48:49.032 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.exchangeproperty-org.apache.camel.language.property.springboot.ExchangePropertyLanguageConfiguration 2022-01-21 09:48:49.032 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.file-org.apache.camel.language.simple.springboot.FileLanguageConfiguration 2022-01-21 09:48:49.032 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.header-org.apache.camel.language.header.springboot.HeaderLanguageConfiguration 2022-01-21 09:48:49.032 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.ref-org.apache.camel.language.ref.springboot.RefLanguageConfiguration 2022-01-21 09:48:49.032 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.simple-org.apache.camel.language.simple.springboot.SimpleLanguageConfiguration 2022-01-21 09:48:49.032 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.tokenize-org.apache.camel.language.tokenizer.springboot.TokenizeLanguageConfiguration 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xpath-org.apache.camel.language.xpath.springboot.XPathLanguageConfiguration 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xtokenize-org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageConfiguration 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.rest-org.apache.camel.model.rest.springboot.RestConfigurationDefinitionProperties 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.routetemplate-org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateConfigurationProperties 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.springboot-org.apache.camel.spring.boot.CamelConfigurationProperties 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.threadpool-org.apache.camel.spring.boot.threadpool.CamelThreadPoolConfigurationProperties 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelBeanPostProcessor 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelContext 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelEndpoint 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: certApi 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: characterEncodingFilter 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configApi 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanComponent 2022-01-21 09:48:49.033 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanLanguage 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBrowseComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureCSimpleLanguage 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureClassComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureConstantLanguage 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureControlBusComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataFormatComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetTestComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectVmComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureExchangePropertyLanguage 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileComponent 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileLanguage 2022-01-21 09:48:49.034 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHeaderLanguage 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHttpComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureIdscp2 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLanguageComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLogComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureMockComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefLanguage 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestApiComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSagaComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSchedulerComponent 2022-01-21 09:48:49.035 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSedaComponent 2022-01-21 09:48:49.036 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSimpleLanguage 2022-01-21 09:48:49.036 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureStubComponent 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTimerComponent 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTokenizeLanguage 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureValidatorComponent 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureVmComponent 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXMLTokenizeLanguage 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXPathLanguage 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXsltComponent 2022-01-21 09:48:49.037 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectionAPI 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectorConfiguration 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: consumerTemplate 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: controller 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: conventionErrorViewResolver 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultServletHandlerMapping 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultValidator 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultViewResolver 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServlet 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServletRegistration 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: error 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorAttributes 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageCustomizer 2022-01-21 09:48:49.038 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageRegistrarBeanPostProcessor 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: flashMapManager 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: fluentProducerTemplate 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: forceAutoProxyCreatorToUseClassProxying 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: formContentFilter 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerExceptionResolver 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerFunctionAdapter 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: httpRequestHandlerAdapter 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsCamelInterceptor 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsContainerManager 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsDataflowControl 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsMultipartComponent 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idscp2UsageControlComponent 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: infoModelService 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapper 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapperBuilder 2022-01-21 09:48:49.039 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyApplicationPath 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyServletRegistration 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jettyWebServerFactoryCustomizer 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jsonComponentModule 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: lifecycleProcessor 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listBeans 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listContainers 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeCharsetMappingsCustomizer 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeResolver 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: management.endpoint.camelroutes-org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointProperties 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mappingJackson2HttpMessageConverter 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: messageConverters 2022-01-21 09:48:49.040 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: methodValidationPostProcessor 2022-01-21 09:48:49.041 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: metricAPI 2022-01-21 09:48:49.041 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartConfigElement 2022-01-21 09:48:49.041 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartResolver 2022-01-21 09:48:49.041 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcContentNegotiationManager 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcConversionService 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcHandlerMappingIntrospector 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPathMatcher 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPatternParser 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcResourceUrlProvider 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUriComponentsContributor 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUrlPathHelper 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcValidator 2022-01-21 09:48:49.042 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcViewResolver 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.bean.springboot.BeanComponentAutoConfiguration 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.beanclass.springboot.ClassComponentAutoConfiguration 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.browse.springboot.BrowseComponentAutoConfiguration 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.controlbus.springboot.ControlBusComponentAutoConfiguration 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataformat.springboot.DataFormatComponentAutoConfiguration 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentAutoConfiguration 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentConverter 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentAutoConfiguration 2022-01-21 09:48:49.043 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentConverter 2022-01-21 09:48:49.044 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.direct.springboot.DirectComponentAutoConfiguration 2022-01-21 09:48:49.044 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentAutoConfiguration 2022-01-21 09:48:49.044 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentConverter 2022-01-21 09:48:49.044 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.file.springboot.FileComponentAutoConfiguration 2022-01-21 09:48:49.044 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentConverter 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.language.springboot.LanguageComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentConverter 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentConverter 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.ref.springboot.RefComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestApiComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.saga.springboot.SagaComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.scheduler.springboot.SchedulerComponentAutoConfiguration 2022-01-21 09:48:49.045 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentAutoConfiguration 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentConverter 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentAutoConfiguration 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentConverter 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.timer.springboot.TimerComponentAutoConfiguration 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentAutoConfiguration 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentConverter 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentAutoConfiguration 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentConverter 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentAutoConfiguration 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentConverter 2022-01-21 09:48:49.046 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.bean.springboot.BeanLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.constant.springboot.ConstantLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.csimple.springboot.CSimpleLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.header.springboot.HeaderLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.property.springboot.ExchangePropertyLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.ref.springboot.RefLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.FileLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.SimpleLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.tokenizer.springboot.TokenizeLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xpath.springboot.XPathLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.model.rest.springboot.RestConfigurationDefinitionAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.CamelAutoConfiguration 2022-01-21 09:48:49.047 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.TypeConversionConfiguration 2022-01-21 09:48:49.048 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRouteControllerEndpointAutoConfiguration 2022-01-21 09:48:49.048 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointAutoConfiguration 2022-01-21 09:48:49.048 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudAutoConfiguration 2022-01-21 09:48:49.048 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceCallConfigurationAutoConfiguration 2022-01-21 09:48:49.048 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceChooserAutoConfiguration 2022-01-21 09:48:49.048 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceDiscoveryAutoConfiguration 2022-01-21 09:48:49.048 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceFilterAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.properties.PropertiesComponentAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.threadpool.CamelThreadPoolAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.aop.config.internalAutoProxyCreator 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.AutoConfigurationPackages 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration 2022-01-21 09:48:49.049 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer$JaxbObjectMapperCustomizer 2022-01-21 09:48:49.050 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration 2022-01-21 09:48:49.051 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration 2022-01-21 09:48:49.052 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinder 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinderFactory 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.BoundConfigurationProperties 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalCommonAnnotationProcessor 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerFactory 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerProcessor 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: parameterNamesModule 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: persistenceExceptionTranslationPostProcessor 2022-01-21 09:48:49.053 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: platformTransactionManagerCustomizers 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: policyApi 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: preserveErrorControllerTargetClassPostProcessor 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: producerTemplate 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: properties 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertiesParser 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertySourcesPlaceholderConfigurer 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestContextFilter 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerAdapter 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerMapping 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceConfigCustomizer 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceHandlerMapping 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-configuration 2022-01-21 09:48:49.054 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilder 2022-01-21 09:48:49.055 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilderConfigurer 2022-01-21 09:48:49.055 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeApi 2022-01-21 09:48:49.055 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeControllerEndpoint 2022-01-21 09:48:49.055 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeManagerService 2022-01-21 09:48:49.055 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeTemplate 2022-01-21 09:48:49.055 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routerFunctionMapping 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollector 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollectorListener 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: scheduledBeanLazyInitializationExcludeFilter 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: server-org.springframework.boot.autoconfigure.web.ServerProperties 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-call-configuration 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-discovery 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-filter 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: servletWebServerFactoryCustomizer 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsApi 2022-01-21 09:48:49.057 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsComponent 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showCamelInfo 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showConnectorProfile 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: simpleControllerHandlerAdapter 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jersey-org.springframework.boot.autoconfigure.jersey.JerseyProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties 2022-01-21 09:48:49.058 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.web-org.springframework.boot.autoconfigure.web.WebProperties 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: springTypeConverter 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: standardJacksonObjectMapperBuilderCustomizer 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: static-service-discovery 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: stringHttpMessageConverter 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskExecutorBuilder 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskSchedulerBuilder 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: themeResolver 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: threadPool 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactory 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactoryCustomizer 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatWebServerFactoryCustomizer 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: trustedConnector 2022-01-21 09:48:49.059 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: typeConverter 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: userApi 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewControllerHandlerMapping 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewNameTranslator 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewResolver 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webConsole 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webServerFactoryCustomizerBeanPostProcessor 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: websocketServletWebServerCustomizer 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: welcomePageHandlerMapping 2022-01-21 09:48:49.060 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlDeployWatcher 2022-01-21 09:48:49.361 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-api 2022-01-21 09:48:49.365 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-api 2022-01-21 09:48:49.366 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-api 2022-01-21 09:48:49.367 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-mongo 2022-01-21 09:48:49.368 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: testidsa12 2022-01-21 09:48:49.369 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-mongo 2022-01-21 09:48:49.369 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-mongo 2022-01-21 09:48:49.369 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectorb 2022-01-21 09:48:49.371 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectora 2022-01-21 09:48:49.371 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: omejdn 2022-01-21 09:48:49.374 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Settings or ConnectorProfile not available, or no connector entity names provided 2022-01-21 09:48:49.375 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Connector couldn't be built: Maintainer URL is required! 2022-01-21 09:48:49.376 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : No connector profile stored yet. 2022-01-21 09:48:49.381 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-bean 2022-01-21 09:48:49.382 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-class 2022-01-21 09:48:49.383 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-browse 2022-01-21 09:48:49.387 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-controlbus 2022-01-21 09:48:49.388 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataformat 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset-test 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct-vm 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-file 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-http 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-language 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-log 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-mock 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-ref 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest-api 2022-01-21 09:48:49.389 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest 2022-01-21 09:48:49.390 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-saga 2022-01-21 09:48:49.390 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-scheduler 2022-01-21 09:48:49.390 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-seda 2022-01-21 09:48:49.390 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-stub 2022-01-21 09:48:49.391 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-timer 2022-01-21 09:48:49.391 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-validator 2022-01-21 09:48:49.391 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-vm 2022-01-21 09:48:49.392 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-xslt 2022-01-21 09:48:49.394 INFO 1 --- [ main] de.fhg.aisec.ids.rm.XmlDeployWatcher : XML file deploy/clearing-house-routes.xml detected, creating XmlApplicationContext... 2022-01-21 09:48:50.255 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@68f36cd4 to: org.apache.camel.support.SimpleTypeConverter@238c65a7 2022-01-21 09:48:50.257 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@3b5b878e to: org.apache.camel.support.SimpleTypeConverter@23a9fbe8 2022-01-21 09:48:50.258 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@50cfa685 to: org.apache.camel.support.SimpleTypeConverter@102e4066 2022-01-21 09:48:50.298 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom TypeConverterRegistry: org.apache.camel.impl.converter.DefaultTypeConverter@7ea59627 2022-01-21 09:48:50.305 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@222eda8a 2022-01-21 09:48:50.330 INFO 1 --- [onPool-worker-3] o.a.c.management.JmxManagementStrategy : JMX is enabled

jfernandezsqs commented 2 years ago

I have exposed port 8080 and this is my actual docker-compose.yml

version: '3' services: clearing-house-api: image: sqs-service-api

image: sqs-ch-latest

container_name: "clearing-house-api" depends_on:

  • document-api
  • keyring-api
  • clearing-house-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Debug ports:
  • "8000:8000"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/Rocket.toml:/server/Rocket.toml
  • ./data/keys:/server/keys
  • ./data/certs:/server/certs clearing-house-mongo: container_name: "clearing-house-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: process ports:

    This is solely for debugging purposes. Remove for deployment

  • "27019:27017" document-api: image: sqs-document-api container_name: "document-api" depends_on:
  • keyring-api
  • document-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8001:8001"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/document-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs document-mongo: container_name: "document-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: document
    ports:

    This is solely for debugging purposes. Remove for deployment

  • "27017:27017" keyring-api: image: sqs-keyring-api container_name: "keyring-api" depends_on:
  • keyring-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8002:8002"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/keyring-api/init_db:/server/init_db
  • ./data/keyring-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs keyring-mongo: container_name: "keyring-mongo" image: mongo:4.4.8 restart: always environment: MONGO_INITDB_DATABASE: keyring ports:

    This is solely for debugging purposes. Remove for deployment

  • "27018:27017"

    The core platform, mounts docker control socket and route definition into the image

    tc-core: container_name: "testidsa12" image: fraunhoferaisec/trusted-connector-core:6.0.0 tty: true stdin_open: true volumes:

  • /var/run/docker.sock:/var/run/docker.sock
  • ./data/trusted-connector/allow-all-flows.pl:/root/deploy/allow-all-flows.pl
  • ./data/trusted-connector/testidsa12.p12:/root/etc/keystore.p12
  • ./data/trusted-connector/truststore.p12:/root/etc/truststore.p12
  • ./data/trusted-connector/clearing-house-processors-0.7.2.jar:/root/jars/clearing-house-processors.jar
  • ./data/trusted-connector/routes/clearing-house-routes.xml:/root/deploy/clearing-house-routes.xml environment: TC_DAPS_URL: http://omejdn:4567 expose:
  • "9999"
  • "8443"
  • "8080"
    ports:
  • "8443:8443"
  • "9999:9999"
  • "8080:8080" networks: default: external: name: broker-localhost_default

These are the folders of the Clearing House image These are the folders inside data image These are the folders inside trusted-connector image

I have checked inside the trusted connector container that all of this configuration files are included: image

I have checked the TC UI and it has no certificates image

kragall commented 2 years ago

I'm not sure what those certificates are for, but it's the same on my machine. The interesting tab is "message routes". On my machine there are 7 different routes and in the "Apps" tab I can see the 7 containers I am running. How many routes are deployed on your machine?

jfernandezsqs commented 2 years ago

I have no messages routes. It is empty image And in the Apps tab I have the following: image image image

jfernandezsqs commented 2 years ago

It gives me these logs at the terminal when I try to access the Message Routes

testidsa12 | 2022-01-21 10:31:49.774 WARN 1 --- [nio-8080-exec-4] de.fhg.aisec.ids.rm.RouteManagerService : Cannot retrieve the list of Camel contexts. testidsa12 | testidsa12 | java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: org/apache/camel/http/common/UrlRewrite testidsa12 | at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395) ~[na:na] testidsa12 | at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999) ~[na:na] testidsa12 | at de.fhg.aisec.ids.rm.XmlDeployWatcher$Companion.getBeansOfType(XmlDeployWatcher.kt:160) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at de.fhg.aisec.ids.rm.RouteManagerService.getCamelContexts(RouteManagerService.kt:174) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at de.fhg.aisec.ids.rm.RouteManagerService.getRoutes(RouteManagerService.kt:57) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at de.fhg.aisec.ids.webconsole.api.RouteApi.list(RouteApi.kt:89) ~[ids-webconsole-6.0.0.jar:na] testidsa12 | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] testidsa12 | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na] testidsa12 | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] testidsa12 | at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na] testidsa12 | at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:475) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:397) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:81) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:255) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors.process(Errors.java:292) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors.process(Errors.java:274) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors.process(Errors.java:244) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:234) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:895) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1732) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na] testidsa12 | Caused by: java.lang.NoClassDefFoundError: org/apache/camel/http/common/UrlRewrite testidsa12 | at org.apache.camel.component.http4.HttpComponent.createEndpoint(HttpComponent.java:237) ~[camel-http4-3.0.0-M4.jar:3.0.0-M4] testidsa12 | at org.apache.camel.support.DefaultComponent.createEndpoint(DefaultComponent.java:171) ~[camel-support-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.doGetEndpoint(AbstractCamelContext.java:934) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.getEndpoint(AbstractCamelContext.java:850) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.support.CamelContextHelper.resolveEndpoint(CamelContextHelper.java:123) ~[camel-support-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.SendReifier.resolveEndpoint(SendReifier.java:43) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.SendReifier.createProcessor(SendReifier.java:36) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.ProcessorReifier.makeProcessor(ProcessorReifier.java:838) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.ProcessorReifier.addRoutes(ProcessorReifier.java:579) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.RouteReifier.doCreateRoute(RouteReifier.java:236) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.RouteReifier.createRoute(RouteReifier.java:74) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultModelReifierFactory.createRoute(DefaultModelReifierFactory.java:49) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultCamelContext.startRouteDefinitions(DefaultCamelContext.java:868) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultCamelContext.startRouteDefinitions(DefaultCamelContext.java:758) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.doInit(AbstractCamelContext.java:2861) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.support.service.BaseService.init(BaseService.java:83) ~[camel-api-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.init(AbstractCamelContext.java:2567) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.support.service.BaseService.start(BaseService.java:111) ~[camel-api-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.start(AbstractCamelContext.java:2586) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultCamelContext.start(DefaultCamelContext.java:247) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.SpringCamelContext.start(SpringCamelContext.java:119) ~[camel-spring-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.xml.CamelContextFactoryBean.start(CamelContextFactoryBean.java:425) ~[camel-spring-xml-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.xml.CamelContextFactoryBean.onApplicationEvent(CamelContextFactoryBean.java:480) ~[camel-spring-xml-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.xml.CamelContextFactoryBean.onApplicationEvent(CamelContextFactoryBean.java:99) ~[camel-spring-xml-3.14.0.jar:3.14.0] testidsa12 | at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:938) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.FileSystemXmlApplicationContext.(FileSystemXmlApplicationContext.java:142) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.FileSystemXmlApplicationContext.(FileSystemXmlApplicationContext.java:107) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at de.fhg.aisec.ids.rm.XmlDeployWatcher.startXmlApplicationContext$lambda-0(XmlDeployWatcher.kt:51) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) ~[na:na] testidsa12 | at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1692) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183) ~[na:na] testidsa12 | Caused by: java.lang.ClassNotFoundException: org.apache.camel.http.common.UrlRewrite testidsa12 | at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581) ~[na:na] testidsa12 | at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) ~[na:na] testidsa12 | at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[na:na] testidsa12 | ... 41 common frames omitted testidsa12 |

kragall commented 2 years ago

For some unknown reason in your setup the trusted connector fails to load the clearing house routes. For troubleshooting would you please try this:

  1. Run command docker-compose down -v --remove-orphans
  2. Delete the file data/trusted-connector/routes/clearing-house-routes.xml
  3. Edit docker-compose.yml: 3a. Add the line - ./data/trusted-connector/routes/ids-multipart-echo-route.xml:/root/deploy/ids-multipart-echo-route.xml directly under the line - ./data/trusted-connector/clearing-house-processors-0.7.2.jar:/root/jars/clearing-house-processors.jar 3b. Uncomment or remove the line - ./data/trusted-connector/routes/clearing-house-routes.xml:/root/deploy/clearing-house-routes.xml
  4. Copy the file ids-multipart-echo-route.xml to this location data/trusted-connector/routes/ids-multipart-echo-route.xml
  5. Run command docker-compose up -d and wait for the containers to start
  6. Run command docker logs testidsa12 -f, wait for the trusted connector to fully start and post the logs.

Following these steps, you will deploy one of the example routes of the trusted connector. If this works and your setup deploys the routes, we can safely say that there is an error with the clearing-house-routes.xml on your machine and we will have to debug the xml file. If the example routes of the trusted connector can also not be deployed, then we need help from someone more familiar with the trusted connector.

jfernandezsqs commented 2 years ago

I have followed the provided steps and these are the Clearing House logs

sqs@sqs-VirtualBox:~/TESTBED_FINAL/CLEARINGHOUSE$ docker logs testidsa12 -f . ____ /\ / __' () _ \ \ \ \ ( ( )__ | ' | '| | ' \/ _` | \ \ \ \ \/ _)| |)| | | | | || (| | ) ) ) ) ' |__| .|| ||| |\, | / / / / =========|_|==============|__/=//// :: Spring Boot :: (v2.5.8) 2022-01-21 13:18:14.260 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Starting TrustedConnector.Companion using Java 11.0.11 on c5fbd24d151a with PID 1 (/root/jars/ids-connector-6.0.0-plain.jar started by root in /root) 2022-01-21 13:18:14.266 DEBUG 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Running with Spring Boot v2.5.8, Spring v5.3.14 2022-01-21 13:18:14.267 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : No active profile set, falling back to default profiles: default 2022-01-21 13:18:16.584 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2022-01-21 13:18:16.599 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2022-01-21 13:18:16.600 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.56] 2022-01-21 13:18:16.765 INFO 1 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2022-01-21 13:18:16.765 INFO 1 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2312 ms 2022-01-21 13:18:16.783 INFO 1 --- [ main] de.fhg.aisec.ids.webconsole.WebConsole : Registering WebConsole classes 2022-01-21 13:18:17.229 INFO 1 --- [ main] d.f.a.ids.cm.ContainerManagerService : Default container management is de.fhg.aisec.ids.cm.impl.docker.DockerCM@627acb38 2022-01-21 13:18:17.239 DEBUG 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Open Settings Database /root/etc/settings.mapdb... 2022-01-21 13:18:17.560 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 1 to version 4... 2022-01-21 13:18:17.569 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 13:18:17.571 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 2 to version 4... 2022-01-21 13:18:17.581 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 13:18:17.582 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 3 to version 4... 2022-01-21 13:18:17.592 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 13:18:17.632 INFO 1 --- [ main] d.f.a.i.d.PolicyDecisionPoint : Loading Lucon policy from deploy/allow-all-flows.pl 2022-01-21 13:18:18.828 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary 2022-01-21 13:18:18.831 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Loading theory: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Prolog representation of a data flow policy %
% Source: default % % Do not edit this file, it has been generated automatically % by XText/Xtend. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Only required for SWI-Prolog % Allow the following predicates to be scattered around the prolog file. % Otherwise Prolog will issue a warning if they are not stated in subsequent lines. %:- discontiguous service/1. %:- discontiguous has_endpoint/2. %:- discontiguous creates_label/2. %:- discontiguous removes_label/2. %:- discontiguous rule/1. %:- discontiguous rule_priority/2. %:- discontiguous receives_label/1. %:- discontiguous has_decision/2. %:- discontiguous has_target/2. %:- discontiguous has_capability/2. %:- discontiguous has_property/3. %:- discontiguous requires_prerequisites/2. %:- discontiguous has_alternativedecision/2. %:- discontiguous has_obligation/2. %%%%%%%%% Basic Blocking Rule %%%%%%%%%% rule(dropAll). rule_priority(dropAll,0). has_decision(dropAll,drop). receives_label(dropAll). has_target(dropAll,serviceAll). %%%%%%%%%% Catch All Service %%%%%%%%%%% service(serviceAll). has_endpoint(serviceAll,'.*'). %%%%%%%%%%%%%%%% Rules %%%%%%%%%%%%%%%%% % Allow everything rule(allowAll). rule_priority(allowAll, 1). has_target(allowAll, serviceAll). receives_label(allowAll). has_decision(allowAll, allow). 2022-01-21 13:18:19.529 INFO 1 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [www/index.html] 2022-01-21 13:18:19.696 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@43dddfdd to: org.apache.camel.support.SimpleTypeConverter@22c0344e 2022-01-21 13:18:19.697 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@303db609 to: org.apache.camel.support.SimpleTypeConverter@20a116a0 2022-01-21 13:18:19.698 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@a238a8e to: org.apache.camel.support.SimpleTypeConverter@5773f83d 2022-01-21 13:18:19.757 INFO 1 --- [ main] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@7fa8fff 2022-01-21 13:18:20.034 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' 2022-01-21 13:18:20.093 INFO 1 --- [ main] o.a.c.management.JmxManagementStrategy : JMX is enabled 2022-01-21 13:18:20.271 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Routes startup (total:0 started:0) 2022-01-21 13:18:20.271 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Apache Camel 3.14.0 (camel-1) started in 282ms (build:56ms init:76ms start:150ms) 2022-01-21 13:18:20.277 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Started TrustedConnector.Companion in 7.102 seconds (JVM running for 8.237) 2022-01-21 13:18:20.281 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Information model 4.1.0 loaded 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: appApi 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationAvailability 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationController 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationTaskExecutor 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: basicErrorController 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameHandlerMapping 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameViewResolver 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.cloud-org.apache.camel.spring.boot.cloud.CamelCloudConfigurationProperties 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component-org.apache.camel.spring.boot.ComponentConfigurationProperties 2022-01-21 13:18:20.283 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.bean-org.apache.camel.component.bean.springboot.BeanComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.browse-org.apache.camel.component.browse.springboot.BrowseComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.class-org.apache.camel.component.beanclass.springboot.ClassComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.controlbus-org.apache.camel.component.controlbus.springboot.ControlBusComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataformat-org.apache.camel.component.dataformat.springboot.DataFormatComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-org.apache.camel.component.dataset.springboot.DataSetComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-test-org.apache.camel.component.dataset.springboot.DataSetTestComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-org.apache.camel.component.direct.springboot.DirectComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-vm-org.apache.camel.component.directvm.springboot.DirectVmComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.file-org.apache.camel.component.file.springboot.FileComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.http-org.apache.camel.component.http.springboot.HttpComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.language-org.apache.camel.component.language.springboot.LanguageComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.log-org.apache.camel.component.log.springboot.LogComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.mock-org.apache.camel.component.mock.springboot.MockComponentConfiguration 2022-01-21 13:18:20.284 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.properties-org.apache.camel.spring.boot.properties.PropertiesComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.ref-org.apache.camel.component.ref.springboot.RefComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-api-org.apache.camel.component.rest.springboot.RestApiComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-org.apache.camel.component.rest.springboot.RestComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.saga-org.apache.camel.component.saga.springboot.SagaComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.scheduler-org.apache.camel.component.scheduler.springboot.SchedulerComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.seda-org.apache.camel.component.seda.springboot.SedaComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.stub-org.apache.camel.component.stub.springboot.StubComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.timer-org.apache.camel.component.timer.springboot.TimerComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.validator-org.apache.camel.component.validator.springboot.ValidatorComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.vm-org.apache.camel.component.vm.springboot.VmComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.xslt-org.apache.camel.component.xslt.springboot.XsltComponentConfiguration 2022-01-21 13:18:20.285 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language-org.apache.camel.spring.boot.LanguageConfigurationProperties 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.bean-org.apache.camel.language.bean.springboot.BeanLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.constant-org.apache.camel.language.constant.springboot.ConstantLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.csimple-org.apache.camel.language.csimple.springboot.CSimpleLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.exchangeproperty-org.apache.camel.language.property.springboot.ExchangePropertyLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.file-org.apache.camel.language.simple.springboot.FileLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.header-org.apache.camel.language.header.springboot.HeaderLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.ref-org.apache.camel.language.ref.springboot.RefLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.simple-org.apache.camel.language.simple.springboot.SimpleLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.tokenize-org.apache.camel.language.tokenizer.springboot.TokenizeLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xpath-org.apache.camel.language.xpath.springboot.XPathLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xtokenize-org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageConfiguration 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.rest-org.apache.camel.model.rest.springboot.RestConfigurationDefinitionProperties 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.routetemplate-org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateConfigurationProperties 2022-01-21 13:18:20.286 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.springboot-org.apache.camel.spring.boot.CamelConfigurationProperties 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.threadpool-org.apache.camel.spring.boot.threadpool.CamelThreadPoolConfigurationProperties 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelBeanPostProcessor 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelContext 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelEndpoint 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: certApi 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: characterEncodingFilter 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configApi 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanComponent 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanLanguage 2022-01-21 13:18:20.287 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBrowseComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureCSimpleLanguage 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureClassComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureConstantLanguage 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureControlBusComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataFormatComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetTestComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectVmComponent 2022-01-21 13:18:20.288 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureExchangePropertyLanguage 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileLanguage 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHeaderLanguage 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHttpComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureIdscp2 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLanguageComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLogComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureMockComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefLanguage 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestApiComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSagaComponent 2022-01-21 13:18:20.289 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSchedulerComponent 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSedaComponent 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSimpleLanguage 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureStubComponent 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTimerComponent 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTokenizeLanguage 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureValidatorComponent 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureVmComponent 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXMLTokenizeLanguage 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXPathLanguage 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXsltComponent 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectionAPI 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectorConfiguration 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: consumerTemplate 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: controller 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: conventionErrorViewResolver 2022-01-21 13:18:20.290 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultServletHandlerMapping 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultValidator 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultViewResolver 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServlet 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServletRegistration 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: error 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorAttributes 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageCustomizer 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageRegistrarBeanPostProcessor 2022-01-21 13:18:20.291 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: flashMapManager 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: fluentProducerTemplate 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: forceAutoProxyCreatorToUseClassProxying 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: formContentFilter 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerExceptionResolver 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerFunctionAdapter 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: httpRequestHandlerAdapter 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsCamelInterceptor 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsContainerManager 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsDataflowControl 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsMultipartComponent 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idscp2UsageControlComponent 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: infoModelService 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapper 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapperBuilder 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyApplicationPath 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyServletRegistration 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jettyWebServerFactoryCustomizer 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jsonComponentModule 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: lifecycleProcessor 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listBeans 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listContainers 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeCharsetMappingsCustomizer 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeResolver 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: management.endpoint.camelroutes-org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointProperties 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mappingJackson2HttpMessageConverter 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: messageConverters 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: methodValidationPostProcessor 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: metricAPI 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartConfigElement 2022-01-21 13:18:20.292 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartResolver 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcContentNegotiationManager 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcConversionService 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcHandlerMappingIntrospector 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPathMatcher 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPatternParser 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcResourceUrlProvider 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUriComponentsContributor 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUrlPathHelper 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcValidator 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcViewResolver 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.bean.springboot.BeanComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.beanclass.springboot.ClassComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.browse.springboot.BrowseComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.controlbus.springboot.ControlBusComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataformat.springboot.DataFormatComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentConverter 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentConverter 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.direct.springboot.DirectComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentConverter 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.file.springboot.FileComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentConverter 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.language.springboot.LanguageComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentConverter 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentConverter 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.ref.springboot.RefComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestApiComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestComponentAutoConfiguration 2022-01-21 13:18:20.293 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.saga.springboot.SagaComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.scheduler.springboot.SchedulerComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentConverter 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentConverter 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.timer.springboot.TimerComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentConverter 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentConverter 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentConverter 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.bean.springboot.BeanLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.constant.springboot.ConstantLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.csimple.springboot.CSimpleLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.header.springboot.HeaderLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.property.springboot.ExchangePropertyLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.ref.springboot.RefLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.FileLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.SimpleLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.tokenizer.springboot.TokenizeLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xpath.springboot.XPathLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.model.rest.springboot.RestConfigurationDefinitionAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.CamelAutoConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.TypeConversionConfiguration 2022-01-21 13:18:20.294 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRouteControllerEndpointAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceCallConfigurationAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceChooserAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceDiscoveryAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceFilterAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.properties.PropertiesComponentAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.threadpool.CamelThreadPoolAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.aop.config.internalAutoProxyCreator 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.AutoConfigurationPackages 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer$JaxbObjectMapperCustomizer 2022-01-21 13:18:20.295 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinder 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinderFactory 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.BoundConfigurationProperties 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalCommonAnnotationProcessor 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerFactory 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerProcessor 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: parameterNamesModule 2022-01-21 13:18:20.296 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: persistenceExceptionTranslationPostProcessor 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: platformTransactionManagerCustomizers 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: policyApi 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: preserveErrorControllerTargetClassPostProcessor 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: producerTemplate 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: properties 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertiesParser 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertySourcesPlaceholderConfigurer 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestContextFilter 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerAdapter 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerMapping 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceConfigCustomizer 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceHandlerMapping 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-configuration 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilder 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilderConfigurer 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeApi 2022-01-21 13:18:20.297 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeControllerEndpoint 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeManagerService 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeTemplate 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routerFunctionMapping 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollector 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollectorListener 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: scheduledBeanLazyInitializationExcludeFilter 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: server-org.springframework.boot.autoconfigure.web.ServerProperties 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-call-configuration 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-discovery 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-filter 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: servletWebServerFactoryCustomizer 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsApi 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsComponent 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showCamelInfo 2022-01-21 13:18:20.298 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showConnectorProfile 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: simpleControllerHandlerAdapter 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jersey-org.springframework.boot.autoconfigure.jersey.JerseyProperties 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties 2022-01-21 13:18:20.299 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.web-org.springframework.boot.autoconfigure.web.WebProperties 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: springTypeConverter 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: standardJacksonObjectMapperBuilderCustomizer 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: static-service-discovery 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: stringHttpMessageConverter 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskExecutorBuilder 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskSchedulerBuilder 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: themeResolver 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: threadPool 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactory 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactoryCustomizer 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatWebServerFactoryCustomizer 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: trustedConnector 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: typeConverter 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: userApi 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewControllerHandlerMapping 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewNameTranslator 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewResolver 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webConsole 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webServerFactoryCustomizerBeanPostProcessor 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: websocketServletWebServerCustomizer 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: welcomePageHandlerMapping 2022-01-21 13:18:20.300 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlDeployWatcher 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-api 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-api 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-api 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: testidsa12 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-mongo 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-mongo 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-mongo 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectorb 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectora 2022-01-21 13:18:20.585 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: omejdn 2022-01-21 13:18:20.587 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Settings or ConnectorProfile not available, or no connector entity names provided 2022-01-21 13:18:20.588 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Connector couldn't be built: Maintainer URL is required! 2022-01-21 13:18:20.590 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : No connector profile stored yet. 2022-01-21 13:18:20.593 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-bean 2022-01-21 13:18:20.595 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-class 2022-01-21 13:18:20.596 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-browse 2022-01-21 13:18:20.597 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-controlbus 2022-01-21 13:18:20.597 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataformat 2022-01-21 13:18:20.598 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset 2022-01-21 13:18:20.599 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset-test 2022-01-21 13:18:20.599 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct-vm 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-file 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-http 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-language 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-log 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-mock 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-ref 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest-api 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-saga 2022-01-21 13:18:20.600 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-scheduler 2022-01-21 13:18:20.601 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-seda 2022-01-21 13:18:20.601 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-stub 2022-01-21 13:18:20.601 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-timer 2022-01-21 13:18:20.601 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-validator 2022-01-21 13:18:20.601 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-vm 2022-01-21 13:18:20.602 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-xslt 2022-01-21 13:18:20.603 INFO 1 --- [ main] de.fhg.aisec.ids.rm.XmlDeployWatcher : XML file deploy/ids-multipart-echo-route.xml detected, creating XmlApplicationContext... 2022-01-21 13:18:21.417 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@7e4e71df to: org.apache.camel.support.SimpleTypeConverter@18833aee 2022-01-21 13:18:21.423 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@6b99f88d to: org.apache.camel.support.SimpleTypeConverter@412ef144 2022-01-21 13:18:21.423 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@4ce3b037 to: org.apache.camel.support.SimpleTypeConverter@4d36a70f 2022-01-21 13:18:21.456 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom TypeConverterRegistry: org.apache.camel.impl.converter.DefaultTypeConverter@656d7e7 2022-01-21 13:18:21.463 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@7fa8fff 2022-01-21 13:18:21.481 INFO 1 --- [onPool-worker-3] o.a.c.management.JmxManagementStrategy : JMX is enabled 2022-01-21 13:18:21.659 INFO 1 --- [onPool-worker-3] org.eclipse.jetty.util.log : Logging initialized @9619ms to org.eclipse.jetty.util.log.Slf4jLog 2022-01-21 13:18:21.707 INFO 1 --- [onPool-worker-3] org.eclipse.jetty.server.Server : jetty-9.4.44.v20210927; built: 2021-09-27T23:02:44.612Z; git: 8da83308eeca865e495e53ef315a249d63ba9332; jvm 11.0.11+9 2022-01-21 13:18:21.739 INFO 1 --- [onPool-worker-3] o.e.jetty.server.handler.ContextHandler : Started o.e.j.s.ServletContextHandler@109db45f{/,null,AVAILABLE} 2022-01-21 13:18:21.748 INFO 1 --- [onPool-worker-3] o.e.jetty.server.AbstractConnector : Started ServerConnector@11500360{HTTP/1.1, (http/1.1)}{0.0.0.0:1080} 2022-01-21 13:18:21.749 INFO 1 --- [onPool-worker-3] org.eclipse.jetty.server.Server : Started @9708ms 2022-01-21 13:18:21.750 INFO 1 --- [onPool-worker-3] o.a.c.impl.engine.AbstractCamelContext : Routes startup (total:2 started:2) 2022-01-21 13:18:21.750 INFO 1 --- [onPool-worker-3] o.a.c.impl.engine.AbstractCamelContext : Started echoRoute (direct://echo) 2022-01-21 13:18:21.750 INFO 1 --- [onPool-worker-3] o.a.c.impl.engine.AbstractCamelContext : Started route1 (rest://post:/echo) 2022-01-21 13:18:21.750 INFO 1 --- [onPool-worker-3] o.a.c.impl.engine.AbstractCamelContext : Apache Camel 3.14.0 (camel-2) started in 294ms (build:22ms init:111ms start:161ms) 2022-01-21 13:19:59.033 WARN 1 --- [nio-8080-exec-2] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for app/list/ 2022-01-21 13:19:59.033 WARN 1 --- [nio-8080-exec-3] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for routes/components 2022-01-21 13:19:59.033 WARN 1 --- [nio-8080-exec-5] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for policies/list 2022-01-21 13:19:59.033 WARN 1 --- [nio-8080-exec-4] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for app/cml_version 2022-01-21 13:19:59.104 WARN 1 --- [nio-8080-exec-6] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for metric/get 2022-01-21 13:20:05.029 WARN 1 --- [nio-8080-exec-7] de.fhg.aisec.ids.webconsole.api.UserApi : WARNING: User store is empty! This is insecure! Please create an admin user via the REST API! 2022-01-21 13:20:05.290 DEBUG 1 --- [nio-8080-exec-1] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary

At the Message Routes I have the following: image

kragall commented 2 years ago

So the example routes from the TC were successfully deployed. So the most likely cause of your problem is that there is a problem with the clearing-house-routes.xml.

Would you please do the following:

  1. Run command docker-compose down -v --remove-orphans
  2. Edit docker-compose.yml: 2a. Uncomment the line - ./data/trusted-connector/routes/ids-multipart-echo-route.xml:/root/deploy/ids-multipart-echo-route.xml 2b. Add the line - ./data/trusted-connector/routes/clearing-house-routes.xml:/root/deploy/clearing-house-routes.xml directly under the line - ./data/trusted-connector/clearing-house-processors-0.7.2.jar:/root/jars/clearing-house-processors.jar
  3. Copy the file clearing-house-routes.xml to this location data/trusted-connector/routes/clearing-house-routes.xml. Please do not use any local copy of this file you might already have.
  4. Run command docker-compose up -d and wait for the containers to start
  5. Run command docker logs testidsa12 -f, wait for the trusted connector to fully start and post the logs.

There is a chance that the routes will load now. If they don't the only way to find the problem is to start with a "blank" route file and add little by little parts of the routes till we find the line that seems to break the loading process.

jfernandezsqs commented 2 years ago

I have tried it but it is not working. These are the logs obtained

sqs@sqs-VirtualBox:~/TESTBED_FINAL/CLEARINGHOUSE$ docker logs testidsa12 -f . ____ /\ / __' () _ \ \ \ \ ( ( )__ | ' | '| | ' \/ _` | \ \ \ \ \/ _)| |)| | | | | || (| | ) ) ) ) ' |__| ._|| ||| |_, | / / / / =========|_|==============|__/=//// :: Spring Boot :: (v2.5.8) 2022-01-21 14:24:47.083 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Starting TrustedConnector.Companion using Java 11.0.11 on b977c4b4d074 with PID 1 (/root/jars/ids-connector-6.0.0-plain.jar started by root in /root) 2022-01-21 14:24:47.092 DEBUG 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Running with Spring Boot v2.5.8, Spring v5.3.14 2022-01-21 14:24:47.093 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : No active profile set, falling back to default profiles: default 2022-01-21 14:24:48.961 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2022-01-21 14:24:48.970 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2022-01-21 14:24:48.971 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.56] 2022-01-21 14:24:49.113 INFO 1 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2022-01-21 14:24:49.114 INFO 1 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1876 ms 2022-01-21 14:24:49.136 INFO 1 --- [ main] de.fhg.aisec.ids.webconsole.WebConsole : Registering WebConsole classes 2022-01-21 14:24:49.480 INFO 1 --- [ main] d.f.a.ids.cm.ContainerManagerService : Default container management is de.fhg.aisec.ids.cm.impl.docker.DockerCM@1308ef19 2022-01-21 14:24:49.491 DEBUG 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Open Settings Database /root/etc/settings.mapdb... 2022-01-21 14:24:49.843 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 1 to version 4... 2022-01-21 14:24:49.852 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 14:24:49.852 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 2 to version 4... 2022-01-21 14:24:49.857 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 14:24:49.857 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 3 to version 4... 2022-01-21 14:24:49.864 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful 2022-01-21 14:24:49.907 INFO 1 --- [ main] d.f.a.i.d.PolicyDecisionPoint : Loading Lucon policy from deploy/allow-all-flows.pl 2022-01-21 14:24:50.499 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary 2022-01-21 14:24:50.504 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Loading theory: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Prolog representation of a data flow policy %
% Source: default % % Do not edit this file, it has been generated automatically % by XText/Xtend. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Only required for SWI-Prolog % Allow the following predicates to be scattered around the prolog file. % Otherwise Prolog will issue a warning if they are not stated in subsequent lines. %:- discontiguous service/1. %:- discontiguous has_endpoint/2. %:- discontiguous creates_label/2. %:- discontiguous removes_label/2. %:- discontiguous rule/1. %:- discontiguous rule_priority/2. %:- discontiguous receives_label/1. %:- discontiguous has_decision/2. %:- discontiguous has_target/2. %:- discontiguous has_capability/2. %:- discontiguous has_property/3. %:- discontiguous requires_prerequisites/2. %:- discontiguous has_alternativedecision/2. %:- discontiguous has_obligation/2. %%%%%%%%% Basic Blocking Rule %%%%%%%%%% rule(dropAll). rule_priority(dropAll,0). has_decision(dropAll,drop). receives_label(dropAll). has_target(dropAll,serviceAll). %%%%%%%%%% Catch All Service %%%%%%%%%%% service(serviceAll). has_endpoint(serviceAll,'.*'). %%%%%%%%%%%%%%%% Rules %%%%%%%%%%%%%%%%% % Allow everything rule(allowAll). rule_priority(allowAll, 1). has_target(allowAll, serviceAll). receives_label(allowAll). has_decision(allowAll, allow). 2022-01-21 14:24:51.104 INFO 1 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [www/index.html] 2022-01-21 14:24:51.250 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@152dbf8e to: org.apache.camel.support.SimpleTypeConverter@34ea86ff 2022-01-21 14:24:51.250 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@4946dfde to: org.apache.camel.support.SimpleTypeConverter@77972964 2022-01-21 14:24:51.250 WARN 1 --- [ main] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@7aa1fb0e to: org.apache.camel.support.SimpleTypeConverter@5e663ab 2022-01-21 14:24:51.299 INFO 1 --- [ main] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@1ce8084a 2022-01-21 14:24:51.633 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' 2022-01-21 14:24:51.668 INFO 1 --- [ main] o.a.c.management.JmxManagementStrategy : JMX is enabled 2022-01-21 14:24:51.788 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Routes startup (total:0 started:0) 2022-01-21 14:24:51.788 INFO 1 --- [ main] o.a.c.impl.engine.AbstractCamelContext : Apache Camel 3.14.0 (camel-1) started in 193ms (build:47ms init:49ms start:97ms) 2022-01-21 14:24:51.795 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Started TrustedConnector.Companion in 5.608 seconds (JVM running for 6.926) 2022-01-21 14:24:51.799 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Information model 4.1.0 loaded 2022-01-21 14:24:51.800 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: appApi 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationAvailability 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationController 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationTaskExecutor 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: basicErrorController 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameHandlerMapping 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameViewResolver 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.cloud-org.apache.camel.spring.boot.cloud.CamelCloudConfigurationProperties 2022-01-21 14:24:51.801 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component-org.apache.camel.spring.boot.ComponentConfigurationProperties 2022-01-21 14:24:51.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.bean-org.apache.camel.component.bean.springboot.BeanComponentConfiguration 2022-01-21 14:24:51.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.browse-org.apache.camel.component.browse.springboot.BrowseComponentConfiguration 2022-01-21 14:24:51.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.class-org.apache.camel.component.beanclass.springboot.ClassComponentConfiguration 2022-01-21 14:24:51.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.controlbus-org.apache.camel.component.controlbus.springboot.ControlBusComponentConfiguration 2022-01-21 14:24:51.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataformat-org.apache.camel.component.dataformat.springboot.DataFormatComponentConfiguration 2022-01-21 14:24:51.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-org.apache.camel.component.dataset.springboot.DataSetComponentConfiguration 2022-01-21 14:24:51.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.dataset-test-org.apache.camel.component.dataset.springboot.DataSetTestComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-org.apache.camel.component.direct.springboot.DirectComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.direct-vm-org.apache.camel.component.directvm.springboot.DirectVmComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.file-org.apache.camel.component.file.springboot.FileComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.http-org.apache.camel.component.http.springboot.HttpComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.language-org.apache.camel.component.language.springboot.LanguageComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.log-org.apache.camel.component.log.springboot.LogComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.mock-org.apache.camel.component.mock.springboot.MockComponentConfiguration 2022-01-21 14:24:51.803 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.properties-org.apache.camel.spring.boot.properties.PropertiesComponentConfiguration 2022-01-21 14:24:51.804 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.ref-org.apache.camel.component.ref.springboot.RefComponentConfiguration 2022-01-21 14:24:51.804 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-api-org.apache.camel.component.rest.springboot.RestApiComponentConfiguration 2022-01-21 14:24:51.804 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-org.apache.camel.component.rest.springboot.RestComponentConfiguration 2022-01-21 14:24:51.804 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.saga-org.apache.camel.component.saga.springboot.SagaComponentConfiguration 2022-01-21 14:24:51.804 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.scheduler-org.apache.camel.component.scheduler.springboot.SchedulerComponentConfiguration 2022-01-21 14:24:51.804 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.seda-org.apache.camel.component.seda.springboot.SedaComponentConfiguration 2022-01-21 14:24:51.804 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.stub-org.apache.camel.component.stub.springboot.StubComponentConfiguration 2022-01-21 14:24:51.805 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.timer-org.apache.camel.component.timer.springboot.TimerComponentConfiguration 2022-01-21 14:24:51.805 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.validator-org.apache.camel.component.validator.springboot.ValidatorComponentConfiguration 2022-01-21 14:24:51.805 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.vm-org.apache.camel.component.vm.springboot.VmComponentConfiguration 2022-01-21 14:24:51.805 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.xslt-org.apache.camel.component.xslt.springboot.XsltComponentConfiguration 2022-01-21 14:24:51.805 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language-org.apache.camel.spring.boot.LanguageConfigurationProperties 2022-01-21 14:24:51.805 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.bean-org.apache.camel.language.bean.springboot.BeanLanguageConfiguration 2022-01-21 14:24:51.805 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.constant-org.apache.camel.language.constant.springboot.ConstantLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.csimple-org.apache.camel.language.csimple.springboot.CSimpleLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.exchangeproperty-org.apache.camel.language.property.springboot.ExchangePropertyLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.file-org.apache.camel.language.simple.springboot.FileLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.header-org.apache.camel.language.header.springboot.HeaderLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.ref-org.apache.camel.language.ref.springboot.RefLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.simple-org.apache.camel.language.simple.springboot.SimpleLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.tokenize-org.apache.camel.language.tokenizer.springboot.TokenizeLanguageConfiguration 2022-01-21 14:24:51.806 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xpath-org.apache.camel.language.xpath.springboot.XPathLanguageConfiguration 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.xtokenize-org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageConfiguration 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.rest-org.apache.camel.model.rest.springboot.RestConfigurationDefinitionProperties 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.routetemplate-org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateConfigurationProperties 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.springboot-org.apache.camel.spring.boot.CamelConfigurationProperties 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.threadpool-org.apache.camel.spring.boot.threadpool.CamelThreadPoolConfigurationProperties 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelBeanPostProcessor 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelContext 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelEndpoint 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: certApi 2022-01-21 14:24:51.807 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: characterEncodingFilter 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configApi 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanComponent 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBeanLanguage 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureBrowseComponent 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureCSimpleLanguage 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureClassComponent 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureConstantLanguage 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureControlBusComponent 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataFormatComponent 2022-01-21 14:24:51.808 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDataSetTestComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureDirectVmComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureExchangePropertyLanguage 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureFileLanguage 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHeaderLanguage 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureHttpComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureIdscp2 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLanguageComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureLogComponent 2022-01-21 14:24:51.809 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureMockComponent 2022-01-21 14:24:51.810 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefComponent 2022-01-21 14:24:51.810 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRefLanguage 2022-01-21 14:24:51.810 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestApiComponent 2022-01-21 14:24:51.810 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureRestComponent 2022-01-21 14:24:51.810 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSagaComponent 2022-01-21 14:24:51.810 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSchedulerComponent 2022-01-21 14:24:51.810 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSedaComponent 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureSimpleLanguage 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureStubComponent 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTimerComponent 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureTokenizeLanguage 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureValidatorComponent 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureVmComponent 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXMLTokenizeLanguage 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXPathLanguage 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureXsltComponent 2022-01-21 14:24:51.811 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectionAPI 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectorConfiguration 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: consumerTemplate 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: controller 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: conventionErrorViewResolver 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultServletHandlerMapping 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultValidator 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultViewResolver 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServlet 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServletRegistration 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: error 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorAttributes 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageCustomizer 2022-01-21 14:24:51.812 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageRegistrarBeanPostProcessor 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: flashMapManager 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: fluentProducerTemplate 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: forceAutoProxyCreatorToUseClassProxying 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: formContentFilter 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerExceptionResolver 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerFunctionAdapter 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: httpRequestHandlerAdapter 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsCamelInterceptor 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsContainerManager 2022-01-21 14:24:51.813 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsDataflowControl 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsMultipartComponent 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idscp2UsageControlComponent 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: infoModelService 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapper 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapperBuilder 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyApplicationPath 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyServletRegistration 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jettyWebServerFactoryCustomizer 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jsonComponentModule 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: lifecycleProcessor 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listBeans 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listContainers 2022-01-21 14:24:51.814 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeCharsetMappingsCustomizer 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeResolver 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: management.endpoint.camelroutes-org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointProperties 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mappingJackson2HttpMessageConverter 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: messageConverters 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: methodValidationPostProcessor 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: metricAPI 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartConfigElement 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartResolver 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcContentNegotiationManager 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcConversionService 2022-01-21 14:24:51.815 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcHandlerMappingIntrospector 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPathMatcher 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPatternParser 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcResourceUrlProvider 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUriComponentsContributor 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUrlPathHelper 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcValidator 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcViewResolver 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.bean.springboot.BeanComponentAutoConfiguration 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.beanclass.springboot.ClassComponentAutoConfiguration 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.browse.springboot.BrowseComponentAutoConfiguration 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.controlbus.springboot.ControlBusComponentAutoConfiguration 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataformat.springboot.DataFormatComponentAutoConfiguration 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentAutoConfiguration 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetComponentConverter 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentAutoConfiguration 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.dataset.springboot.DataSetTestComponentConverter 2022-01-21 14:24:51.816 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.direct.springboot.DirectComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.directvm.springboot.DirectVmComponentConverter 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.file.springboot.FileComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentConverter 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.language.springboot.LanguageComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.log.springboot.LogComponentConverter 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.mock.springboot.MockComponentConverter 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.ref.springboot.RefComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestApiComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.saga.springboot.SagaComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.scheduler.springboot.SchedulerComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentAutoConfiguration 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.seda.springboot.SedaComponentConverter 2022-01-21 14:24:51.817 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.stub.springboot.StubComponentConverter 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.timer.springboot.TimerComponentAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.validator.springboot.ValidatorComponentConverter 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.vm.springboot.VmComponentConverter 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.xslt.springboot.XsltComponentConverter 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.bean.springboot.BeanLanguageAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.constant.springboot.ConstantLanguageAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.csimple.springboot.CSimpleLanguageAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.header.springboot.HeaderLanguageAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.property.springboot.ExchangePropertyLanguageAutoConfiguration 2022-01-21 14:24:51.818 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.ref.springboot.RefLanguageAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.FileLanguageAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.SimpleLanguageAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.tokenizer.springboot.TokenizeLanguageAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xpath.springboot.XPathLanguageAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.xtokenizer.springboot.XMLTokenizeLanguageAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.model.rest.springboot.RestConfigurationDefinitionAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.CamelAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.TypeConversionConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRouteControllerEndpointAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceCallConfigurationAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceChooserAutoConfiguration 2022-01-21 14:24:51.819 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceDiscoveryAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceFilterAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.properties.PropertiesComponentAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.routetemplate.CamelRouteTemplateAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.threadpool.CamelThreadPoolAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.aop.config.internalAutoProxyCreator 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.AutoConfigurationPackages 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration 2022-01-21 14:24:51.820 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer 2022-01-21 14:24:51.821 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer$JaxbObjectMapperCustomizer 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration 2022-01-21 14:24:51.822 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinder 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinderFactory 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.BoundConfigurationProperties 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter 2022-01-21 14:24:51.823 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalCommonAnnotationProcessor 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerFactory 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerProcessor 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: parameterNamesModule 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: persistenceExceptionTranslationPostProcessor 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: platformTransactionManagerCustomizers 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: policyApi 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: preserveErrorControllerTargetClassPostProcessor 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: producerTemplate 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: properties 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertiesParser 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertySourcesPlaceholderConfigurer 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestContextFilter 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerAdapter 2022-01-21 14:24:51.824 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerMapping 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceConfigCustomizer 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceHandlerMapping 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-configuration 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilder 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilderConfigurer 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeApi 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeControllerEndpoint 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeManagerService 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeTemplate 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routerFunctionMapping 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollector 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollectorListener 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: scheduledBeanLazyInitializationExcludeFilter 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: server-org.springframework.boot.autoconfigure.web.ServerProperties 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-call-configuration 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-discovery 2022-01-21 14:24:51.825 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-filter 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: servletWebServerFactoryCustomizer 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsApi 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsComponent 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showCamelInfo 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showConnectorProfile 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: simpleControllerHandlerAdapter 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jersey-org.springframework.boot.autoconfigure.jersey.JerseyProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.web-org.springframework.boot.autoconfigure.web.WebProperties 2022-01-21 14:24:51.826 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: springTypeConverter 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: standardJacksonObjectMapperBuilderCustomizer 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: static-service-discovery 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: stringHttpMessageConverter 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskExecutorBuilder 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskSchedulerBuilder 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: themeResolver 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: threadPool 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactory 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactoryCustomizer 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatWebServerFactoryCustomizer 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: trustedConnector 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: typeConverter 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: userApi 2022-01-21 14:24:51.827 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewControllerHandlerMapping 2022-01-21 14:24:51.828 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewNameTranslator 2022-01-21 14:24:51.828 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewResolver 2022-01-21 14:24:51.828 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webConsole 2022-01-21 14:24:51.828 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webServerFactoryCustomizerBeanPostProcessor 2022-01-21 14:24:51.828 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: websocketServletWebServerCustomizer 2022-01-21 14:24:51.828 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: welcomePageHandlerMapping 2022-01-21 14:24:51.828 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlDeployWatcher 2022-01-21 14:24:52.459 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-api 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-api 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-api 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-mongo 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: testidsa12 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-mongo 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-mongo 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectorb 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: connectora 2022-01-21 14:24:52.460 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: omejdn 2022-01-21 14:24:52.463 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Settings or ConnectorProfile not available, or no connector entity names provided 2022-01-21 14:24:52.463 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Connector couldn't be built: Maintainer URL is required! 2022-01-21 14:24:52.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : No connector profile stored yet. 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-bean 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-class 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-browse 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-controlbus 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataformat 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-dataset-test 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-direct-vm 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-file 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-http 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-language 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-log 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-mock 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-ref 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest-api 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-saga 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-scheduler 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-seda 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-stub 2022-01-21 14:24:52.466 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-timer 2022-01-21 14:24:52.467 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-validator 2022-01-21 14:24:52.467 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-vm 2022-01-21 14:24:52.467 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-xslt 2022-01-21 14:24:52.469 INFO 1 --- [ main] de.fhg.aisec.ids.rm.XmlDeployWatcher : XML file deploy/clearing-house-routes.xml detected, creating XmlApplicationContext... 2022-01-21 14:24:53.118 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@68f36cd4 to: org.apache.camel.support.SimpleTypeConverter@238c65a7 2022-01-21 14:24:53.123 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@3b5b878e to: org.apache.camel.support.SimpleTypeConverter@23a9fbe8 2022-01-21 14:24:53.123 WARN 1 --- [onPool-worker-3] o.a.c.i.c.CoreTypeConverterRegistry : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@50cfa685 to: org.apache.camel.support.SimpleTypeConverter@102e4066 2022-01-21 14:24:53.150 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom TypeConverterRegistry: org.apache.camel.impl.converter.DefaultTypeConverter@7ea59627 2022-01-21 14:24:53.155 INFO 1 --- [onPool-worker-3] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.dataflowcontrol.CamelInterceptor@1ce8084a 2022-01-21 14:24:53.173 INFO 1 --- [onPool-worker-3] o.a.c.management.JmxManagementStrategy : JMX is enabled 2022-01-21 14:25:44.306 INFO 1 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' 2022-01-21 14:25:44.307 INFO 1 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' 2022-01-21 14:25:44.309 INFO 1 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms 2022-01-21 14:25:46.533 WARN 1 --- [nio-8080-exec-5] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for app/list/ 2022-01-21 14:25:46.533 WARN 1 --- [nio-8080-exec-6] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for routes/components 2022-01-21 14:25:46.536 WARN 1 --- [io-8080-exec-10] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for metric/get 2022-01-21 14:25:46.537 WARN 1 --- [nio-8080-exec-7] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for app/cml_version 2022-01-21 14:25:46.538 WARN 1 --- [nio-8080-exec-8] d.f.a.i.webconsole.api.JWTRestAPIFilter : Invalid JWT token in request for policies/list 2022-01-21 14:25:56.064 WARN 1 --- [nio-8080-exec-1] de.fhg.aisec.ids.webconsole.api.UserApi : WARNING: User store is empty! This is insecure! Please create an admin user via the REST API! 2022-01-21 14:25:56.402 DEBUG 1 --- [nio-8080-exec-9] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary 2022-01-21 14:25:59.897 WARN 1 --- [io-8080-exec-10] de.fhg.aisec.ids.rm.RouteManagerService : Cannot retrieve the list of Camel contexts. java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: org/apache/camel/http/common/UrlRewrite at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395) ~[na:na] at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999) ~[na:na] at de.fhg.aisec.ids.rm.XmlDeployWatcher$Companion.getBeansOfType(XmlDeployWatcher.kt:160) ~[ids-route-manager-6.0.0.jar:na] at de.fhg.aisec.ids.rm.RouteManagerService.getCamelContexts(RouteManagerService.kt:174) ~[ids-route-manager-6.0.0.jar:na] at de.fhg.aisec.ids.rm.RouteManagerService.getRoutes(RouteManagerService.kt:57) ~[ids-route-manager-6.0.0.jar:na] at de.fhg.aisec.ids.webconsole.api.RouteApi.list(RouteApi.kt:89) ~[ids-webconsole-6.0.0.jar:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na] at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na] at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:475) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:397) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:81) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:255) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) ~[jersey-common-2.33.jar:na] at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) ~[jersey-common-2.33.jar:na] at org.glassfish.jersey.internal.Errors.process(Errors.java:292) ~[jersey-common-2.33.jar:na] at org.glassfish.jersey.internal.Errors.process(Errors.java:274) ~[jersey-common-2.33.jar:na] at org.glassfish.jersey.internal.Errors.process(Errors.java:244) ~[jersey-common-2.33.jar:na] at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) ~[jersey-common-2.33.jar:na] at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:234) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) ~[jersey-server-2.33.jar:na] at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) ~[jersey-container-servlet-core-2.33.jar:na] at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) ~[jersey-container-servlet-core-2.33.jar:na] at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) ~[jersey-container-servlet-core-2.33.jar:na] at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) ~[jersey-container-servlet-core-2.33.jar:na] at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) ~[jersey-container-servlet-core-2.33.jar:na] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.14.jar:5.3.14] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.14.jar:5.3.14] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.14.jar:5.3.14] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:895) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1732) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.56.jar:9.0.56] at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na] Caused by: java.lang.NoClassDefFoundError: org/apache/camel/http/common/UrlRewrite at org.apache.camel.component.http4.HttpComponent.createEndpoint(HttpComponent.java:237) ~[camel-http4-3.0.0-M4.jar:3.0.0-M4] at org.apache.camel.support.DefaultComponent.createEndpoint(DefaultComponent.java:171) ~[camel-support-3.14.0.jar:3.14.0] at org.apache.camel.impl.engine.AbstractCamelContext.doGetEndpoint(AbstractCamelContext.java:934) ~[camel-base-engine-3.14.0.jar:3.14.0] at org.apache.camel.impl.engine.AbstractCamelContext.getEndpoint(AbstractCamelContext.java:850) ~[camel-base-engine-3.14.0.jar:3.14.0] at org.apache.camel.support.CamelContextHelper.resolveEndpoint(CamelContextHelper.java:123) ~[camel-support-3.14.0.jar:3.14.0] at org.apache.camel.reifier.SendReifier.resolveEndpoint(SendReifier.java:43) ~[camel-core-reifier-3.14.0.jar:3.14.0] at org.apache.camel.reifier.SendReifier.createProcessor(SendReifier.java:36) ~[camel-core-reifier-3.14.0.jar:3.14.0] at org.apache.camel.reifier.ProcessorReifier.makeProcessor(ProcessorReifier.java:838) ~[camel-core-reifier-3.14.0.jar:3.14.0] at org.apache.camel.reifier.ProcessorReifier.addRoutes(ProcessorReifier.java:579) ~[camel-core-reifier-3.14.0.jar:3.14.0] at org.apache.camel.reifier.RouteReifier.doCreateRoute(RouteReifier.java:236) ~[camel-core-reifier-3.14.0.jar:3.14.0] at org.apache.camel.reifier.RouteReifier.createRoute(RouteReifier.java:74) ~[camel-core-reifier-3.14.0.jar:3.14.0] at org.apache.camel.impl.DefaultModelReifierFactory.createRoute(DefaultModelReifierFactory.java:49) ~[camel-core-engine-3.14.0.jar:3.14.0] at org.apache.camel.impl.DefaultCamelContext.startRouteDefinitions(DefaultCamelContext.java:868) ~[camel-core-engine-3.14.0.jar:3.14.0] at org.apache.camel.impl.DefaultCamelContext.startRouteDefinitions(DefaultCamelContext.java:758) ~[camel-core-engine-3.14.0.jar:3.14.0] at org.apache.camel.impl.engine.AbstractCamelContext.doInit(AbstractCamelContext.java:2861) ~[camel-base-engine-3.14.0.jar:3.14.0] at org.apache.camel.support.service.BaseService.init(BaseService.java:83) ~[camel-api-3.14.0.jar:3.14.0] at org.apache.camel.impl.engine.AbstractCamelContext.init(AbstractCamelContext.java:2567) ~[camel-base-engine-3.14.0.jar:3.14.0] at org.apache.camel.support.service.BaseService.start(BaseService.java:111) ~[camel-api-3.14.0.jar:3.14.0] at org.apache.camel.impl.engine.AbstractCamelContext.start(AbstractCamelContext.java:2586) ~[camel-base-engine-3.14.0.jar:3.14.0] at org.apache.camel.impl.DefaultCamelContext.start(DefaultCamelContext.java:247) ~[camel-core-engine-3.14.0.jar:3.14.0] at org.apache.camel.spring.SpringCamelContext.start(SpringCamelContext.java:119) ~[camel-spring-3.14.0.jar:3.14.0] at org.apache.camel.spring.xml.CamelContextFactoryBean.start(CamelContextFactoryBean.java:425) ~[camel-spring-xml-3.14.0.jar:3.14.0] at org.apache.camel.spring.xml.CamelContextFactoryBean.onApplicationEvent(CamelContextFactoryBean.java:480) ~[camel-spring-xml-3.14.0.jar:3.14.0] at org.apache.camel.spring.xml.CamelContextFactoryBean.onApplicationEvent(CamelContextFactoryBean.java:99) ~[camel-spring-xml-3.14.0.jar:3.14.0] at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:938) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.support.FileSystemXmlApplicationContext.(FileSystemXmlApplicationContext.java:142) ~[spring-context-5.3.14.jar:5.3.14] at org.springframework.context.support.FileSystemXmlApplicationContext.(FileSystemXmlApplicationContext.java:107) ~[spring-context-5.3.14.jar:5.3.14] at de.fhg.aisec.ids.rm.XmlDeployWatcher.startXmlApplicationContext$lambda-0(XmlDeployWatcher.kt:51) ~[ids-route-manager-6.0.0.jar:na] at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) ~[na:na] at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1692) ~[na:na] at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290) ~[na:na] at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020) ~[na:na] at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656) ~[na:na] at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594) ~[na:na] at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183) ~[na:na] Caused by: java.lang.ClassNotFoundException: org.apache.camel.http.common.UrlRewrite at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581) ~[na:na] at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) ~[na:na] at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[na:na] ... 41 common frames omitted

I will try with a "blank" route file and add step by step the routes.

jfernandezsqs commented 2 years ago

I have tried one by one: It is reaching the clearing house logs and the trusted connector Message Routes when I have only the following route in the clearing-house-routes.xml image image

When I introduce any of the following ones it fails and does not show the Message Routes at the Trusted connector image

kragall commented 2 years ago

I still don't understand why this is working on my machine but not on yours, but at least we're getting closer to the problem.

Could you try to add one of the routes only with the fromchild and add the other children step-by-step if that works? So e.g. you could start with

<route id="CH_ROUTE_CREATE">
     <from uri="direct:createPid"/>
</route>

and then add <process ...../>

jfernandezsqs commented 2 years ago

I have tried it, it fails when adding the following line "to uri="http://clearing-house-api:8000/?bridgeEndpoint=true&amp;throwExceptionOnFailure=false" /" image

These are the logs obtained from the CH when accesing the Message Routes of the Trusted Connector

testidsa12 | 2022-01-24 10:18:15.585 WARN 1 --- [io-8080-exec-10] de.fhg.aisec.ids.webconsole.api.UserApi : WARNING: User store is empty! This is insecure! Please create an admin user via the REST API! testidsa12 | 2022-01-24 10:18:15.960 DEBUG 1 --- [nio-8080-exec-5] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary testidsa12 | 2022-01-24 10:18:25.886 WARN 1 --- [nio-8080-exec-6] de.fhg.aisec.ids.rm.RouteManagerService : Cannot retrieve the list of Camel contexts. testidsa12 | testidsa12 | java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: org/apache/camel/http/common/UrlRewrite testidsa12 | at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395) ~[na:na] testidsa12 | at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999) ~[na:na] testidsa12 | at de.fhg.aisec.ids.rm.XmlDeployWatcher$Companion.getBeansOfType(XmlDeployWatcher.kt:160) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at de.fhg.aisec.ids.rm.RouteManagerService.getCamelContexts(RouteManagerService.kt:174) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at de.fhg.aisec.ids.rm.RouteManagerService.getRoutes(RouteManagerService.kt:57) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at de.fhg.aisec.ids.webconsole.api.RouteApi.list(RouteApi.kt:89) ~[ids-webconsole-6.0.0.jar:na] testidsa12 | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] testidsa12 | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na] testidsa12 | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] testidsa12 | at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na] testidsa12 | at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:475) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:397) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:81) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:255) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors.process(Errors.java:292) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors.process(Errors.java:274) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.internal.Errors.process(Errors.java:244) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) ~[jersey-common-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:234) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) ~[jersey-server-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) ~[jersey-container-servlet-core-2.33.jar:na] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.14.jar:5.3.14] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:895) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1732) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.56.jar:9.0.56] testidsa12 | at java.base/java.lang.Thread.run(Thread.java:829) ~[na:na] testidsa12 | Caused by: java.lang.NoClassDefFoundError: org/apache/camel/http/common/UrlRewrite testidsa12 | at org.apache.camel.component.http4.HttpComponent.createEndpoint(HttpComponent.java:237) ~[camel-http4-3.0.0-M4.jar:3.0.0-M4] testidsa12 | at org.apache.camel.support.DefaultComponent.createEndpoint(DefaultComponent.java:171) ~[camel-support-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.doGetEndpoint(AbstractCamelContext.java:934) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.getEndpoint(AbstractCamelContext.java:850) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.support.CamelContextHelper.resolveEndpoint(CamelContextHelper.java:123) ~[camel-support-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.SendReifier.resolveEndpoint(SendReifier.java:43) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.SendReifier.createProcessor(SendReifier.java:36) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.ProcessorReifier.makeProcessor(ProcessorReifier.java:838) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.ProcessorReifier.addRoutes(ProcessorReifier.java:579) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.RouteReifier.doCreateRoute(RouteReifier.java:236) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.reifier.RouteReifier.createRoute(RouteReifier.java:74) ~[camel-core-reifier-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultModelReifierFactory.createRoute(DefaultModelReifierFactory.java:49) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultCamelContext.startRouteDefinitions(DefaultCamelContext.java:868) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultCamelContext.startRouteDefinitions(DefaultCamelContext.java:758) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.doInit(AbstractCamelContext.java:2861) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.support.service.BaseService.init(BaseService.java:83) ~[camel-api-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.init(AbstractCamelContext.java:2567) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.support.service.BaseService.start(BaseService.java:111) ~[camel-api-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.engine.AbstractCamelContext.start(AbstractCamelContext.java:2586) ~[camel-base-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.impl.DefaultCamelContext.start(DefaultCamelContext.java:247) ~[camel-core-engine-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.SpringCamelContext.start(SpringCamelContext.java:119) ~[camel-spring-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.xml.CamelContextFactoryBean.start(CamelContextFactoryBean.java:425) ~[camel-spring-xml-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.xml.CamelContextFactoryBean.onApplicationEvent(CamelContextFactoryBean.java:480) ~[camel-spring-xml-3.14.0.jar:3.14.0] testidsa12 | at org.apache.camel.spring.xml.CamelContextFactoryBean.onApplicationEvent(CamelContextFactoryBean.java:99) ~[camel-spring-xml-3.14.0.jar:3.14.0] testidsa12 | at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:176) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:169) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:143) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:421) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:378) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:938) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:586) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.FileSystemXmlApplicationContext.(FileSystemXmlApplicationContext.java:142) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at org.springframework.context.support.FileSystemXmlApplicationContext.(FileSystemXmlApplicationContext.java:107) ~[spring-context-5.3.14.jar:5.3.14] testidsa12 | at de.fhg.aisec.ids.rm.XmlDeployWatcher.startXmlApplicationContext$lambda-0(XmlDeployWatcher.kt:51) ~[ids-route-manager-6.0.0.jar:na] testidsa12 | at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) ~[na:na] testidsa12 | at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1692) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594) ~[na:na] testidsa12 | at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183) ~[na:na] testidsa12 | Caused by: java.lang.ClassNotFoundException: org.apache.camel.http.common.UrlRewrite testidsa12 | at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581) ~[na:na] testidsa12 | at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) ~[na:na] testidsa12 | at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[na:na] testidsa12 | ... 41 common frames omitted testidsa12 |

jfernandezsqs commented 2 years ago

I do not know the exact reason why it is giving these type of errors. In my environment for trusted connector image 5.0.2 it was reaching the CH logs and it gave error http response 404 of not validating the DAPS correctly. But now, with trusted connector image 6.0.0 it is not even reaching the CH logs. Would it be possible to organize a meeting to try to solve this problem?

kragall commented 2 years ago

Error due to old camel component while the rest of camel was upgraded in the new trusted connector release. Fixed with new release of trusted connector