| |
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.
|
136 Articles match "Windows"
See all articles with
"Windows"
| The Latest from Maurice de Bejeir | MORE | | DotNed podcast: Michaël Hompus over Serious Request en Windows Azure In deze podcast spreekt Maurice de Beijer met Michaël Hompus over de software die Michaël met enkele collega's geschreven hebben voor de Serious Request actie van 3FM en het Nederlands Rode Kruis. Bij deze 6 daagse acties is meer dan 12 miljoen euro opgehaald via donaties en verzoeknummers op de website. Tijdens deze podcast, en zijn TechDays sessie in maart, vertelt Michaël hoe ze dit precies voor elkaar gekregen hebben. Links: Blog: [link] Serious Request: [link] SnowMaker: [link] Microsoft Showcase: [link] TechDays: [link] Enjoy The Problem Solver - Monday, February 25, 2013 DotNed podcast: Michaël Hompus over Serious Request en Windows Azure In deze podcast spreekt Maurice de Beijer met Michaël Hompus over de software die Michaël met enkele collega's geschreven hebben voor de Serious Request actie van 3FM en het Nederlands Rode Kruis. Bij deze 6 daagse acties is meer dan 12 miljoen euro opgehaald via donaties en verzoeknummers op de website. Tijdens deze podcast, en zijn TechDays sessie in maart, vertelt Michaël hoe ze dit precies voor elkaar gekregen hebben. Links: Blog: [link] Serious Request: [link] SnowMaker: [link] Microsoft Showcase: [link] TechDays: [link] Enjoy The Problem Solver - Monday, February 25, 2013 Using optimistic concurrency with RavenDB Looking at the RavenDB server window you will see all interactions. Whatever database your are using, relational or document, there is one thing you can be certain of as soon as you get a second user of the system and that is concurrency conflicts. It may not happen often but eventually it will happen that two users load the same document, make some changes to it and save it back to the database. Sure it offends the developer in us, as it should, because we are ignoring error situations. Just make sure to check with your stakeholder of this is acceptable. So this one is out. try. {. The Problem Solver - Wednesday, January 30, 2013 | | The Best from Maurice de Bejeir | MORE | | Windows Workflow Foundation 4 and persistence The whole persistence model has changed quite a but for WF4. The persistence class out of the box is called SqlWorkflowInstanceStore and as the name suggests it saves workflow data in either SQL Server 2005 or 2008. It is based on the InstanceStore class to if you prefer some other store all you need to do is subclass the InstanceStore and create your own. So what can we do with the SqlWorkflowInstanceStore? We can attach it to either a WorkflowApplication or a WorkflowServiceHost and persist workflows when we want. Notice I left out the WorkflowInvoker. How about the WorkflowServiceHost? The Problem Solver - Thursday, November 19, 2009 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. Before we start we need to install Windows Identity Foundation and the related WIF SDK using the two links provided. The service web.config is also standard and pretty short: This just works as expected and when I run I see the following output: Securing this service using Windows Identity Foundation. How about securing a workflow service? try. {. catch (Exception ex). {. The Problem Solver - Friday, September 24, 2010 jQuery UI and Windows 8 and Internet Explorer 10 touch screens Microsoft has shipped Windows 8 and Internet Explorer 10 and the jQuery UI draggable effect doesn’t work there as is. I recently did a blog post describing how to enable the jQuery UI drag effects. In this post I showed how to get the draggable effect to work on an iPad. While that works just fine it isn’t the end of the story. The solution Fortunately the solution is a lot simpler and doesn’t require an additional plug-in. It turns out that Internet Explorer 10 has quite a good support for pointer and gesture events. It turns out this is rather simple. 1: $( "#draggable" ).css( The Problem Solver - Wednesday, October 24, 2012 | - What's New in Windows Workflow Foundation in.NET 4.5 (part 1)
During the last //build/ conference a number of new WF4, or should I now say WF4.5, features where announced. While the list of new features isn’t earth shattering long some of the most annoying shortcomings where addressed. Designer enhancements As a developer I spend a lot of time in the designer so any improvements there are going to make me happy. And I am very happy to see some of the new features. Auto surround with a Sequence. This seemingly small feature is a real time saver. These are of type Activity so by default you can add a single activity there. At runtime this is no problem. The Problem Solver - Tuesday, September 27, 2011 - Rehosting the Workflow Designer in WF4
Beta 2 With Windows Workflow Foundation 3 it was possible to rehost the workflow designer in your own application. With Windows Workflow Foundation 4 live has become much better on the rehosting front In fact it is possible to create the fully functional and useful workflow editor below in about 200 lines of code. Note: This blog post is written using the.NET framework 4.0 But possible is about all there was to say about it as it was pretty hard to do anything beyond the basics. Now that is more like it! The WorkflowDesigner The WorkflowDesigner is the main class to work with. The Problem Solver - Wednesday, December 23, 2009 - Data and Windows Workflow Foundation 4
One thing that has completely changed in Windows Workflow Foundation is the way we work with data in a workflow. In WF 3 we used properties to store data. We could use regular.NET properties but most of the time dependency properties where the smarter choice. Dependency properties left the way data was stored to be handled by the workflow runtime but in our program we could use them just like any other property. And the big bonus was we could use property binding to tie different properties on different activities together in any way we saw fit. In WF 4 this has all changed! Enjoy! The Problem Solver - Monday, July 20, 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. 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. Of course as always not every browser supports the new feature. 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 () {. Enjoy! The Problem Solver - Thursday, October 13, 2011 - 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. 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. That worked but they weren't really state machines or event driven and things could get a bit tricky. No it is just another activity to drop in a workflow. guess you get the picture. So far so good. Next (5). And again. The Problem Solver - Tuesday, October 27, 2009 - Hiding the XAMLX from a workflow service
In Windows Workflow Foundation 4 it’s easy to create a workflow and expose it as a WCF service. But one thing is that it exposes a XAMLX endpoint to each client can see the service actually implemented as a workflow service instead of a regular service. One way to hide that is to use a regular SVC file as the implementation and point that to a workflow using the WorkflowServiceHostFactory. See the original XAMLX extension To change this to an SVC extension we need to do a few things. First we need to use a regular workflow instead of a workflow service. data]. data.ToString()]. Enjoy! The Problem Solver - Tuesday, May 18, 2010 - Workflow Services and Windows Phone 7
Today I did a fun presentation at the Engineering World Conference in the Netherlands on using the Windows Phone 7 with a Workflow Service hosted on Windows Azure. The sample application, that is complete with all source on CodePlex over here , consists of an expense app on the phone and an ASP.NET MVC site hosting the workflow service. The PowerPoint presentation can be found here. It was a fun session on a fun event www.TheProblemSolver.nl www.dotnetevents.nl.NET Workflow WCF WF4 ASP.NET VS2010 WP7 AppFabric DotNed Azure The Problem Solver - Saturday, February 5, 2011 %>
486 Articles match "Windows"
See all articles with
"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. Windows: OS X: Feedback welcome. 'Ready to get started with NoSQL and MongoDB? These are both excepts from my upcoming online MongoDB course for DevelopMentor. 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 A Roundup of MongoDB Management Tools Robomongo, price: $0 / open-source, platforms: Windows, OS X, Linux. The shell , price: $0 / open-source, platforms: Windows, OS X, Linux. Mongovue , price: $0 / $35 / $up, platforms: Windows. MongoVUE is an innovative MongoDB desktop application for Windows OS that gives you an elegant and highly usable GUI interface to work with MongoDB. LINQPad, , price: $0 / $39, platforms: Windows. REST view, price: $0 / open-source, platforms: Windows, OS X, Linux. Genghis, price: $0 / open-source, platforms: Windows, OS X, Linux. The news is good. link]. Michael C. Kennedy's Weblog - Monday, April 22, 2013 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). '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. Contracts. DevelopMentor Courses - Sunday, April 7, 2013 | -
| The Best from DevelopMentor | MORE | - Using Windows 7 Search to delete ‘obj’ folders
One easy way is to use Windows 7 Search to look for all the ‘obj’ folders and just delete them manually. For a complete overview of the Windows 7 Search syntax go to: [link]. Tags: Windows 7 Visual Studio will create ‘obj’ folders within your solution to store a bunch of temporary files. You can remove these files in a number of ways. To do this I use the ‘kind’ keyword in the query box. Tip: Just typing ‘kind:’ will give you a list of choices to choose from. The Blomsma Code - Tuesday, February 9, 2010 - Unblocking assemblies in Windows 7
I just ran into a little problem when attempting to run a Visual Studio unit test on my Windows 7 machine. Tags: NET C# Windows 7 downloaded log4net.dll and wanted to use it in a project, but when running the unit test I ran into the following error: Failed to queue test run 'Mark@L-ONE 2009-10-11 14:08:38': Test Run deployment issue: The location of the file or directory 'c:usersmarkdocumentsvisual studio 2008projectssourcesdevelopone.myproject.unittestsbindebuglog4net.dll' is not trusted. Turns out that a downloaded file is blocked. The Blomsma Code - Sunday, October 11, 2009 - Have to learn Japanese
Tags: Windows Live The Blomsma Code - Tuesday, December 1, 2009 - Playing around with Windows Live Sync 2011 beta
I have been an avid user of Mesh and was so pleased with the beta that I was hesitant to switch to Windows Live Sync 2011 beta. You may want to check with you IT guy to see how he feels about the security risks, but for me this works really well (I do make sure that my Windows Live, Facebook and Google passwords are all different!). Tags: Windows Live But since the Mesh page started saying that the service is to be replaced I figured I ‘d better get my machines switched over. For those who don’t know: Live Sync allows you to synchronize folders between devices. The Blomsma Code - Sunday, September 12, 2010 - Just took a walk around Fenway – using Bing Maps
Tags: Windows Live The Blomsma Code - Wednesday, December 2, 2009 %>
| | |