The short answer is that you can make up your name. A typical way to create a QName and instantiate a service in Java would be:
QName serviceName = new QName("http://www.xmethods.net/sd/BNQuoteService.wsdl","BNQuoteService"); Service service = Service.create(url, serviceName);
The QName line appeared on this IBM site .
source share