ifssolution
Programmer
Dear:
I have a Web Services with a WebMethod:
public ArrayList GetLanguages()
{
ArrayList Lang_Array = ...;
return Lang_Array;
}
and the response is:
<?xml version="1.0" encoding="utf-8" ?>
<ArrayOfAnyType xmlns:xsd=" xmlns:xsi=" xmlns=" <anyType xsi:type="ArrayOfAnyType">
<anyType xsi:type="xsd:string">aa</anyType>
<anyType xsi:type="xsd:string">Afar</anyType>
</anyType>
....
And I would like to change the XML Tags of this response (for example: "langs" instead of "anyType" ). How can I do that?
Thanks
I have a Web Services with a WebMethod:
public ArrayList GetLanguages()
{
ArrayList Lang_Array = ...;
return Lang_Array;
}
and the response is:
<?xml version="1.0" encoding="utf-8" ?>
<ArrayOfAnyType xmlns:xsd=" xmlns:xsi=" xmlns=" <anyType xsi:type="ArrayOfAnyType">
<anyType xsi:type="xsd:string">aa</anyType>
<anyType xsi:type="xsd:string">Afar</anyType>
</anyType>
....
And I would like to change the XML Tags of this response (for example: "langs" instead of "anyType" ). How can I do that?
Thanks