This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a change to branch 2.13.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from 80aaea952d Google-bigquery test sqlCrudOperations fails with real
account on branch 2.13.x #4304
new 7be866099c Add CXF WS-SecurityPolicy test
new 6f9e37c68d Show a workaround for #4291 SoapFault: BSP:R3227: A
SECURITY_HEADER MUST NOT contain more than one TIMESTAMP
new f61cedbfba Add WS-Trust test for CXF SOAP
new 13309c1e40 WS-Trust workaround for #4291 SoapFault: BSP:R3227: A
SECURITY_HEADER MUST NOT contain more than one TIMESTAMP
new 00be7e87f2 Upgrade to Quarkiverse CXF 1.5.7
new ae28a80c82 Reformat poms by running mvn process-resources -Pformat -N
new cb21e56678 Add quarkus-pooled-jms-deployment to camel-quarkus-bom
new 1db470c2a8 Test Java first CXF server endpoint with multiple SEI
methods #4306
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../cxf-soap/cxf-soap-mtom-awt/pom.xml | 2 +-
.../cxf-soap/cxf-soap-mtom/pom.xml | 2 +-
.../cxf/soap/server/it}/CodeFirstService.java | 15 +-
.../cxf/soap/server/it/CxfSoapRoutes.java | 13 +-
.../cxf/soap/server/it/CxfSoapServiceTest.java | 43 +-
.../cxf-soap-ws-security-server/README.adoc | 19 +
.../cxf-soap/cxf-soap-ws-security-server/pom.xml | 246 +++++++++++
.../it/WsSecurityPolicyServerRoutesCxfWay.java} | 28 +-
.../it/WssSecurityPolicyHelloServiceCxfWay.java} | 18 +-
.../WssSecurityPolicyHelloServiceCxfWayImpl.java | 44 ++
.../server/it/PasswordCallbackHandler.java | 55 +++
.../server/it/WsSecurityPolicyServerRoutes.java | 54 +++
.../server/it/WssSecurityPolicyHelloService.java} | 18 +-
.../it/WssSecurityPolicyHelloServiceImpl.java | 39 ++
.../{application.properties => alice.properties} | 7 +-
.../src/main/resources/application.properties | 4 +
.../{application.properties => bob.properties} | 7 +-
.../src/main/resources/encrypt-sign-policy.xml | 75 ++++
.../it/CxfWssSecurityPolicyServerCxfWayIT.java} | 19 +-
.../it/CxfWssSecurityPolicyServerCxfWayTest.java | 215 ++++++++++
.../server/it/CxfWssSecurityPolicyServerIT.java} | 19 +-
.../server/it/CxfWssSecurityPolicyServerTest.java | 216 ++++++++++
.../pom.xml | 29 +-
.../ws/trust/common/PasswordCallbackHandler.java | 52 +++
.../it/ws/trust/server/ServerCallbackHandler.java} | 25 +-
.../it/ws/trust/server/StsLoggingFeature.java} | 28 +-
.../it/ws/trust/server/TrustHelloService.java} | 25 +-
.../it/ws/trust/server/WsTrustServerRoutes.java | 70 ++++
.../server/cxf/way/TrustHelloServiceCxfWay.java} | 25 +-
.../cxf/way/TrustHelloServiceCxfWayImpl.java | 43 ++
.../server/cxf/way/WsTrustServerRoutesCxfWay.java} | 29 +-
.../cxf/soap/it/ws/trust/sts/SampleSTS.java | 87 ++++
.../soap/it/ws/trust/sts/StsCallbackHandler.java} | 27 +-
.../src/main/resources/AsymmetricSAML2Policy.xml | 102 +++++
.../src/main/resources/Input_Policy.xml | 48 +++
.../src/main/resources/Output_Policy.xml | 48 +++
.../src/main/resources/TrustHelloService.wsdl | 182 ++++++++
.../main/resources/TrustHelloService_schema1.xsd | 36 ++
.../src/main/resources/application.properties | 8 +-
.../src/main/resources/serviceKeystore.properties | 40 ++
.../src/main/resources/servicestore.jks | Bin 0 -> 3475 bytes
.../src/main/resources/stsKeystore.properties | 39 ++
.../src/main/resources/stsstore.jks | Bin 0 -> 5570 bytes
.../src/main/resources/ws-trust-1.4-service.wsdl | 303 ++++++++++++++
.../soap/it/ws/trust/ClientCallbackHandler.java | 50 +++
.../cxf/soap/it/ws/trust/CxfWsTrustIT.java} | 19 +-
.../cxf/soap/it/ws/trust/CxfWsTrustTest.java | 169 ++++++++
.../it/ws/trust/cxf/way/CxfWsTrustCxfWayIT.java} | 19 +-
.../it/ws/trust/cxf/way/CxfWsTrustCxfWayTest.java | 168 ++++++++
.../src/test/resources/clientKeystore.properties | 40 ++
.../src/test/resources/clientstore.jks | Bin 0 -> 5571 bytes
integration-test-groups/cxf-soap/pom.xml | 1 +
integration-tests/cxf-soap-grouped/pom.xml | 245 +++++++++++
integration-tests/debezium/pom.xml | 26 --
integration-tests/xml/pom.xml | 39 ++
pom.xml | 3 +-
poms/bom/pom.xml | 5 +
poms/bom/src/main/generated/flattened-full-pom.xml | 457 +++++++++++----------
.../src/main/generated/flattened-reduced-pom.xml | 43 +-
.../generated/flattened-reduced-verbose-pom.xml | 457 +++++++++++----------
poms/build-parent-it/pom.xml | 5 +
61 files changed, 3444 insertions(+), 706 deletions(-)
copy
integration-test-groups/cxf-soap/cxf-soap-server/src/main/java/{com/helloworld/service
=>
org/apache/camel/quarkus/component/cxf/soap/server/it}/CodeFirstService.java
(62%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/README.adoc
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-security-server/src/main/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/cxf/way/it/WsSecurityPolicyServerRoutesCxfWay.java}
(51%)
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-security-server/src/main/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/cxf/way/it/WssSecurityPolicyHelloServiceCxfWay.java}
(54%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/main/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/cxf/way/it/WssSecurityPolicyHelloServiceCxfWayImpl.java
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/main/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/it/PasswordCallbackHandler.java
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/main/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/it/WsSecurityPolicyServerRoutes.java
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-security-server/src/main/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/it/WssSecurityPolicyHelloService.java}
(54%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/main/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/it/WssSecurityPolicyHelloServiceImpl.java
copy
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/main/resources/{application.properties
=> alice.properties} (75%)
copy
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/main/resources/{application.properties
=> bob.properties} (75%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/main/resources/encrypt-sign-policy.xml
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-security-server/src/test/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/cxf/way/it/CxfWssSecurityPolicyServerCxfWayIT.java}
(51%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/test/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/cxf/way/it/CxfWssSecurityPolicyServerCxfWayTest.java
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-security-server/src/test/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/it/CxfWssSecurityPolicyServerIT.java}
(51%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/src/test/java/org/apache/camel/quarkus/component/cxf/soap/securitypolicy/server/it/CxfWssSecurityPolicyServerTest.java
copy integration-test-groups/cxf-soap/{cxf-soap-ws-security-server =>
cxf-soap-ws-trust}/pom.xml (82%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/common/PasswordCallbackHandler.java
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/server/ServerCallbackHandler.java}
(51%)
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/server/StsLoggingFeature.java}
(51%)
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/server/TrustHelloService.java}
(54%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/server/WsTrustServerRoutes.java
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/server/cxf/way/TrustHelloServiceCxfWay.java}
(54%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/server/cxf/way/TrustHelloServiceCxfWayImpl.java
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/server/cxf/way/WsTrustServerRoutesCxfWay.java}
(51%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/sts/SampleSTS.java
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/main/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/sts/StsCallbackHandler.java}
(51%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/AsymmetricSAML2Policy.xml
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/Input_Policy.xml
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/Output_Policy.xml
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/TrustHelloService.wsdl
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/TrustHelloService_schema1.xsd
copy integration-test-groups/cxf-soap/{cxf-soap-ws-security-server =>
cxf-soap-ws-trust}/src/main/resources/application.properties (64%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/serviceKeystore.properties
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/servicestore.jks
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/stsKeystore.properties
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/stsstore.jks
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/main/resources/ws-trust-1.4-service.wsdl
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/test/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/ClientCallbackHandler.java
copy
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/test/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/CxfWsTrustIT.java}
(51%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/test/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/CxfWsTrustTest.java
rename
integration-test-groups/cxf-soap/{cxf-soap-server/src/main/java/com/helloworld/service/CodeFirstService.java
=>
cxf-soap-ws-trust/src/test/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/cxf/way/CxfWsTrustCxfWayIT.java}
(51%)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/test/java/org/apache/camel/quarkus/component/cxf/soap/it/ws/trust/cxf/way/CxfWsTrustCxfWayTest.java
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/test/resources/clientKeystore.properties
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-trust/src/test/resources/clientstore.jks