Package org.apache.axis.client does not exist
Hi,
I have developed a small test web service in java using Tomcat and Axis. So far it looks like it working as expected and I can see the wsdl and all that.
When trying to develop the client, the compiler can't seem to find the
org.apache.axis.client.ServiceClient import statement. These are my errors:
TestClient.java:3: package org.apache.axis.client does not exist
import org.apache.axis.client.ServiceClient;
^
TestClient.java:13: cannot resolve symbol
symbol : class ServiceClient
location: class TestClient
ServiceClient client = new ServiceClient(endpoint);
^
TestClient.java:13: cannot resolve symbol
symbol : class ServiceClient
location: class TestClient
I've tried moving the library files to the same directory where TestClient.java is, but it still doesn't find the package. I've also tried using some of the other import statements such as import org.apache.axis.client.Call; but it doesn't find any of them.
Could any one give me a tip as to what I might be doing wrong?
Thanks. I really appreciate it.
gilbert