Hello, there!
In my transaction, I create an XML document using the SAP XMII XML Output actions.
Then, I assign this document to an Output parameter for this transaction.
If a put a Tracer after this, Iu2019m able to see my XML perfectly generated.
Now, on my .Net client, Iu2019d like to consume this transaction as a WebService.
But, after the Row elements of the output, nothing corresponds to the real XML that was generated. I can see the output is all messed-up debugging my .Net client.
Iu2019ve found out that this is happening because the WSDL generated by WSDLGen isnu2019t correct. And I can understand why it is so: as the output is generated on-the-fly, WSDLGen cannot know about its structure when constructing the WSDL.
So, is there a way I can associate, say, a Reference Document to my Output parameter, so that WSDLGen can generate the WSDL correctly?
If not, is there another way I can make this thing work?
Thanks a lot in advance!