Context SAP Java has been completely redesigned from 2 to 3 versions. The old JCO.Client class was replaced by JCoDestination, but this is not just a name change, the library architecture has completely changed, so moving the code from JCo 2 to JCo 3 is not just changing the class names. For example, to connect to the SAP service with Jco 2, you had to write something like this:
JCO.Client client = JCO.createClient (...);
client.connect ();
whereas with JCo 3 you have:
JCoDestination destination = JCoDestinationManager.getDestination(serviceName);
You can find information about these two libraries in this URL . In addition, this link has a detailed guide on the transition from 2 to 3. The last link is also available from the left side index to the former link, from which you can access client programming information in both versions.
remigio
source share