| |
|
| java.lang.Object samples.stock.GetQuote1
GetQuote1 | public class GetQuote1 (Code) | | This version of the ever so popular GetQuote shows how to use the
Axis client APIs with and without WSDL. The first flavor (getQuote1)
will use WSDL to prefill all of the data about the remote service.
The second one (getQuote2) will do it all manually. Either way the
service is invoked it should produce the exact same request XML and
of course same results.
This sample supports the use of the standard options too (-p ...)
author: Doug Davis (dug@us.ibm.com.com) |
Method Summary | |
public float | getQuote1(String args) This will use the WSDL to prefill all of the info needed to make
the call. | public float | getQuote2(String args) This will do everything manually (ie. | public float | getQuote3(String args) This will use the WSDL to prefill all of the info needed to make
the call. | public static void | main(String args) |
getQuote1 | public float getQuote1(String args) throws Exception(Code) | | This will use the WSDL to prefill all of the info needed to make
the call. All that's left is filling in the args to invoke().
|
getQuote2 | public float getQuote2(String args) throws Exception(Code) | | This will do everything manually (ie. no WSDL).
|
getQuote3 | public float getQuote3(String args) throws Exception(Code) | | This will use the WSDL to prefill all of the info needed to make
the call. All that's left is filling in the args to invoke().
|
|
|
|