我继承了一些WSS4J安全Web服务的代码。它基于这个流行的教程:http://distributedsenses.blogspot.com/2008/09/configuring-cxf-for-web-service.html
现在服务器端正在与其他客户端合作,但我的不是。 :(
我为tomcat生成了一个密钥库,导出了公钥,并将其安装在服务器上。但是当我尝试呼叫时,服务器回复错误没有找到解密的证书(KeyId)
现在我对代码没有做任何更改,但我确实更改了包名(我认为这对SOAP调用没有意义) - 我没有更改名称空间。
我甚至在服务器上导出了证书,以确保我正确导入它,并且它与客户端上的公钥完全匹配。所以我知道服务器有我的证书。
这是我的OutInterceptor
<bean class="org.apache.cxf.ws.security.wss4j.WSS4JOutInterceptor" id="TimestampSignEncrypt_Request"> <constructor-arg> <map> <entry key="action" value="Timestamp Signature Encrypt"/> <entry key="user" value="clientwin"/> <entry key="encryptionUser" value="tomcat2"/> <entry key="signatureKeyIdentifier" value="DirectReference"/> <entry key="signaturePropFile" value="clientSign.properties"/> <entry key="encryptionPropFile" value="clientEncrypt.properties"/> <entry key="passwordCallbackClass" value="ClientKeystorePasswordCallback"/> <entry key="signatureParts" value="{Element}{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd}Timestamp;{Element}{http://schemas.xmlsoap.org/soap/envelope/}Body"/> <entry key="encryptionParts" value="{Element}{http://www.w3.org/2000/09/xmldsig#}Signature;{Content}{http://schemas.xmlsoap.org/soap/envelope/}Body"/> <entry key="encryptionSymAlgorithm" value="http://www.w3.org/2001/04/xmlenc#tripledes-cbc"/> <entry key="encryptionKeyTransportAlgorithm" value="http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p"/> <entry key="signatureAlgorithm" value="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/> </map> </constructor-arg> </bean>
我的clientSign.properties
org.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin
org.apache.ws.security.crypto.merlin.keystore.type=jks
org.apache.ws.security.crypto.merlin.keystore.password=changeit
org.apache.ws.security.crypto.merlin.keystore.alias=clientwin
org.apache.ws.security.crypto.merlin.file=C:\\apache-tomcat-7.0.55\\ssl\\.keystore
我收到此错误的原因。我知道我的公钥在服务器的信任库中。这适用于其他客户。任何想法我做错了什么?
答案 0 :(得分:3)
首先,让我们了解发生了什么以及出了什么问题。我的客户端正在向服务器发送加密请求。我需要使用Servers公钥来加密消息。这是&#34; encryptionUser&#34;上面的财产。它的值是将服务器公钥导入我的密钥库时使用的别名。服务器将使用其私钥来解密消息。
找到任何无证书进行解密(KeyId)的原因是您(客户端)用于加密邮件的公钥与服务器所拥有的私钥不匹配。您需要让服务器使用keytool,导出其公钥,然后导入它(使用keytool),并且您使用的别名需要匹配xml中的encryptionUser。
在我的例子中,用于加密所有内容的密钥对与用于SOAP调用本身的HTTPS的密钥对不同。所以使用InstallCert,或者只是从我的Web浏览器中保存证书,同时将WSDL视为无效。
希望这有助于将来的一些菜鸟!