Hi, I'm trying to install master and slave servers, both with authentic certificates. I follow http://www.novell.com/documentation/ifolder3/ifolder38_admin/?page=/documentation/ifolder3/ifolder38_admin/data/bshahlz.html and the slave don't run. Master Server never called the slave server.

And here is the problem (i think, please right me):

the files:
./ifolder3-enterprise/src/admin/Global.asax.cs: ServicePointManager.CertificatePolicy = new SingleCertificatePolicy( ./ifolder3-enterprise/src/webaccess/Global.asax.cs: ServicePointManager.CertificatePolicy = new SingleCertificatePolicy( ./ifolder3-enterprise/src/core/WebService/Global.asax.cs: ServicePointManager.CertificatePolicy = new SingleCertificatePolicy(

all this clases, set as CertificatePolicy the class SingleCertificatePolicy (Is the Same name, implementations are different for each app) and this class override the method:

                public bool CheckValidationResult(ServicePoint srvPoint,
System.Security.Cryptography.X509Certificates.X509Certificate certificate,
                        WebRequest request, int certificateProblem)
                {
                        bool result = false;

if ((certificateProblem == 0) || CertificateProblem.CertEXPIRED.Equals(certificateProblem) || ((certificate != null)*&& ( certificate.GetIssuerName().Equals( (new (Convert.FromBase64String(certificateString)).GetIssuerName() ) *) ) ))

                        {
                                result = true;
                        }

                        return result;
                }


it mean that the cert must be the same (absurd)
* Ej: certificate.GetIssuerName()*= C=AU, S=Some-State, O=Internet Widgits Pty Ltd, *CN=serverdomain.com*



I think this is a bug... i'm right??


Bye

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
ifolder-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ifolder-devel

Reply via email to