Im is developing a system for processing financial transactions received by client systems of merchants, and this is a replacement for the existing system that we purchased from the supplier. The client interface should call up user authentication and transaction processing screens from our system.
The functionality of the system is as follows,
- Get input parameters from sellers site.
- Confirm it
- User authentication (users are registered in our system, and we must call our login screen)
- Process transaction
- Return a reply to seller.
One response received by the client is to verify the transaction data from the values ββin the session.
A system overview can be described as follows:

( click here for full size image )
My problem is that the client was unable to save the session when we respond to the client. But the same functionality can be achieved by the system that we purchased from the supplier (we do not have source code to analyze the internal coding structure). Hopefully something is wrong with how we respond to the client.
How can I solve this problem?
We use Java 1.4.2, the Websphere application server
java servlets session
SLM
source share