public RSExecutionConnection(string reportServerLocation, EndpointVersion version)
 {
     InitializeReportServerUrl(reportServerLocation);
     m_endpointVersion = version;
 }
Beispiel #2
0
            public ServerReportSoapProxy(System.Security.Principal.WindowsIdentity impersonationUser, string reportServerLocation, IEnumerable <string> headers, IEnumerable <Cookie> cookies, EndpointVersion version)
                : base(reportServerLocation, version)
            {
                m_impersonationUser = impersonationUser;
                m_headers           = headers;
                m_cookies           = cookies;

                Endpoint.EndpointBehaviors.Add(new CookieBehavior());
            }