下一步是
Port从您的服务中获取帮助:
Service service = Service.create(new URL(wsdlURL), serviceQN); // this is where you are.QName portQName = new QName(portNamespace, portName);YourPortInterface port = service.getPort(portQName, YourPortInterface.class);
YourPortInteface将在期间生成,
wsimport或者,如果您有足够的“阅读” wsdl经验,则可以自己创建和注释它。



