| |
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.
|
16 Articles match "Host","IIS"
| Related DevelopMentor Courses | MORE | | Different options for hosting RavenDB Running as an IIS application Another option for hosting RavenDB is creating an IIS application and letting IIS take care of things. There is a little bit more work to it and I consider it more of a deployment option but its a great way of hosting RavenDB in production. This is a great option if you don’t want to, or can’t, deploy an extra IIS application. number of my websites run on a budget hosting infrastructure that make it harder to deploy extra IIS applications. There are quite a few options when it comes to hosting RavenDB. The Problem Solver - Wednesday, December 5, 2012 Using RavenDB with Azure websites In a previous post I explored various options of hosting RavenDB. 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. 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. have a simple page using RavenDB as the backend store hosted on Azure right here. 2: 3: private void CreateRavenDB(). Enjoy! 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. However, if you’re self-hosting, you’ll need to perform a few extra steps. You may also need to grant permission for the process hosting your service to register a url with Http.Sys. 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. Enjoy. DevelopMentor Courses - Monday, May 28, 2012 |
25 Articles match "Host","IIS"
| The Latest from DevelopMentor | MORE | | The Architecture of WCF 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. The problem is all of these have different APIs and different levels of capability. Messages. Channels. WCF, as of 4.5, Encoders. DevelopMentor Courses - Sunday, April 7, 2013 Using RavenDB with Azure websites In a previous post I explored various options of hosting RavenDB. 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. 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. have a simple page using RavenDB as the backend store hosted on Azure right here. 2: 3: private void CreateRavenDB(). Enjoy! The Problem Solver - Monday, December 10, 2012 Using RavenDB with Azure websites In a previous post I explored various options of hosting RavenDB. 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. 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. have a simple page using RavenDB as the backend store hosted on Azure right here. 2: 3: private void CreateRavenDB(). Enjoy! The Problem Solver - Monday, December 10, 2012 | -
| The Best from DevelopMentor | MORE | - Different options for hosting RavenDB
Running as an IIS application Another option for hosting RavenDB is creating an IIS application and letting IIS take care of things. There is a little bit more work to it and I consider it more of a deployment option but its a great way of hosting RavenDB in production. This is a great option if you don’t want to, or can’t, deploy an extra IIS application. number of my websites run on a budget hosting infrastructure that make it harder to deploy extra IIS applications. There are quite a few options when it comes to hosting RavenDB. The Problem Solver - Wednesday, December 5, 2012 - Using RavenDB with Azure websites
In a previous post I explored various options of hosting RavenDB. 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. 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. have a simple page using RavenDB as the backend store hosted on Azure right here. 2: 3: private void CreateRavenDB(). Enjoy! The Problem Solver - Monday, December 10, 2012 - Using the WCF Web API in an ASP.NET MVC application
Now that works but it is far more likely that you will want to be using IIS and host the REST service as part of a web application. So in this blog post I am going to show how to do the normal thing I Created an ASP.NET MVC 3 app to host the REST service. The service we are going to host is pretty simple for now. Next we need to make sure we actually host the service so clients can call into it. This works fine for our simple service but a far better approach is to use an IHttpHostConfigurationBuilder create our service host for us. repo = repo; }. The Problem Solver - Monday, June 13, 2011 - RESTful Web Services with WCF Screencast
cover building WCF services using REST princples, the WebGet and WebInvoke attributes, working with the SyndicationFeed & Rss20FeedFormatter classes, and configuration-free WCF hosting in IIS. I recently got the chance to record a screencast discussing REST-oriented web services in WCF. If you're interested in WCF you should definitely check it out because WCF and REST make an awesome combination. WCF-REST-Kennedy-Peepleocity.wmv 35 MB (WMV HD). You can also download the source code of the project built in the screencast. All content copyright Michael C. Kennedy. - Secure WCF REST Services with a Custom UserNamePasswordValidator
If you’re hosting in IIS (or IIS Express), you’re pretty much done. However, if you’re self-hosting, you’ll need to perform a few extra steps. You may also need to grant permission for the process hosting your service to register a url with Http.Sys. 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. Enjoy. DevelopMentor Courses - Monday, May 28, 2012 - The SqlWorkflowInstanceStore and 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. After all hosting workflow services in IIS without using the SqlWorkflowInstanceStore is asking for problems as sooner or later IIS is going to recycle the AppDomain and abort our workflows. As shown previously it isn’t hard to run Workflow Services on Windows Azure. Unfortunately this isn’t quite as straightforward as I had hoped. SQL Azure != The Problem Solver - Thursday, January 20, 2011 - Getting started with the WCF Web API
These make it very easy to create and host a REST service. var host = new WebServiceHost( typeof (PeopleService), new Uri( "[link] )); host.Open(); foreach (var ep in host.Description.Endpoints). {. var host = new HttpServiceHost( typeof (PeopleService), "[link] ); host.Open(); foreach (var ep in host.Description.Endpoints). {. With this example I used a console application to host our REST service. Warning: This post is based on a prerelease version of the WCF Web API When designing services the REST style is becoming more and more popular. Enjoy! The Problem Solver - Tuesday, May 31, 2011 %>
| | |