this post was submitted on 06 Feb 2025
27 points (100.0% liked)
technology
23544 readers
145 users here now
On the road to fully automated luxury gay space communism.
Spreading Linux propaganda since 2020
- Ways to run Microsoft/Adobe and more on Linux
- The Ultimate FOSS Guide For Android
- Great libre software on Windows
- Hey you, the lib still using Chrome. Read this post!
Rules:
- 1. Obviously abide by the sitewide code of conduct. Bigotry will be met with an immediate ban
- 2. This community is about technology. Offtopic is permitted as long as it is kept in the comment sections
- 3. Although this is not /c/libre, FOSS related posting is tolerated, and even welcome in the case of effort posts
- 4. We believe technology should be liberating. As such, avoid promoting proprietary and/or bourgeois technology
- 5. Explanatory posts to correct the potential mistakes a comrade made in a post of their own are allowed, as long as they remain respectful
- 6. No crypto (Bitcoin, NFT, etc.) speculation, unless it is purely informative and not too cringe
- 7. Absolutely no tech bro shit. If you have a good opinion of Silicon Valley billionaires please manifest yourself so we can ban you.
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Sorry ASP.NET sucks so bad. The VS solution might already have an applicable Publish Profile if it was cloned from another within the organization. Because it's Microsoft and so old, there's a lot of ways to have an existing site configured that can cause issues.
The compiled app should be able to be dropped onto the web server and registered as an application under a new or existing "Site". Sites have virtual hostnames registered within IIS manager, I think they call them "Bindings". The
applicationHost.config
XML file for the IIS hosting environment makes it easier to find values than IIS Manager but don't get in the habit of making complicated edits without testing. This might be like dev-product.company.local ordev-product.company.net
or whatever and should probably be reachable on whatever network you're on.Once the app is registered to a Site, within IIS manager you can right click the app and hit Browse and it'll open in Internet Explorer probably. If the app has a different initial URL for actually doing something you might have to navigate to it (eg web browser will open to
dev-product.company.net/WebApplication-Portal/
but you have to go todev-product.company.net/WebApplication-Portal/Dashboard
)Also worth checking the Event logs in Windows for errors, but with 404s you could also have a file system permission problem. Usually it'll actually throw a 403 if the IIS service account couldn't access the folder containing files/webapp though.
Oh and make sure the app is in one of the "app pools" and check the pool it's in is Started.
Alright, so I can confirm the following:
Will give these suggestions a try, thanks!