This is an automated email from the ASF dual-hosted git repository.
ppalaga pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from 82d853a828 Updated CHANGELOG.md
new b913f4f68c Add CXF WS-SecurityPolicy test
new a87deeefb5 Show a workaround for #4291 SoapFault: BSP:R3227: A
SECURITY_HEADER MUST NOT contain more than one TIMESTAMP
new b1917613ac Add WS-Trust test for CXF SOAP
new d027701e9c WS-Trust workaround for #4291 SoapFault: BSP:R3227: A
SECURITY_HEADER MUST NOT contain more than one TIMESTAMP
new e22b2c34db Upgrade to Quarkiverse CXF 1.6.0
new 4f0317ce38 Reformat poms by running mvn process-resources -Pformat -N
The 6 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-ws-security-server/README.adoc | 19 +
.../cxf-soap/cxf-soap-ws-security-server/pom.xml | 246 +++++++++++
.../way/it/WsSecurityPolicyServerRoutesCxfWay.java | 33 ++
.../it/WssSecurityPolicyHelloServiceCxfWay.java | 27 ++
.../WssSecurityPolicyHelloServiceCxfWayImpl.java | 44 ++
.../server/it/PasswordCallbackHandler.java | 55 +++
.../server/it/WsSecurityPolicyServerRoutes.java | 54 +++
.../server/it/WssSecurityPolicyHelloService.java | 27 ++
.../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 ++++
.../way/it/CxfWssSecurityPolicyServerCxfWayIT.java | 24 ++
.../it/CxfWssSecurityPolicyServerCxfWayTest.java | 215 ++++++++++
.../server/it/CxfWssSecurityPolicyServerIT.java | 24 ++
.../server/it/CxfWssSecurityPolicyServerTest.java | 216 ++++++++++
.../pom.xml | 31 +-
.../ws/trust/common/PasswordCallbackHandler.java | 52 +++
.../it/ws/trust/server/ServerCallbackHandler.java | 30 ++
.../soap/it/ws/trust/server/StsLoggingFeature.java | 33 ++
.../soap/it/ws/trust/server/TrustHelloService.java | 34 ++
.../it/ws/trust/server/WsTrustServerRoutes.java | 70 ++++
.../server/cxf/way/TrustHelloServiceCxfWay.java | 34 ++
.../cxf/way/TrustHelloServiceCxfWayImpl.java | 43 ++
.../server/cxf/way/WsTrustServerRoutesCxfWay.java | 34 ++
.../cxf/soap/it/ws/trust/sts/SampleSTS.java | 87 ++++
.../soap/it/ws/trust/sts/StsCallbackHandler.java | 32 ++
.../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 | 24 ++
.../cxf/soap/it/ws/trust/CxfWsTrustTest.java | 169 ++++++++
.../it/ws/trust/cxf/way/CxfWsTrustCxfWayIT.java | 24 ++
.../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/src/main/generated/flattened-full-pom.xml | 452 ++++++++++-----------
.../src/main/generated/flattened-reduced-pom.xml | 38 +-
.../generated/flattened-reduced-verbose-pom.xml | 452 ++++++++++-----------
poms/build-parent-it/pom.xml | 5 +
57 files changed, 3630 insertions(+), 512 deletions(-)
create mode 100644
integration-test-groups/cxf-soap/cxf-soap-ws-security-server/README.adoc
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/WsSecurityPolicyServerRoutesCxfWay.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/cxf/way/it/WssSecurityPolicyHelloServiceCxfWay.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/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
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/WssSecurityPolicyHelloService.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/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
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/CxfWssSecurityPolicyServerCxfWayIT.java
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
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/CxfWssSecurityPolicyServerIT.java
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
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/ServerCallbackHandler.java
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/StsLoggingFeature.java
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/TrustHelloService.java
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
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/TrustHelloServiceCxfWay.java
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
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/WsTrustServerRoutesCxfWay.java
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
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/StsCallbackHandler.java
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
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/CxfWsTrustIT.java
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
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/CxfWsTrustCxfWayIT.java
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