[CLOSED] Coolite in IIS 7 Integrated Mode

  1. #1

    [CLOSED] Coolite in IIS 7 Integrated Mode

    I've been working with our integration experts here at the University, we have successfully gotten Coolite to work in Classic ASP.NET mode. However, the application is incredibly slow over SSL! I am wondering if anyone has expertise in getting Coolite to work with Integrated mode turned-on, and what modifications are required to Web.config, etc. to make it work?
  2. #2

    RE: [CLOSED] Coolite in IIS 7 Integrated Mode

    I have a solution!!! This should help EVERYONE with an issue. I couldn't find any posts about this the other day, my brain must have been in vacation mode.

    The basis of my analysis stems from this posting http://forums.ext.net/showthread.php?570#post2834 and I had some issues with IIS7 Integrated, mainly after doing a couple of suggestions I could get my screens to load up in Coolite now, however I kept getting this Window popup error message saying Coolite is not configured properly with some section of the Web.config - after you see my post could you modify this error saying "In Classic ASP.NET mode do this" and "Using IIS7 Integrated mode do this Web.config"

    Here are the modifications to Web.config for Classic ASP.NET mode:

    <system.web>
                <trust level="Full"/>
                <httpHandlers>
       <add path="*/coolite.axd" verb="*" type="Coolite.Ext.Web.ResourceManager"
        validate="false" />
      </httpHandlers>
                <httpModules>
       <add name="AjaxRequestModule" type="Coolite.Ext.Web.AjaxRequestModule, Coolite.Ext.Web" />
      </httpModules>
          </system.web>
    And now for IIS7 Integrated mode your Web.config changes:

    <system.webServer>
                <validation validateIntegratedModeConfiguration="false"/>
                <modules>
          <add name="AjaxRequestModule" type="Coolite.Ext.Web.AjaxRequestModule, Coolite.Ext.Web" />
                </modules>
                <handlers>
                      <add path="*/coolite.axd" verb="*" type="Coolite.Ext.Web.ResourceManager" name="Coolite.Ext.Web.ResourceManager" />
                </handlers>
          </system.webServer>
    This should help anyone with using IIS7 in either configuration mode. It might be helpful to developers by updating the Coolite popup Window "missing the required AjaxRequestModule" Warning message for both Classic ASP.NET mode and Integrated mode.

    It took me a while to figure out that copying "AjaxRequestModule" section of Web.config to <system.webServer><modules></modules></system.webServer> like it is under <system.web><httpModules></httpModules></system.web> would fix that error for IIS7 Integrated.
    Last edited by geoffrey.mcgill; Feb 21, 2011 at 8:57 PM.
  3. #3

    RE: [CLOSED] Coolite in IIS 7 Integrated Mode

    Hi,

    Sorry for the delay, yes, you are right, IIS7 has different web.config

    That was discussed early. The same solution is posted here

    http://forums.ext.net/showthread.php?3809#post15508
    Last edited by geoffrey.mcgill; Feb 21, 2011 at 8:58 PM.
  4. #4

    RE: [CLOSED] Coolite in IIS 7 Integrated Mode

    Wish that one came up on Google :)

    Can you still update the Warning message that I talked about? Based on the wording in the Warning/error: I was looking in the httpModules section (and the AjaxRequestModule was there) so it was throwing me off for a while... until I copied it to the <modules> section also, then it got rid of the error/warning Coolite message, using IIS7 Integrated mode.
  5. #5

    RE: [CLOSED] Coolite in IIS 7 Integrated Mode

    Hi,

    Yes, it is good idea to mention about IIS7 in that warning. We will update it

Similar Threads

  1. How important design mode support in Coolite for you
    By Vladimir in forum Open Discussions
    Replies: 21
    Last Post: Nov 06, 2011, 7:42 AM
  2. Integrated tabpanel
    By oscar_nadie in forum 1.x Help
    Replies: 2
    Last Post: Apr 26, 2011, 1:54 PM
  3. [CLOSED] IE compatibility mode
    By RomualdAwessou in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Sep 14, 2010, 7:55 PM
  4. [CLOSED] Ext.Net 1.0 using II 7.0 Integrated Mode.
    By Zarzand in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Mar 25, 2010, 6:55 PM
  5. [CLOSED] ID Mode for just one Control
    By amitpareek in forum 1.x Legacy Premium Help
    Replies: 10
    Last Post: Jan 06, 2010, 3:46 AM

Posting Permissions