![]() |
|
|
|
|
|
|
2
5th May 05:50
External User
Posts: 1
|
If your service is using a port other than 80, you can specify it in
the service instantiation's Url property: http://msdn2.microsoft.com/en-us/library/ms153652.aspx From this example, ReportingService2005 rs = new ReportingService2005(); rs.Credentials = System.Net.CredentialCache.DefaultCredentials; // Set the base Web service URL of the source server rs.Url = "http://mySourceServer/reportserver/ reportservice.asmx"; Add your port after the server name like this: rs.Url = "http://mySourceServer:81/reportserver/ reportservice.asmx"; Brian |
|
|
|