Hi ,
we have configured a SSL certificate on one of our CRM organization , and this lead to failed authentication on windows service written to manage CRM data. after install certificate and bind on port 443 windows service return null object reference while trying to connect using windows authentication.
this is how we connect using organizationproxy url
ClientCredentials credentials = new ClientCredentials();
credentials.Windows.ClientCredential = CredentialCache.DefaultNetworkCredentials;
Uri organizationUri = new Uri("">xxxx/.../Organization.svc");
Uri homeRealmUri = null;
OrganizationServiceProxy orgproxy = new OrganizationServiceProxy(organizationUri, homeRealmUri, credentials, null);
could any one explain how to connect CRM after install ssl
we have webservice running on server using same method connect with out any errors .
feedbacks will be highly appreciated.








