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