Results 1 to 15 of 15

Thread: Intranet application[Resolved]

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 2004
    Posts
    62

    Resolved Intranet application[Resolved]

    I am developing a web application in asp.net which will be used later as an internet application. I want my peers to use this application and send me their feedback during the development stages. I am not able to see this application from another user machine. I typed in http://localserver/app.aspx where localserver is the name of my machine. Can someone lead me in the right direction? I am working on Win XP Professional SP2. Thanks
    Last edited by Sansari71; Jan 26th, 2005 at 04:38 PM.

  2. #2
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: Intranet application

    Try using the IP of your machine.
    Magiaus

    If I helped give me some points.

  3. #3

    Thread Starter
    Member
    Join Date
    Nov 2004
    Posts
    62

    Re: Intranet application

    I have already tried that. It didn't work either.

  4. #4
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: Intranet application

    Turn off your firewall. Or allow http to pass through the firewall.

    What kind of network are you on? Is there a DHCP host? Do you Have a DNS Server?
    Magiaus

    If I helped give me some points.

  5. #5
    Addicted Member
    Join Date
    Nov 2004
    Posts
    149

    Re: Intranet application

    Are you missing the working directory of your application?

    ie. http://localserv/appDir/app.aspx

  6. #6

    Thread Starter
    Member
    Join Date
    Nov 2004
    Posts
    62

    Re: Intranet application

    token:
    I am not missing any working directory. The actual path I am using has a working dir. I just didn't type it here.

    Magiaus:
    Firewall is on but how do you allow http to padd through the firewall. There is a DNS server

  7. #7
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: Intranet application

    Network Connection -> Your connection -> Properties -> Advanced -> Windows Firewall -> Settings -> Exceptions -> Add the port your site is running on. 80, 8080 or whatever.

    I asked about DNS because the network tech could setup a DNS entry for you if need be. You may need to get with your network person for some help anyway.
    Magiaus

    If I helped give me some points.

  8. #8

    Thread Starter
    Member
    Join Date
    Nov 2004
    Posts
    62

    Re: Intranet application

    I added port 80 and now when I am trying to access the page on any machine except my machine, I get a pop up window asking for a guest password. I don't have a guest account. If I click ok i keep popping that window and if I click cancel it displays a IE error message. Again any help is appreciated.

  9. #9
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: Intranet application

    Check your security in IIS. You need anonymosand integrated thats it. Let windows handle the password for anonymos. This allows users to access the site through the ASP.Net user name and allows you to debug via integrated Windows NT account checks.
    Magiaus

    If I helped give me some points.

  10. #10

    Thread Starter
    Member
    Join Date
    Nov 2004
    Posts
    62

    Re: Intranet application

    Both Anonymous and windows integrated are checked

  11. #11
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: Intranet application

    Okay. Is that for the Default WebSite or the directory below it that is your site?

    I'm not sure what else you can do. I had something like this happen once but it corrected it's self after a reboot if I am remembering correctly.
    Magiaus

    If I helped give me some points.

  12. #12

    Thread Starter
    Member
    Join Date
    Nov 2004
    Posts
    62

    Re: Intranet application

    It is for both the default website and directory. Also, I have rebooted the machine but I am still getting the same error. Thanks for all the help

  13. #13
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: Intranet application

    So you have the box checked to inherit security? Or you set it on both? I don't know try searching MSDN....
    Magiaus

    If I helped give me some points.

  14. #14

    Thread Starter
    Member
    Join Date
    Nov 2004
    Posts
    62

    Resolved Re: Intranet application[Resolved]

    I am able to solve this. Besides adding Port 80 in the firewall exception, I had to make the authentication mode = None in the web.config file and get rid of deny user lines. Below is the code
    HTML Code:
        <authentication mode="None" /> 
        <!--authorization>
            <deny users="?" />
            
        </authorization-->
    Thanks for all the help Magiaus

  15. #15
    Frenzied Member Magiaus's Avatar
    Join Date
    Mar 2002
    Location
    swamp land
    Posts
    1,267

    Re: Intranet application[Resolved]

    Yeah, I remember now. I had to do that.
    Magiaus

    If I helped give me some points.

Posting Permissions

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



Click Here to Expand Forum to Full Width