1 16 package org.apache.axis.wsi.scm.logging; 17 18 23 public class LoggingFacilityClient { 24 public static void main(String [] args) throws Exception { 25 LoggingFacilityService service = new LoggingFacilityServiceLocator(); 27 28 LoggingFacilityLogPortType port = service.getLoggingFacilityPort(); 30 port.logEvent(null); 31 GetEventsResponseType response = port.getEvents(null); 32 System.out.println(response); 33 } 34 } 35 | Popular Tags |