|
|
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.
|
3 Articles match "2008","Sample"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Windows Communication Foundation 3.5 - WCF
We cover several samples of commonly needed functionality at the XML programming layer, working with namespaces, XPATH, and LINQ to XML. The P2P infrastructure that is shipping with Windows XP, Vista and Server 2008 makes this easily possible. Windows Communication Foundation (WCF) replaces previous technologies such as.NET remoting, ASMX, and COM+. Because it incorporates web service standards, WCF enables interoperability with other platforms such as Java/Unix. You'll get answers to these questions: How do I design services using contracts? What's the best way to host services?
DevelopMentor Courses
- Friday, April 16, 2010
Essential Windows Communication Foundation
We cover several samples of commonly needed functionality at the XML programming layer, working with namespaces, XPATH, and LINQ to XML. The P2P infrastructure that is shipping with Windows XP, Vista and Server 2008 makes this easily possible. Windows Communication Foundation (WCF) replaces previous technologies such as.NET remoting, ASMX, and COM+. Because it incorporates web service standards, WCF enables interoperability with other platforms such as Java/Unix. You'll get answers to these questions: How do I design services using contracts? What's the best way to host services?
DevelopMentor Courses
- Friday, June 12, 2009
Visual Studio Team System
The course uses the latest version of Team System, Visual Studio Team System 2008. It explains how to profile code in various application types, explaining how it supports the two most common profiling techniques - sampling and instrumentation - and de-mystifying the various analysis views of the profiling data in order to effectively isolate performance problems. Discover how VSTS enables you to enforce best practices for software development. Enable communication and collaboration across the team?project project managers, architects, developers and testers. DevelopMentor?s
DevelopMentor Courses
- Friday, June 12, 2009
|
38 Articles match "2008","Sample"
|
The Latest from DevelopMentor
|
MORE
|
|
MongoDB vs. SQL Server 2008 Performance Showdown
These inserts were performed by inserting 50,000 independent objects using NoRM for MongoDB and LINQ to SQL for SQL Server 2008. GHz processor using the 64-bit versions of both SQL Server 2008 Standard and MongoDB 1.4.1. You can also download the sample code. Download Sample: [link]. This article is a follow up one I wrote last week entitled “The NoSQL Movement, LINQ, and MongoDB - Oh My!”. In that article I introduced the NoSQL movement, MongoDB, and showed you how to program against it in.NET using LINQ and NoRM. Those were. Ease-of-use and deployment. Performance.
Michael C. Kennedy's Weblog
- Thursday, April 29, 2010
The NoSQL Movement, LINQ, and MongoDB - Oh My!
How much faster than the finely tune system that is SQL Server 2008 can these open source NoSQL systems be?”. Here’s a simple comparison of running a bunch of concurrent inserts into SQL Server 2008 and MongoDB on the same computer. You may also want to check out the source code for my demo app: Download Sample: RssMongoSample-Kennedy.zip. Maybe you’ve heard people talking about ditching their SQL Servers and other RDBMS entirely. There is a movement out in the software development world called the "No SQL" movement and it’s taking the web application world by storm.
Michael C. Kennedy's Weblog
- Thursday, April 22, 2010
MVVM Helpers 2.0 is live
There is a project template for Visual Studio 2008 and another for Visual Studio 2010 – make sure to copy them into the appropriate template directories. Here’s the sample if you want to peruse it: V2SampleApp.zip.… and available on codeplex in beta form: [link]. There are several new features in this release that I've been tinkering with for a while. First, I now use MEF to link things together. waited until.NET 4.0 was released to push this out because MEF is part of the framework now. If you don't want to take a dependency on it (in 3.5) then please stay with 1.06 Play(); }. }.
Mark's Blog of Random Thoughts
- Friday, April 16, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
MongoDB vs. SQL Server 2008 Performance Showdown
These inserts were performed by inserting 50,000 independent objects using NoRM for MongoDB and LINQ to SQL for SQL Server 2008. GHz processor using the 64-bit versions of both SQL Server 2008 Standard and MongoDB 1.4.1. You can also download the sample code. Download Sample: [link]. This article is a follow up one I wrote last week entitled “The NoSQL Movement, LINQ, and MongoDB - Oh My!”. In that article I introduced the NoSQL movement, MongoDB, and showed you how to program against it in.NET using LINQ and NoRM. Those were. Ease-of-use and deployment. Performance.
Michael C. Kennedy's Weblog
- Thursday, April 29, 2010
-
Random Sampling extension method
Had reason recently to select a random sample of data from a stream of elements. The amount of samples I needed to take was finite but what was unknown was the number of elements in the input stream. managed to find various implementations of an IEnumerable extension method on the net, but all the ones I found would cache the entire stream before selecting the sample. After a look around I found this blog article that describes how to implement Reservoir sampling without the need to keep all the items.
.NET Mutterings
- Wednesday, October 1, 2008
-
Using IdentityModel: Some Samples
Constants.OrderHistoryClaimType, Constants.ApplicationIssuerIdentityClaim); var orders = orderHistory.Get >(); or some authorization code from my CardSpace sample app - thanks to the unified authorization model, I can share this method across ASP.NET, ASMX and WCF: public static IEnumerable. Here are some typical usage scenario of IdentityPrincipal in ASP.NET. GetBoardsForUser(. AuthorizationContext context, bool includePublic). {. boards = new List (); foreach ( Claim typeClaim in context.ClaimSets.FindClaims(. AppClaims.UserTypeClaim, new ApplicationIssuerClaimSet ())). {.
www.leastprivilege.com
- Saturday, March 22, 2008
-
How-To Article about Calling a WCF Service from SQLCLR
Update: I have now created a Resource Page on MSDN’s code gallery , where the sample code for the article can be found. Tags: NET SQL 2008 SQLCLR I sometimes (not as much as I would like) hang out at some of the user forums where people talk about SQL Server generally and the SQLCLR specifically. Ever so often the question is being asked how to call into a WCF service from SQLCLR (.NET NET code running inside SQL Server). So without any further ado, the How-To article can be found here. So if you want to get the code, go to here.
Managed Data
- Sunday, February 8, 2009
-
Part 1: It's Basically Focus
To show all of this behavior, I have rigged up a sample application with two windows. If you'd like to play with this sample, you can get the full source code here. Focus Types. As you may know, in WPF there are two types of focus: logical focus and keyboard focus. Keyboard focus is the easiest to grasp: the element with keyboard focus is where any keystrokes will end up. Logical focus is a little murkier. Logical focus represents where keyboard focus could go within a group of elements. Having keyboard focus automtically indicates logical focus but not vice-versa.
-
Using the.NET Access Control Service with Geneva
You can find this code in the “CardSpace Calculator” sample in the ACS SDK. The sample uses the “old” WCF plumbing to process tokens and create claims based on that. wanted to find out what has to be done to migrate the sample to use Geneva. Here you can find the complete code – to get it working I’d suggest you first get the original SDK sample up and running. If you haven’t checked out the.NET Access Control Service yet – I can highly recommend it! Justin did two talks about it at PDC: Access Control Service in.NET Services. Access Control Service Drilldown.
www.leastprivilege.com
- Thursday, December 11, 2008
-
ATAPI assembly updated!
It's been a while since I updated the ATAPI assembly, I've fixed a couple of minor bugs that were reported and updated the samples to compile with VS2008. You can download the updated assembly, help file and samples from. I've also added two new events onto the TapiPhone class so you can see state changes and button presses - somehow I missed that when I added the phone support. Finally, there's now online documentation available at. link]. link]. Have fun!
|
|
|