Hi,
I would need some pointers developing web services client. The web services has already been deployed using Tomcat and Axis. I can see the exposed methods from the link. Now I need to write a client to be able to use those methods. Specifically, how to use the URI link from my java program and invoke those methods provided by the webservices?
I have checked online . In this example, they use the following:
public class HelloClient {
@WebServiceRef(wsdlLocation=" helloservice/hello?wsdl")
However, I do not see how this service( is reference in the code. One of the method provided by software vendor is getFamilyName which takes a parameter of a familyname(type string). Then, returns all information about a person having the specified family name.
Thanks
John
I would need some pointers developing web services client. The web services has already been deployed using Tomcat and Axis. I can see the exposed methods from the link. Now I need to write a client to be able to use those methods. Specifically, how to use the URI link from my java program and invoke those methods provided by the webservices?
I have checked online . In this example, they use the following:
public class HelloClient {
@WebServiceRef(wsdlLocation=" helloservice/hello?wsdl")
However, I do not see how this service( is reference in the code. One of the method provided by software vendor is getFamilyName which takes a parameter of a familyname(type string). Then, returns all information about a person having the specified family name.
Thanks
John