| |
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.
|
53 Articles match "Course","Windows"
| Related DevelopMentor Courses | MORE | | Secure WCF REST Services with a Custom UserNamePasswordValidator Of course, you’ll want to employ a more sophisticated technique, such as hashing the password to compare against entries in a database table.). 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. DevelopMentor Courses - Monday, May 28, 2012 Using Reporters in Approval Tests Because of this, you might want to decorate your class or method with [UseReporter( typeof (FileLauncherReporter))] Comparing Results Of course, not only do ApprovalTests Reporters tell you the results, but also the results can help you determine what has changed since they last passed. It automatically adds this command to your clipboard: [UseReporter( typeof (ClipboardReporter))] Simply open a command prompt and past the contents of the clipboard in to the command prompt window to approve the file. Today I pushed new versions of ApprovalTests for both C# and Java to SourceForge. DevelopMentor Courses - Saturday, December 31, 2011 |
68 Articles match "Course","Windows"
| The Latest from DevelopMentor | MORE | | Installing MongoDB on Windows and OS X Here are two 7-minute walkthroughs for installing MongoDB as a Windows service / OS X daemon. These are both excepts from my upcoming online MongoDB course for DevelopMentor. Windows: OS X: Feedback welcome. 'Ready to get started with NoSQL and MongoDB? You can take the first 1 1/2 hours for free here: Early access: MongoDB and NoSQL for.NET developers. cheers. mkennedy. Filed under: NoSQL Tagged: LearningLine , NoSQL , Open Source , Screencasts. NoSQL LearningLine Open Source Screencasts Michael C. Kennedy's Weblog - Thursday, May 2, 2013 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. 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). The problem is all of these have different APIs and different levels of capability. Messages. Channels. WCF, as of 4.5, Encoders. Contracts. DevelopMentor Courses - Sunday, April 7, 2013 Querying RavenDB databases Of course there is no such thing as a free lunch and in the case of RavenDB this can mean we use a stale index for the query. have this example running on Windows Azure here. As we have seen in previous blog posts getting data from a RavenDB database is easy. Either use the IDocumentSession.Query () function to load a series of documents or the IDocumentSession.Load () function to load a document using its identity. However sometimes we want more control over what we want to load. In my original online example you might have noticed that the books aren't ordered. 11: }. 11: }. The Problem Solver - Monday, December 17, 2012 | -
| The Best from DevelopMentor | MORE | - Building Windows Machines in Amazon EC2
In this article I'm going to give you a simple, step-by-step overview of how to create a Windows 2008 server image in Amazon's Elastic Cloud Compute (EC2) infrastructure. We'll start with a stock Amazon Windows 2008 server image. This time we'll setup a 64-bit Windows 2008 Server (Data Center Edition). Of course, the system was created with an administrator account which has a strong password. You'll need to retrieve that password using the "Instance Actions -> Get Windows Admin Password" option. Now you have full access to your Windows 2008 machine. Michael C. Kennedy's Weblog - Saturday, January 30, 2010 - Installing MongoDB on Windows and OS X
Here are two 7-minute walkthroughs for installing MongoDB as a Windows service / OS X daemon. These are both excepts from my upcoming online MongoDB course for DevelopMentor. Windows: OS X: Feedback welcome. 'Ready to get started with NoSQL and MongoDB? You can take the first 1 1/2 hours for free here: Early access: MongoDB and NoSQL for.NET developers. cheers. mkennedy. Filed under: NoSQL Tagged: LearningLine , NoSQL , Open Source , Screencasts. NoSQL LearningLine Open Source Screencasts - Windows Phone 7, Animations and Data Binding
" /> The animation cause the page to rotate in and is something I copied from Charles Petzold eBook Programming Windows Phone 7 although I shortened the time to just half a second. Of course I could have changed the animation to do nothing for a second and then sweep in but that felt like a wrong hack so I decided to find out what was really going on and why the two pages where behaving differently. Of course the data binding was there for a good reason and removing it wasn’t an option so I had to change the way the data binding was initialized. Storyboard. seconds. The Problem Solver - Monday, December 27, 2010 - Visual Studio 2010: Debugging a x86 WCF service on a x64 machine
No problem, but now when I want to test or add a service reference to this WCF service I ran into the problem that WcfSvcHost and WcfTestClient both will run a x64 because I’m running Windows 7 x64. Keep a backup copy of this file, of course. Visual Studio 2010 WCF Windows 7I just ran into an issue where I have a WCF service that depends on a.NET assembly that is compiled specifically for x86. In order to use that assembly I need to compile the service as a x86 service. How to solve this? "cd" to the directory where your copy of WcfSvcHost is located. DevelopMentor Courses - Wednesday, October 5, 2011 - Windows Workflow Foundation 3 Types Marked Obsolete in.NET 4.5
Of course the types are still there but you will get compile time warnings for using them and you can expect the classes to be dropped some time in the future. People have been wondering for a while what the future of WF3 was since the release of WF4. So far both workflow stacks have coexisted in.NET 4 and there has been no official statement about the future of the older WF3 stack. That has just changed! The workflow team at Microsoft has just announced that they are marking the WF3 stack as deprecated with the next release of the.NET framework,NET 4.5. Please use WF 4 instead.’” Enjoy! The Problem Solver - Thursday, February 9, 2012 - Flowcharts in Workflow 4 and the Switch activity
Flowcharts are a nice addition to Windows Workflow Foundation 4. Enter the flowchart in Windows Workflow Foundation 4 One of the good things is that a flowchart is not another workflow type. Of course the FlowSwitch should just to a ToString() on the expression result , anything else would be pointless as any comparison fails. They allow for a lot of pretty complex behavior that is hard to do in a sequential workflow. In WF 3 we used to model these complex behaviors as state machine workflows. No it is just another activity to drop in a workflow. guess you get the picture. The Problem Solver - Tuesday, October 27, 2009 - HTML 5 and file Drag & Drop
There is a lot of new goodness in HTML 5 and one of these features is being able to drag a file from the Windows explorer into the browser and handling the drop event using JavaScript. Of course as always not every browser supports the new feature. If you are a GMail user you are probably familiar with this as GMail allows users to attach files to emails using this Drag&Drop style. This works just fine with the current versions of Chrome or FireFox though. The HTML page I am using is real simple and looks like this. 1: 2: 3: 4: HTML 5 Drag & Drop demo. 1: $( function () {. The Problem Solver - Thursday, October 13, 2011 %>
| | |