Howdy, You are responsible for URL-encoding the query string. Passing it on the query string is not that good an idea anyways because of the limited length. You're better off passing it as a request parameter (still URL-encoded) in a POST request.
Yoav Shapira Millennium ChemInformatics >-----Original Message----- >From: Vijay Kandy [mailto:[EMAIL PROTECTED] >Sent: Friday, June 20, 2003 5:12 PM >To: 'Tomcat Users List' >Subject: Sending xml string as input to servlet > >Hello, > >When an xml string is passed as an input to a Servlet like: > >http://server/context/servlet?xmlString=<?xml version="1.0" >encoding="UTF-8"?><test>Hello</test> > >I am not able to read with request.getParameter("xmlString"). Looks like >Tomcat 4 doesn't like "=" in the parameter value. (Because it works with >Tomcat 3.2) Can anyone please suggest analternative? > >Thank you, >Vijay > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
