DOTNET POWER PLAY
.NET stuffings and MICROSOFT (C) technologies
Friday, April 29, 2005
Thursday, April 28, 2005
Wednesday, April 27, 2005
Tuesday, April 26, 2005
TIP: replace url during design time or runtime when using a web service
Design: Place XML Message Design Ahead of Schema Planning to Improve Web Service Interoperability -- MSDN Magazine, December 2002: " Dim ws As New localhost.WeatherInterface()
ws.Url = System.Configuration. _
ConfigurationSettings.AppSettings('ServiceUrl')"
Design: Place XML Message Design Ahead of Schema Planning to Improve Web Service Interoperability -- MSDN Magazine, December 2002
Monday, April 25, 2005
Visual Studio: Contract First Web Services Interoperability between Microsoft .NET and IBM WebSphere
Visual Studio: Microsoft Solutions Framework (MSF)
Visual Studio: Microsoft Solutions Framework (MSF): "Microsoft Solutions Framework (MSF)
Consistently delivering high-quality technology solutions on time and on budget is challenging for any business. The Microsoft Solutions Framework (MSF) provides people and process guidance�the proven practices of Microsoft�to help teams and organizations become more successful in delivering business-driven technology solutions to their customers. MSF is a deliberate and disciplined approach to technology projects based on a defined set of principles, models, disciplines, concepts, guidelines, and proven practices from Microsoft. "
Blogtastic How to setup a .NET Development Tree
Blogtastic: "How to setup a .NET Development Tree"
It is a directory structure
containing:
source files
tools and dependencies
references to external tools and dependencies
checked into source control
that is atomically integratable
to produce a set of artifacts
A good development tree should:
be easily integratable on new environments
require little maintainance
but be easily maintainable when it does require maintenance
support, but not hamper, developer productivity
have consistent behaviour
Saturday, April 23, 2005
Microsoft Content Guide Tool
Microsoft Server and Tool: "
Take your learning to the next dimension with MSDN's new content guide. Forget about searching the listings or struggling to mix and match your programs. We'll direct you through the perfect sequence of on- and offline training opportunities on the latest Microsoft developer tools. "
Visual Web Developer 2005 Express Edition Beta 2
Visual Web Developer 2005 Express Edition Beta 2: "Thank you for registering!
Your e-mail address has been verified. Expect to receive an e-mail from Microsoft in approximately 7 to 10 days with details about registration benefits and resources.
Your Express Activation key is: NGBQ2KCKL31K00
To quickly activate your copy of Visual Web Developer Express Edition Beta 2:
Step 1. Copy the 14-digit activation key from above.
Step 2. From Visual Web Developer Express Edition Beta 2, click on Help/Activate Product....
Step 3. Paste the activation key into the Product Activation Dialog and click the 'Activate Now' button."
Wednesday, April 20, 2005
Tuesday, April 19, 2005
Monday, April 18, 2005
Thursday, April 14, 2005
Chris's Writing Adding Custom Project Item Templates
Chris's Writing: "Adding Custom Project Item Templates to VS.NET"
Wednesday, April 13, 2005
Indigo is ready to Ascend
Indigo is ready to Ascend: "Service Station, by Aaron Skonnard
Your pit stop through the SO universe
Indigo is ready to Ascend "
Service Station: Contract-First Service Development -- MSDN Magazine, May 2005
Service Station: Contract-First Service Development -- MSDN Magazine, May 2005: "MSDN Home > MSDN Magazine > May 2005
Contract-First Service Development
Aaron Skonnard"
Tuesday, April 12, 2005
Saturday, April 09, 2005
Friday, April 08, 2005
.NET Architecture Center: Web Services Security Interoperability Using Web Services Enhancement 2.0 and Systinet Server 5.0 for Java
IDesign: .NET Design and Process Solutions
IDesign: .NET Design and Process Solutions: "Componentware Downloads
IDesign componentware download is a set of tools and utilities developed by IDesign associates for over four years of applying .NET and educating the industry about it. The componentware downloads cover C# 1.1 and C# 2.0 programming, essential .NET concepts, .NET application frameworks 1.1 and 2.0, system issues and Enterprise Services. The utilities are a productivity-enhancing tools, or they compensate for some oversight in the original design of .NET or its application frameworks.
The demos are used during both the Advanced .NET Master Class and the .NET Master Class to demystify technical points, as lab exercises or to answer questions . The classes attendees find the demos useful not only in class but after it. The demos serve as a starting point for new projects, and as a rich reference and samples source. "
Thursday, April 07, 2005
.NET Data Access Performance Comparison
ASPAlliance.com : ASP and ASP.NET Tutorials : .NET Data Access Performance Comparison: "A summary of the results is listed below. What the summary doesn�t show, but which is also worth noting, is that while all the other tests had more-or-less constant requests per second for the duration of the test, the unclosed DataReader behaved erratically. It would run for several seconds with 20 or more requests per second, then it would simply hang, and process no requests at all for 15 or 20 seconds at a time. (Most likely this behavior is due to the connection pool being tapped out and not releasing connections until they time out. However, I have not proven this to be the case.) It was also the only test that resulted in HTTP errors, of which it recorded 90 during the 5 minute test run which included 2,141 requests.
ScenarioReq/sTTLB (ms)
Cached DataTable1328.34
Unclosed DataReader Using Delegate11330.13
Closed DataReader Using Delegate11230.26
DataReader Closed by Client11230.76
DataTable9935.97
DataReader Left Open by Client7661.88
Recommendations for Optimal Performance"