Hello,

I have an application written in jbossws 1.2.1 wich uses this code to invoke a 
web service

  
  | QName qname = new QName("http://myapp.com/webservices/impl";, 
"TestService");                
  | TestService_Service service = new TestService_Service(null, qname); 
  | TestService stub = (TestService) service.getTestServicePort();
  |            
  | configureStub(ctx, (javax.xml.ws.BindingProvider)stub);                     
                
  | 
  | return stub.hello("hello world");
  | 

I try to migrate it to jbossws 2.0.3 and get a NullPointerException, because 
I've specified a null wsdlLocation on TestService_Service constructor. Is there 
a way of making it work without specifying an wsdlLocation at this point?

Thanks a lot.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4142086
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to