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
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to