Re: direct action URL without a session

2016-10-28 Thread Ramsey Gurley
final WOContext context = ERXWOContext.newContext(); context.generateCompleteURLs(); context.directActionURL... On Oct 28, 2016, at 6:29 AM, o...@ocs.cz wrote: > Hello there, > > the subject says it all — is there a decent way to construct a direct action > URL from a code which has no session

Re: direct action URL without a session

2016-10-28 Thread René Bock
Hi, you may consider storing the session (and instanceId) in cookies. in my application I use something like @Override public WOSession createSessionForRequest(WORequest worequest) { WOSession session = super.createSessionForRequest(worequest);

direct action URL without a session

2016-10-28 Thread o...@ocs.cz
Hello there, the subject says it all — is there a decent way to construct a direct action URL from a code which has no session (and thus no context)? Note I need a full URL, not a relative one (it is to be used in diverse ways like “sent to client by an e-mail” etc.) At the moment, I use Appl