My C# WinForms app downloads files from a .php downloading web service.

The .php page returns error as HTML pages displayed to the user (I don't have an alternative API for this)

What would be the best way, provided a file on the disk, to: 1) identify if the file is an HTML file. 2) determine if it has the content of an error page (specified as comment tags, or plain text displayed to the user)

Thanks in advance.

link|improve this question

75% accept rate
1  
Check the response headers, these should contain an error code (Status-code?). Content-type, Content-disposition and so on, if there isn't a specific one containing an error code. – Mr. Disappointment Oct 24 '11 at 17:13
So if I'm using System.Net.WebClient's DownloadFileAsync, I should first force a request with only reading the response to determine if an error occurred or not? – Lockszmith Oct 24 '11 at 17:16
feedback

1 Answer

  1. You could use an HTML validator to determine if the file contains valid HTML.
  2. Depends on what an error page looks like. Instead of inspecting the file, could you look at the response's HTTP status code? This will be simpler and more semantic, provided that the PHP server sets the status code reasonably.
link|improve this answer
Thanks for the idea, but not sure an HTML validator is what I want (too overkill for a small app), however the HTTP status code does make sense, I'll see how I can validate that prior to starting the download. Thanks! – Lockszmith Oct 24 '11 at 17:22
HTTP status codes are of no use, the php script always return 200 OK, hopefully will find another way, will update if found – Lockszmith Nov 2 '11 at 19:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.