David A. Arroyo
David A. Arroyo
I haven't looked to deeply into this, but I looked at the output from an `xsdgen` run. Looking at the schema, I would expect this type MonthDay string which is...
Thanks for the report. The problem appears to be that the root element, regardless of what it is, doesn't get a namespace. This could be fixed in the code generation...
Actually, looking at this closer, the fact that the `Signature` field in `MetaDataType` does not have a namespace seems like a bug. I recall a previous issue where the code...
It looks like setting the targetNamespace did not fix the issue and this is a variation of #65 ; elements in another namespace mistakenly get labelled with the targetNamespace of...
I admit I haven't even manually tested this part of the generated code very thoroughly. Would you happen to have a WSDL endpoint in mind that we can use as...
Ah, it looks like the tests I have in wsdlgen/examples/* only test marshalling. I think the gentests/_testgen can be easily extended to generate tests for wsdlgen if there is a...
Ok, I 've got some rudimentary tests pushed in the `issue-25` branch and I think I might see the problem. It looks like I may have added an unnecessary layer...
Ok, the relevant portion of the WSDL spec is https://www.w3.org/TR/2001/NOTE-wsdl-20010315#_porttypes and it does seem like I have a few too many layers here.
OK, reading the specs a bit more I'm beginning to understand. https://www.w3.org/TR/2001/NOTE-wsdl-20010315#_soap:operation > The value of this attribute also affects the way in which the Body of the SOAP message...
Easy compromise; generate the tests and check them in with each change. It's a bit of tedium, but could be automated and is an easier problem to solve than running...