Open GoogleCodeExporter opened 8 years ago
Found out the reason, the generated code was missing annotation
"@ResponseWrapper(....)", after adding code started working. Seems to be bug in
the library.
Original comment by grv...@gmail.com
on 1 Aug 2012 at 6:37
Hi, can you please be more specific about how to correct this issue? I am
experiencing the very same problem. Thanks!
Original comment by micamo...@gmail.com
on 2 Oct 2012 at 3:35
[deleted comment]
In your public 'interface XXX_PortType', there would be a interface method. In
my example below is 'my_method'.
There are two classes. One is ObjectRequest, the other is ResponseType. They
are the wrappers. In my case, I had to put the full package name of the class
rather than the simple class name.
public interface blahblah_PortType{
@WebResult(name = "RegistryResponse", targetNamespace = "xx", partName = "body")
@Action(input = "some_input", output = "some_output")
@WebMethod(operationName = "a_operation", action = "an_action")
@Generated(comments ="", value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-21T18:27:35.651+09:00")
@RequestWrapper(className = "your.package.name.ObjectsRequest")
@ResponseWrapper(className = "your.package.name.ResponseType")
public ResponseType
my_method(
@WebParam(partName = "body", name = "ObjectsRequest", targetNamespace = "xx") ObjectsRequest body);
...
...
...
Original comment by ejoo...@irm.kr
on 23 Aug 2013 at 3:30
Original issue reported on code.google.com by
grv...@gmail.com
on 23 Jul 2012 at 10:23