Re: browser sending extra get/post call after redirect

2006-08-29 Thread rache
I am using both the RequestDumperValve and LiveHTTpHeaders plus other tools to monitor the request. I know that I am am missing request parameters intermittently. I was able to monitor also that am getting an extra call to get/post - which shouldn't. Mark Thomas-11 wrote: > >

browser sending extra get/post call after redirect

2006-08-29 Thread rache
This is also related to the missing request parameters thread. After looking on the logs, it seems like the browser is calling an extra get/post call after a redirect. This would cause my application to get a url without any request parameters. What may cause the browser to send this extra cal

Re: Servlet/session becoming null

2006-07-31 Thread rache
Hi Filip or anyone, I got lost in this?: "but your stack trace show TransactionSession, and it could be that your TransactionSession is holding a reference to the Tomcat session, but the reference it is actually holding is a facade object, and the facade loses it connection to the delegate, he

Re: Missing Request Parameters

2006-07-31 Thread rache
Parameters are either set this way: 1. from the page itself: 2. from building xmls which are then integrated into the page itself which a user can click on for links: href="../servlet/tpservlet?transactiontype=sessionProfileActionBean&ACTIVITY_

Servlet/session becoming null

2006-07-31 Thread rache
I have this error occuring when loading a jsp: 2006-07-28 17:33:01 StandardWrapperValve[debugjsp]: Servlet.service() for servlet debugjsp threw exception java.lang.NullPointerException at com.premier.ofa.core.TransactionSession.getAttribute(TransactionSession.java:34) at com.premi

Re: Missing Request Parameters

2006-07-31 Thread rache
This is how the code redirects: if (redirectURL.toUpperCase().startsWith("/SERVLET")) { // routing to another request to the servlet... response.sendRedirect(request.getContextPath() + redirectURL); }

Re: Missing Request Parameters

2006-07-28 Thread rache
That's what I was thinking - that it couldn't have been a bug :) I'm quite new to Tomcat but I know it coundn't have been one since many are using it. I don't have any code access now since codebase is at the office. But this usually occur after redirects. Most of the pages (servlets and those ur

Missing Request Parameters

2006-07-28 Thread rache
Parameter values are set in the jsp either as hardcoded links(http://j.jsp?param=value) or as hidden parameters. When the program enters the doGet() or doPost() method of a servlet and check for the parameter, its null. String pvalue = req.getParameter("param"); This happens intermittently. Is t

lost jsp session on tomcat

2006-07-26 Thread rache
I'm currently having problems with getting session data in the jsp. The data was set in the session in a servlet. The jsp is just an href link from the current page. When its clicked, it doesn't load up because of an exception thrown when it can't find the session data. This works when the jsp is