There's already a Manifest-File:
Manifest-Version: 1.0
MainClass: example.example.Main
Created by: Thomas Schröter, [EMAIL PROTECTED]
The application already works. But if the
Remote-Class instantiated I get
a NoClassDefFoundError
org.apache.axis.client.Service; at runtime.
But If I compiled the Remote-Class standalone and
add the main-function to it:
class Remote {
..
public static void main {
Service service = new
Service();
}
..
}
it works fine. The org.apache.axis.client.Service class instantiated
correctly.
I don't understand it!
|