AjaxUploader in Windows 2008 (IIS 7.0)

Last post 12-06-2011, 6:10 AM by Kenneth. 3 replies.
Sort Posts: Previous Next
  •  11-29-2011, 7:11 PM 71714

    AjaxUploader in Windows 2008 (IIS 7.0)

    Hi,
     
    Is the AjaxUploader works in IIS 7.0?  If it is, could you tell me how to deploy it?  All I did is include the line below in the <httpModules> of the web.config file.
     
    <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader" />
     
    I also added this same line in the <modules> under <system.webServer>.
     
    Please help!!!
     
    Thanks.
     
  •  11-30-2011, 7:23 AM 71729 in reply to 71714

    Re: AjaxUploader in Windows 2008 (IIS 7.0)

    Hi jserrano,
     
    Please do not use both of them in the web.config. Check your application pool mode and use one of the code below.
     

    IIS 6.0 and IIS 7.0 Classic mode

    <configuration>
      <system.web>
        <httpModules>
          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
         </httpModules>
      </system.web>
    </configuration> 

    IIS 7.0 Integrated mode

    <configuration>
      <system.webServer>
        <modules>
          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
        </modules>
      </system.webServer>
    </configuration>
     
    Regards,
     
    Ken 
  •  12-05-2011, 5:55 PM 71794 in reply to 71729

    Re: AjaxUploader in Windows 2008 (IIS 7.0)

    I've followed your instruction and also restarted the webserver but it's still not working.  I changed the website setting to Classic Mode and I just have the httpModule under system.web and removed it on the system.webServer.
  •  12-06-2011, 6:10 AM 71810 in reply to 71794

    Re: AjaxUploader in Windows 2008 (IIS 7.0)

    Hi jserrano,
     
    Is your site online? If so, please post the uploader test page url. So I can check it for you.
     
    And can you explain what do you mean "not working"? Get any error? 
     
    Regards,
     
    Ken 
View as RSS news feed in XML