• 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!
Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "Automating reporting services"

Collapse

  • kramer
    replied
    ok just having a moment

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

    voila.

    sorry for wasting time !

    Leave a comment:


  • kramer
    replied
    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!

    Leave a comment:


  • _V_
    replied
    401 is not found error.


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

    Would this work?

    ("/myReports/rptConfirmation",

    Leave a comment:


  • kramer
    started a topic Automating reporting services

    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
Working...
X