How to enable ssl on old VB.net app with IIS 7? - vb.net

I have a VB.net app developed before 2010 with visual web developer express 2008. The app is running with IIS 7 (.NET framework 2.0) on MS server 2008. Without changing code in vb.net app, is there a way I can enable ssl with only configuration of IIS7? I can add https to IIS and generate my CA. I don't have visual studio and can not use VS for ssl.

Related

How to run ASP.Net MVC 4 application on IIS 10

I upgraded my machine to windows 10 release 2.0 from Windows 7 and installed Visual Studio 2017 which I earlier used was VS 2012. My application is not working after setting up IIS 10.
Getting this below error:
HTTP Error 403.14 - Forbidden
The Web server is configured to not list the contents of this directory.
Is there something extra that needs to be configured for IIS 10?
From the asker in an edit to his question:
Running Visual Studio in admin mode solved the problem.

Error Hosting WCF 3.5 Under IIS Express

I'm trying to run WCF Service based on 3.5 Framewor on Windows 8 with Visual Studio 2012 and IIS Express.
Service hosting fails with error "HTTP Error 404.17".
I'm trying with default Visual Studio WCF template setting framework 3.5.
Works fine if I select frameworks 4.0 or 4.5.
Is there a way to make 3.5 services works fine with IIS Express?
Http activation is enabled in Windows Features.
Tried install, re-install, remove and install Service Model via:
Framework64\v3.0\Windows Communication Foundation> .\ServiceModelReg.exe -i
Still not working.
Regards,
Dmitry

How to run MVC 4 of VS 2012 on web server?

I have a MVC 4 application and runs well on my local machine.
What do I have to do further in Visual Studio 2012 to run my website in web server?
Do I have to make some files by VS 2012 to deploy a website in web server?
You don't need to do anything specific in Visual Studio.
Make sure you have .net 4.0 and MVC installed on your server.
Configure your app pool to be the same architecture as your Webapp(x86, x64).
Change your web.config
Create a virtual directory/application on your ISS.
Configure authentication options of your app(probably you will need anonymous and forms)
When you publish/build your website you can just copy the entire content to your IIS directory and it should work.

ReportViewer control works in development environment but not in IIS 6.0

I have a page with a ReportViewer control that works on my development machine (vs2008) but not in IIS 6.0. What do I need to change in my web.config or in IIS 6.0 to fix it?
Install the Microsoft Report Viewer 2008 SP1 Redistributable on the new server.

SSL with Visual Studio Development Server

Is it possible to use SSL with Visual Studio Development Server (a.k.a. Web Application project)? I don't want to have to deploy IIS locally if possible. I'm running Windows 7.
NOTE: I've seen this (http://connect.microsoft.com/VisualStudio/feedback/details/354576/add-https-support-to-visual-studio-asp-net-development-server) but I was still hoping there was a workaround.
It cannot be done with VS 2008, so I've simply resorted to deploying my app to the local IIS as part of the start process with a generated cert.
We can use IIS Express with VS 2010 to develope and test web apps in SSL. Here is a complete article explaning how to use IIS Express and Visual Studion 2010 to develope websites in SSL
Working with SSL at Development Time is easier with IISExpress
Introducing IIS Express
this subject was covered here and it say's, you actually can't.
But you might take a look at this link, which might prove the contrary: (See link in comment, i'm not yet able to post more then 1 link per post ...doh)
Hope this helps.
It can be done in VS2010, I'm not sure if VS2008 supports the following approach. Configure Visual Studio to use use Microsoft IIS Express instead of the web server built in to Visual Studio.