Hi,
I am using ofbiz embedded inside tomcat (vs. the normal config of tomcat container embedded inside ofbiz). I dont think it matters in this case, but I am getting No trusted certificate found (see below the exact error). I have imported actual authorize.net certificate (by going to https://www.authorize.net and exporting their certificate and then importing it into keystores) under alias AUTHORIZE_NET in both users default keystore as well as the one tomcat is using which is under OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. Not sure what am I missing here. 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO ] Could not complete Authorize.Net transaction: org.ofbiz.base.util.HttpClientException : IO Error processing request (java.security.cert.CertificateException: No trust ed certificate found) |
Anyone knows which certificate and where it needs to be imported for authorize.net to work?
|
found this in the ofbiz mailing list archive
http://www.nabble.com/Authorize.net-payment-processor-problem-to13135048.html#a13139217 Ritz123 sent the following on 7/24/2008 9:51 AM: > Anyone knows which certificate and where it needs to be imported for > authorize.net to work? > > > > Ritz123 wrote: >> Hi, >> >> I am using ofbiz embedded inside tomcat (vs. the normal config of tomcat >> container embedded inside ofbiz). I dont think it matters in this case, >> but I am getting No trusted certificate found (see below the exact error). >> >> I have imported actual authorize.net certificate (by going to >> https://www.authorize.net and exporting their certificate and then >> importing it into keystores) under alias AUTHORIZE_NET in both users >> default keystore as well as the one tomcat is using which is under >> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. Not >> sure what am I missing here. >> >> >> 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO ] >> Could >> not complete Authorize.Net transaction: >> org.ofbiz.base.util.HttpClientException >> : IO Error processing request (java.security.cert.CertificateException: No >> trust >> ed certificate found) >> >> >> > |
Thanks BJ, Seems like the new filename is ofbizssl.jks the one mentioned in the thread doesnt seem to exist. But as I mentioned earlier, I have added authorize.net certificates to all the possible keystores, still get the error.
I am surprised that no one else has seen this error, or commented on it, since authorize.net is probably one of the most common features ppl would use. Again, I will appreciate any other pointers and more comments from ppl.
|
actually paypal or verisign are the two my clients use.
Ritz123 sent the following on 7/24/2008 12:41 PM: > Thanks BJ, Seems like the new filename is ofbizssl.jks the one mentioned in > the thread doesnt seem to exist. But as I mentioned earlier, I have added > authorize.net certificates to all the possible keystores, still get the > error. > > I am surprised that no one else has seen this error, or commented on it, > since authorize.net is probably one of the most common features ppl would > use. > > Again, I will appreciate any other pointers and more comments from ppl. > > > BJ Freeman wrote: >> found this in the ofbiz mailing list archive >> http://www.nabble.com/Authorize.net-payment-processor-problem-to13135048.html#a13139217 >> >> Ritz123 sent the following on 7/24/2008 9:51 AM: >>> Anyone knows which certificate and where it needs to be imported for >>> authorize.net to work? >>> >>> >>> >>> Ritz123 wrote: >>>> Hi, >>>> >>>> I am using ofbiz embedded inside tomcat (vs. the normal config of tomcat >>>> container embedded inside ofbiz). I dont think it matters in this case, >>>> but I am getting No trusted certificate found (see below the exact >>>> error). >>>> >>>> I have imported actual authorize.net certificate (by going to >>>> https://www.authorize.net and exporting their certificate and then >>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>> default keystore as well as the one tomcat is using which is under >>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. >>>> Not >>>> sure what am I missing here. >>>> >>>> >>>> 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO >>>> ] >>>> Could >>>> not complete Authorize.Net transaction: >>>> org.ofbiz.base.util.HttpClientException >>>> : IO Error processing request (java.security.cert.CertificateException: >>>> No >>>> trust >>>> ed certificate found) >>>> >>>> >>>> >> >> > |
In reply to this post by Ritesh Trivedi
I don't know about Authorize.net but I had similar problem while using
the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. However few pointers which may be helpful. 1. I am not sure there is something like authrorize.net certificate. Generally certificates are CA signed certificates and well known CAs are recognized by web clients such as web browsers as they have a pre-populated CA store. 2. If you are using a CA certificate for testing (for example self signed CA certificate or a trail certificate). You will need to add it to the your applications to CA certificate store. Generally browser have a support for adding the certificates in the stores. 3. There are two way in Java application to use the CA store. i) Import your certificate in the default JDK store (it is in the ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA store as JVM argument to the command line of your Java application (This method did not work for me due to some reason). For testing, my suggestion is you import the CA certificate in JVM default CA store. You can use the keytool command to import the certificate. I hope this will be helpful. Thanks, Raj Ritz123 wrote: > Anyone knows which certificate and where it needs to be imported for > authorize.net to work? > r > > > Ritz123 wrote: > >> Hi, >> >> I am using ofbiz embedded inside tomcat (vs. the normal config of tomcatr >> container embedded inside ofbiz). I dont think it matters in this case, >> but I am getting No trusted certificate found (see below the exact error). >> >> I have imported actual authorize.net certificate (by going to >> https://www.authorize.net and exporting their certificate and then >> importing it into keystores) under alias AUTHORIZE_NET in both users >> default keystore as well as the one tomcat is using which is under >> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. Not >> sure what am I missing here. >> >> >> 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO ] >> Could >> not complete Authorize.Net transaction: >> org.ofbiz.base.util.HttpClientException >> : IO Error processing request (java.security.cert.CertificateException: No >> trust >> ed certificate found) >> >> >> >> > > |
In reply to this post by Ritesh Trivedi
I am wondering if the cert for ofbiz, it self is expired that that may
be the cause. Ritz123 sent the following on 7/24/2008 12:41 PM: > Thanks BJ, Seems like the new filename is ofbizssl.jks the one mentioned in > the thread doesnt seem to exist. But as I mentioned earlier, I have added > authorize.net certificates to all the possible keystores, still get the > error. > > I am surprised that no one else has seen this error, or commented on it, > since authorize.net is probably one of the most common features ppl would > use. > > Again, I will appreciate any other pointers and more comments from ppl. > > > BJ Freeman wrote: >> found this in the ofbiz mailing list archive >> http://www.nabble.com/Authorize.net-payment-processor-problem-to13135048.html#a13139217 >> >> Ritz123 sent the following on 7/24/2008 9:51 AM: >>> Anyone knows which certificate and where it needs to be imported for >>> authorize.net to work? >>> >>> >>> >>> Ritz123 wrote: >>>> Hi, >>>> >>>> I am using ofbiz embedded inside tomcat (vs. the normal config of tomcat >>>> container embedded inside ofbiz). I dont think it matters in this case, >>>> but I am getting No trusted certificate found (see below the exact >>>> error). >>>> >>>> I have imported actual authorize.net certificate (by going to >>>> https://www.authorize.net and exporting their certificate and then >>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>> default keystore as well as the one tomcat is using which is under >>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. >>>> Not >>>> sure what am I missing here. >>>> >>>> >>>> 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO >>>> ] >>>> Could >>>> not complete Authorize.Net transaction: >>>> org.ofbiz.base.util.HttpClientException >>>> : IO Error processing request (java.security.cert.CertificateException: >>>> No >>>> trust >>>> ed certificate found) >>>> >>>> >>>> >> >> > |
I think his problem is different as OFBiz code (client) is not able to
fetch a valid CA certificate in its store (ofbiz store or JDK store). Raj BJ Freeman wrote: > I am wondering if the cert for ofbiz, it self is expired that that may > be the cause. > > Ritz123 sent the following on 7/24/2008 12:41 PM: > >> Thanks BJ, Seems like the new filename is ofbizssl.jks the one mentioned in >> the thread doesnt seem to exist. But as I mentioned earlier, I have added >> authorize.net certificates to all the possible keystores, still get the >> error. >> >> I am surprised that no one else has seen this error, or commented on it, >> since authorize.net is probably one of the most common features ppl would >> use. >> >> Again, I will appreciate any other pointers and more comments from ppl. >> >> >> BJ Freeman wrote: >> >>> found this in the ofbiz mailing list archive >>> http://www.nabble.com/Authorize.net-payment-processor-problem-to13135048.html#a13139217 >>> >>> Ritz123 sent the following on 7/24/2008 9:51 AM: >>> >>>> Anyone knows which certificate and where it needs to be imported for >>>> authorize.net to work? >>>> >>>> >>>> >>>> Ritz123 wrote: >>>> >>>>> Hi, >>>>> >>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of tomcat >>>>> container embedded inside ofbiz). I dont think it matters in this case, >>>>> but I am getting No trusted certificate found (see below the exact >>>>> error). >>>>> >>>>> I have imported actual authorize.net certificate (by going to >>>>> https://www.authorize.net and exporting their certificate and then >>>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>>> default keystore as well as the one tomcat is using which is under >>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. >>>>> Not >>>>> sure what am I missing here. >>>>> >>>>> >>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO >>>>> ] >>>>> Could >>>>> not complete Authorize.Net transaction: >>>>> org.ofbiz.base.util.HttpClientException >>>>> : IO Error processing request (java.security.cert.CertificateException: >>>>> No >>>>> trust >>>>> ed certificate found) >>>>> >>>>> >>>>> >>>>> >>> > > > |
that maybe the case, it maybe the refactoring that was done when the
store was moved. hope someone tracks down the cause. Raj Saini sent the following on 7/25/2008 5:58 AM: > I think his problem is different as OFBiz code (client) is not able to > fetch a valid CA certificate in its store (ofbiz store or JDK store). > > Raj > > BJ Freeman wrote: >> I am wondering if the cert for ofbiz, it self is expired that that may >> be the cause. >> >> Ritz123 sent the following on 7/24/2008 12:41 PM: >> >>> Thanks BJ, Seems like the new filename is ofbizssl.jks the one >>> mentioned in >>> the thread doesnt seem to exist. But as I mentioned earlier, I have >>> added >>> authorize.net certificates to all the possible keystores, still get the >>> error. >>> >>> I am surprised that no one else has seen this error, or commented on it, >>> since authorize.net is probably one of the most common features ppl >>> would >>> use. >>> >>> Again, I will appreciate any other pointers and more comments from ppl. >>> >>> >>> BJ Freeman wrote: >>> >>>> found this in the ofbiz mailing list archive >>>> http://www.nabble.com/Authorize.net-payment-processor-problem-to13135048.html#a13139217 >>>> >>>> >>>> Ritz123 sent the following on 7/24/2008 9:51 AM: >>>> >>>>> Anyone knows which certificate and where it needs to be imported for >>>>> authorize.net to work? >>>>> >>>>> >>>>> >>>>> Ritz123 wrote: >>>>> >>>>>> Hi, >>>>>> >>>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of >>>>>> tomcat >>>>>> container embedded inside ofbiz). I dont think it matters in this >>>>>> case, >>>>>> but I am getting No trusted certificate found (see below the exact >>>>>> error). >>>>>> >>>>>> I have imported actual authorize.net certificate (by going to >>>>>> https://www.authorize.net and exporting their certificate and then >>>>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>>>> default keystore as well as the one tomcat is using which is under >>>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to >>>>>> work. >>>>>> Not >>>>>> sure what am I missing here. >>>>>> >>>>>> >>>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ >>>>>> AIMPaymentServices.java:365:INFO >>>>>> ] >>>>>> Could >>>>>> not complete Authorize.Net transaction: >>>>>> org.ofbiz.base.util.HttpClientException >>>>>> : IO Error processing request >>>>>> (java.security.cert.CertificateException: >>>>>> No >>>>>> trust >>>>>> ed certificate found) >>>>>> >>>>>> >>>>>> >>>>>> >>>> >> >> >> > > > > |
In reply to this post by rajsaini
Thanks Raj and BJ for responses.
After couple of hours of debugging, I was able to get pass the issue. For the completion of the thread - I had to import authorize.net certificates into the default JDK keystore - even though in tomcat the setting was to use ofbiz keystore for https - not sure why. Also keep in mind that authorize.net has different set of certificates for test and production site. if you are hitting https://test.authorize.net vs. https://secure.authorize.net. For those who dont know how to get authorize.net certificates, just go to the URLs and export the certificates to file and import then into the keystore. So you dont need your website certificates signed by CA but you need authorize.net (or the url you are connecting to - as trusted site) certificates added.
|
thanks for the feed back
how about putting in the wiki http://docs.ofbiz.org/pages/listpages-dirview.action?key=OFBIZ Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: > Thanks Raj and BJ for responses. > > After couple of hours of debugging, I was able to get pass the issue. > > For the completion of the thread - I had to import authorize.net > certificates into the default JDK keystore - even though in tomcat the > setting was to use ofbiz keystore for https - not sure why. > > Also keep in mind that authorize.net has different set of certificates for > test and production site. if you are hitting https://test.authorize.net vs. > https://secure.authorize.net. For those who dont know how to get > authorize.net certificates, just go to the URLs and export the certificates > to file and import then into the keystore. So you dont need your website > certificates signed by CA but you need authorize.net (or the url you are > connecting to - as trusted site) certificates added. > > > Raj Saini wrote: >> I don't know about Authorize.net but I had similar problem while using >> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. >> However few pointers which may be helpful. >> >> 1. I am not sure there is something like authrorize.net certificate. >> Generally certificates are CA signed certificates and well known CAs >> are recognized by web clients such as web browsers as they have a >> pre-populated CA store. >> >> 2. If you are using a CA certificate for testing (for example self >> signed CA certificate or a trail certificate). You will need to add it >> to the your applications to CA certificate store. Generally browser >> have a support for adding the certificates in the stores. >> >> 3. There are two way in Java application to use the CA store. i) Import >> your certificate in the default JDK store (it is in the >> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA store >> as JVM argument to the command line of your Java application (This >> method did not work for me due to some reason). >> >> For testing, my suggestion is you import the CA certificate in JVM >> default CA store. You can use the keytool command to import the >> certificate. I hope this will be helpful. >> >> Thanks, >> >> Raj >> >> Ritz123 wrote: >>> Anyone knows which certificate and where it needs to be imported for >>> authorize.net to work? >>> r >>> >>> >>> Ritz123 wrote: >>> >>>> Hi, >>>> >>>> I am using ofbiz embedded inside tomcat (vs. the normal config of >>>> tomcatr >>>> container embedded inside ofbiz). I dont think it matters in this case, >>>> but I am getting No trusted certificate found (see below the exact >>>> error). >>>> >>>> I have imported actual authorize.net certificate (by going to >>>> https://www.authorize.net and exporting their certificate and then >>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>> default keystore as well as the one tomcat is using which is under >>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. >>>> Not >>>> sure what am I missing here. >>>> >>>> >>>> 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO >>>> ] >>>> Could >>>> not complete Authorize.Net transaction: >>>> org.ofbiz.base.util.HttpClientException >>>> : IO Error processing request (java.security.cert.CertificateException: >>>> No >>>> trust >>>> ed certificate found) >>>> >>>> >>>> >>>> >>> >> >> > |
In reply to this post by Ritesh Trivedi
better yet
http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: > Thanks Raj and BJ for responses. > > After couple of hours of debugging, I was able to get pass the issue. > > For the completion of the thread - I had to import authorize.net > certificates into the default JDK keystore - even though in tomcat the > setting was to use ofbiz keystore for https - not sure why. > > Also keep in mind that authorize.net has different set of certificates for > test and production site. if you are hitting https://test.authorize.net vs. > https://secure.authorize.net. For those who dont know how to get > authorize.net certificates, just go to the URLs and export the certificates > to file and import then into the keystore. So you dont need your website > certificates signed by CA but you need authorize.net (or the url you are > connecting to - as trusted site) certificates added. > > > Raj Saini wrote: >> I don't know about Authorize.net but I had similar problem while using >> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. >> However few pointers which may be helpful. >> >> 1. I am not sure there is something like authrorize.net certificate. >> Generally certificates are CA signed certificates and well known CAs >> are recognized by web clients such as web browsers as they have a >> pre-populated CA store. >> >> 2. If you are using a CA certificate for testing (for example self >> signed CA certificate or a trail certificate). You will need to add it >> to the your applications to CA certificate store. Generally browser >> have a support for adding the certificates in the stores. >> >> 3. There are two way in Java application to use the CA store. i) Import >> your certificate in the default JDK store (it is in the >> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA store >> as JVM argument to the command line of your Java application (This >> method did not work for me due to some reason). >> >> For testing, my suggestion is you import the CA certificate in JVM >> default CA store. You can use the keytool command to import the >> certificate. I hope this will be helpful. >> >> Thanks, >> >> Raj >> >> Ritz123 wrote: >>> Anyone knows which certificate and where it needs to be imported for >>> authorize.net to work? >>> r >>> >>> >>> Ritz123 wrote: >>> >>>> Hi, >>>> >>>> I am using ofbiz embedded inside tomcat (vs. the normal config of >>>> tomcatr >>>> container embedded inside ofbiz). I dont think it matters in this case, >>>> but I am getting No trusted certificate found (see below the exact >>>> error). >>>> >>>> I have imported actual authorize.net certificate (by going to >>>> https://www.authorize.net and exporting their certificate and then >>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>> default keystore as well as the one tomcat is using which is under >>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. >>>> Not >>>> sure what am I missing here. >>>> >>>> >>>> 2008-07-23 18:23:29,516 (http-8443-1) [ AIMPaymentServices.java:365:INFO >>>> ] >>>> Could >>>> not complete Authorize.Net transaction: >>>> org.ofbiz.base.util.HttpClientException >>>> : IO Error processing request (java.security.cert.CertificateException: >>>> No >>>> trust >>>> ed certificate found) >>>> >>>> >>>> >>>> >>> >> >> > |
Added
http://docs.ofbiz.org/display/OFBIZ/How+to+configure+authorize.net+certificates
|
thanks
Ritesh Trivedi sent the following on 7/25/2008 10:57 AM: > Added > > http://docs.ofbiz.org/display/OFBIZ/How+to+configure+authorize.net+certificates > > > BJ Freeman wrote: >> better yet >> http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo >> >> >> Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: >>> Thanks Raj and BJ for responses. >>> >>> After couple of hours of debugging, I was able to get pass the issue. >>> >>> For the completion of the thread - I had to import authorize.net >>> certificates into the default JDK keystore - even though in tomcat the >>> setting was to use ofbiz keystore for https - not sure why. >>> >>> Also keep in mind that authorize.net has different set of certificates >>> for >>> test and production site. if you are hitting https://test.authorize.net >>> vs. >>> https://secure.authorize.net. For those who dont know how to get >>> authorize.net certificates, just go to the URLs and export the >>> certificates >>> to file and import then into the keystore. So you dont need your website >>> certificates signed by CA but you need authorize.net (or the url you are >>> connecting to - as trusted site) certificates added. >>> >>> >>> Raj Saini wrote: >>>> I don't know about Authorize.net but I had similar problem while using >>>> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. >>>> However few pointers which may be helpful. >>>> >>>> 1. I am not sure there is something like authrorize.net certificate. >>>> Generally certificates are CA signed certificates and well known CAs >>>> are recognized by web clients such as web browsers as they have a >>>> pre-populated CA store. >>>> >>>> 2. If you are using a CA certificate for testing (for example self >>>> signed CA certificate or a trail certificate). You will need to add it >>>> to the your applications to CA certificate store. Generally browser >>>> have a support for adding the certificates in the stores. >>>> >>>> 3. There are two way in Java application to use the CA store. i) Import >>>> your certificate in the default JDK store (it is in the >>>> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA store >>>> as JVM argument to the command line of your Java application (This >>>> method did not work for me due to some reason). >>>> >>>> For testing, my suggestion is you import the CA certificate in JVM >>>> default CA store. You can use the keytool command to import the >>>> certificate. I hope this will be helpful. >>>> >>>> Thanks, >>>> >>>> Raj >>>> >>>> Ritz123 wrote: >>>>> Anyone knows which certificate and where it needs to be imported for >>>>> authorize.net to work? >>>>> r >>>>> >>>>> >>>>> Ritz123 wrote: >>>>> >>>>>> Hi, >>>>>> >>>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of >>>>>> tomcatr >>>>>> container embedded inside ofbiz). I dont think it matters in this >>>>>> case, >>>>>> but I am getting No trusted certificate found (see below the exact >>>>>> error). >>>>>> >>>>>> I have imported actual authorize.net certificate (by going to >>>>>> https://www.authorize.net and exporting their certificate and then >>>>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>>>> default keystore as well as the one tomcat is using which is under >>>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. >>>>>> Not >>>>>> sure what am I missing here. >>>>>> >>>>>> >>>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ >>>>>> AIMPaymentServices.java:365:INFO >>>>>> ] >>>>>> Could >>>>>> not complete Authorize.Net transaction: >>>>>> org.ofbiz.base.util.HttpClientException >>>>>> : IO Error processing request >>>>>> (java.security.cert.CertificateException: >>>>>> No >>>>>> trust >>>>>> ed certificate found) >>>>>> >>>>>> >>>>>> >>>>>> >>>>> >>>> >> >> > |
In reply to this post by Ritesh Trivedi
very good! I also have a customer who could benefit from this
On Fri, 2008-07-25 at 10:57 -0700, Ritesh Trivedi wrote: > Added > > http://docs.ofbiz.org/display/OFBIZ/How+to+configure+authorize.net+certificates > > > BJ Freeman wrote: > > > > better yet > > http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo > > > > > > Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: > >> Thanks Raj and BJ for responses. > >> > >> After couple of hours of debugging, I was able to get pass the issue. > >> > >> For the completion of the thread - I had to import authorize.net > >> certificates into the default JDK keystore - even though in tomcat the > >> setting was to use ofbiz keystore for https - not sure why. > >> > >> Also keep in mind that authorize.net has different set of certificates > >> for > >> test and production site. if you are hitting https://test.authorize.net > >> vs. > >> https://secure.authorize.net. For those who dont know how to get > >> authorize.net certificates, just go to the URLs and export the > >> certificates > >> to file and import then into the keystore. So you dont need your website > >> certificates signed by CA but you need authorize.net (or the url you are > >> connecting to - as trusted site) certificates added. > >> > >> > >> Raj Saini wrote: > >>> I don't know about Authorize.net but I had similar problem while using > >>> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. > >>> However few pointers which may be helpful. > >>> > >>> 1. I am not sure there is something like authrorize.net certificate. > >>> Generally certificates are CA signed certificates and well known CAs > >>> are recognized by web clients such as web browsers as they have a > >>> pre-populated CA store. > >>> > >>> 2. If you are using a CA certificate for testing (for example self > >>> signed CA certificate or a trail certificate). You will need to add it > >>> to the your applications to CA certificate store. Generally browser > >>> have a support for adding the certificates in the stores. > >>> > >>> 3. There are two way in Java application to use the CA store. i) Import > >>> your certificate in the default JDK store (it is in the > >>> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA store > >>> as JVM argument to the command line of your Java application (This > >>> method did not work for me due to some reason). > >>> > >>> For testing, my suggestion is you import the CA certificate in JVM > >>> default CA store. You can use the keytool command to import the > >>> certificate. I hope this will be helpful. > >>> > >>> Thanks, > >>> > >>> Raj > >>> > >>> Ritz123 wrote: > >>>> Anyone knows which certificate and where it needs to be imported for > >>>> authorize.net to work? > >>>> r > >>>> > >>>> > >>>> Ritz123 wrote: > >>>> > >>>>> Hi, > >>>>> > >>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of > >>>>> tomcatr > >>>>> container embedded inside ofbiz). I dont think it matters in this > >>>>> case, > >>>>> but I am getting No trusted certificate found (see below the exact > >>>>> error). > >>>>> > >>>>> I have imported actual authorize.net certificate (by going to > >>>>> https://www.authorize.net and exporting their certificate and then > >>>>> importing it into keystores) under alias AUTHORIZE_NET in both users > >>>>> default keystore as well as the one tomcat is using which is under > >>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to work. > >>>>> Not > >>>>> sure what am I missing here. > >>>>> > >>>>> > >>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ > >>>>> AIMPaymentServices.java:365:INFO > >>>>> ] > >>>>> Could > >>>>> not complete Authorize.Net transaction: > >>>>> org.ofbiz.base.util.HttpClientException > >>>>> : IO Error processing request > >>>>> (java.security.cert.CertificateException: > >>>>> No > >>>>> trust > >>>>> ed certificate found) > >>>>> > >>>>> > >>>>> > >>>>> > >>>> > >>> > >>> > >> > > > > > > > |
In reply to this post by Ritesh Trivedi
Thanks Ritesh for putting this details on the Wiki for future references.
On Fri, Jul 25, 2008 at 11:27 PM, Ritesh Trivedi <[hidden email]>wrote: > > Added > > > http://docs.ofbiz.org/display/OFBIZ/How+to+configure+authorize.net+certificates > > > BJ Freeman wrote: > > > > better yet > > > http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo > > > > > > Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: > >> Thanks Raj and BJ for responses. > >> > >> After couple of hours of debugging, I was able to get pass the issue. > >> > >> For the completion of the thread - I had to import authorize.net > >> certificates into the default JDK keystore - even though in tomcat the > >> setting was to use ofbiz keystore for https - not sure why. > >> > >> Also keep in mind that authorize.net has different set of certificates > >> for > >> test and production site. if you are hitting https://test.authorize.net > >> vs. > >> https://secure.authorize.net. For those who dont know how to get > >> authorize.net certificates, just go to the URLs and export the > >> certificates > >> to file and import then into the keystore. So you dont need your website > >> certificates signed by CA but you need authorize.net (or the url you > are > >> connecting to - as trusted site) certificates added. > >> > >> > >> Raj Saini wrote: > >>> I don't know about Authorize.net but I had similar problem while using > >>> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. > >>> However few pointers which may be helpful. > >>> > >>> 1. I am not sure there is something like authrorize.net certificate. > >>> Generally certificates are CA signed certificates and well known CAs > >>> are recognized by web clients such as web browsers as they have a > >>> pre-populated CA store. > >>> > >>> 2. If you are using a CA certificate for testing (for example self > >>> signed CA certificate or a trail certificate). You will need to add it > >>> to the your applications to CA certificate store. Generally browser > >>> have a support for adding the certificates in the stores. > >>> > >>> 3. There are two way in Java application to use the CA store. i) Import > >>> your certificate in the default JDK store (it is in the > >>> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA > store > >>> as JVM argument to the command line of your Java application (This > >>> method did not work for me due to some reason). > >>> > >>> For testing, my suggestion is you import the CA certificate in JVM > >>> default CA store. You can use the keytool command to import the > >>> certificate. I hope this will be helpful. > >>> > >>> Thanks, > >>> > >>> Raj > >>> > >>> Ritz123 wrote: > >>>> Anyone knows which certificate and where it needs to be imported for > >>>> authorize.net to work? > >>>> r > >>>> > >>>> > >>>> Ritz123 wrote: > >>>> > >>>>> Hi, > >>>>> > >>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of > >>>>> tomcatr > >>>>> container embedded inside ofbiz). I dont think it matters in this > >>>>> case, > >>>>> but I am getting No trusted certificate found (see below the exact > >>>>> error). > >>>>> > >>>>> I have imported actual authorize.net certificate (by going to > >>>>> https://www.authorize.net and exporting their certificate and then > >>>>> importing it into keystores) under alias AUTHORIZE_NET in both users > >>>>> default keystore as well as the one tomcat is using which is under > >>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to > work. > >>>>> Not > >>>>> sure what am I missing here. > >>>>> > >>>>> > >>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ > >>>>> AIMPaymentServices.java:365:INFO > >>>>> ] > >>>>> Could > >>>>> not complete Authorize.Net transaction: > >>>>> org.ofbiz.base.util.HttpClientException > >>>>> : IO Error processing request > >>>>> (java.security.cert.CertificateException: > >>>>> No > >>>>> trust > >>>>> ed certificate found) > >>>>> > >>>>> > >>>>> > >>>>> > >>>> > >>> > >>> > >> > > > > > > > > -- > View this message in context: > http://www.nabble.com/Authorize.net-certificate-error-tp18623873p18656780.html > Sent from the OFBiz - User mailing list archive at Nabble.com. > > -- Ashish Vijaywargiya Indore (M.P), India http://en.wikipedia.org/wiki/Indore |
In reply to this post by Ritesh Trivedi
Hi,
I am getting the same problems. The logs reads as: 2009-06-19 04:35:30,143 (TP-Processor20) [ AIMPaymentServices.java:326:INFO ] Could not complete Authorize.Net transaction: org.ofbiz.base.util.HttpClientException: IO Error processing request (java.security.cert.CertificateException: No trusted certificate found) I have imported the SSL into both ofbizssl.jks and ofbiztrust.jks ( i don't it is required anymore) but with no success. I also imported the certificate into JDK keystore, at /usr/java/jdk1.6.0_11/jre/lib/security, but this do not help either. I am at a complete loss as, what the problem my be. If anyone can help identify the issue i will appreciate it. Thanks, Rohit
|
In reply to this post by Ritesh Trivedi
follow the code for:
buildMerchantInfo(context,props,request); buildGatewayResponeConfig(context,props,request); about lines 300 in AIMPaymentServices.java rohit2006 sent the following on 6/19/2009 1:42 AM: > Hi, > > I am getting the same problems. The logs reads as: > > 2009-06-19 04:35:30,143 (TP-Processor20) [ AIMPaymentServices.java:326:INFO > ] Could not complete Authorize.Net transaction: > org.ofbiz.base.util.HttpClientException: IO Error processing request > (java.security.cert.CertificateException: No trusted certificate found) > > I have imported the SSL into both ofbizssl.jks and ofbiztrust.jks ( i don't > it is required anymore) but with no success. > > I also imported the certificate into JDK keystore, at > /usr/java/jdk1.6.0_11/jre/lib/security, but this do not help either. > > I am at a complete loss as, what the problem my be. If anyone can help > identify the issue i will appreciate it. > > Thanks, > > Rohit > > > Ritesh Trivedi wrote: >> Added >> >> http://docs.ofbiz.org/display/OFBIZ/How+to+configure+authorize.net+certificates >> >> >> BJ Freeman wrote: >>> better yet >>> http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo >>> >>> >>> Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: >>>> Thanks Raj and BJ for responses. >>>> >>>> After couple of hours of debugging, I was able to get pass the issue. >>>> >>>> For the completion of the thread - I had to import authorize.net >>>> certificates into the default JDK keystore - even though in tomcat the >>>> setting was to use ofbiz keystore for https - not sure why. >>>> >>>> Also keep in mind that authorize.net has different set of certificates >>>> for >>>> test and production site. if you are hitting https://test.authorize.net >>>> vs. >>>> https://secure.authorize.net. For those who dont know how to get >>>> authorize.net certificates, just go to the URLs and export the >>>> certificates >>>> to file and import then into the keystore. So you dont need your website >>>> certificates signed by CA but you need authorize.net (or the url you are >>>> connecting to - as trusted site) certificates added. >>>> >>>> >>>> Raj Saini wrote: >>>>> I don't know about Authorize.net but I had similar problem while using >>>>> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. >>>>> However few pointers which may be helpful. >>>>> >>>>> 1. I am not sure there is something like authrorize.net certificate. >>>>> Generally certificates are CA signed certificates and well known CAs >>>>> are recognized by web clients such as web browsers as they have a >>>>> pre-populated CA store. >>>>> >>>>> 2. If you are using a CA certificate for testing (for example self >>>>> signed CA certificate or a trail certificate). You will need to add it >>>>> to the your applications to CA certificate store. Generally browser >>>>> have a support for adding the certificates in the stores. >>>>> >>>>> 3. There are two way in Java application to use the CA store. i) Import >>>>> your certificate in the default JDK store (it is in the >>>>> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA >>>>> store >>>>> as JVM argument to the command line of your Java application (This >>>>> method did not work for me due to some reason). >>>>> >>>>> For testing, my suggestion is you import the CA certificate in JVM >>>>> default CA store. You can use the keytool command to import the >>>>> certificate. I hope this will be helpful. >>>>> >>>>> Thanks, >>>>> >>>>> Raj >>>>> >>>>> Ritz123 wrote: >>>>>> Anyone knows which certificate and where it needs to be imported for >>>>>> authorize.net to work? >>>>>> r >>>>>> >>>>>> >>>>>> Ritz123 wrote: >>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of >>>>>>> tomcatr >>>>>>> container embedded inside ofbiz). I dont think it matters in this >>>>>>> case, >>>>>>> but I am getting No trusted certificate found (see below the exact >>>>>>> error). >>>>>>> >>>>>>> I have imported actual authorize.net certificate (by going to >>>>>>> https://www.authorize.net and exporting their certificate and then >>>>>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>>>>> default keystore as well as the one tomcat is using which is under >>>>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to >>>>>>> work. >>>>>>> Not >>>>>>> sure what am I missing here. >>>>>>> >>>>>>> >>>>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ >>>>>>> AIMPaymentServices.java:365:INFO >>>>>>> ] >>>>>>> Could >>>>>>> not complete Authorize.Net transaction: >>>>>>> org.ofbiz.base.util.HttpClientException >>>>>>> : IO Error processing request >>>>>>> (java.security.cert.CertificateException: >>>>>>> No >>>>>>> trust >>>>>>> ed certificate found) >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>> >>> >>> >> > -- BJ Freeman http://www.businessesnetwork.com/automation http://bjfreeman.elance.com http://www.linkedin.com/profile?viewProfile=&key=1237480&locale=en_US&trk=tab_pro Systems Integrator. |
In reply to this post by rohit
Hi Rohit,
Although, I never worked Authorize.net specific certificates, however, I resolved similar problem by importing the certificates in the JDK ca certificate store. This may be a problem related to missing Intermediate certificate of the certificate chains. Also make sure the you are using the same JDK, where you imported your certificates. If nothing works, I would debug the communication between client and server using some network sniffer (or a some kind of http proxy which can show you the http headers). Thanks, Raj rohit2006 wrote: > Hi, > > I am getting the same problems. The logs reads as: > > 2009-06-19 04:35:30,143 (TP-Processor20) [ AIMPaymentServices.java:326:INFO > ] Could not complete Authorize.Net transaction: > org.ofbiz.base.util.HttpClientException: IO Error processing request > (java.security.cert.CertificateException: No trusted certificate found) > > I have imported the SSL into both ofbizssl.jks and ofbiztrust.jks ( i don't > it is required anymore) but with no success. > > I also imported the certificate into JDK keystore, at > /usr/java/jdk1.6.0_11/jre/lib/security, but this do not help either. > > I am at a complete loss as, what the problem my be. If anyone can help > identify the issue i will appreciate it. > > Thanks, > > Rohit > > > Ritesh Trivedi wrote: > >> Added >> >> http://docs.ofbiz.org/display/OFBIZ/How+to+configure+authorize.net+certificates >> >> >> BJ Freeman wrote: >> >>> better yet >>> http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo >>> >>> >>> Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: >>> >>>> Thanks Raj and BJ for responses. >>>> >>>> After couple of hours of debugging, I was able to get pass the issue. >>>> >>>> For the completion of the thread - I had to import authorize.net >>>> certificates into the default JDK keystore - even though in tomcat the >>>> setting was to use ofbiz keystore for https - not sure why. >>>> >>>> Also keep in mind that authorize.net has different set of certificates >>>> for >>>> test and production site. if you are hitting https://test.authorize.net >>>> vs. >>>> https://secure.authorize.net. For those who dont know how to get >>>> authorize.net certificates, just go to the URLs and export the >>>> certificates >>>> to file and import then into the keystore. So you dont need your website >>>> certificates signed by CA but you need authorize.net (or the url you are >>>> connecting to - as trusted site) certificates added. >>>> >>>> >>>> Raj Saini wrote: >>>> >>>>> I don't know about Authorize.net but I had similar problem while using >>>>> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. >>>>> However few pointers which may be helpful. >>>>> >>>>> 1. I am not sure there is something like authrorize.net certificate. >>>>> Generally certificates are CA signed certificates and well known CAs >>>>> are recognized by web clients such as web browsers as they have a >>>>> pre-populated CA store. >>>>> >>>>> 2. If you are using a CA certificate for testing (for example self >>>>> signed CA certificate or a trail certificate). You will need to add it >>>>> to the your applications to CA certificate store. Generally browser >>>>> have a support for adding the certificates in the stores. >>>>> >>>>> 3. There are two way in Java application to use the CA store. i) Import >>>>> your certificate in the default JDK store (it is in the >>>>> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA >>>>> store >>>>> as JVM argument to the command line of your Java application (This >>>>> method did not work for me due to some reason). >>>>> >>>>> For testing, my suggestion is you import the CA certificate in JVM >>>>> default CA store. You can use the keytool command to import the >>>>> certificate. I hope this will be helpful. >>>>> >>>>> Thanks, >>>>> >>>>> Raj >>>>> >>>>> Ritz123 wrote: >>>>> >>>>>> Anyone knows which certificate and where it needs to be imported for >>>>>> authorize.net to work? >>>>>> r >>>>>> >>>>>> >>>>>> Ritz123 wrote: >>>>>> >>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of >>>>>>> tomcatr >>>>>>> container embedded inside ofbiz). I dont think it matters in this >>>>>>> case, >>>>>>> but I am getting No trusted certificate found (see below the exact >>>>>>> error). >>>>>>> >>>>>>> I have imported actual authorize.net certificate (by going to >>>>>>> https://www.authorize.net and exporting their certificate and then >>>>>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>>>>> default keystore as well as the one tomcat is using which is under >>>>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to >>>>>>> work. >>>>>>> Not >>>>>>> sure what am I missing here. >>>>>>> >>>>>>> >>>>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ >>>>>>> AIMPaymentServices.java:365:INFO >>>>>>> ] >>>>>>> Could >>>>>>> not complete Authorize.Net transaction: >>>>>>> org.ofbiz.base.util.HttpClientException >>>>>>> : IO Error processing request >>>>>>> (java.security.cert.CertificateException: >>>>>>> No >>>>>>> trust >>>>>>> ed certificate found) >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>> >>> >>> >> > > |
Hi rohit.,
When I make implementation for my ofbiz store earlier,(For live mode) 1.P )I added secure.authorize.net certificate into /usr/lib/jvm/java-6-sun/jre/lib/security/cacerts using the following command add certificate: sudo keytool -import -alias AUTHORIZE_NET -keystore cacerts -trustcacerts -file secure.autorize.net.cer (I made certificate dump from https://secure.authorize.net) 2.P) in payment.properties, make sure that *payment.authorizedotnet.url*=payment.authorizedotnet.url= https://secure.authorize.net/gateway/transact.dll *payment.authorizedotnet.version*=3.1 *payment.authorizedotnet.trankey*=your transactionkey from authorize.net( secure.authorize.net) *payment.authorizedotnet.password*=your transactionkey from authorize.net( secure.authorize.net) *payment.authorizedotnet.login*=valid merchant id (secure.authorize.net). 3.P) make sure that product store level capture, authorize service call changes are done. Thats it. It worked for me. On Fri, Jun 19, 2009 at 5:35 PM, Raj Saini <[hidden email]> wrote: > Hi Rohit, > > Although, I never worked Authorize.net specific certificates, however, I > resolved similar problem by importing the certificates in the JDK ca > certificate store. This may be a problem related to missing Intermediate > certificate of the certificate chains. Also make sure the you are using the > same JDK, where you imported your certificates. > > If nothing works, I would debug the communication between client and server > using some network sniffer (or a some kind of http proxy which can show you > the http headers). > > Thanks, > > Raj > > > rohit2006 wrote: > >> Hi, >> >> I am getting the same problems. The logs reads as: >> >> 2009-06-19 04:35:30,143 (TP-Processor20) [ >> AIMPaymentServices.java:326:INFO >> ] Could not complete Authorize.Net transaction: >> org.ofbiz.base.util.HttpClientException: IO Error processing request >> (java.security.cert.CertificateException: No trusted certificate found) >> I have imported the SSL into both ofbizssl.jks and ofbiztrust.jks ( i >> don't >> it is required anymore) but with no success. >> >> I also imported the certificate into JDK keystore, at >> /usr/java/jdk1.6.0_11/jre/lib/security, but this do not help either. >> >> I am at a complete loss as, what the problem my be. If anyone can help >> identify the issue i will appreciate it. >> >> Thanks, >> >> Rohit >> >> >> Ritesh Trivedi wrote: >> >> >>> Added >>> >>> >>> http://docs.ofbiz.org/display/OFBIZ/How+to+configure+authorize.net+certificates >>> >>> >>> BJ Freeman wrote: >>> >>> >>>> better yet >>>> >>>> http://docs.ofbiz.org/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo >>>> >>>> >>>> Ritesh Trivedi sent the following on 7/25/2008 10:22 AM: >>>> >>>> >>>>> Thanks Raj and BJ for responses. >>>>> >>>>> After couple of hours of debugging, I was able to get pass the issue. >>>>> >>>>> For the completion of the thread - I had to import authorize.net >>>>> certificates into the default JDK keystore - even though in tomcat the >>>>> setting was to use ofbiz keystore for https - not sure why. >>>>> >>>>> Also keep in mind that authorize.net has different set of certificates >>>>> for >>>>> test and production site. if you are hitting >>>>> https://test.authorize.net >>>>> vs. >>>>> https://secure.authorize.net. For those who dont know how to get >>>>> authorize.net certificates, just go to the URLs and export the >>>>> certificates >>>>> to file and import then into the keystore. So you dont need your >>>>> website >>>>> certificates signed by CA but you need authorize.net (or the url you >>>>> are >>>>> connecting to - as trusted site) certificates added. >>>>> >>>>> >>>>> Raj Saini wrote: >>>>> >>>>> >>>>>> I don't know about Authorize.net but I had similar problem while using >>>>>> the OFBiz RMI. I am not even sure if RMI is used by Authorize.net. However >>>>>> few pointers which may be helpful. >>>>>> >>>>>> 1. I am not sure there is something like authrorize.net certificate. >>>>>> Generally certificates are CA signed certificates and well known CAs are >>>>>> recognized by web clients such as web browsers as they have a pre-populated >>>>>> CA store. >>>>>> >>>>>> 2. If you are using a CA certificate for testing (for example self >>>>>> signed CA certificate or a trail certificate). You will need to add it to >>>>>> the your applications to CA certificate store. Generally browser have a >>>>>> support for adding the certificates in the stores. >>>>>> >>>>>> 3. There are two way in Java application to use the CA store. i) >>>>>> Import your certificate in the default JDK store (it is in the >>>>>> ${java.home}/jre/lib/security folder) of your JDK. ii) Pass the CA >>>>>> store as JVM argument to the command line of your Java application >>>>>> (This method did not work for me due to some reason). >>>>>> >>>>>> For testing, my suggestion is you import the CA certificate in JVM >>>>>> default CA store. You can use the keytool command to import the certificate. >>>>>> I hope this will be helpful. >>>>>> >>>>>> Thanks, >>>>>> >>>>>> Raj >>>>>> >>>>>> Ritz123 wrote: >>>>>> >>>>>> >>>>>>> Anyone knows which certificate and where it needs to be imported for >>>>>>> authorize.net to work? >>>>>>> r >>>>>>> >>>>>>> Ritz123 wrote: >>>>>>> >>>>>>> >>>>>>>> Hi, >>>>>>>> >>>>>>>> I am using ofbiz embedded inside tomcat (vs. the normal config of >>>>>>>> tomcatr container embedded inside ofbiz). I dont think it matters in >>>>>>>> this >>>>>>>> case, >>>>>>>> but I am getting No trusted certificate found (see below the exact >>>>>>>> error). >>>>>>>> >>>>>>>> I have imported actual authorize.net certificate (by going to >>>>>>>> https://www.authorize.net and exporting their certificate and then >>>>>>>> importing it into keystores) under alias AUTHORIZE_NET in both users >>>>>>>> default keystore as well as the one tomcat is using which is under >>>>>>>> OFBIZ_HOME/framework/base/config/ofbizssl.jks. It doesnt seem to >>>>>>>> work. >>>>>>>> Not >>>>>>>> sure what am I missing here. >>>>>>>> >>>>>>>> >>>>>>>> 2008-07-23 18:23:29,516 (http-8443-1) [ >>>>>>>> AIMPaymentServices.java:365:INFO >>>>>>>> ] >>>>>>>> Could >>>>>>>> not complete Authorize.Net transaction: >>>>>>>> org.ofbiz.base.util.HttpClientException >>>>>>>> : IO Error processing request >>>>>>>> (java.security.cert.CertificateException: >>>>>>>> No >>>>>>>> trust >>>>>>>> ed certificate found) >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>> >>>> >>>> >>> >>> >> >> >> > > -- Thanks, Kumaraswamy.N 91-9866805250. |
Free forum by Nabble | Edit this page |