[jbossws/jbossws-cxf] 08a998: Bump wildfly.elytron.version from 2.6.0.Final to 2...
by dependabot[bot]
Branch: refs/heads/dependabot/maven/wildfly.elytron.version-2.6.3.Final
Home: https://github.com/jbossws/jbossws-cxf
Commit: 08a9981178a658634b7a6116ea25b9ad8e72d56f
https://github.com/jbossws/jbossws-cxf/commit/08a9981178a658634b7a6116ea2...
Author: dependabot[bot] <49699333+dependabot[bot](a)users.noreply.github.com>
Date: 2025-05-06 (Tue, 06 May 2025)
Changed paths:
M pom.xml
Log Message:
-----------
Bump wildfly.elytron.version from 2.6.0.Final to 2.6.3.Final
Bumps `wildfly.elytron.version` from 2.6.0.Final to 2.6.3.Final.
Updates `org.wildfly.security:wildfly-elytron-client` from 2.6.0.Final to 2.6.3.Final
Updates `org.wildfly.security:wildfly-elytron-auth-server` from 2.6.0.Final to 2.6.3.Final
Updates `org.wildfly.security:wildfly-elytron-credential` from 2.6.0.Final to 2.6.3.Final
- [Commits](https://github.com/wildfly-security/wildfly-elytron/compare/2.6....
---
updated-dependencies:
- dependency-name: org.wildfly.security:wildfly-elytron-client
dependency-version: 2.6.3.Final
dependency-type: direct:development
update-type: version-update:semver-patch
- dependency-name: org.wildfly.security:wildfly-elytron-auth-server
dependency-version: 2.6.3.Final
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.wildfly.security:wildfly-elytron-credential
dependency-version: 2.6.3.Final
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support(a)github.com>
To unsubscribe from these emails, change your notification settings at https://github.com/jbossws/jbossws-cxf/settings/notifications
8 months
[jbossws/jbossws-cxf] fbbf2c: [JBWS-4444] Server throws IllegalStateException wh...
by Richard Opálka
Branch: refs/heads/jbossws-cxf-5.4.x
Home: https://github.com/jbossws/jbossws-cxf
Commit: fbbf2c93644601b177dea6315b3eee0ecb14d4d6
https://github.com/jbossws/jbossws-cxf/commit/fbbf2c93644601b177dea6315b3...
Author: Richard Opálka <opalka.richard(a)gmail.com>
Date: 2025-05-05 (Mon, 05 May 2025)
Changed paths:
M docbook/src/main/doc/adoc/content/chapter-5-Advanced_User_Guide.adoc
M docbook/src/main/doc/chapter-5-Advanced_User_Guide.xml
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/ServerBeanCustomizer.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/AbstractTCCLAwarePhaseInterceptor.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/AbstractTCCLPhaseInterceptor.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/HandlerConfigInterceptor.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/TCCLAwareInterceptorReplacer.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/TCCLAwarePhaseInterceptor.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/TCCLAwareSoapPhaseInterceptor.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/CDIOutInterceptor.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/HelloBean.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/JBWS4430TestCase.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/LoggingHandler.java
Log Message:
-----------
[JBWS-4444] Server throws IllegalStateException when call to SOAPHandler's getHeaders/handleFault/close methods is performed and their code include the CDI bean invocation
The idea of the fix is the following:
* Every non Apache CXF interceptor is considered either JBossWS provided or user provided interceptor
* Each such non Apache CXF interceptor is wrapped with TCCL aware interceptor
- this wrapping is necessary for all Endpoint, Service, Bus & Binding interceptors
- every TCCL aware interceptor delegates its calls (with proper TCCL in place where necessary) to wrapped delegate interceptor
* The only exception from Apaches's CXF interceptors is: org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor
- that one needs special treatment and must be wrapped too
(luckily there was no cast in Apache CXF code base involving this one - otherwise it wouldn't work)
* Special treatment is needed also for org.apache.cxf.binding.soap.interceptor.SoapInterceptor instances
- to delegate properly TCCL aware calls to getUnderstoodHeaders() method
* org.jboss.wsf.stack.cxf.interceptor.AbstractTCCLPhaseInterceptor was marked as deprecated,
its usages inside code base have been removed and documentation referencing it was eliminated
Commit: 075e4d8a0cdaaee5e92f507a5ef09ed4ddceb381
https://github.com/jbossws/jbossws-cxf/commit/075e4d8a0cdaaee5e92f507a5ef...
Author: bmaxwell <bmaxwell(a)redhat.com>
Date: 2025-05-05 (Mon, 05 May 2025)
Changed paths:
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/AccessTokenClientHandler.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/AccessTokenClientHandlerResolver.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/Client.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/ClientBean.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/CredentialsCDIBean.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/JBWS4430TestCase.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/LoggingHandler.java
A modules/testsuite/cxf-tests/src/test/resources/jaxws/cxf/jbws4430/WEB-INF/beans.xml
A modules/testsuite/cxf-tests/src/test/resources/jaxws/cxf/jbws4430/WEB-INF/wsdl/ClientBeanService.wsdl
M modules/testsuite/pom.xml
M pom.xml
Log Message:
-----------
[JBWS-4444] add custom HandlerResolver to JBWS4430TestCase client test, added beans.xml, added ClientBean intermediate to test CDI in client custom HandlerResolver
Commit: dc4713676c0aa6aa70674e3af104a38ffdf829f0
https://github.com/jbossws/jbossws-cxf/commit/dc4713676c0aa6aa70674e3af10...
Author: Richard Opálka <opalka.richard(a)gmail.com>
Date: 2025-05-05 (Mon, 05 May 2025)
Changed paths:
M modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ProviderImpl.java
A modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/TCCLAwareHandler.java
A modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/TCCLAwareHandlerReplacer.java
A modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/TCCLAwareHandlerResolver.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/AbstractTCCLAwarePhaseInterceptor.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/HandlerConfigInterceptor.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/TCCLAwareSoapPhaseInterceptor.java
Log Message:
-----------
[JBWS-4444] Server throws IllegalStateException when call to SOAPHandler's getHeaders/handleFault/close ethods is peformed and their code include the CDI bean invocation - second round of fixes
The idea of this second round of fixes is the following:
* setHandlerResolver() of provider implementation is overriden to wrap client provided handler resolver with TCCL aware handler resolver
* TCCL aware Handler resolver wraps every handler client provided with TCCL aware handler
* finally there's a minor refactoring included that uses instanceof check against DelegateClassLoader instead of implementation specific JAXPDelegateClassLoader
Commit: 2f8bd8b0ef514fe797c4fb05119aff71d5a6ecb3
https://github.com/jbossws/jbossws-cxf/commit/2f8bd8b0ef514fe797c4fb05119...
Author: Jim Ma <ema(a)redhat.com>
Date: 2025-05-05 (Mon, 05 May 2025)
Changed paths:
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/JBWS4430TestCase.java
Log Message:
-----------
[Minor Change]:Remove ZipExporter in test
Commit: aff400ebd3ce11ba98b5b28612545aff6ca754f2
https://github.com/jbossws/jbossws-cxf/commit/aff400ebd3ce11ba98b5b286125...
Author: Richard Opálka <opalka.richard(a)gmail.com>
Date: 2025-05-05 (Mon, 05 May 2025)
Changed paths:
M docbook/src/main/doc/adoc/content/chapter-5-Advanced_User_Guide.adoc
M docbook/src/main/doc/chapter-5-Advanced_User_Guide.xml
M modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/ProviderImpl.java
A modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/TCCLAwareHandler.java
A modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/TCCLAwareHandlerReplacer.java
A modules/client/src/main/java/org/jboss/wsf/stack/cxf/client/TCCLAwareHandlerResolver.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/configuration/ServerBeanCustomizer.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/AbstractTCCLAwarePhaseInterceptor.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/AbstractTCCLPhaseInterceptor.java
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/HandlerConfigInterceptor.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/TCCLAwareInterceptorReplacer.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/TCCLAwarePhaseInterceptor.java
A modules/server/src/main/java/org/jboss/wsf/stack/cxf/interceptor/TCCLAwareSoapPhaseInterceptor.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/AccessTokenClientHandler.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/AccessTokenClientHandlerResolver.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/CDIOutInterceptor.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/Client.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/ClientBean.java
A modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/CredentialsCDIBean.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/HelloBean.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/JBWS4430TestCase.java
M modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jbws4430/LoggingHandler.java
A modules/testsuite/cxf-tests/src/test/resources/jaxws/cxf/jbws4430/WEB-INF/beans.xml
A modules/testsuite/cxf-tests/src/test/resources/jaxws/cxf/jbws4430/WEB-INF/wsdl/ClientBeanService.wsdl
M modules/testsuite/pom.xml
M pom.xml
Log Message:
-----------
Merge pull request #593 from spyrkob/JBEAP-28792_illegal_state_exception
[JBEAP-28792] Server throws IllegalStateException when call to SOAPHandler's getHeaders/handleFault/close ethods is peformed and their code include the CDI bean invocation
Compare: https://github.com/jbossws/jbossws-cxf/compare/4bcf61fa3e9b...aff400ebd3ce
To unsubscribe from these emails, change your notification settings at https://github.com/jbossws/jbossws-cxf/settings/notifications
8 months
[jbossws/jbossws-cxf] ecee31: [maven-release-plugin] prepare release jbossws-cxf...
by Richard Opálka
Branch: refs/heads/main
Home: https://github.com/jbossws/jbossws-cxf
Commit: ecee31fe38f596d7bc302ed7a2d227ad823932bf
https://github.com/jbossws/jbossws-cxf/commit/ecee31fe38f596d7bc302ed7a2d...
Author: Richard Opálka <opalka.richard(a)gmail.com>
Date: 2025-05-05 (Mon, 05 May 2025)
Changed paths:
M docbook/pom.xml
M modules/addons/pom.xml
M modules/addons/transports/http/undertow/pom.xml
M modules/addons/transports/udp/pom.xml
M modules/channel/pom.xml
M modules/client/pom.xml
M modules/dist/pom.xml
M modules/endorsed/pom.xml
M modules/feature-pack/pom.xml
M modules/resources/pom.xml
M modules/server/pom.xml
M modules/test-utils/pom.xml
M modules/testsuite/cloud-tests/container/pom.xml
M modules/testsuite/cloud-tests/k8s/basic/pom.xml
M modules/testsuite/cloud-tests/k8s/common/pom.xml
M modules/testsuite/cloud-tests/k8s/images/pom.xml
M modules/testsuite/cloud-tests/k8s/pom.xml
M modules/testsuite/cloud-tests/k8s/wsse/pom.xml
M modules/testsuite/cloud-tests/k8s/wstrust/pom.xml
M modules/testsuite/cloud-tests/k8s/wstrust/service/pom.xml
M modules/testsuite/cloud-tests/k8s/wstrust/sts/pom.xml
M modules/testsuite/cloud-tests/pom.xml
M modules/testsuite/cloud-tests/test-feature-pack/pom.xml
M modules/testsuite/cxf-tests/pom.xml
M modules/testsuite/perf-tests/pom.xml
M modules/testsuite/pom.xml
M modules/testsuite/shared-tests/pom.xml
M pom.xml
Log Message:
-----------
[maven-release-plugin] prepare release jbossws-cxf-7.3.2.Final
Commit: 3e1769c86b72592fafdab8af6e4ffe3e8efb6567
https://github.com/jbossws/jbossws-cxf/commit/3e1769c86b72592fafdab8af6e4...
Author: Richard Opálka <opalka.richard(a)gmail.com>
Date: 2025-05-05 (Mon, 05 May 2025)
Changed paths:
M docbook/pom.xml
M modules/addons/pom.xml
M modules/addons/transports/http/undertow/pom.xml
M modules/addons/transports/udp/pom.xml
M modules/channel/pom.xml
M modules/client/pom.xml
M modules/dist/pom.xml
M modules/endorsed/pom.xml
M modules/feature-pack/pom.xml
M modules/resources/pom.xml
M modules/server/pom.xml
M modules/test-utils/pom.xml
M modules/testsuite/cloud-tests/container/pom.xml
M modules/testsuite/cloud-tests/k8s/basic/pom.xml
M modules/testsuite/cloud-tests/k8s/common/pom.xml
M modules/testsuite/cloud-tests/k8s/images/pom.xml
M modules/testsuite/cloud-tests/k8s/pom.xml
M modules/testsuite/cloud-tests/k8s/wsse/pom.xml
M modules/testsuite/cloud-tests/k8s/wstrust/pom.xml
M modules/testsuite/cloud-tests/k8s/wstrust/service/pom.xml
M modules/testsuite/cloud-tests/k8s/wstrust/sts/pom.xml
M modules/testsuite/cloud-tests/pom.xml
M modules/testsuite/cloud-tests/test-feature-pack/pom.xml
M modules/testsuite/cxf-tests/pom.xml
M modules/testsuite/perf-tests/pom.xml
M modules/testsuite/pom.xml
M modules/testsuite/shared-tests/pom.xml
M pom.xml
Log Message:
-----------
[maven-release-plugin] prepare for next development iteration
Compare: https://github.com/jbossws/jbossws-cxf/compare/ecb7ceda964e...3e1769c86b72
To unsubscribe from these emails, change your notification settings at https://github.com/jbossws/jbossws-cxf/settings/notifications
8 months, 1 week