Newbie deployment qeustion

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Newbie deployment qeustion

    I have created my first web app and it runs fine on the machine it is
    created on. It comes up fine in a web browser on the host machine or remote
    machines.

    I have tried to move the application to our "official" webserver (just by
    cutting and paste) but I get the following error when I try to bring it up.

    Line 44: by Microsoft that offers a single logon and core profile
    services for member sites.
    Line 45: -->
    Line 46: <authentication mode="Windows" />
    Line 47:
    Line 48: <!-- AUTHORIZATION


    Any help is greatly appreciated.


    Greg Smith Guest

  2. Similar Questions and Discussions

    1. Deployment
      What's the best way in ASP .Net to deploy an app from a development machine to a production machine? Also, do all files (.vbproj, etc) need to be...
    2. MX7 and jar deployment
      In MX6.1 we were deploying java components by simply dropping a jar file to CFusionMX\wwwroot\WEB-INF\lib folder and then restarting CF Server...
    3. Deployment Q
      If you have an ASPX app which calls a WebSvc do you need to deploy the WebReference folder or not? bin\foo.dll foo.aspx webREference? needed or...
    4. Help with Deployment!
      I have a web service running fine on my dev machine, and on a server on my network. When I try to deploy it to a client, when I browse the ASMX...
    5. Web App Deployment
      I ran into this problem, and tried everything that everyone suggested. After carefully debugging the installer with a series of message boxes, I...
  3. #2

    Default RE: Newbie deployment qeustion

    Hi Greg,

    Thank you for using the community. From the description, the problem occur
    after you deply a simple ASP.NET to tartget server. Based my experience,
    this error is usually caused by your Directory in IIS not being marked as
    an Application. Please check this by following the steps below:

    1) Open up the IIS Services Manager (Start -> Run -> Type: inetmgr)
    2) Right-Click on the node under the website that corresponds to your
    ASP.NET web application.
    3) Choose Properties.
    4) Choose Directory Tab (or Virtual Directory depending on what is
    displayed)
    5) In this new property window, in the Application Settings Section,
    ensure that the Application is created (if not, you should hit the Create
    Button) If the application is already created, you will see the Remove
    Button.

    Additionally, you need to deploy all files including all ASPX, config and
    dll to the target server. Here is article on deployment of ASP.NET. Hope
    this help:

    HOW TO: Deploy an ASP.NET Web Application Using Xcopy Deployment
    [url]http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q326355[/url]

    Luke
    Microsoft Online Support

    Get Secure! [url]www.microsoft.com/security[/url]
    (This posting is provided "AS IS", with no warranties, and confers no
    rights.)

    MSFT Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139