Click here to Skip to main content
15,890,897 members
Home / Discussions / C#
   

C#

 
GeneralRe: service top pulling when list is emty c# Pin
Richard MacCutchan16-Apr-15 4:09
mveRichard MacCutchan16-Apr-15 4:09 
GeneralRe: service top pulling when list is emty c# Pin
Sascha Lefèvre16-Apr-15 4:27
professionalSascha Lefèvre16-Apr-15 4:27 
GeneralRe: service top pulling when list is emty c# Pin
Richard MacCutchan16-Apr-15 4:31
mveRichard MacCutchan16-Apr-15 4:31 
GeneralRe: service top pulling when list is emty c# Pin
Sascha Lefèvre16-Apr-15 4:54
professionalSascha Lefèvre16-Apr-15 4:54 
GeneralRe: service top pulling when list is emty c# Pin
Richard MacCutchan16-Apr-15 4:33
mveRichard MacCutchan16-Apr-15 4:33 
GeneralRe: service top pulling when list is emty c# Pin
Dave Kreskowiak16-Apr-15 4:25
mveDave Kreskowiak16-Apr-15 4:25 
Questionrdlc background image doesn't fit page Pin
medo0-15-Apr-15 22:56
medo0-15-Apr-15 22:56 
QuestionDownloading a PDF File from a URL Pin
Vimalsoft(Pty) Ltd15-Apr-15 22:39
professionalVimalsoft(Pty) Ltd15-Apr-15 22:39 
Good Day All

i have a Reporting Service URL that i dynamically pass the Parameters on a Querystrng and if i take that URL and post it on a BRowser it downloads the PDF file. so i want to do this in C# , this code runs in a WCF service
public void GetAccountEmailStatement(string AccountNumber, string EmailAddress)
{
    try
    {
        //

        string remoteUri = "<a href="http://myserver/ReportServer/Pages/ReportViewer.aspx?%2fE-Billing%2fISU_PDF_GEN_1&rs:Command=Render&Contract_Account_Number=">http://myserver/ReportServer/Pages/ReportViewer.aspx?%2fE-Billing%2fISU_PDF_GEN_1&rs:Command=Render&Contract_Account_Number=</a>" + AccountNumber + "&Post_Date=26/02/15&rs:Format=PDF";
        string fileName = HttpContext.Current.Server.MapPath("/Temp/"  + AccountNumber + ".pdf");<br />
        WebClient webClient = new WebClient();
        webClient.DownloadFile(remoteUri, fileName); //Error hapeens on this line

    }
    catch (SqlException ex)
    {
        throw ex;
    }
    finally
    {
        this.con.Close();
    }
}

The Error i get when its supposed to download the file is

The remote server returned an error: (401) Unauthorized.

Please help
Vuyiswa Maseko,

Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.

C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vimalsoft.com
vuyiswa[at]vimalsoft.com

AnswerRe: Downloading a PDF File from a URL Pin
OriginalGriff15-Apr-15 22:55
mveOriginalGriff15-Apr-15 22:55 
QuestionRtb set start line when load form Pin
DPaul199415-Apr-15 7:26
DPaul199415-Apr-15 7:26 
AnswerRe: Rtb set start line when load form Pin
Richard Deeming15-Apr-15 8:03
mveRichard Deeming15-Apr-15 8:03 
GeneralRe: Rtb set start line when load form Pin
DPaul199415-Apr-15 8:11
DPaul199415-Apr-15 8:11 
GeneralRe: Rtb set start line when load form Pin
Richard Deeming15-Apr-15 8:16
mveRichard Deeming15-Apr-15 8:16 
GeneralRe: Rtb set start line when load form Pin
DPaul199415-Apr-15 8:17
DPaul199415-Apr-15 8:17 
Questioni have one question related web api integrate in my project Pin
Manoj Gupta 00714-Apr-15 21:54
Manoj Gupta 00714-Apr-15 21:54 
AnswerRe: i have one question related web api integrate in my project Pin
Pete O'Hanlon14-Apr-15 22:39
mvePete O'Hanlon14-Apr-15 22:39 
QuestionWhat is the difference between Object Oriented,Object based and purely Object Oriented in terms of any language ? Pin
Gyana_Ranjan Dash14-Apr-15 20:12
Gyana_Ranjan Dash14-Apr-15 20:12 
AnswerRe: What is the difference between Object Oriented,Object based and purely Object Oriented in terms of any language ? Pin
OriginalGriff14-Apr-15 21:36
mveOriginalGriff14-Apr-15 21:36 
GeneralRe: What is the difference between Object Oriented,Object based and purely Object Oriented in terms of any language ? Pin
Gyana_Ranjan Dash14-Apr-15 22:19
Gyana_Ranjan Dash14-Apr-15 22:19 
GeneralRe: What is the difference between Object Oriented,Object based and purely Object Oriented in terms of any language ? Pin
OriginalGriff14-Apr-15 22:45
mveOriginalGriff14-Apr-15 22:45 
AnswerRe: What is the difference between Object Oriented,Object based and purely Object Oriented in terms of any language ? Pin
Florian Braun14-Apr-15 21:40
professionalFlorian Braun14-Apr-15 21:40 
Questionbest coding practises in c# Pin
dhivya.sakthi14-Apr-15 19:14
dhivya.sakthi14-Apr-15 19:14 
AnswerRe: best coding practises in c# Pin
Gyana_Ranjan Dash14-Apr-15 19:38
Gyana_Ranjan Dash14-Apr-15 19:38 
AnswerRe: best coding practises in c# Pin
V.14-Apr-15 20:15
professionalV.14-Apr-15 20:15 
AnswerRe: best coding practises in c# Pin
aadhira14-Apr-15 20:22
aadhira14-Apr-15 20:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.