On Dec 14, 2011, at 5:52 AM, subsembly wrote:
> I am testing with an LG Optimus One and an LG Optimus 2X (both with
> Gingerbread). The error occurs, for example, when accessing the PayPal NVP
> API at "https://api-3t.paypal.com/nvp";.

As a sanity test, are you able to connect to that url from the Browser app w/o 
getting prompted to accept the certificate?

Is there any meaningful logcat output?

Does it work if you set ServicePointManager.ServerCertificateValidationCallback?

        System.Net.ServicePointManager.ServerCertificateValidationCallback += 
(sender, cert, chain, errors) => {
                return true;
        };

Note: the above will disable all SSL validation, so it's not ideal, but it 
should allow some form of progress to see if it's SSL related or something 
else...

Thanks,
 - Jon

_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to