gpt4 book ai didi

xml - 无法在 soapUI 中使用 xpath 获取节点

转载 作者:数据小太阳 更新时间:2023-10-29 02:04:00 24 4
gpt4 key购买 nike

如何在 soapUI 4.0.0 中使用 Xpath 从以下响应文件访问“AccountId”节点?

提前致谢。

响应文件如下,

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetResponse xmlns="http://www.xyz.com/cmw/tcm/account">
<GetResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Account>
<AccountId>14338049839</AccountId>
<AccountLabel>Spara Femman</AccountLabel>
<AccountRoleDTOList>
<AccountRole>
<AddressTypeId>REC</AddressTypeId>
<EndDay i:nil="true"/>
<ExtPosReference i:nil="true"/>
<HolderId>10533</HolderId>
<HolderName>TÄRNHOLMS HOTELL AB</HolderName>
<HolderTypeId>COR</HolderTypeId>
<IdentificationId>005164006917</IdentificationId>
<ReportProfileId>3</ReportProfileId>
<ReportProfileName>Standard</ReportProfileName>
<RoleDocumentPath i:nil="true"/>
<RoleId>HOL</RoleId>
<RoleName>Holder</RoleName>
<ShareOfAccount>100.00000</ShareOfAccount>
</AccountRole>
</AccountRoleDTOList>
<AccountTypeId>AGG</AccountTypeId>
<CloseDay i:nil="true"/>
<CurrencyId>SEK</CurrencyId>
<CustodianAccountId i:nil="true"/>

我试过用下面的代码...但它不工作

declare namespace i='http://www.w3.org/2001/XMLSchema-instance';
//i:GetResult[1]/Account[1]

但是我遇到了这样的错误,xpath 缺少内容 declare namespace i=' http://www.w3.org/2001/XMLSchema-instance ';//i:GetResult[1]/Account[1] 响应

最佳答案

试试这个

declare namespace i='http://www.w3.org/2001/XMLSchema-instance';
//i:GetResult[1]/i:Account[1]

declare namespace i='http://www.w3.org/2001/XMLSchema-instance';
//i:GetResult[1]/*:Account[1]

关于xml - 无法在 soapUI 中使用 xpath 获取节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13624297/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com