Ok, I guess your job is to show that apache is set up correctly and the fault is on the client side, so try these tests:
Using curl, with your root certificate file (you shouldn't need the intermediate one if you set apache up right), run this: Test 1: $ curl --cacert ./root.pem https://abc.com $ curl --cacert ./root.pem https://xyz.com If that returns an error, try: Test 2: $ curl -k --cacert ./root.pem https://abc.com That should work (but disables ssl validation). If it doesn't, try curl -v or read the curl man page :-) If that worked try: Test 3: Concatenate the intermediate cert (pem format) to the end of root.crt, and rerun the curl script: $ curl --cacert ./root_and_intermediate.pem https://abc.com $ curl --cacert ./root_and_intemediate.pem https://xyz.com Date: Tue, 26 Feb 2013 20:49:54 +0530 From: bijayant.mws@xxxxxxxxx To: users@xxxxxxxxxxxxxxxx Subject: Re: Certificate mismatch error Just got an update from client that after importing the intermediate cert also, the issue is not resolved !! ORA-06512:
at "SYS.UTL_HTTP", line 1029 ORA-29024:
Certificate validation failure (-29273) Thanks & Regards, BIjayant Kumar
On Tue, Feb 26, 2013 at 7:49 PM, Kumar Bijayant <bijayant.mws@xxxxxxxxx> wrote:
|