[
https://issues.apache.org/jira/browse/AXIS2-5202?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13293399#comment-13293399
]
Sagara Gunathunga commented on AXIS2-5202:
-------------------------------------------
Another workaround is to use a MessageContextListener as follows.
stub._getServiceClient().getAxisService().addMessageContextListener(
new MessageContextListener() {
public void attachServiceContextEvent(ServiceContext sc,
MessageContext mc) {
}
public void attachEnvelopeEvent(MessageContext mc) {
try {
mc.getEnvelope().cloneOMElement()
.serialize(System.out);
} catch (XMLStreamException e) {
}
}
});
> Response MessageContext not accessible outside web-service stub generated
> using Axis2 Code generator for ADB or XMLBeans data binding
> -------------------------------------------------------------------------------------------------------------------------------------
>
> Key: AXIS2-5202
> URL: https://issues.apache.org/jira/browse/AXIS2-5202
> Project: Axis2
> Issue Type: Bug
> Components: adb, client-api, codegen, databinding
> Affects Versions: 1.6.0
> Environment: axis2 version is 1.6.0.
> Reporter: TAM Tenfold5
>
> The response SOAP message cannot be accessed outside the Stub class
> (extension of org.apache.axis2.client.Stub) generated by Axis2 Code generator
> for ADB or XMLBeans data binding (WSDL2Java). The below line of code gives an
> error:
> serviceClient.getLastOperationContext().getMessageContext(org.apache.axis2.wsdl.WSDLConstants.MESSAGE_LABEL_IN_VALUE);
> I am currently using a work-around. Adding the below line in the Stub after
> response message is received helps me rebuild the response object and make it
> accessible outside the Stub class:
> _returnEnv.build();
> Probably this fix should be added in the API itself.
> I have seen this issue in the STubs generated for ADB and XMLBeans data
> binding.
> Regards,
> TAM Tenfold5, GDev.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]