Once you have created and deployed the WSIF interface for the SNA JCA LU62 Connector and the Connector has been installed on the WebSphere(R) Application Server machine, you can receive a message from the connector using the WSIF interface.
To receive a simple String message, the application uses code like the following:
OutgoingSampleProxy aProxy = new Lu62TestClientProxy(); String outPutString = aProxy.IncomingOp("");
To receive a complex message, the application uses code like the following:
OutgoingSampleProxy aProxy = new Lu62TestClientProxy(); INPUTMSG in=new INPUTMSG(); OUTPUTMSG out = aProxy.IncomingOp(in);