[jboss-user] [JBossWS] - Re: Server startup hangs when injecting @WebServiceRef into

kevinpauli do-not-reply at jboss.com
Thu Aug 9 13:33:24 EDT 2007


D'oh, sorry, I posted the wrong code for the MBean Implementation.  It should be:


  | package kp;
  | 
  | import javax.xml.ws.WebServiceRef;
  | 
  | import org.jboss.annotation.ejb.Service;
  | 
  | @Service
  | public class AdhocServicesBean implements AdhocServicesManagement
  | {
  | 	@WebServiceRef(wsdlLocation="http://127.0.0.1:8080/kp/HelloWebService?wsdl")
  | 	HelloWebService helloWebService;
  | 	
  | 	public void invokeWS(String name)
  | 	{
  | 		helloWebService.hello(name);
  | 	}
  | }
  | 

The problem is still the same, however.

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

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



More information about the jboss-user mailing list