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>