Hi,
tomcat does not care what is in the body of request, it just look at url
to map it to a servlet and headers to create context and request
objects. The rest is entierly up to servlet to manager.
For your information, slide is a webdav servlet working under any J2EE
compliant webapp container th
Hello,
Is that good idea to POST XML data to Tomcat?
I wish to make HTTP request to servlet in Tomcat.
Method POST
Content Type: text/xml
Content would be non encoded XML file.
Is it good idea in general. My tomcat handles such requests now.
Is it expected that it will work in future?
Is ther