Re: Getting back the resultant URL

2000-07-04 Thread David Gecawich
Actually, it's not implementation dependent. A number of implicit variables, such as "request", "response" and "session", are defined by the JSP specification. I think you mean that its not supposed to be implementation dependent, which is correct. However, some vendors did not strictly

Re: Getting back the resultant URL

2000-07-04 Thread Hans Bergsten
David Gecawich wrote: Actually, it's not implementation dependent. A number of implicit variables, such as "request", "response" and "session", are defined by the JSP specification. I think you mean that its not supposed to be implementation dependent, which is correct. However, some

Getting back the resultant URL

2000-07-03 Thread Ritesh_Srivastava
Hi, I am writing a JSP file where by i have a link.Click on the link executes a command which is in the form of a URL.This URL then dispatches the message to the server and the requested page is opened.(The requested page URL is different from the one i requested 'cos the server creates a

Re: Getting back the resultant URL

2000-07-03 Thread David Gecawich
ence [mailto:[EMAIL PROTECTED]]On Behalf Of Ritesh_Srivastava Sent: Monday, July 03, 2000 7:18 AM To: [EMAIL PROTECTED] Subject: Getting back the resultant URL Hi, I am writing a JSP file where by i have a link.Click on the link executes a command which is in the form of a URL.This URL then dispatches the

Re: Getting back the resultant URL

2000-07-03 Thread Hans Bergsten
David Gecawich wrote: Try this from your resultant JSP: % System.out ( "URL Path is: " + HttpUtils.getRequestURL( (HttpServletRequest)request ) ); % or: % System.out ( "URL Path is: " + request.getRequestURI() ); % Note the in the above example, it is assumed that an implicit

Re: Getting back the resultant URL

2000-07-03 Thread Pratik
, July 04, 2000 12:07 AM Subject: Re: Getting back the resultant URL Try this from your resultant JSP: % System.out ( "URL Path is: " + ttpUtils.getRequestURL( (HttpServletRequest)request ) ); % or: % System.out ( "URL Path is: " + request.getRequestURI() ); % N