I'm trying to use a Webservice which is SSL secured with ColdFusion.
开发者_如何学CNow the following Error is occuring:
Name in certificate
test.xyz.de' does not match host name
service.xyz.de'
I've installed the SSL cert in ColdFusion using the keytool. How could I get this work?
Thx.
Probably you need to export different certificates for those domains:
Check out this tool, really handy comparing to keytool:
http://certman.riaforge.org/
Here's also good post containing how-to for exporting certificates:
http://www.talkingtree.com/blog/index.cfm?mode=entry&entry=25AA75A4-45A6-2844-7CA3EECD842DB576
It seems if it's working in ColdFusion 9
Are you running each of the web services off of a different IP address? You can only run one SSL certificate per one IP address: http://wiki.apache.org/httpd/NameBasedSSLVHosts
I'd strongly suggest you get a wildcard certificate for your domain
*.xyz.de
Then you can use all sorts of combinations over as many servers as you choose.
We do this here, and have no issues with webservices.
Here is the one we use http://www.digicert.com/wildcard-ssl-certificates.htm
精彩评论