Hi Iam trying SSL connection in my C# application for WM6...Getting "message cant de displayed optional assemby missing" exception ......I am using code as follows
ServicePointManager.CertificatePolicy = new MyPolicy();
public class MyPolicy : ICertificatePolicy {
public bool CheckValidationResult(ServicePoint sp, X509Certificate cert, WebRequest req, int problem)
{
return true;
}
}
But works fine in WM5.......Is anything to change.... Getting Exception for (HttpWebResponse)WebRequest.Getresponse()
plz plz help me ....Suggest me wat can I do
Thanks in advance