FileDocCategorySizeDatePackage
vInterface.javaAPI DocApache Axis 1.4612Sat Apr 22 18:56:52 BST 2006samples.bidbuy

vInterface.java

package samples.bidbuy ;

import java.util.Vector;

public interface vInterface {
  public void register(String registryURL, Service s) throws Exception ;
  public void unregister(String registryURL, String name) throws Exception ;
  public Boolean ping(String serverURL) throws Exception ;
  public Vector lookupAsString(String registryURL) throws Exception ;
  public double requestForQuote(String serverURL) throws Exception ;
  public String simpleBuy(String serverURL, int quantity ) throws Exception ;
  public String buy(String serverURL, int quantity, int numItems, double price)
    throws Exception;
}