Hello.
I have a strange behaviour here.
I integrated jforum with my website. Everything works fine on my computer: Win XP +
Tomcat 5.5.17.
But when I install it remote on a linux machine + Tomcat 5.5.16 it does not run at all.
After adding a lot of logging I isolated the problem.
In the ActionServletRequest.
There is one if there, to select which path to go. If a GET request or a POST request. Strange is that it is a GET request, but the code doesn't go either part of the if. So it results in having module parameter == null and therefore JForum return a 404 page.
My question is:
In this line
if ((("GET").equalsIgnoreCase(requestType) && (superRequest.getQueryString() == null))
&& requestUri.endsWith(SystemGlobals.getValue(ConfigKeys.SERVLET_EXTENSION)))
Why was the superRequest.getQueryString() == null condition added?
Can I get it out, or?
Thank you very much.
[originally posted on jforum.net by danidacila]