简体   繁体   中英

How to create a Java client for Web Service?

I have successfully created . Tested it and getting the WSDL file also. The client that will use this Web Service is a simple Java class.

I am able to create a jsp client and call the methods of Web Service. But I need to call the Web Service from a Java class.

How do I bind this Java client with Web Service?

The following steps I followed in NetBeans for creating the Java Client...

  1. I created a simple J2SE Application.
  2. Made it a Web Service Client of the WebService made by me.
  3. I'm getting the Web Service References of my WebService.

But I'm not able to call the method of the WebService. Here is the Client file...

package client_package;
public class client {

public static void main(String args[])
{
   System.out.println("1");
   System.out.println(hello("megha"));
   System.out.println("2");
}
private static String hello(String name) {


    WS_package.WebService1 service = new WS_package.WebService1(); //package WS_package does not exists
    WS_package.WebService1 port = service.getWebService1Port(); //package WS_package does not exists


 name =  port.hello(name);

return name;
}
}

You could use wsimport tool to generate a client stub files, from command line:

wsimport -keep http://localhost:8080/webservices/helloService?wsdl

then import the generated files and use them like you did above

HelloServiceImplService helloService = new HelloServiceImplService();
HelloService hello = helloService.getHelloServiceImplPort();

There are also some frameworks arround to work with Webservices, like Apache CXF and Apache Axis

Update: Just noticed its an old question, if the OP knew the answer, he should update the topic.

您可以尝试使用Jersey及其客户端API

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM