public class Test { public static void main(String[] args) { JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean(); factory.getInInterceptors().add(new LoggingInInterceptor()); factory.getOutInterceptors().add(new LoggingOutInterceptor()); factory.setServiceClass(IhlWebservice.class); factory.setAddress("http://localhost:8080/charge/services/reportStatusService"); IhlWebservice client = (IhlWebservice) factory.create(); String reply = client.receiveUpdateReportStatusForApply("R2016052800001", "20"); System.out.println("Server said: " + reply); } }
时间: 2024-10-27 04:45:26