I have following WSDL URL :
https://www.deanumber.com/Websvc/deaWebsvc.asmx?wsdl
There are many WSDL operations as you can see when you hit the URL. But , I just want to run GetQuery operation and get the response (GetQueryResponse in the WSDL ).
I am able to successfully test this in SoapUI. The response is coming properly. I want to do the same in my existing web project (Java) in Eclipse.
As per How do you convert wsdl to java classes using Eclipse? , I used Eclipse to auto-generate the WSDL client code from the URL and 20+ Java files got created in my web project including GetQuery.java and GetQueryResponse.java. I know how to instantiate GetQuery.java , but do not know how to get the response. Is there any standard way to call the already generated client code?