Replies: 1 comment 2 replies
-
wow it took me 4 months to discover that there were discussions in the repo, this is resolved right @brunnels ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to add some customization for a really huge SOAP wsdl.
I've been looking at the xsdata-attr plugin and have been able to figure out quite a bit from there.
Now I want to parse the WSDL for comments on the
<complexType name="Row">
that specify the fields that can be populated depending on which operation is called. I want to use those comments to get the available fields and then create a new dataclass named with 'operation_name_row.py` with and only the available fields.I was looking through the codegen/handlers but I'm not sure how to utilize them in a custom subclass of
DataclassGenerator
. Am I on the right path or should I be trying to do something outside of the generator?For an example this comment
would give me a file of
list_refreshtoken.py
with contentsBeta Was this translation helpful? Give feedback.
All reactions