vote up 2 vote down star
1

I am writing a diagnostic page for SiteScope and one area we need to test is if the connection to the file/media assets are accesible from the web server. One way I think I can do this is load the image via code behind and test to see if the IIS status message is 200.

So basically I should be able to navigate to within the site to a folder like this: /media/1/image.jpg and see if it returns 200...if not throw exception.

I am struggling to figure out how to write this code.

Any help is greatly appreciated.

Thanks

flag

5 Answers

vote up 8 vote down check

Just use HEAD. No need to download the entire image if you don't need it. Here some boilerplate code.

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("url");
request.Method = "HEAD";

bool exists;
try
{
    request.GetResponse();
    exists = true;
}
catch
{
   exists = false;
}
link|flag
this worked perfectly, thanks. – RedWolves Oct 10 '08 at 18:24
Can this method be applied to folders if they exist or not? – JL 1 hour ago
vote up 2 vote down

You have to dispose of the HTTPWebResponse object, otherwise you will have issues as I have had...

    public bool DoesImageExistRemotely(string uriToImage)
    {
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uriToImage);

            request.Method = "HEAD";

            try
            {
                using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
                {

                    if (response.StatusCode == HttpStatusCode.OK)
                    {
                        return true;
                    }
                    else
                    {
                        return false;
                    }
                }
            }
            catch (WebException) { return false; }
            catch
            {
                return false;
            }
    }
link|flag
What issues did you have? – s_hewitt Jul 16 at 18:05
vote up 2 vote down

You might want to also check that you got an OK status code (ie HTTP 200) and that the mime type from the response object matches what you're expecting. You could extend that along the lines of,

    public bool doesImageExistRemotely(string uriToImage, string mimeType)
    {
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uriToImage);
        request.Method = "HEAD";

        try
        {
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();

            if (response.StatusCode == HttpStatusCode.OK && response.ContentType == mimeType)
            {
                return true;
            }
            else
            {
                return false;
            }   
        }
        catch
        {
            return false;
        }
    }
link|flag
vote up 0 vote down

I've used something like this before, but there's probably a better way:

try
{
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://somewhere/picture.jpg");
    request.Credentials = System.Net.CredentialCache.DefaultCredentials;
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    myImg.ImageUrl = "http://somewhere/picture.jpg";
}
catch (Exception ex)
{
    // image doesn't exist, set to default picture
    myImg.ImageUrl = "http://somewhere/default.jpg";
}
link|flag
vote up -1 vote down

I'd look into an HttpWebRequest instead - I think the previous answer will actually download data, whereas you should be able to get the response without data from HttpWebRequest.

http://msdn.microsoft.com/en-us/library/456dfw4f.aspx until step #4 should do the trick. There are other fields on HttpWebResponse for getting the numerical code if needs be...

hth Jack

link|flag
The only thing it will download is the response header, which is by definition the "response" – Greg Dean Oct 10 '08 at 16:38

Your Answer

Get an OpenID
or

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