Tagged Questions
2
votes
1answer
1k views
WebClient UploadFile errors
I am trying to upload files to a web server using System.Net.WebClient.UploadFile but I keep getting a WebException. Specifically, I am getting 3 errors. I have no idea why I am not getting the same ...
1
vote
1answer
372 views
Politely checking to see if a file exists before downloading
I'm trying to download files using the Net.WebClient call to DownloadFile
Using client As New Net.WebClient()
Try
client.DownloadFile(PDFURL, FullPDFFilePath)
I then catch the exception ...
1
vote
1answer
701 views
Problem with webclient: Expectation failed?
I have a custom Http Handler which manipulates HTTP POST and GET. I got the project working on a seperate isolated server now need to put it in production...
using (var client = new WebClient())
...