Hi,

Could somebody please tell me how to access services using a standalone java application that uses the SimpleAxisServer?
I can create the SimpleAxisServer just fine by doing the following

SimpleAxisServer axisServer = new SimpleAxisServer();

try{
    axisServer.setServerSocket(new ServerSocket(50020));
    axisServer.start();
 }
catch(IOException ioe) {
ioe.printStackTrace();
}
catch(Exception e){
e.printStackTrace();
}

 
My problem is how do I let the server instance know where the services are to be found and what services are available etc.


Regards,
D�ire
Treanor

Reply via email to