Axis2 Webservice -> php
- by Peter Hagström
Hi!
If I have understood Axis2 correct i can construct a WebService and then access it with any SOAP compatible client.
I have a java class with a couple of methods that I have written in Eclipse, and then automatically constructed a service with the Axis2 plugin from WTP.
This is the methods of my class.
public int test(int i){
return i+2;…