Jon
5.4 Wonder is where it's at
Sent from my iPad On Feb 8, 2012, at 6:32 AM, Jon Kleiser < email@hidden> wrote:
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
|