Installing Windows Identity Foundation 3.5 with no Internet? - wif

Need to get WIF 3.5 installed on a system in a secure environment where there is no Internet access. The installer you save to disk from the WIF download page will work ONLY if you have an Internet connection. How/where can I get a full installer for WIF 3.5? Thanks!

Haven't played with WIF 3.5 for a while but this is the page that I used to use:
Windows Identity Foundation
There are a number of different options, so read the "Install Instructions".
Then download and copy over.

Related

Run mvc application on local IIS get 500 error

I want to run my mvc application on local IIS and use this article for do that, but when I run my project in borwser I have got error 500.19
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.
All of answers in this question didn't resolve my problem. I'm using visual studio 2015 update 3 and IIS 10.
What's the problem?
Installing IIS Features on Windows 8 and Windows 10
The following procedure describes how to install IIS and the required features for the Microsoft Dynamics NAV Web client on Windows 8 and Windows 10.
To install IIS features on Windows 8 and Windows 10
On the Start page, choose Control Panel, and then choose Programs.
Under Programs and Features, choose Turn Windows features on or off.
The Windows features dialog box appears.
Expand the root-level item .NET Framework 4.5 Advanced Services (for Windows 8) or .NET Framework 4.6 Advanced Services (for Windows 10), and then do the following:
Select ASP.NET 4.5 (for Windows 8) or ASP.NET 4.6 (for Windows 10).
Expand WCF Services, and then select HTTP Activation.
Expand the root-level item Microsoft .NET Framework 3.5 (including .NET 2.0 and 3.0), and then select Windows Communication Foundation HTTP Activation.
Note
The Microsoft .NET Framework 3.5 (including .NET 2.0 and 3.0) item is only available if.NET Framework 3.50 is installed. If the item is not shown, then there is no action for this step.
Expand the root-level item Internet Information Services, expand World Wide Web Services, and then do the following:
Expand Application Development Features, and select the following features:
.NET Extensibility 3.5 (if .NET Framework 3.5 is installed)
.NET Extensibility 4.5 (for Windows 8) or .NET Extensibility 4.6 (for Windows 10)
ASP.NET 3.5 (if .NET Framework 3.5 is installed)
ASP.NET 4.5 (for Windows 8) or ASP.NET 4.6 (for Windows 10)
ISAPI Extensions
ISAPI Filters
Expand Common HTTP Features, and then select the Static Content feature.
Expand Security, and then select the following features:
Request Filtering
Windows Authentication
Under Internet Information Services, expand Web Management Tools, and then select IIS Management Console.
This is an optional step to install Internet Information Service IIS Manager. You use Internet Information Service IIS Manager to manage local and remote web servers and sites.
Choose the OK button to complete the installation.
To verify that the web server has been installed correctly, start your browser, and then type http://localhost in the address.
The default web site opens and should display an IIS 8 image.
Reference
Asp.net 4 not install use this https://msdn.microsoft.com/en-us/library/k6h9cz8h.aspx

Unable to utilize Entity Framework after deployment

i m using publish option for my project using Entity framework.
the 'bin' of the published folder does contain the dll of project that has Entity framework but the features of my application (using EF) stop working when they Get / Insert Data using Entity Framework .
the error is as follows in my application's File log:
02/01/2015 10:25:36 AM|TraceError |Exception is :The specified store provider cannot be found in the configuration, or is not valid.| |<EOL>
Am i missing any thing? ... Please help.
This might be happening due to system architecture of processors (32 bit and 64 bit versions of dll).
Try the following steps.
Open Inetmgr (IIS).
Go to application pools.
Open advance properties of the application pool on which your application is running.
Set Enable 32 bit Applications (in general category) to True.
I think this will solve your issue.
If you are using an Oracle database, I assume you must have installed the ODP.NET components. Unless you are using a third party provider such as Devart, which offers direct access to Oracle with its DirectConnect feature, there has to be a middle layer that the developer installs which would translate EF to Oracle. (Even if you used a third party provider, then you must have installed that third party provider on your development environment). Long story short, your VM does not have the provider that your developer PC has. You need to find out if you are using ODP.NET or a third party provider on your development PC, (which, I guarantee you, does not come with any Visual Studio or framework installation, somebody has to install it separately), then install it on your VM

