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 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?

The session is on the URL or in cookies?  If on the URL, it looks like Apache 
is losing the Query String.  Why are you using [P]?  Is that for GlassFish?  
With normal WO deployment, I would use [L,PT].  You could try [P,QSA] or 
[L,PT,QSA] to see if that has any effect.

Chuck


> 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/chill%40global-village.net
> 
> This email sent to [email protected]

-- 
Chuck Hill             Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their overall 
knowledge of WebObjects or who are trying to solve specific problems.    
http://www.global-village.net/products/practical_webobjects







Attachment: smime.p7s
Description: S/MIME cryptographic signature

 _______________________________________________
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