| |
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.
|
40 Articles match "WCF","Windows"
| Related DevelopMentor Courses | MORE | | Secure WCF REST Services with a Custom UserNamePasswordValidator When securing WCF services you’re faced with a choice: Message versus Transport security. WCF has terrific support for this scenario and allows you to supply a custom UserNamePasswordValidator , which you can use to validate client credentials. 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. The nice thing about WCF is its unified programming model, which allows you to use the same username / password validator for both Soap and Rest clients. Technical REST Security WC DevelopMentor Courses - Monday, May 28, 2012 Certificate Validation and Setting up Service Bus 1.0 Beta for Windows Server for Windows Server. Well if you install the beta on a Windows Server 2008 R2 box and you actually develop on another machine then there’s a couple of things not mentioned in the documentation that you need to do (having previously spent long hour glaring at certificate errors allowed me to resolve things pretty quickly). With these in place the Getting Started / Brokered Messaging / QueuesOnPrem sample should work fine.NET;Azure;ServiceBus;WCFMicrosoft recently announced the beta of Service Bus 1.0 So why this blog post? First a little background into why there is an issue. DevelopMentor Courses - Wednesday, July 25, 2012 The Architecture of WCF 'Before WCF it was, of course, possible for software running on different machines to communicate. Over the lifetime of Windows there have been many technologies to achieve this: sockets, DCOM, MSMQ,NET Remoting, ASMX Web Services and more. The goal of WCF was to provide a unified API for communication and to be able to provide a common level of service irrespective of the underlying transport. To understand the structure of WCF and why it looks the way it does useful starting point are the four tenets of service orientation. WCF, as of 4.5, Messages. DevelopMentor Courses - Sunday, April 7, 2013 |
103 Articles match "WCF","Windows"
| The Latest from DevelopMentor | MORE | | The Architecture of WCF 'Before WCF it was, of course, possible for software running on different machines to communicate. Over the lifetime of Windows there have been many technologies to achieve this: sockets, DCOM, MSMQ,NET Remoting, ASMX Web Services and more. The goal of WCF was to provide a unified API for communication and to be able to provide a common level of service irrespective of the underlying transport. To understand the structure of WCF and why it looks the way it does useful starting point are the four tenets of service orientation. WCF, as of 4.5, Messages. DevelopMentor Courses - Sunday, April 7, 2013 Devweek 2013 WCF Preconference Workshop. WCF 4.5 remember you’ll need to be running Windows 8 for the WebSockets demos). Thanks to everyone who attended my sessions at Devweek 2013 – I had a lot of fun delivering them. It was also great to catch up with old friends and make a few new ones. As promised I have uploaded all of my slides and demos to the cloud and they can be downloaded here. Reactive Framework. Living with the GC. Workflow 4.5. What’s new in Unit Testing in VS 2012 (remember that Fakes is only in VS Ultimate SKU DevelopMentor Courses - Saturday, March 9, 2013 Side by side versioning of workflow services One of the really important new features in Windows Workflow Foundation 4.5 Create your initial workflow definition This is the simple step as anyone that has been using Windows Workflow Foundation 4 has already been doing this. Next I updated the return from the WCF request to show that this is an instance of workflow version 2. is the capability to version workflows and workflow instances. You get to choose what you want to do, either keep running existing instances with their original workflow definition or upgrade them to the latest workflow definition. Enjoy! The Problem Solver - Thursday, October 11, 2012 | -
| The Best from DevelopMentor | MORE | - WCF Duplex Messaging
I am one of the moderators of the MSDN WCF Forum. However, the first three of these are supported natively in WCF and are known as One-way, request/response and duplex. Duplex Contracts in WCF. In WCF this idea is modelled by the contract. WSHttpBinding is the default for the built in WCF projects but it does not support duplex messaging. It will also need to supply this implementation to the WCF infrastructure and it does this by wrapping an instance in an InstanceContext object and passing it to the proxy constructor. Tags: NET;Azure;WCF .NET Meanderings - Tuesday, June 9, 2009 - WF4&WCF and message correlation
In the previous blog posts, here , here and here , I demonstrated how to use WCF from WF4. One of the ugly parts of Windows Workflow Foundation 3 was the message correlation part when you used WCF to send multiple messages to the same workflow. This guid was the workflow instance ID but having to use that on the client means the client had to be very aware of the server technology used, something that goes against the principals of WCF. No longer do we need to use the “context” bindings but the standard WCF bindings will do just fine. Much better! Conclusion. The Problem Solver - Wednesday, September 2, 2009 - Secure WCF REST Services with a Custom UserNamePasswordValidator
When securing WCF services you’re faced with a choice: Message versus Transport security. WCF has terrific support for this scenario and allows you to supply a custom UserNamePasswordValidator , which you can use to validate client credentials. 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. The nice thing about WCF is its unified programming model, which allows you to use the same username / password validator for both Soap and Rest clients. Technical REST Security WC DevelopMentor Courses - Monday, May 28, 2012 - The Architecture of WCF
'Before WCF it was, of course, possible for software running on different machines to communicate. Over the lifetime of Windows there have been many technologies to achieve this: sockets, DCOM, MSMQ,NET Remoting, ASMX Web Services and more. The goal of WCF was to provide a unified API for communication and to be able to provide a common level of service irrespective of the underlying transport. To understand the structure of WCF and why it looks the way it does useful starting point are the four tenets of service orientation. WCF, as of 4.5, Messages. DevelopMentor Courses - Sunday, April 7, 2013 - Securing a Workflow Service using Windows Identity Foundation
In windows the preferred form of federated security is through Windows Identity Foundation and it is real easy to secure an ASP.NET site or WCF service using Windows Identity Foundation. As a workflow 4 service is just another WCF service securing it is just as easy as the steps below will demonstrate. Before we start we need to install Windows Identity Foundation and the related WIF SDK using the two links provided. This will generate a new customBinding with all required Windows Identity Foundation settings. try. {. catch (Exception ex). {. The Problem Solver - Friday, September 24, 2010 - Reading Excel files in a WCF service using OleDB requires 32bit process
I’ve been doing a little work on a WCF service that reads an Excel file. My development machine is running Windows 7 64bit and my service was deployed to IIS. Tags: ASP.NET Windows 7 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 - WCF Data Services versus WCF Soap Services
Someone recently asked me this question: When a company that has been using 2 tiers wants to move to n-tier, what are the considerations for choosing WCF and STEs [or Trackable DTOs] vs. WCF Data Services? This is a great question because it relates to a recent re-alignment of what used to be called “ADO.NET Data Services” (code-named Astoria) under the umbrella of Windows Communication Foundation (WCF), as well as the renaming of.NET RIA Services to WCF RIA Services. Additional Resources: White Paper on RESTful Web Services with WCF 3.5 Sweet. Tony and Zuzana's World - Tuesday, April 13, 2010 %>
| | |