Hi,
I am trying to add a new extension to the WSDL definition to include the
following tag:
<foo:compress type="xxxxxx">
<foo:addon name="a1">
<foo:parameter name="thePart" value="xxxx">
</foo:extension>
<foo:addon name="a2">
<foo:parameter name="part1" value="xxxx">
<foo:parameter name="part2" value="xxxx">
</foo:extension>
</foo:compress>
I am trying to add a custom WSDL extension element (nested with other custom
WSDL extension elements) registered in the App.config file. I implemented
the ServiceDescriptionFormatExtension class for the 'compress' tag.
But how to go about supporting nested elements that must go with it?
- Van.