English 中文(简体)
当被部署到服务器时没有工作
原标题:File Uploads Not Working When Deployed To Server

最近,我开始尝试创建自己的异步文件上传组件用于ASP.NET。我从Darren Johnstone的FileUpload项目中吸取了经验,并创建了一个HttpModule来提取提交的数据中的文件。

我全力以赴,利用发展服务器与2008年全球抽样调查进行测试。 在我进行测试时,我甚至走过了这么长时间,以确保申请在档案开始上载之前被单元拦截。 在我对事情感到满意之后,我把该项目部署到我们的网络服务器(Win 2008 w/ IIS 7)。 我惊讶地获悉,这些控制在部署时没有发挥作用。

经过一些远程调试,我发现当文件完全上传后,HttpApplication.AuthenticateRequest事件(我的挂接进程的位置)才被调用。

我检查了我能想到的一切,但仍然找不到这种行为变化的原因。有什么想法吗?

问题回答

我的猜测是伙伴关系。 该网络的运行时间不是以综合方式运行的,该系统在服务器上运行时间,因此,文件上的有效载荷必须在全球导航卫星系统接收器的接收过程中完全缓冲,然后才能移交给伙伴关系。 NET运行时间。

这就解释了为什么请求管道直到数据完全上传后才发射。

检查服务器的配置,确保ASP.NET应用程序启用了集成模式。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签