Hi,
I have a seam application packaged into .jar .war and .ear files running on jboss 6.0.0.
Adding the @WebService annotation I get the deployment error that follows. Everything worked fine on jboss 5.x.x.
Can anyone help me ?
Thank you in advance.
Fab.
@Stateless()
@WebService(name="Graphs",
targetNamespace="http://laura.villani/graph",
serviceName="GraphsService"
)
@SOAPBinding(parameterStyle=ParameterStyle.BARE)
public class Graphs {
@WebMethod
public String getGraphName()
{
return "Graph 1";
}
}