标签:
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); } }
标签:
原文地址:http://www.cnblogs.com/aGboke/p/5537768.html