3

问题:我编写了一个控制台程序,它使用SQL Server 2005 Web服务将报告上载到SQL Server 2005报告服务(这样我就不必每次都手动上传100个报告)。如何忽略WebService请求中的SSL证书错误?

它可以在本地和远程正常工作。 但现在的问题是一个服务器使用SSL 所以rs.Url =“HTTPS://hostname/ReportServer/reportservice2005.asmx

现在的问题是SSL证书无效...... 我可以访问忽略这个错误来自浏览器的reportserver但是。 我怎么能做到这一点与web服务?

' http://msdn.microsoft.com/en-us/library/aa225813(SQL.80).aspx 
    ' COR.Reporting.ReportingServiceInterface.CreateThisReport(strFileNameAndPath, strReportName, strReportingPath) 
    ' COR.Reporting.ReportingServiceInterface.CreateThisReport("c:\path\to\file\xy.rdl", "xy", "/COR") 
    Public Shared Sub CreateThisReport(ByVal strFileNameAndPath As String, ByVal strReportName As String, ByVal strReportingPath As String, Optional ByVal bOverwrite As Boolean = True) 
     Dim rs As ReportingService2005 = New ReportingService2005 
     rs.Credentials = ReportingServiceInterface.GetMyCredentials(strCredentialsURL) 
     rs.Timeout = ReportingServiceInterface.iTimeout 
     rs.Url = ReportingServiceInterface.strReportingServiceURL 


     Dim btBuffer As Byte() = Nothing 

     Dim rsWarnings As Warning() = Nothing 
     Try 
      Dim fstrStream As System.IO.FileStream = System.IO.File.OpenRead(strFileNameAndPath) 
      btBuffer = New [Byte](fstrStream.Length) {} 
      fstrStream.Read(btBuffer, 0, CInt(fstrStream.Length)) 
      fstrStream.Close() 
     Catch ex As System.IO.IOException 
      Throw New Exception(ex.Message) 
     End Try 


     Try 
      rsWarnings = rs.CreateReport(strReportName, strReportingPath, bOverwrite, btBuffer, Nothing) 

      If Not (rsWarnings Is Nothing) Then 
       Dim warning As Warning 
       For Each warning In rsWarnings 
        Console.WriteLine(warning.Message) 
       Next warning 
      Else 
       Console.WriteLine("Report: {0} created successfully with no warnings", strReportName) 
      End If 

     Catch ex As System.Web.Services.Protocols.SoapException 
      Console.WriteLine(ex.Detail.InnerXml.ToString()) 
     End Try 
    End Sub ' End Function CreateThisReport 

回答

8

您可以通过ServicePointManager.ServerCertificateValidationCallback返回true注册的委托做到这一点。如果委托返回true,所有证书(有效期以及无效)将被接受。

+1

只需添加以下行:System.Net.ServicePointManager.ServerCertificateValidationCallback = Function()True – 2010-09-24 13:37:15