web services - Is WebService interface mandatory to write a client -


lets assume have soap based web service. if need write programmatic client(java) access webservice, need know webservice java interface?

currently, using following code in client wondering how interface in real time? in below code helloworld.class interface

    url url = new url("http://localhost:7779/ws/hello?wsdl");     qname qname = new qname("http://ws.com/", "helloworldimplservice");     service service = service.create(url, qname);     helloworld hello = service.getport(helloworld.class); 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -