Hello.
Reference:
http://download.oracle.com/docs/cd/E17802_01/webservices/webservices/docs/2.0/tutorial/doc/JavaWSTutorial.pdf
Section: Building Web Services with JAX-WS.
IDE used: Eclipse
Objective:
------------
I wish to create a client which can interact with a WebService. The code for both of them is listed below. The Android Emulator acts as my client if I'm right; please correct me.
1> I created a new Web Service Project named HelloService. No errors.
2> When it came to Client, I again created a new Web Service Project named SimpleClient.
Then a package named 'simple client', followed by a class named HelloClient. But I get errors. What wrong did I do? In the first place, was it right to create the Client as a Web Service Project.
3> Further, how do I link the Webservice with the Client? They both are two seperate Projects isn't? How can they be made to interact?
__________________________________________________________________
// Webservice
------------------------------------------------------------
package helloservice.endpoint;
import javax.jws.WebService; // error
@WebService() // error
public class Hello {
private String message = new String("Hello, ");
public void Hello() {}
@WebMethod() // error
public String sayHello(String name) {
return message + name + ".";
}
}
--------------------------------------------------------------
// Client
--------------------------------------------------------------
package simpleclient;
import javax.xml.ws.WebServiceRef;
import helloservice.endpoint.HelloService;
import helloservice.endpoint.Hello;
public class HelloClient {
@WebServiceRef(wsdlLocation="http://localhost:8080/helloservice/hello?wsdl")
static HelloService service;
public static void main(String[] args) {
try {
HelloClient client = new HelloClient();
client.doTest(args);
} catch(Exception e) {
e.printStackTrace();
}
}
public void doTest(String[] args) {
try {
System.out.println("Retrieving the port from the following service: " + service);
Hello port = service.getHelloPort();
System.out.println("Invoking the sayHello operation on the port.");
String name;
if (args.length > 0) {
name = args[0];
} else {
name = "No Name";
}
String response = port.sayHello(name);
System.out.println(response);
} catch(Exception e) {
e.printStackTrace();
}
}
}
-----------------------------------------------------------------