Re: App switching from https to http port 443 on logout
Re: App switching from https to http port 443 on logout
- Subject: Re: App switching from https to http port 443 on logout
- From: Jon Kleiser <email@hidden>
- Date: Wed, 08 Feb 2012 12:32:42 +0100
- Organization: Universitetet i Oslo
On 2/8/12 5:53 AM, Klaus Berkling wrote:
On Feb 7, 2012, at 7:42 AM, Jon Kleiser wrote:
This is roughly how we handles the logout (simplified):
public WOComponent logout() {
WORedirect redirect = new WORedirect(context());
loginUrl =
context().directActionURLForActionNamed("default", null);
redirect.setUrl(loginUrl);
// ... calling session logout method
return redirect;
}
Is this problem familiar to anyone out there?
Yup. Try:
.directActionURLForActionNamed(String requestHandlerPath,
NSDictionary queryDictionary, boolean isSecure, boolean
entityEscapeQueryDict)
context().directActionURLForActionNamed("default", null, useSSL, true);
I'll have to try Chuck's suggestion though.
kib
"The
trouble with normal is it
always gets worse."
Bruce
Cockburn
Klaus Berkling
Web Application Dev. & Systems Analyst
DynEd International, Inc.
www.dyned.com
Hi Klaus,
I wanted to try your way of calling directActionURLForActionNamed,
and it seemed to work on my WOLips-based Mac, but when I tried to
build on our Linux server, I got
"directActionURLForActionNamed(java.lang.String,com.webobjects.foundation.NSDictionary)
in com.webobjects.appserver.WOContext cannot be applied to
(java.lang.String,<nulltype>,boolean,boolean)". It seems we
have a slightly older WO version there. My WO 5.2.4 docs doesn't
mention your alternative either. Do you know in which WO version
this was introduced? And do you know where I can find up-to-date
docs for WOContext on the net?
/Jon
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden