I have a wsdl that contains the following complex type:
<complexType name="OUTGROUP">
<sequence>
<element name="NUMBER#" type="xsd:decimal" />
<element name="DOLLAR$" type="xsd:decimal" />
</sequence>
</complexType>
I was wondering what is the valid set of characters for the name attribute? Is is valid to have a # and $?
I found out that it is not valid for the value associated with the name attribute in a WSDL to contain the “#” or “$” characters. This rule is enforced because a valid WSDL must follow the
http://www.w3.org/2001/XMLSchemaschema.The valid characters can be found here