I´m using Mule 2.0.2, but I´m getting an unexpecting response:
<service name="WebServiceSNIES">
<inbound>
<jms:inbound-endpoint address="jms://list.in">
<transformer ref="JMSToString"/>
</jms:inbound-endpoint>
</inbound>
<outbound>
<chaining-router>
<outbound-endpoint connector-ref="HttpConnector"
address="
http://200.41.9.227:7777/WebService/WS/WebService.jws?method=getXMLProgramasOL">
</outbound-endpoint>
<stdio:outbound-endpoint system="OUT">
</stdio:outbound-endpoint>
</chaining-router>
</outbound>
</service>
The response is of type org.mule.transport.http.ReleasingInputStream@1f1bd98 not the XML string I´m expecting.
On the other hand if I use axis the resposnse is the expected XML, but this configuration does not support connector-ref attribute.
<service name="WebServiceSNIES">
<inbound>
<jms:inbound-endpoint address="jms://list.in">
<transformer ref="JMSToString"/>
</jms:inbound-endpoint>
</inbound>
<outbound>
<chaining-router>
<axis:outbound-endpoint
address="
http://200.41.9.227:7777/WebService/WS/WebService.jws?method=getXMLProgramasOL">
</axis:outbound-endpoint>
<stdio:outbound-endpoint system="OUT">
</stdio:outbound-endpoint>
</chaining-router>
</outbound>
</service>