I have myFile.java file, in which I do this:
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
When I run myFile.java, it works just fine, but when I run myFile.jar, I'm getting NoClassDefFoundError: org/apache/axis/client/Service. If there's anything that I need to include in the manifest file when I create the jar file, why is it not complaining about client.Call, just client.Service then?
I would appreciate your help. Thank you.
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
When I run myFile.java, it works just fine, but when I run myFile.jar, I'm getting NoClassDefFoundError: org/apache/axis/client/Service. If there's anything that I need to include in the manifest file when I create the jar file, why is it not complaining about client.Call, just client.Service then?
I would appreciate your help. Thank you.