I developed my stored front app. My workaround is

- first connection to your ccp (POST method), usually returns you a
redirecting url;
- second connection to the redirect connection, usually returns you the
posting result;
- save result and load your page.

-----Original Message-----
From: Christopher Williams [mailto:[EMAIL PROTECTED] 
Sent: September 11, 2003 4:53 AM
To: Tomcat Users List
Subject: Re: mysite -> 3rd party -> mysite, session *sometimes* lost

I'm guessing that you redirect to the credit card processor's URL, supplying
your own URL as a GET parameter.  Try calling response.encodeURL() on your
own URL before supplying it so that the session ID is appended.

If it still doesn't work, you need to work round it by persisting the
current session state, adding some ID as a GET parameter to your own URL (be
sure to call URLEncoder.encode() on the query string) and then repopulating
the session when you're called back.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to