0
私の入力XMLは次のとおりです。なぜ私は値を取得していないです
<urp>
<pRespId>2345</pRespId>
<pRespApplId>800</pRespApplId>
<pSecurityGroupID>0</pSecurityGroupID>
</urp>
私はXSL以下使用して、いくつかの変数値移入しようとしています:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:variable name="pRespId" select="urp/pRespId" />
<xsl:variable name="pRespApplId" select="urp/pRespApplId" />
<xsl:variable name="pSecurityGroupID" select="urp/pSecurityGroupID" />
<xsl:variable name="newURI" select = "'pRespId=$pRespId&pRespApplId=$pRespApplId&pSecurityGroupID=$pSecurityGroupID'"/>
</xsl:template>
</xsl:stylesheet>
を何とか、私が取得することはできませんよof the pRespId、pRespApplId &、newURIのpSecurityGroupID。私は、この行で何かが欠けています知っている
pRespId=2345&pRespApplId=800&pSecurityGroupID=0
:
<xsl:variable name="newURI" select = "'pRespId=$pRespId&pRespApplId=$pRespApplId&pSecurityGroupID=$pSecurityGroupID'"
誰かが私がここで行方不明です何を整流することができるそれは常に私に
pRespId=$pRespId&pRespApplId=$pRespApplId&pSecurityGroupID=$pSecurityGroupID
代わりのを見せていますか?