任何人都知道什么是关于在贝宝沙箱中遇到的错误的问题?
它是几个月上次做工精细,我们改变了我们的服务器和IPN停止工作。 我们不知道是贝宝的问题还是我们的问题。
在Web服务器的访问日志有没有出了贝宝IPN POST日志条目,我们想不出有什么问题。
IPN传递失败:I / O错误:RSA预置密码错误; 嵌套的例外是javax.net.ssl.SSLKeyException:RSA预置密码错误
https://developer.paypal.com/webapps/developer/applications/ipn_simulator
额外的信息:我们正在使用两个SSL证书两种不同的子域在一个单一的IP。
例如:
https://www.example.com/ -对于主网站(SSL证书A)
https://ipn.example.com/ -贝宝IPN(SSL证书B)
<VirtualHost x.x.x.x:443>
ServerName ipn.example.com
DocumentRoot "/path/to/ipn.example"
SSLEngine on
SSLCertificateFile "/path/to/ipn_example_com.crt"
SSLCertificateKeyFile "/path/to/ipn_example_com.key"
SSLCertificateChainFile "/path/to/CA1.pem"
</VirtualHost>
<VirtualHost x.x.x.x:443>
ServerName www.example.com
ServerAlias example.com
DocumentRoot "/path/to/www.example"
SSLEngine on
SSLCertificateFile "/path/to/www_example_com.crt"
SSLCertificateKeyFile "/path/to/www_example_com.key"
SSLCertificateChainFile "/path/to/CA2.pem"
</VirtualHost>
xxxx是一个IP地址(IP两者是相同的)