On Monday 20 December 2010 5:43:02 am artyom wrote: > Hello, > > I have interface with method > > @RequestWrapper(localName = "FindNew", targetNamespace = "namespace.lv", > className = "lv.namespace.FindNew") > @WebMethod(operationName = "FindNew", action = > "namespace.lv/mrb.service.FindNew") > @ResponseWrapper(localName = "FindNewResponse", targetNamespace = > "namespace.lv", className = "lv.namespace.FindNewResponse") > public void findNew( > // some methods description here > ); > > I can successfully connect to web service and get result back, but I have > troubles getting that "FindNewResponse" object (some info there I need), > can someone give me a hint how can I get this object ? > Thank you.
I'm not sure why you would need it. You could run the java2ws with the - wrapperbean flag to have it generate the appropriate wrapper bean for you. Is that what you need? -- Daniel Kulp [email protected] http://dankulp.com/blog
