Hi,
I get the follwoing;
This sound like the same issue as here; http://forums.infragistics.com/forums/t/63277.aspx
I am using MVC4 on framework 4.5 Attached are the entries in my web.config. Not sure what I have done wrong, is it the fact I am using mvc4?
Hello michaeltocik,
Thank you for posting to forums.
We are currently looking into this inquiry. We may need more information.
Please let me know what version of NetAdvantage are you using as well the the browser.
If you have any questions, please let me know as well.
The error happens if I try any of my browsers Crome, IE 8 or Firefox 11 The version is NetAdvantage 2012.1 (jQuery).
I get the same error on IIS Express and IIS7
I did also try load the script files in the order suggested in a previous post which did not work for me.
<script src="../scripts/jquery-1.4.4.min.js" type="text/javascript" id="Script2"></script>
<script src="../scripts/jquery-ui.min.js" type="text/javascript" id="Script3"></script>
<script src="../ig_ui/js/min/ig.ui.min.js" type="text/javascript" id="Script1"></script>
<script src="../ig_ui/js/min/ig.ui.upload.min.js" type="text/javascript" id="igClientScript"></script>
Hi Michael,
Have you tried ot access the httphandler - I mean to access http://<your URL>/iguploadstatushandler.ascx. I suspect that you may be have not configured correctly the path to the httphandler. For instance you can try to set the absolute path "/iguploadstatushandler.ascx" in your web.config. I mean the problem could not be caused by the new version of the MVC.
Thanks,
Miro Hristov
Just to clarify what solved my issue was that I needed both the entries in the web config;
<httpHandlers> and <system.webServer>
My understanding of the documentation was I would only need <httpHandlers> for my development enviroment which in my case is VS2012 RC.
Thanks for all the help :)
You mean settings in the web.config for httphandlers for a specific version of IIS. Probably you have tested in IIS7. It is not configuration issue with the Visual Studio. So please refer to these links for more information:
http://help.infragistics.com/Help/NetAdvantage/jQuery/2012.1/CLR4.0/html/igUpload_Overview.htmlhttp://help.infragistics.com/Help/NetAdvantage/jQuery/2012.1/CLR4.0/html/igUpload_Using_HTTP_Handler_and_Modules.html
MIro Hristov