You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to XML Schema
Hi, I need to have a schema for web sevice return. It has Status
element which could be SCD or FLD. And if the status is SCD then it
will have elemnts for the detail information; if the status is FLD the
it will only has Message element. Example:
<return>
<status>SCD</status>
<name>test</name>
<age>12</age>
...
</return>
or
<return>
<status>FLD</status>
<message>test</message>
</return>