| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
19 Articles match "IIS","Windows"
| Related DevelopMentor Courses | MORE | | Using RavenDB with Azure websites While using RavenDB as a Windows Service or hosted in IIS is probably the best way to go in most cases there are a number of cases where the embedded option is great. In a previous post I explored various options of hosting RavenDB. And one of the places where I really like the embedded option of hosting RavenDB is when doing simple standalone websites. And with the new Azure website option that is a great way to host them. The code is real straightforward and just like before. 1: public static DocumentStore DocumentStore { get; private set; }. 2: 3: private void CreateRavenDB(). The Problem Solver - Monday, December 10, 2012 Secure WCF REST Services with a Custom UserNamePasswordValidator If you’re hosting in IIS (or IIS Express), you’re pretty much done. This assumes you’re running Windows Vista or later. For earlier versions of Windows you will need to use httpcfg – see here for more info. Download the code for this blog post here. When securing WCF services you’re faced with a choice: Message versus Transport security. Unless you need to conceal messages from an intermediary, your best bet is to stick with transport security and use SSL to secure messages traveling over HTTP. Any arbitrary guid will work for the appId parameter. Enjoy. DevelopMentor Courses - Monday, May 28, 2012 Essential Windows Communication Foundation 4 Training Windows Communication Foundation (WCF) replaces previous technologies such as.NET Remoting, ASMX, and COM+. Here you learn about the different options like self hosting, IIS/WAS, and Windows Server AppFabric. Day 4 Claims-based Identity, Access Control & Federation Microsoft made heavy investments in unifying the representation of identity, authorization and personalization with the new released Windows Identity Foundation (WIF) library. Because it incorporates web service standards, WCF enables interoperability with other platforms such as Java/Unix. DevelopMentor Courses - Tuesday, March 1, 2011 |
30 Articles match "IIS","Windows"
| The Latest from DevelopMentor | MORE | | The Architecture of WCF Over the lifetime of Windows there have been many technologies to achieve this: sockets, DCOM, MSMQ,NET Remoting, ASMX Web Services and more. You can either create the ServiceHost instance yourself and call Open on it (known as self hosting) or you can get the Windows Process Activation Service to do this (formally known as WAS hosting). WAS hosting is also commonly referred to as IIS hosting as the service is configured via IIS manager and the ASP.NET infrastructure. 'Before WCF it was, of course, possible for software running on different machines to communicate. DevelopMentor Courses - Sunday, April 7, 2013 Using RavenDB with Azure websites While using RavenDB as a Windows Service or hosted in IIS is probably the best way to go in most cases there are a number of cases where the embedded option is great. In a previous post I explored various options of hosting RavenDB. And one of the places where I really like the embedded option of hosting RavenDB is when doing simple standalone websites. And with the new Azure website option that is a great way to host them. The code is real straightforward and just like before. 1: public static DocumentStore DocumentStore { get; private set; }. 2: 3: private void CreateRavenDB(). The Problem Solver - Monday, December 10, 2012 Using RavenDB with Azure websites While using RavenDB as a Windows Service or hosted in IIS is probably the best way to go in most cases there are a number of cases where the embedded option is great. In a previous post I explored various options of hosting RavenDB. And one of the places where I really like the embedded option of hosting RavenDB is when doing simple standalone websites. And with the new Azure website option that is a great way to host them. The code is real straightforward and just like before. 1: public static DocumentStore DocumentStore { get; private set; }. 2: 3: private void CreateRavenDB(). The Problem Solver - Monday, December 10, 2012 | -
| The Best from DevelopMentor | MORE | - IIS & RESTful Services #FAIL
when will super duper IIS finally support non-Windows accounts for HTTP authentication? see here for a complete module including IIS management integration: [link]. Tags: IIS WCF really? link]. www.leastprivilege.com - Wednesday, July 21, 2010 - Reading Excel files in a WCF service using OleDB requires 32bit process
My development machine is running Windows 7 64bit and my service was deployed to IIS. Tags: ASP.NET Windows 7 I’ve been doing a little work on a WCF service that reads an Excel file. kept running into a problem with opening the OleDb connection to the Excel file: “Error: Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine.”. Turns out that Office Jet provider will only run in 32bit. After changing my ASP.NET processes to run in 32bit everything ran just fine. This KB article shows how to change ASP.NET to 32bit: [link]. The Blomsma Code - Wednesday, March 10, 2010 - The SqlWorkflowInstanceStore and Windows Azure
As shown previously it isn’t hard to run Workflow Services on Windows Azure. However normally when I am hosting long running workflows in IIS I always add a SqlWorkflowInstanceStore to store the workflow state when it is not running so we can survive the inevitable IIS AppDomain restarts. Adding the SqlWorkflowInstanceStore in Windows Azure Once the database has been created configuring the SqlWorkflowInstanceStore is really no different from a regular workfow serrvice. In fact all we need to do is add a bit of extra configuration and we can work as normal. The Problem Solver - Thursday, January 20, 2011 - ASP.NET Routing in Windows Azure Using WebForms
But what about Windows Azure ? If you get routing working for IIS 7 in your web app, you can effectively deploy it to Azure. But in the Azure Development Fabric you'll see this: The problem is you need to tell IIS 7.5 We'll define a class to short circuit the IIS validation. I'm a huge fan of ASP.NET Routing. It gained popularity as the part of ASP.NET MVC which channels requests for a given URL to the right controller action. In a wise move, Microsoft moved the routing infrastructure out of ASP.NET MVC and into its own assembly with the release of.NET 3.5 link]. - Running Workflow Services on Windows Azure
Windows Azure might not support the WCF and WF4 hosting parts of Windows AppFabric bit that doesn’t mean you can’t run workflow services on Windows Azure. After all a workflow is just a.NET 4 type and Windows Azure runs the.NET framework. As a result, by default, IIS doesn’t know what to do with a WorkflowService type, the base type of a workflow service. On a normal Windows machine with the.NET 4 framework installed there is a section in the machine web.config taking care of this. Enjoy! www.TheProblemSolver.nl. The Problem Solver - Tuesday, January 18, 2011 - Windows Azure Root CAs and SSL Client Certificates
In theory you have to do two things (via startup tasks): Unlock the SSL section in IIS. Serasa Certificate Authority II (11/21/2024 12:44:48 PM). TC TrustCenter Class 2 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Class 3 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Class 4 CA II (12/31/2025 10:59:59 PM). TC TrustCenter Universal CA II (12/31/2030 10:59:59 PM). I ran into some problems while trying to make SSL client certificates work for StarterSTS 1.5. Install all the root certificates for the client certs you want to accept. did that. IZENPE S.A. www.leastprivilege.com - Thursday, December 30, 2010 - Using RavenDB with Azure websites
While using RavenDB as a Windows Service or hosted in IIS is probably the best way to go in most cases there are a number of cases where the embedded option is great. In a previous post I explored various options of hosting RavenDB. And one of the places where I really like the embedded option of hosting RavenDB is when doing simple standalone websites. And with the new Azure website option that is a great way to host them. The code is real straightforward and just like before. 1: public static DocumentStore DocumentStore { get; private set; }. 2: 3: private void CreateRavenDB(). The Problem Solver - Monday, December 10, 2012 %>
| | |