Service Class Constructor
We have a program that extends Service. It is made available from "import javax.xml.ws.Service;"
The class calls super several times and has no syntactical error when it uses two parameters (URL/wisdl location and Qname). But when it tries to invoke the constructor with three parameters is gives an error (The constructor Service(URL, QName, WebServiceFeature[]) is undefined).
As this is an existing project, I'm wondering why it is now getting errors.
Any ideas?
Re: Service Class Constructor
Are you sure you are using the correct JDK version to compile your project? Please take a look at the Javadoc of your JDK to see if the constructor with those parameters available in the javax.xml.ws.Service class.