I have an tag like below in my xsd file and this tag will pass the schema validation:
<xsd:element name="GetData" type="getDataType" />
But as per my requirement, i have to add prefix string value with all the tag(
<xsd:element name="Provision:GetData" type="getDataType" />
i tried to simply put this prefix string but i am getting following error:
Invalid attribute value for 'name' in element 'element'. Recorded reason: cvc-datatype-valid.1.2.1: 'Provision:GetData' is not a valid value for 'NCName'.
I have google it also but couldn't get any proper solution. So i wish any of you could help me out with this problem.