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]
