Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have looked at many resources which helped me build my AJAX (uploadify.com) file upload script. When I try use it, I get an error in my browser console that says, "403 (Forbidden)."

Here is my .ashx generic handler:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Diagnostics;

namespace SplendidCRM.WebForms
{
    /// <summary>
    /// Summary description for uploadAttachment3
    /// </summary>
    public class uploadAttachment3 : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            try
            {
                /*
                HttpPostedFile file= context.Request.Files["Filedata"];

                int id = (Int32.Parse(context.Request["id"]));
                string foo = context.Request["foo"];
                file.SaveAs("C:\\" + id.ToString() + foo + file.FileName);
                */
                HttpFileCollection files = context.Request.Files;
                foreach (string fileTagName in files)
                {
                    HttpPostedFile file = context.Request.Files[fileTagName];
                    if (file.ContentLength > 0)
                    {
                        // Due to the limit of the max for a int type, the largest file can be
                        // uploaded is 2147483647, which is very large anyway.
                        int size = file.ContentLength;
                        string name = file.FileName;
                        int position = name.LastIndexOf("\\");
                        name = name.Substring(position + 1);
                        string contentType = file.ContentType;
                        byte[] fileData = new byte[size];
                        file.InputStream.Read(fileData, 0, size);

                        Debug.Print(fileData.ToString());
                        //FileUtilities.SaveFile(name, contentType, size, fileData);
                    }
                }


                context.Response.Write("1");
            }
            catch (Exception ex)
            {
                context.Response.Write("0");
            }
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

My JS:

$('#file_upload').uploadify({
    'swf': 'uploadify/uploadify.swf',
    'uploader': 'uploadAttachment3.ashx'
    // Your options here
});

I am just trying to get it to hit the page without the 403 (Forbidden) error.

How can I resolve this issue?

Thank you.

Edit:

Perhaps, is there something I can add to my web.config httpHandlers?

    <httpHandlers>
        <remove path="*.asmx" verb="*"/>
        <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=XXXXXXXXXXXXXX" validate="false"/>
        <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=XXXXXXXXXXXXXX" validate="false"/>
        <add path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=XXXXXXXXXXXXXX" validate="false"/>
        <add path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=XXXXXXXXXXXXXX" validate="false"/>
  <add path="ajax/*.ashx" verb="POST,GET" type="Ajax.PageHandlerFactory, Ajax"/>
        <add path="ChartAxd.axd" verb="*" type="Dundas.Charting.WebControl.ChartHttpHandler" validate="false"/>
    </httpHandlers>
share|improve this question
Something is wrong with your website permissions, without more info I doubt you'll have much luck with an answer. – Steve Stokes Feb 15 at 18:53
What type of info would be helpful? – user1477388 Feb 15 at 18:54
Version of IIS, how the website is secured, ect. A 403 error means the request hits the server, but the server is refusing it. – Steve Stokes Feb 15 at 18:55
It's IIS 7.5, but I don't know how to answer the question regarding security. I don't know what to look for. Something in web.config? – user1477388 Feb 15 at 18:58
Is the uploader swf in a different folder? Does the IIS user have access to that folder? – Steve Stokes Feb 15 at 19:19
show 7 more comments

closed as too localized by user1477388, 卵が好き, Adam Rackis, Rudi Visser, msmucker0527 Feb 27 at 19:16

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.