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:
>
>
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
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
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_
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
This is how the code redirects:
if (redirectURL.toUpperCase().startsWith("/SERVLET"))
{
// routing to another request to the servlet...
response.sendRedirect(request.getContextPath() +
redirectURL);
}
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
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
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