Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Package org.apache.axis.client does not exist

843833Nov 25 2005
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 23 2005
Added on Nov 25 2005
0 comments
568 views