IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Running the Client/Server application on separate machines

Procedure

  1. Deploy server side project (RichClientHelloWorldEAR, include RichClientHelloWorldRCS) to another machine.
  2. Modify the connection files in client side project (RichClientHelloWorld)
    • Config.xml:
      <?xml version="1.0" encoding="UTF-8"?>
      <config>
          <btt.xml path="http://localhost:9080/RichClientHelloWorldRCS/btt/client/btt.xml"/>
      </config>
      Change "localhost" to new server's IP address. Change "9080" to new server's port.
    • Activator.java:
      // Initiate the BTT run time environment
      InitManager.reset("http://localhost:9080/RichClientHelloWorldRCS/btt/client/btt.xml");
      Change "localhost" to new server's IP address. Change "9080" to new server's port.


Feedback