Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
There seems to be an error in the binding-intf.cs (class: StandardAuthenticationProvider; method: protected virtual void WebServicesAuthenticate(object connection)), line 175:
is:
PolicyServicePortClient policyServicePortClient = connection as PolicyServicePortClient;
if (policyServicePortClient != null)
should most probably be:
PolicyServicePortClient policyServicePortClient = connection as PolicyServicePortClient;
if (policyServicePortClient != null)
Otherwise the calling of IPolicyService.ApplyPolicy(string repositoryId, string policyId, string objectId, IExtensionsData extension) runs into:
System.NullReferenceException: Object reference not set to an instance of an object.