TANGO Java API classes

See : Release Note

Getting started with java client api



The quickest way of getting started is by studying this example:

/**
* Example of a client using the TANGO Api
*/
package my_package;

import fr.esrf.Tango.*;
import fr.esrf.TangoDs.*;
import fr.esrf.TangoApi.*;

public class StartingWithTango
{ }




Modify this example to fit your device server or client's needs, compile it.
Do not forget when you start it to set the parameter TANGO_HOST with <host_name>:<port_number>
(i.e. java -DTANGO_HOST=hal:2001 my_package.StartingWithTango
or if you have two database servers running
    java -DTANGO_HOST=hal:2001,hal:3001 my_package.StartingWithTango).

And forget about those painful early Tango days when you had to learn CORBA and manipulate Any's.
Life is going to easy and fun from now.