FileDocCategorySizeDatePackage
Invoke_Hello.javaAPI DocExample1159Tue Oct 09 11:03:40 BST 2001com.ecerami.wsdl

Invoke_Hello

public class Invoke_Hello extends Object
SOAP Invoker. This class invokes the Hello_PortTypeProxy class. Hello_PortTypeProxy.java is automatically generated via the IBM proxygen command line tool.

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)
Main Method

    Invoke_Hello hello = new Invoke_Hello();
    System.out.println ("Hello Service Response:  ");
    String greeting = hello.sayHello("World");
    System.out.println (greeting);
  
public java.lang.StringsayHello(java.lang.String msg)
SOAP Invoker.

    Hello_PortTypeProxy proxy = new Hello_PortTypeProxy ();
    String greeting = proxy.sayHello (msg);
    return greeting;