Reputation: 12003
It generates URL with http code, how do I change it to local file so that later web services could be packed to jar and this jar will be used as library.
Upvotes: 2
Views: 1036
Reputation: 15189
The generated service class has a constructor that takes a URL
to the WSDL. Use that to point the service client to a different WSDL. See the default constructor of that class in case you don't know what to provide as QName
.
Upvotes: 3