Re: How do I read only the XML data in doPost(req,res)?

2004-08-31 Thread Kimmy Lin
L data in doPost(req,res)? > On Tue, Aug 31, 2004 at 06:15:59PM -0400, Kimmy Lin wrote: > : http://URL?xmldoc=... > : request.getParameter("xmldoc"); > > The OP may run into some limits with that, unless those are very small > XML docs. =) > > Doesn't Reques

Re: How do I read only the XML data in doPost(req,res)?

2004-08-31 Thread Kimmy Lin
Do you have control over how the request is composed? If so, you can put the XML data in a parameter say "xmldoc" and the equivalent GET request will look like the following http://URL?xmldoc=... ("<" and ">" not escaped) Then in your program do request.getParameter("xmldoc"); to get the xml d

Re: Tomcat Installation Script

2004-08-31 Thread Kimmy Lin
g/viewcvs.cgi/jakarta-tomcat-5/tomcat.nsi. > > Yoav Shapira > Millennium Research Informatics > > > >-Original Message- > >From: Kimmy Lin [mailto:[EMAIL PROTECTED] > >Sent: Monday, August 30, 2004 5:09 PM > >To: Tomcat Users List > >Subject: Tomcat

Re: Getting 404 error deploying my servlet

2004-08-30 Thread Kimmy Lin
In your web.xml, you might want to try add the following ... invoker /servlet/* This is required after version 4.12 or 13. But this seem to break your servlet program again in Tomcat 5. But since you are using Tomcat 4, it should work. Kimmy - Original Message -

Tomcat Installation Script

2004-08-30 Thread Kimmy Lin
Hi, I am trying to put Tomcat as part of my program installation on a Windows system and would like to change the script a little bit. I understand that Apache Tomcat uses NSIS (Nullsoft Scriptable Install System) for their Windows installer. Can anyone tell me whether, where, and how I can get