Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
800
Progress URL not working
posted

I'm using 2011.2 and running VS2008 .Net 3.5 and the development environment on Vista.

I've configured the upload control as per the documentation and the file upload is working. The file is getting saved to the server and the client and server events are firing as documented. However I get no progress indicator and in the client side error handler I am getting "Error Code #4 - Could not get your current file status! Probably connection dropped."

If I try and invoke the progress handler from the browser I get "Resource cannot be found". I should be getting something from this handler so this appears to be my problem.

Any help is greatly appreciated.

Thanks,

Steve

Configuration is as follows:

MARKUP:

 <link type="text/css" href="/ig_ui/themes/ig/jquery.ui.custom.css" rel="stylesheet" />

<link type="text/css" href="/ig_ui/themes/base/ig.ui.min.css" rel="stylesheet" />

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.js"/>

 

 

 <script type="text/javascript" src="/ig_ui/js/min/ig.ui.min.js"/>

 

 

CONTROL MARKUP:

<script src="ig_ui/js/min/ig.ui.upload.min.js" type="text/javascript" id="igClientScript"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.js"/>

 

 

 

 

<ClientEvents OnError="onErrorHandler" FileUploading="fileUploading" Selected="fileSelected"/> </ig:WebUpload><ig:WebUpload ID="uplFiles" Width="300px" runat="server" Height="150px" BackColor="#d8dfe6" CssClass="fieldlabel" ProgressUrl="/WebUploadStatusHandler.ashx" AutoStartUpload="True" OnUploadFinished="uplFiles_UploadFinished" >

WEB.CONFIG

In HttpModules i have

<

 

add name="IGUploadModule" type="Infragistics.Web.UI.EditorControls.UploadModule" />

 

In HttpHandlers i have

<

 

 

add verb="GET" type="Infragistics.Web.UI.EditorControls.UploadStatusHandler" 

path="IGUploadStatusHandler.ashx" validate="true" />