I instelled Axis2 which is running ok. I can see that link is visible: http://localhost:8080/axis2/services/
Issue that I am having is this:
import org.apache.axis2.client.ServiceClient;
public class Test {
public static void main() {
ServiceClient sc = new ServiceClient();
}
}
Test.java:7: error: cannot find symbol ServiceClient sc = new ServiceClient(); ^ symbol: class ServiceClient location: class Test 3 errors
I tried with not importing, importing but it is always like this.
thank you. miha