[
https://issues.jboss.org/browse/JBWS-3601?page=com.atlassian.jira.plugin....
]
RH Bugzilla Integration commented on JBWS-3601:
-----------------------------------------------
Petr SakaĆ <psakar(a)redhat.com> made a comment on [bug
913411|https://bugzilla.redhat.com/show_bug.cgi?id=913411]
Verified by running test against EAP-6.1.1.ER3 (failed) and EAP-6.1.1.ER4 (passed)
References
Upstream test in 4.2
https://source.jboss.org/changelog/JBossWS?cs=17768
EAP6.1 test
https://github.com/jbossas/jboss-eap/pull/236
Procedure
git clone git clone
https://github.com/jbossas/jboss-eap.git
cd jboss-eap
git tags -l
git checkout tags/EAP_6.1.1.ER4
start-as #EAP_6.1.1.ER4
mvn -s tools/maven/conf/settings.xml test -Dts.basic
-Dtest=org.jboss.as.test.integration.ws.basic.*TestCase -pl :jboss-as-ts-integ-basic
#tests passed#
stop-as
start-as #EAP_6.1.1.ER3 previous version
mvn -s tools/maven/conf/settings.xml test -Dts.basic
-Dtest=org.jboss.as.test.integration.ws.basic.*TestCase -pl :jboss-as-ts-integ-basic
#test failed#
SOAPFaultException cannot render SOAP 1.2 Fault Subcode in CXF
--------------------------------------------------------------
Key: JBWS-3601
URL:
https://issues.jboss.org/browse/JBWS-3601
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: jbossws-cxf
Affects Versions: jbossws-cxf-4.0.2
Environment: JBoss Enterprise Application Platform 6
Reporter: Tadayoshi Sato
Assignee: Alessio Soldano
Labels: cxf
Fix For: jbossws-cxf-4.2
Backport
https://issues.apache.org/jira/browse/CXF-4790, which is the root cause. The
code below doesn't render {{<soapenv:Subcode>}}.
{code}
import javax.xml.soap.SOAPConstants;
import javax.xml.soap.SOAPFactory;
import javax.xml.soap.SOAPFault;
import javax.xml.ws.soap.SOAPFaultException;
...
SOAPFactory factory = SOAPFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL);
SOAPFault fault = factory.createFault("Operator not found", new
QName(SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE, "Receiver"));
fault.appendFaultSubcode(new QName("...", "OperatorNotFound"));
...
throw new SOAPFaultException(fault);
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira