Prev | Current Page 337 | Next

Binildas A Christudas

"Service-Oriented Java Business Integration"


public interface IHello
{
String hello(String param);
}
IHelloWeb.java: In order to deploy a web service, we need an interface
complying with the Java RMI semantics, and IHelloWeb will serve
this purpose.
public interface IHelloWeb extends IHello, java.rmi.Remote {}
???
???
Chapter 13
[ 253 ]
HelloWebService.wsdl:
The main sections in the web service WSDL is shown as follows:






type="impl:IHelloWeb">


name="HelloWebService">
location="http://localhost:8080/AxisEndToEnd/services/
HelloWebService"/>



This is enough about the web service and we will move on to the next step.
Axis Generated Client Stubs
We use org.apache.axis.wsdl.


Pages:
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349