首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

节点的有关问题

2012-03-03 
节点的问题.?xmlversion 1.0 encoding utf-8 ?soap:Envelopexmlns:xsi http://www.w3.org/2001

节点的问题.
<?xml   version= "1.0 "   encoding= "utf-8 "?>
<soap:Envelope   xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance "   xmlns:xsd= "http://www.w3.org/2001/XMLSchema "   xmlns:soap= "http://schemas.xmlsoap.org/soap/envelope/ ">
<soap:Body>
<BIC_SendMessageQueue   xmlns= "http://tempuri.org/ ">
<Str_Mac> string </Str_Mac>
<Str_Code> string </Str_Code>
<A_Phone>
</A_Phone>
<Str_Phs> string </Str_Phs>
</BIC_SendMessageQueue>
</soap:Body>
</soap:Envelope>


请问怎么定义   <A_Phone>   这个节点的内容是数组类型,最好能给例子..

[解决办法]
数组类型好象不行吧。
可以这样
<A_Phone>
<AP> </AP>
<AP> </AP>
<AP> </AP>
<AP> </AP>
</A_Phone>
然后childNodes循环取。

热点排行