Hello.
I hava small question referes to ws:inbound-gateway errorhandling.
I've created small error handling chain
My onFailed method returns correct reply XML (I can see it in my logs) with no errors .<int:chain input-channel="failed-invitations">
<int:transformer ref="errorUnwrapper" />
<int:service-activator ref="PartyHost" method="onFailed" />
</int:chain>
Problem is that this reply message is not sent to the client.public Source onFailed(DOMSource inDOMSource) throws Exception {
...
return new DomSourceFactory().createSource(
"<MyXML>...</MyXML>");
}
Client receive empty response message (only http headers).
My question is :
What should I do to send WS reply in my error chain ?
regards Marcin


Reply With Quote
