次のようなxmlファイルがあります。
<CompletePPCallback>
<MessageId>9133235059913398501</MessageId>
<keyB>keyBkeyBkeyB</keyB>
<filename>c:\temp\log\SMKFFcompleteProductionPlan.xml</filename>
</CompletePPCallback>
タグ 'filename' は、別の xml ファイルへのパスです。このファイルの例:
<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'>
<soapenv:Body>
<ns2:completeProductionPlan
xmlns='http://ServiceManagement/OIS_Services_v01.00/common'
xmlns:ns2='http://ServiceManagement/TechnicalOrderManagement/ProductionFulfillment_v01.00/types'>
<ns2:messageID>
<value>9133235059913398501_9133235059913398860</value>
</ns2:messageID>
</ns2:completeProductionPlan>
</soapenv:Body>
</soapenv:Envelope>
ここで、2 番目の xml ファイルをコピーし、最初の xml ファイルから messageID の値を変更する xsl ファイルを作成する必要があります。このようなもの:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ns2="http://ServiceManagement/TechnicalOrderManagement/ProductionFulfillment_v01.00/types"
xmlns:common="http://ServiceManagement/OIS_Services_v01.00/common"
exclude-result-prefixes="ns2 common">
<xsl:output indent="yes" method="xml" encoding="utf-8" omit-xml-declaration="yes" />
<xsl:variable name="providerXMLpath">
<xsl:value-of select="//filename" />
</xsl:variable>
<xsl:variable name="providerMessageId">
<xsl:value-of select="document($providerXMLpath)//ns2:messageID/common:value" />
</xsl:variable>
<copy>
<xsl:copy-of select="document($providerXMLpath)"/>
</copy>
<xsl:template match="/">
<FirstTag>
<xsl:choose>
<xsl:when test='$providerMessageId=//MessageId'>
<tag>
<xsl:text>Equal</xsl:text>
</tag>
</xsl:when>
<xsl:otherwise>
<tag>
<xsl:text>Different</xsl:text>
</tag>
</xsl:otherwise>
</xsl:choose>
</FirstTag>
</xsl:template>
</xsl:stylesheet>
コピー xml ファイルの値を変更するにはどうすればよいですか?
編集。取得したいものをxmlに出力します。
<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'>
<soapenv:Body>
<ns2:completeProductionPlan
xmlns='http://ServiceManagement/OIS_Services_v01.00/common'
xmlns:ns2='http://ServiceManagement/TechnicalOrderManagement/ProductionFulfillment_v01.00/types'>
<ns2:messageID>
<value>9133235059913398501</value>
</ns2:messageID>
</ns2:completeProductionPlan>
</soapenv:Body>
</soapenv:Envelope>
2 回目の更新:
Now I have this xml:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns2:completeProductionPlan
xmlns="http://ServiceManagement/OIS_Services_v01.00/common"
xmlns:ns2="http://ServiceManagement/TechnicalOrderManagement/ProductionFulfillment_v01.00/types">
<ns2:messageID>
<value>9133235059913398501_9133235059913398860</value>
</ns2:messageID>
<ns2:productionPlan>
<entityKey>
<keyA>9c4332b3-e60d-466b-9ab8-1187e98582e9</keyA>
</entityKey>
<state>
<value>readyForCompletion</value>
</state>
<service>
<entityKey>
<keyB>f51c2436-1a8e-4411-9a95-4eed04bcb412</keyB>
</entityKey>
<specification>
<specificationName>Access_Line</specificationName>
<specificationID>Access_Line</specificationID>
<characteristic>
<characteristicID>SpecificationType</characteristicID>
<characteristicValue>RFS</characteristicValue>
</characteristic>
</specification>
</service>
<service>
<entityKey>
<keyB>29b81be7-94e0-47e7-82f7-884ad57755d7</keyB>
</entityKey>
<specification>
<specificationName>Workforce_Recherche</specificationName>
<specificationID>Workforce_Recherche</specificationID>
<characteristic>
<characteristicID>SpecificationType</characteristicID>
<characteristicValue>RFS</characteristicValue>
</characteristic>
</specification>
</service>
</ns2:productionPlan>
</ns2:completeProductionPlan>
</soapenv:Body>
</soapenv:Envelope>
子タグ 'specificationName' が Workforce_Recherche 値と等しい場合、この最後のコード例の 'keyB' タグの値を、最初の xml の例の値 'keyB' tag("keyBkeyBkeyB") に置き換えたいと思います。アイデンティティテンプレートでそれを行うことはできますか? いくつかのタグ「keyB」と「specificationName」がありますが、上記のプロパティで 1 つの値のみを変更する必要があります。
私は手に入れたい:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns2:completeProductionPlan
xmlns="http://ServiceManagement/OIS_Services_v01.00/common"
xmlns:ns2="http://ServiceManagement/TechnicalOrderManagement/ProductionFulfillment_v01.00/types">
<ns2:messageID>
<value>9133235059913398501</value>
</ns2:messageID>
<ns2:productionPlan>
<entityKey>
<keyA>9c4332b3-e60d-466b-9ab8-1187e98582e9</keyA>
</entityKey>
<state>
<value>readyForCompletion</value>
</state>
<service>
<entityKey>
<keyB>f51c2436-1a8e-4411-9a95-4eed04bcb412</keyB>
</entityKey>
<specification>
<specificationName>Access_Line</specificationName>
<specificationID>Access_Line</specificationID>
<characteristic>
<characteristicID>SpecificationType</characteristicID>
<characteristicValue>RFS</characteristicValue>
</characteristic>
</specification>
</service>
<service>
<entityKey>
<keyB>keyBkeyBkeyB</keyB>
</entityKey>
<specification>
<specificationName>Workforce_Recherche</specificationName>
<specificationID>Workforce_Recherche</specificationID>
<characteristic>
<characteristicID>SpecificationType</characteristicID>
<characteristicValue>RFS</characteristicValue>
</characteristic>
</specification>
</service>
</ns2:productionPlan>
</ns2:completeProductionPlan>
</soapenv:Body>
</soapenv:Envelope>