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);
}

protected boolean hasSession() {
        return (getSessionIDForRequest(request()) != null) && 
(existingSession() != null);
}

Now if I call the direct action using 
/Application/WebObjects/Application.woa/wa/linkManager, it gets the session.
But if a use /app/wa/linkManager, the session is null.

The rewrite rule is as follows:

RewriteRule ^/app/wa/(.*)$ /Application/WebObjects/Application.woa/wa/$1 [P]

Any ideas please?

Farrukh

On 2010-06-20, at 6:01 PM, Farrukh Ijaz wrote:

> 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 deployment?
> 
> Thanks,
> 
> Farrukh
> 
> Sent from my iPad
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to