Re: what is URL rewriting?

2000-09-29 Thread Parag V Thakur
s the request to be forwarded to another JSP, a servlet, or a static > resource. > So, u can use it as > > > OR > > > > > > The actual translation happens at runtime, as you might alreaady be aware. > > > -Original Message- > From: A mailing

Re: what is URL rewriting?

2000-09-28 Thread Parag V Thakur
> Hope this helps. yup! u have been great help... just one more question, is this valid: ? String eventName = "myEvent"; response.sendRedirect( response.encodeRedirectURL("/foodir/foo.jsp?eventName=" + eventName)); also, why will the following NOT work?: String eventName = "myEvent"; ... t

what is URL rewriting?

2000-09-28 Thread Parag V Thakur
hi! it might be a stupid question, but what exactly is URL rewriting? I am trying to do the following: --- String eventName = request.getParameter("eventName"); ... if(eventNotFound) { } - is this URL rewriting? also, could anyone tell me why this code is not ru

TOMCAT crashing frequently...

2000-09-22 Thread Parag V Thakur
hi, I have been having quite a frequent crash of my Tomcat server. It prints out the following stack before hanging: java.net.SocketException: Protocol error at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:379) at java.net.ServerSocket.implAccept(ServerSocket.java:198)

Re: Tomcat 3.1 Issue

2000-09-01 Thread Parag V Thakur
might be facing, but now u have someone to blame :) parag. > Parag V Thakur wrote: > > > > We are following model 2 architecture to develop an application on > > > Tomcat3.1 server. But we encounter a problem whenever we recompile the > > > controller servlet code,

Re: server-side XSL parsing

2000-09-01 Thread Parag V Thakur
> Can anyone recommend how I might apply XSL to my XML on the server side? I > am using JRUN and presume my best option is the custom tag, but > I can't get the damned thing to work. Can anyone recommend another solution > or what I might be missing with this solution? try using the Lotus XSL .

Re: Tomcat 3.1 Issue

2000-09-01 Thread Parag V Thakur
> We are following model 2 architecture to develop an application on > Tomcat3.1 server. But we encounter a problem whenever we recompile the > controller servlet code, we have to restart Tomcat server; otherwise, > JSP page will get "java.lang.ClassCastException" which relates to the > code we us