Windows Identity Foundation on Windows 10 Tech Preview

I'm trying to install the Windows Identity Foundation runtime on Windows 10 tech preview and coming up short.
Under Windows 8/8.1 the WIF Runtime was available in the "Turn Windows Features On or Off" dialogue, but it's missing from there. Is there another way to get this installed?
Thanks!
I'm not sure if manual installation will be allowed, but here's a blog post from Feb 2015 that talks about WIF being replaced by OWIN for web developers in VS2015.
http://blogs.msdn.com/b/webdev/archive/2015/02/25/identity-updates-for-web-developers-in-visual-studio-2015-ctp6.aspx
Excerpt: "from this CTP on, we no longer have any template using Windows Identity Foundation. We’re now fully on OWIN."

Host a ASP.Net MVC3 application on my own 2008 server with IIS 7.0

This seems to be so easy that it is documented nowhere.... I have finished my first MVC3 project and now I want to host it on my own IIS7 (W2008) server. How is it done?
There are two options. If you have control of the server and can install on it, the easiest is to install the ASP.NET MVC 3 Framework on it and then install and configure the MVC app as any other web application.
If the runtime cannot be installed on the server, option called Bin Deployment can be used.
This is what I did to install get MVC running on Windows 7 Professional or greater. For Windows Server 2008, please see this link. The IIS management component should be the same for Windows 7 / Server 2008. The install process will be a little different.
Start > Control Panel > Programs and Features > Turn Windows features on of off
Expand Internet Information Services and check off all that you need (FTP, World Wide Web)
Specifically I use FTP (FTP Service), and WWW Services with Application Development (.NET Extensibility, ASP, ASP.NET, ISAPI Extensions, and ISAPI Filters) enabled. Under security you should at least enable Basic Authentication.
After this is done, go to here to get the Web Platform Installer, which will allow you to easily install .NET 3.5/4.0, MVC, and other features you might need such as MS SQL Express.
Once this is done, go to Start > Control Panel > Administrative Tools > Internet Information Services Managger
Expand COMPUTERNAME, expand sites, right click Default Web Site (unless you want to use a different folder, if so, right click sites and click "Add New"), whichever site you choose, you can right click and choose "Add FTP Publishing". From there just follow the prompts, and allow access to whichever users you want. Now you can FTP in from Microsoft visual Studio 2010 (Using Publish).
In Visual Studio - right click the MVC application you want to publish, go to Publish, enter the ftp site settings (most likely ftp://localhost if its a local install), user, password, and whether or not to replace or delete files. You can save this profile so you don't have to re-enter this information every time.
This question/answer might even be more geared toward serverfault, or superuser, not sure? If so I'm sure it will be moved.

Not able to create Web application in Visual studio 2003

I am not able to create new web application through Visual studio 2003. when i am trying to create web application i am getting an error like "Cannot find the components for communicating with the FrontPage server extensions". Bu at the same time i can create windows application.
Please help me on this...
I would check you definately have Front-Page extensions installed on your web server. In the control panel go to Add/Remove Programs and switch to the Add/Remove Windows Components. Double click Internet Information Services (IIS) and you will see Front Page Server Extensions listed. It should be checked, if not then check it and accept changes, you will need your install media to complete the update unless they were copied to your hard drive.
You could try reinstalling Visual Studio 2003. It sounds like some DLLs might have disappeared.
I have uninstalled both IIS and VS2003 and then installed IIS followed by VS 2003...
now it is working fine..
Problem was because of i installed VS2003 first and then IIS...
so make sure we have to insatll IIS first..
Thanks

Resources