import webservices.fire.dragonsoft.com.*;

/*
 * File: FIREClient.java
 * Created on Apr 29, 2005
 */

/**
 *
 * @author Nick Stroh
 */
public class FIREClient {

    public static void main( String args[] ) {

        //  Retrieve a reference to the remote service
        try {
         
    FIREServicesLocator locator = new FIREServicesLocator();
    FIRE service = locator.getFIREPort();

    // Invoke the remote service with the date.

    System.out.println("Server says: " + service.getResults("a", "a", "a") );
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
