如何从属性文件加载xpath查询?
当我尝试这样做时,它只是打印相当于xpath查询的文本,而不是评估它。
props.xml文件:
<strings>
<string id='msg012'>/soapNs:Envelope/soapNs:Body/schNs:processArchiveRequest/schNs:fulfillmentRequest/schNs:requestHeader/schNs:requestID</string>
xsl文件:
<sample><xsl:value-of select="document('props.xml')//string[@id='msg012']"/></sample>
这篇文章(Read properties file or a text file in xsl)讨论了如何替换属性文件中的文本值。但是,我正在寻找从prop文件加载和评估xpath查询的东西。