• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Automating reporting services

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    Automating reporting services

    trying to render a pdf oput of RS from ASP.NET

    here is the code

    Dim rs As New ReportServices.ReportingService

    rs.Credentials = System.Net.CredentialCache.DefaultCredentials

    Dim result As Byte() = Nothing
    Dim param(0) As ReportServices.ParameterValue
    param(0) = New ReportServices.ParameterValue
    param(0).Name = "CPLID"
    param(0).Value = intCPLID


    result = rs.Render("myReports/rptConfirmation", "PDF", Nothing, Nothing, param, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)

    Dim STREAM As FileStream = File.Create("report.pdf", result.Length)
    STREAM.Write(result, 0, result.Length)
    STREAM.Close()


    unfortunatately i get a 401 error... i suspect its a credentials thing... but if i user something like

    Dim strScript As String = "<script>window.open('" & ConfigurationSettings.AppSettings("Reportserver") & "rptConfirm&rs:Command=Render&CPLID=" & intCPLID _
    & "','_new', 'toolbar=no,menubar=no,location=no');</script>"
    Response.Write(strScript)

    its fine coming out the asp.net account..

    need help quick!!!

    thanks all
    --------------------------------------------------------------------------------

    SA - Is it like a dragons nostril?

    #2
    401 is not found error.


    Is it the relative path you have ("myReports/rptConfirmation",

    Would this work?

    ("/myReports/rptConfirmation",
    First Law of Contracting: Only the strong survive

    Comment


      #3
      well your right on that..... but the problem was with

      System.Net.CredentialCache.DefaultCredentials

      which was empty so instead i created a new instance of NetworkCredentials wiith my own domain account and that works fine....

      for now anyway till i sort a proper solution

      problem now is apparently i have no access to local pdf stream

      Access to the path "C:\WINDOWS\system32\report.pdf"

      What a load of rubbish!
      --------------------------------------------------------------------------------

      SA - Is it like a dragons nostril?

      Comment


        #4
        ok just having a moment

        just sent the file to application root and gave aspnet access to the folder...

        voila.

        sorry for wasting time !
        --------------------------------------------------------------------------------

        SA - Is it like a dragons nostril?

        Comment

        Working...
        X