Hi Friends..
I found error when i develop simple JAX-WS application..
i use Netbeans6.5 and Glassfish V2..
i expose EJB3 as a Web Service..
Here is my scenario..
First, this is my EJB3 File :
and then i tried to deploy and generated Service file which named HelloBeanService throug wsimport glassfish
here is the entire code of HelloBeanService :
but there's any error in that file, namely at line :
return super.getPort(new QName("http://test.omii.ac.uk", "HelloBeanPort"), HelloBean.class , features);
.....................................HelloBeanService.java:68: cannot find symbol
symbol : method getPort(javax.xml.namespace.QName,java.lang.Class<uk.ac.omii.test.HelloBean>,javax.xml.ws.WebServiceFeature[])
location: class javax.xml.ws.Service
return super.getPort(new QName("http://test.omii.ac.uk", "HelloBeanPort"), HelloBean.class , features);
1 error
i don't know exactly what reasons causes that error.. and i don't know how to solve the error, because i'm new in JAX-WS..
please help me regarding this issue..
Thanks in advance..