4

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] 

しかし、Missing content for xpath declare namespace i=' http://www.w3.org/2001/XMLSchema-instance ';のようなエラーが発生しています。//i:GetResult[1]/Account[1] の応答

4

1 に答える 1

6

これを試して

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] 
于 2012-11-29T20:21:07.047 に答える