L.S.,
As long as you work with InOut MEP exchanges, you can send the reponse
back in the 'out' normalized message. In a Drools SU, you would do this
by calling the answer() method on JbiHelper. Or where is the response
message being generated? Are you experiencing any particular problems
somewhere?
Regards,
Gert
jcamus wrote:
Hi!
I need to have in my ESB (servicemix 3.2.2) a SOAP entry like this :
<http:endpoint
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
service="foo:transformerSOAP"
endpoint="communicatorSOAP"
role="consumer"
locationURI="http://0.0.0.0:8080/PDC_SOAP/services/Communicator/"
soap="true"
soapVersion="1.2"
soapAction=""
>
</http:endpoint>
Methods sent by the client may be :
getInfo(String id) -> which returns a String response
setInfo(String id, String info) -> which returns no response
I just transform the SOAP message (with a lw-su : xsltTransform to extract
the SOAP action) and after I route to a drools-su.
How can I send a SOAP response after the routing ?
How to implement that in the ESB?