| |
|
| java.lang.Object samples.jaxrpc.GetQuote1
GetQuote1 | public class GetQuote1 (Code) | | This version of the ever so popular GetQuote is a near-duplicate of
the GetQuote1 method in samples/stock which shows how to use the AXIS
client APIs with and without WSDL. This version is strictly JAX-RPC
compliant. It uses no AXIS enhancements.
This sample supports the use of the standard options too (-p ...)
author: Russell Butek (butek@us.ibm.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 method does the same thing that getQuote1 does, but in
addition it reuses the Call object to make another 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 method does the same thing that getQuote1 does, but in
addition it reuses the Call object to make another call.
|
|
|
|