I have application wirtten in MVC2. In the host server is installed MVC3 framework. Will my application run in this host server or I need to install also(or maybe instead) MVC2?
Thank you
You need to have ASP.NET MVC 2 installed on the server (System.Web.Mvc, V2.0.0.0 assembly). You can also bin-deploy ASP.NET MVC.
Related
I'm trying to deploy an ASP.NET Core Web API into an IIS site in windows 2012 server, I've installed IIS from 0 and when I deploy the app and test a petition with Postman I get the 500.32 error.
I've already installed the .NET Core hosting bundle v 6.0.14 also I've configured the application pool to no managed code and I restarted all the services including the IIS.
Restarted the server isn't an option because I can't get physical access to the server, I'm working from a remote location
This is my dotnet --info
I'm trying to deploy an ASP.NET Core 6 Web API.
I've already done:
Compile and publish the API
Installed the is
Create a site and application to deploy the API
Paste the files from the publish folder to the site folder
Installed the netcore hosting bundle
The problem was in the compilation and publish process.
i had to add the check for Ready to run in the publish configurations, i put that and solved the issue
I'm facing the below issue when hosting my ASP.NET Core application in public hosting server. I can run the whole system without any issue in my local IIS. But when deployed to public hosting throwing the below error. web.config file is there in the folder. Hosting provider claimed the server support .NET Core 3.1.
Looking for some idea to overcome this issue. Thanks in advance.
enter image description here
Check your IIS installed
Then Install Current .NET Core Hosting Bundle installer
I have a problem with my ASP .Net Core MVC application deployed on a Debian Environment.
Each time i try to make a HTTPS request, the application is killed and I have to restart it.
Did someone already have this problem ?
For information, a simple wget on the same URL is working in SSH.
I have an ASP.NET MVC application in a solution, and inside the same solution there is another webservice project. I need to debug a particular WebGet method inside that service using a url in my localhost. Am able to reach the web service where it is hosted using the actual url to that service. But if I have to debug it, how can I reach that method when running in localhost?
You need to use IIS Express How to: Specify the Web Server for Web Projects in Visual Studio. Using IIS express you can debug and run both projects in your solution at the same time.
IIS Express for Developers
i have built an asp.net MVc 3 web application on my machine , now i need to host this web application locally to be accessed by four employees in our office. so i need to know the following:-
can i host my asp.net mvc web application inside my machine ? and then connect the other four machines into my PC ?
is there any link that can help me in implementing similar tasks?
BR
If you have IIS installed on your machine, you can host your MVC3 app as a website there. As long as it is the only site bound to port 80, your site should be browsable by other employees in the office at http://<your computer name>/.
Hope this helps.
Setup the website in your IIS.
If Win XP, add file extension in IIS Application settings
Add file extension .* to aspnet_isapi.dll (.NET 4.0)