|
-
Jan 26th, 2005, 10:53 AM
#1
Thread Starter
Member
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.
-
Jan 26th, 2005, 11:15 AM
#2
Frenzied Member
Re: Intranet application
Try using the IP of your machine.
Magiaus
If I helped give me some points.
-
Jan 26th, 2005, 11:44 AM
#3
Thread Starter
Member
Re: Intranet application
I have already tried that. It didn't work either.
-
Jan 26th, 2005, 11:50 AM
#4
Frenzied Member
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.
-
Jan 26th, 2005, 11:56 AM
#5
Addicted Member
Re: Intranet application
Are you missing the working directory of your application?
ie. http://localserv/appDir/app.aspx
-
Jan 26th, 2005, 12:12 PM
#6
Thread Starter
Member
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
-
Jan 26th, 2005, 12:19 PM
#7
Frenzied Member
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.
-
Jan 26th, 2005, 01:10 PM
#8
Thread Starter
Member
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.
-
Jan 26th, 2005, 01:18 PM
#9
Frenzied Member
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.
-
Jan 26th, 2005, 01:25 PM
#10
Thread Starter
Member
Re: Intranet application
Both Anonymous and windows integrated are checked
-
Jan 26th, 2005, 01:29 PM
#11
Frenzied Member
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.
-
Jan 26th, 2005, 01:54 PM
#12
Thread Starter
Member
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
-
Jan 26th, 2005, 04:11 PM
#13
Frenzied Member
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.
-
Jan 26th, 2005, 04:36 PM
#14
Thread Starter
Member
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
-
Jan 26th, 2005, 07:07 PM
#15
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|