我有一个命名空间的XML文档,必须使用特殊的浏览器插件进行签名。
以下是和平代码,签署文件:
var oCertificate = GetCertificateBySubjectName(certificateName);
var token = oCertificate.Export(CADESCOM_ENCODE_BASE64);
var element, xmlDoc;
xmlDoc = $.parseXML(doc.toString());
element = $(xmlDoc).find("o\\:BinarySecurityToken");
element.text(token);
var xmlString = undefined;
if (window.ActiveXObject) {
xmlString = xmlDoc[0];
}
if (xmlString === undefined) {
var oSerializer = new XMLSerializer();
xmlString = (new XMLSerializer()).serializeToString(xmlDoc);
}
var doc = SignCreate(oCertificate, xmlString);
其中doc是包含XML的字符串。
以下是必须签署的XML的和平:
<s:Header>
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" s:actor="http://smev.gosuslugi.ru/actors/smev">
<o:BinarySecurityToken u:Id="uuid-ee82d445-758b-42cb-996c-666b74b60022-2" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary"/>
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" />
<SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr34102001-gostr3411" />
<Reference URI="#_1">
<Transforms>
<Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" />
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411" />
<DigestValue/>
</Reference>
</SignedInfo>
<SignatureValue/>
<KeyInfo>
<o:SecurityTokenReference>
<o:Reference ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" URI="#uuid-ee82d445-758b-42cb-996c-666b74b60022-2" />
</o:SecurityTokenReference>
</KeyInfo>
</Signature>
</o:Security>
</s:Header>
签署文件就像这样。运用
xmlDoc = $.parseXML(message.toString());
element = $(xmlDoc).find("o\\:BinarySecurityToken");
element.text(token);
我将来自sertificate的令牌放入<o:BinarySecurityToken>
然后将其转换回字符串并发送给签名。
在这个步骤中我得到了:
<o:BinarySecurityToken u:Id="uuid-ee82d445-758b-42cb-996c-666b74b60022-2" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">!!TOKEN!!</o:BinarySecurityToken>
然后
<o:BinarySecurityToken u:Id="uuid-ee82d445-758b-42cb-996c-666b74b60022-2" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">!!!TOKEN!!!</o:BinarySecurityToken>
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
<SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr34102001-gostr3411"/>
<Reference URI="#_1">
<Transforms>
<Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#gostr3411"/>
<DigestValue>!!!SIGNATURE DIGEST VALUE!!!</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue>!!!SIGNATURE!!!</SignatureValue>
一切都在FireFox和(!)IE中运行良好,但在Google Chrome中无效。在将代码放入的Chrome代码中,将其留空,所有其他方法都无效。
所以,我的问题是:我该怎么做才能解决这个问题?我尝试使用https://github.com/rfk/jquery-xmlns为jQuery提供了一些处理命名空间XML的能力,但是这个库并没有在我的代码中运行。
提前致谢。
P.S。我使用jQuery 1.10.2
答案 0 :(得分:1)
jQuery不支持命名空间,只支持节点名称中的冒号。我无法使用jquery-xmlns插件来处理当前的jQuery版本。
新的Document.querySelector()
和Document.querySelectorAll()
方法也不支持命名空间。
但Document.evaluate()
和Document
本身也是如此。他们允许使用XPath。除IE以外的所有现代浏览器都支持Document.evaluate()
。对于IE,可以使用JavaScript library将方法添加到文档对象中。
var dom = (new DOMParser()).parseFromString(xml, 'application/xml');
var resolver = {
namespaces : {
'o' : 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd'
},
lookupNamespaceURI : function(prefix) {
if (prefix == '') {
return null;
}
return this.namespaces[prefix] || null;
}
};
var node = dom.evaluate(
'//o:BinarySecurityToken',
dom,
resolver,
XPathResult.FIRST_ORDERED_NODE_TYPE,
null
).singleNodeValue;
node.appendChild(dom.createTextNode('TOKEN_TEXT'));
document.querySelector('#output').textContent = (new XMLSerializer()).serializeToString(dom);
演示:http://jsfiddle.net/mec2qxLa/2/
要使其与IE一起使用,您需要加载xpath.js。它将evaluate方法附加到document
对象。对于新的Document
个实例,您可以从那里获取它。它不发布XPathResult
对象,但它定义了一个提供它的xpath
对象。
var dom = (new DOMParser()).parseFromString(xml, 'application/xml');
if (!dom.evaluate && document.evaluate) {
dom.evaluate = document.evaluate;
if (typeof XPathResult == 'undefined') {
XPathResult = xpath.XPathResult;
}
}
...