fml2 is right. Plus, what you see in your pipeline is directly dependent on the content handler that is used to process the message. The content handler is typically chosen based on the value of the content-type or accept HTTP header. Take a look at the IS Admin guide as it has a whole section on content handlers.
Regarding your XML issue, if you’re setting the content type to text/xml and you’re posting the XML message in the body of the HTTP request, you should most definitely be getting a XML node in the pipeline. If you’re not, then something is missing. Another way to get an XML node in your pipeline is, for example, to post the XML from an HTML form. In this case, you should name that field in the form $xmldata. When the IS gets an HTML form post, which has content-type of application/x-www-form-urlencoded, it knows to look for an $xmldata variable.
Good luck,
Percio
#webMethods#Integration-Server-and-ESB#Flow-and-Java-services