In the hackathon we came up with this very cool feature called
*deploying a service in two steps !!!*
Isn't that a cool to start an Axis2 server and deploy a service in only
two steps , yes it is cool , Try this out.
Say you have a service class called , MyService as follows,
public class MyService {
public String helloWord(){
return "HelloWord!!";
}
}
Next
public static void main(String[] args) throws Exception{
AxisServer server = new AxisServer();* // (step1)**
*server.deployService(MyService.class.getName());* //(step2)*
}
Next go and browse
“http://localhost:6060/axis2/services/MyService/helloWord
<http://localhost:6060/axis2/services/>” and see what you are getting.
<ns:helloWordResponse>
<return>HelloWord!!</return>
</ns:helloWordResponse>
So see how simple to create and invoke a service in Axis2 !!!!
Thanks
Deepal
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]