Re: Session Problem for J2ee deployment

2010-06-21 Thread Farrukh Ijaz
Hi Chuck, Thanks for your suggestion. I tried that but it doesn't work. The strange thing is that the same application with same rewrite rules work perfect if run under WebObjects application server. It's like this. My application has an admin console which is accessed using /Application/WebOb

Re: Session Problem for J2ee deployment

2010-06-21 Thread Chuck Hill
Hi Farrukh, On Jun 21, 2010, at 12:45 AM, Farrukh Ijaz wrote: > After spending sometime, I've come to know that the problem occurs if I use > rewrite rules for direct actions. Below is the code: > > public WOActionResults linkManagerAction() { > if (!hasSession()) { > return

Re: Session Problem for J2ee deployment

2010-06-21 Thread Farrukh Ijaz
After spending sometime, I've come to know that the problem occurs if I use rewrite rules for direct actions. Below is the code: public WOActionResults linkManagerAction() { if (!hasSession()) { return blankPage(); } return pageWithName(LinkPopupPage.class)

Session Problem for J2ee deployment

2010-06-20 Thread Farrukh Ijaz
Hi, I am facing quite a strange problem. I've an application which I've deployed on GlassFish on port 28080. Everything seems to work fine. When I use Apache mod_jk or mod_proxy_ajp module, I am getting null session for direct actions. Is this something related to Apache or WebObjects J2ee depl