FileDocCategorySizeDatePackage
Glue2Apache.javaAPI DocExample593Tue Jan 15 12:12:26 GMT 2002javasoap.book.ch9.clients

Glue2Apache

public class Glue2Apache extends Object

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


       IQuoteProxyService service = (IQuoteProxyService)Registry.bind(
              "http://georgetown:8080/soap/QuoteProxyService.wsdl",
              IQuoteProxyService.class);

       ProxyQuote[] quotes = service.getQuotes(args);
       int cnt = quotes.length;
       for (int i = 0; i < cnt; i++) {
          System.out.println(quotes[i]);
          System.out.println("");
       }