FileDocCategorySizeDatePackage
LoggingFacilityClient.javaAPI DocApache Axis 1.41262Sat Apr 22 18:56:52 BST 2006org.apache.axis.wsi.scm.logging

LoggingFacilityClient

public class LoggingFacilityClient extends Object
Test client for LoggingFacilityService
author
Ias (iasandcb@tmax.co.kr)

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

          // Make a service
        LoggingFacilityService service = new LoggingFacilityServiceLocator();
 
          // Now use the service to get a stub which implements the SEI.
          LoggingFacilityLogPortType port = service.getLoggingFacilityPort();
          port.logEvent(null);
          GetEventsResponseType response = port.getEvents(null);
          System.out.println(response);