|
|
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.
|
57 Articles match "Data","Windows"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. Learn to develop applications for EF and LINQ to Entities and employ ADO.NET Data Services to integrate data from the Internet cloud. Apply techniques for building real-world data-driven applications, including ASP.NET and WPF data binding. How can I create and consume data from the Internet cloud using REST-ful data services? WPF Data Binding.NET 3.0 In this course, you learn to: Leverage new features of C# 3.0,
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
Come and learn to build solutions for Windows SharePoint Technologies! fw413 MO Essential Sharepoint for Developers (FW413) Day 1 Architecture We look under the hood to see how Windows SharePoint Services and Microsoft SharePoint Office Server 2007 work. Deployment with the Feature and Solution Framework Windows SharePoint Services v2 provided little in terms of deploying functionality built by developers into the SharePoint environment. Unfortunately this tied WSS to Windows Authentication for site access, forcing SharePoint to be seen as purely an ? intranet?
DevelopMentor Courses
- Friday, June 12, 2009
NET Architecture and Design Principles: Building Distributed Applications
Think in terms of layers and tiers Use patterns in your code and across the enterprise Write secure code Use concurrency to build highly available systems Make distributed calls using remoting, web services and Windows Communication Framework Utilize asynchronous communication with message queues Horizontally scale every tier of your system Deploy software across distributed systems Applications that span more than one machine require a deliberate and radically different design approach.NET Architecture and Design presents key concepts in distributed systems. Using C# 3.0's
DevelopMentor Courses
- Friday, June 12, 2009
|
77 Articles match "Data","Windows"
|
The Latest from DevelopMentor
|
MORE
|
|
Purchasing Visual Studio 2010
Database Test Data Generation. Windows Development. Windows Azure™. †. ††. †††. Windows (client and server operating systems). Windows Embedded operating systems. Windows is either a registered trademark or trademark of Microsoft Corporation in the United States and/or other countries. Amazon sells various versions of Visual Studio 2010. Here is an overview of versions and this will give you a good indication of prices. Below the prices is a feature comparison also…. Visual Studio Professional. Plain. Upgrade from 2005/2008. with MSDN. with new MSDN.
The Blomsma Code
- Tuesday, July 13, 2010
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. data]. 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.ToString()].
The Problem Solver
- Tuesday, May 18, 2010
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. data]. 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.ToString()].
The Problem Solver
- Tuesday, May 18, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
WPF Data Providers
One of the nifty new features of the WPF platform is the pluggable data providers. XmlDataProvider: loads an XML data source and makes it available as a binding source. Both of these derive from the abstract class System.Data.DataSourceProvider which implements the binding glue ( INotifyPropertyChanged ) needed for data binding. side note here is that you could write your own custom data provider if you needed to, although if the data is exposed through a.NET object, then the ObjectDataProvider is probably sufficient. State, Age, Income. xmlns = " [link] ".
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
WCF Data Services versus WCF Soap Services
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. The truth is that RIA Services rests on Data Services, which is turn sits on top of Web HTTP Services (aka REST), which is tightly coupled to HTTP as a transport and XML, Atom or Json as a format. and WCF Data Services 4.0 Sweet. in Visual Studio 2010.
Tony and Zuzana's World
- Tuesday, April 13, 2010
-
Passing data into a Windows Workflow Foundation 4 workflow
To allows us to pass data into a workflow, or get something out, we need to use an Argument. Passing parameters into a workflow is similar in WF4 as it was in WF3. In both case a Dictionary is passed in when creating the workflow instance object. Alternatively when using the WF4 WorkflowInvoker you can pass it into the Invoke() method. This is quite simple but I have never been a fan of the very loose coupling here. basically on the outside you have to create a dictionary with as key something inside of the workflow. No compile time checking. myInstance.Run(). syncEvent.WaitOne(). Enjoy!
The Problem Solver
- Tuesday, June 30, 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. 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. We are no longer using properties to store data. Most of the time we will need to use variables, represented by types deriving from Variable, or arguments, types deriving from Argument, to work with data. In WF 4 this has all changed! Enjoy!
The Problem Solver
- Monday, July 20, 2009
-
Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations. Unit Testing Activities with Windows Workflow Foundation by Ron Jacobs. TDD and Windows Workflow Foundation by Ron Jacobs. We are passing a strongly typed DTO (data transfer object) rather than name/value pairs in a Dictionary. hope you find this library adds significant value to unit testing of your Windows Workflows. Personally, I think it makes unit testing of your Windows Workflows practical in the real world. You can also just jump to the code. Scott Allen. Enjoy!
Michael C. Kennedy's Weblog
- Sunday, January 18, 2009
-
Windows Workflow Foundation 4 and persistence
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. First of all we can just create a SqlWorkflowInstanceStore and set it like this: var workflow = new Workflow1(); var baseAddress = new Uri( "[link] ); var host = new WorkflowServiceHost(workflow, baseAddress); var connStr = @"Data Source=.sqlexpress;Initial var connStr = @"Data Source=.sqlexpress;Initial The whole persistence model has changed quite a but for WF4. Notice I left out the WorkflowInvoker.
The Problem Solver
- Thursday, November 19, 2009
-
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). 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. Now I must admit I'd rather have found a good tutorial on The Internets or even in a book.
Michael C. Kennedy's Weblog
- Saturday, January 30, 2010
|
|
|