[jboss-user] [JBossWS] - Re: Is JAX-WS only usable with EJB 3 projects?

Bouchwichman do-not-reply at jboss.com
Tue Feb 12 10:29:52 EST 2008


here is my implementation class :
package bsa.ws;
  | 
  | import javax.jws.WebMethod;
  | import javax.jws.WebService;
  | 
  | 
  | @WebService(                                                           
  |    name="Echo",
  |    targetNamespace = "http://ws.bsa",
  |    serviceName = "EchoService")
  | public class EchoBean implements IEchoBean {
  | 
  | 	@WebMethod 
  | 	public String echo(){
  | 		return "un string";
  | 	}
  | 	
  | }
  | 

i followed the tutorial (see the link in the first message). I compiled. And then, when i used the "wsprovide", that error message came. I have no "@Stateless" annotation.

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4128810#4128810

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4128810



More information about the jboss-user mailing list