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 send a message through the connector using the WSIF interface.
To send a simple String message, the application uses code like the following:
OutgoingSampleProxy aProxy = new Lu62TestClientProxy(); String outPutString = aProxy.OutGoingOp("out going");
To send a complex message, the application uses code like the following:
OutgoingSampleProxy aProxy = new Lu62TestClientProxy(); INPUTMSG in=new INPUTMSG(); in.setTranid("AIR2"); in.setCityto__input("BeiJing "); OUTPUTMSG out = aProxy.OutGoingOp(in);