Deploy Ext.NET on server

Page 1 of 2 12 LastLast
  1. #1

    Deploy Ext.NET on server

  2. #2
    You did not add DirectRequestModule to system.webServer section (IIS 7 uses that section instead system.web)
    Please see III. SAMPLE WEB.CONFIG in
    https://examples2.ext.net/#/Getting_...uments/README/
  3. #3
    Do you mean this tag?

    <add name="DirectRequestModule" preCondition="managedHandler" type="Ext.Net.DirectRequestModule, Ext.Net" />
    Yes I did add it as you can see in my first post, in my local machine runs fine, but in the server shows always a blank page, what are the possible causes of that? because it don't fires an error message. I don't know what can I review.

    Thanks a lot.
  4. #4
    Ah, I see now

    In this case, you need to investigate response from the server for ext.axd requests
    Can you post response here?

    Also, you can try to use Classic pool instead Integrated in IIS
  5. #5
    Forgive my ignorance but i don't know very much about IIS.

    I changed the pool to classic in my server IIS but now im getting a "404 file not found" error. In my local machine it works with Integrated pool.

    Can you tell me please how can I investigate response from the server for ext.axd requests??
  6. #6
    I changed the pool to classic in my server IIS but now im getting a "404 file not found" error.
    For page or ext.axd requests?

    Can you tell me please how can I investigate response from the server for ext.axd requests??
    Use Fiddler or any integrated developer tools in your browser (FireBug in FF, Developer Tools in IE, developer console in Chrome )

    Do you have online access to you application? Can I test it online?
  7. #7
    I changed the application pool of my site in IIS, i don't know how to do it for ext.axd requests.

    Yes you can test it here
  8. #8
    I see that server returns blank page for your login page (Default.aspx), content length is 0
    Are you sure that anonymous user is allowed to open that page?

    Check this post
    http://stackoverflow.com/a/7156583/1475939
  9. #9
    Thank you Vladimir, I have allowed anonymous users on this page: http://www.serh-soteus.com.mx/Webform1new.aspx

    This page contains just a ResourceManager and a ViewPort of Ext.NET for testing, this is the code:
    <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm1new.aspx.vb" Inherits="SERH.WebForm1new" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <ext:ResourceManager ID="ResourceManager1" runat="server">
        </ext:ResourceManager>
        <ext:Viewport ID="Viewport1" runat="server" Layout="border">
            <Items>
                <ext:Panel ID="Panel1" runat="server" Collapsible="True" Height="100" Region="North"
                    Split="True" Title="North">
                    <Items>
                    </Items>
                </ext:Panel>
                <ext:Panel ID="Panel2" runat="server" Collapsible="true" Layout="Fit" Region="East"
                    Split="true" Title="East" Width="175">
                    <Items>
                        <ext:TabPanel ID="TabPanel1" runat="server" ActiveTabIndex="0" Border="false" TabPosition="Bottom"
                            Title="Title">
                            <Items>
                                <ext:Panel ID="Panel3" runat="server" Title="Tab 1">
                                    <Items>
                                    </Items>
                                </ext:Panel>
                                <ext:Panel ID="Panel4" runat="server" Title="Tab 2">
                                    <Items>
                                    </Items>
                                </ext:Panel>
                            </Items>
                        </ext:TabPanel>
                    </Items>
                </ext:Panel>
                <ext:Panel ID="Panel5" runat="server" Collapsible="true" Height="100" Region="South"
                    Split="true" Title="South">
                    <Items>
                    </Items>
                </ext:Panel>
                <ext:Panel ID="Panel6" runat="server" Collapsible="true" Layout="accordion" Region="West"
                    Split="true" Title="West" Width="175">
                    <Items>
                        <ext:Panel ID="Panel7" runat="server" Border="false" Collapsed="True" Icon="FolderGo"
                            Title="Item 1">
                            <Items>
                            </Items>
                        </ext:Panel>
                        <ext:Panel ID="Panel8" runat="server" Border="false" Collapsed="true" Icon="FolderWrench"
                            Title="Item 2">
                            <Items>
                            </Items>
                        </ext:Panel>
                    </Items>
                </ext:Panel>
                <ext:Panel ID="Panel9" runat="server" Layout="Fit" Region="Center" Title="Center">
                    <Items>
                        <ext:TabPanel ID="TabPanel2" runat="server" ActiveTabIndex="0" Border="false" Title="Center">
                            <Items>
                                <ext:Panel ID="Panel10" runat="server" Closable="true" Title="Tab 1">
                                    <Items>
                                    </Items>
                                </ext:Panel>
                                <ext:Panel ID="Panel11" runat="server" Title="Tab 2">
                                    <Items>
                                    </Items>
                                </ext:Panel>
                            </Items>
                        </ext:TabPanel>
                    </Items>
                </ext:Panel>
            </Items>
        </ext:Viewport>
        </form>
    </body>
    </html>
    I'm already using developer tools of the explorer and I can see that all resources and scripts are loaded correctly in my local IIS, but in the server don't load anything of that, and I have exactly the same files in both sites.
  10. #10
    If you create a page without Ext.Net controls then do you have the same issue (blank page)?
Page 1 of 2 12 LastLast

Similar Threads

  1. Web Deploy Issues with hosting
    By osef in forum 1.x Help
    Replies: 3
    Last Post: Mar 31, 2012, 10:32 AM
  2. Deploy EXT.NET in production
    By skeynan in forum 1.x Help
    Replies: 1
    Last Post: Oct 19, 2011, 3:55 PM
  3. Replies: 1
    Last Post: Oct 17, 2011, 7:35 AM
  4. how to deploy the website on IIS6
    By dkDrag in forum 1.x Help
    Replies: 1
    Last Post: Dec 01, 2009, 8:54 PM
  5. Deploy error
    By Argons in forum 1.x Help
    Replies: 1
    Last Post: Aug 20, 2009, 12:53 PM

Tags for this Thread

Posting Permissions