次の XML があり、2 番目の値だけが必要です...どうすればよいですか?
XML:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetVersionCollectionResponse xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<GetVersionCollectionResult>
<Versions>
<Version AssignedTo="value" />
<Version AssignedTo="This value I want to get" />
<Version AssignedTo="value" />
<Version AssignedTo="value" />
</Versions>
</GetVersionCollectionResult>
</GetVersionCollectionResponse>
</soap:Body>
</soap:Envelope>
各値を取得するための XML リクエスト (2 番目の値のみを取得するように変更するにはどうすればよいですか?)
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" indent="no"></xsl:output>
<xsl:template name="ShowVariables" match="/" >
<xsl:for-each select="//*[name()='Version']">
<xsl:value-of select="@AssignedTo" />
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
よろしくお願いします。
よろしく、サイモン