"So far using WSCF for building the web service is quite a success. But I did not use it for building the consuming client. My main problem was that every roundtrip of the contracts requires deploying (plain copy) the generated wsdl and the accompanying schema's to the client code. Instead I created just a server project which included the contract schema's. One clean and independent project. As all info needed by a consumer of the service is in the wsdl all the consuming client application needs is a reference to the wsdl. Which is exactly what add web reference in VS does. Having updated the service all I need to do in the client project is Update Web Reference. However, the proxy generated by WCSF does offer some nice extra's. It returns the data (when the option in the wizard is set) as a collection, the VS web reference just sees an plain array. I also have to set the service endpoint (the URL with it's location) by hand. The latter is something I'll have to do anyhow, as it will be read from a config file. And I can live with the arrays as a trade off for a cleaner development process. This is a point where WSCF could be improved."
This is just a spot to keep miscellaneous links. It also shows you what a geek I am.
Friday, December 19, 2008
My first WSCF web service project. Contract first, code later.
Monday, December 15, 2008
LINQ support on .NET 2.0
I'm working in a shop with ancient servers which run only .NET 2.0, so this is a wonderful thing to know about. Woo hoo!
Here's what he has to say:
- "Create a new console application
- Keep only System and System.Core as referenced assemblies
- Set Copy Local to true for System.Core, because it does not exist in .NET 2.0
- Use a LINQ query in the Main method. For example the one below.
- Build
- Copy all the bin output to a machine where only .NET 2.0 is installed
- Run"
[Update Apr 2 2009: This didn't work for me because our server was using .NET 2.0 without SP1. Instead, I used the excellent LINQBridge.]
Sunday, December 07, 2008
Gizmodo's 20 Essential iPhone Apps
Tuesday, November 25, 2008
Cool Bennett Adelson talk by Steve Smith
November 11th, 2008
Monday, November 24, 2008
Google Advice for writing testable code
Warning Signs
- new keyword in a constructor or at field declaration
- Static method calls in a constructor or at field declaration
- Anything more than field assignment in constructors
- Object not fully initialized after the constructor finishes (watch out forinitialize methods)
- Control flow (conditional or looping logic) in a constructor
- Code does complex object graph construction inside a constructor rather than using a factory or builder
- Adding or using an initialization block
Flaw #2: Digging into Collaborators
Warning Signs
- Objects are passed in but never used directly (only used to get access to other objects)
- Law of Demeter violation: method call chain walks an object graph with more than one dot (.)
- Suspicious names: context, environment, principal, container, or manager
Flaw #3: Brittle Global State & Singletons
Warning Signs
- Adding or using singletons
- Adding or using static fields or static methods
- Adding or using static initialization blocks
- Adding or using registries
- Adding or using service locators
Warning Signs
- Summing up what the class does includes the word “and”
- Class would be challenging for new team members to read and quickly “get it”
- Class has fields that are only used in some methods
- Class has static methods that only operate on parameters"
LINQ Reference Documentation
"The LINQ documentation created by Microsoft is available both inside Visual Studio, and for free via the MSDN library found on the WEB. Here are some important pages from that documentation that can help you navigate through the online reference material that Microsoft has prepared for LINQ developers:
· The Root MSDN Library Page: http://msdn.microsoft.com/en-us/library/default.aspx
· .NET Development: http://msdn.microsoft.com/en-us/library/aa139615.aspx
· .NET Framework 3.5: http://msdn.microsoft.com/en-us/library/w0x726c2.aspx
· System.Linq: http://msdn.microsoft.com/en-us/library/system.linq.aspx
· System.Data.Linq: http://msdn.microsoft.com/en-us/library/system.data.linq.aspx
· System.Xml.Linq: http://msdn.microsoft.com/en-us/library/system.xml.linq.aspx
· Code Generation: http://msdn.microsoft.com/en-us/library/bb399400.aspx
· More on Joins: http://msdn.microsoft.com/en-us/library/bb311040.aspx
· For more information on the operators, see the section of the online help called “The .NET Standard Query Operators.” It is written by Anders Hejlsberg and Mads Torgersen. The URL is http://msdn.microsoft.com/en-us/library/bb394939.aspx
I would not suggest using these references materials as a primary means of learning LINQ. However, if you have a book or other guide to LINQ development, then this reference material can be a useful addendum to that text. If you understand in a general way how LINQ works, but need answers to detailed questions, the links provided here may sometimes help you find answers."
Saturday, November 22, 2008
Money-Saving Meal Plans at Whole Foods
Wednesday, November 19, 2008
How To: Use Impersonation and Delegation in ASP.NET 2.0
And this link: Encrypting configuration files using protected configuration, to avoid the dreaded "The RSA key container could not be opened" error. It tells you to encrypt using this command:
aspnet_regiis -pa "NetFrameworkConfigurationKey" "ASPNET"
So, for example, to encrypt user identity (in one line):
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -pa "NetFrameworkConfigurationKey" "ASPNET" -pef system.web/identity C:\Inetpub\wwwroot\SimpleEmailWebService
// From http://msdn.microsoft.com/en-us/library/ms998351.aspx
public class NativeWindowsSecurity
{
// Declare signatures for Win32 LogonUser and CloseHandle APIs
[DllImport("advapi32.dll", SetLastError = true)]
public static extern bool LogonUser(
string principal,
string authority,
string password,
LogonSessionType logonType,
LogonProvider logonProvider,
out IntPtr token);
[DllImport("kernel32.dll", SetLastError = true)]
public static extern bool CloseHandle(IntPtr handle);
public enum LogonSessionType : uint
{
Interactive = 2,
Network,
Batch,
Service,
NetworkCleartext = 8,
NewCredentials
}
public enum LogonProvider : uint
{
Default = 0, // default for platform (use this!)
WinNT35, // sends smoke signals to authority
WinNT40, // uses NTLM
WinNT50 // negotiates Kerb or NTLM
}
}
Saturday, November 15, 2008
CSU Library Research Databases
- EBSCOhost Research Databases: Menu of databases provided through EBSCO Publishing.
- Business Source Complete (1886- some full text): Index, abstracts, and full text covering scholarly business journals on management, economics, finance, accounting, international business and much more.
- Wall Street Journal (1984-): Contains full text articles from the Wall Street Journal from January 2, 1984 through today's issue. Browse issues, or search for terms in citation, abstract, or article text.
- Use keyword search on:
- your company
- supply chain
- logistics
- quality
- strategy
- etc
Friday, October 31, 2008
Wednesday, October 29, 2008
VS 2008 Nested Master Page Support
"The good news is that VS 2008 fully supports nested master pages, and makes using them super easy. Going forward I recommend that almost all ASP.NET projects should advantage of this feature - since it can add tremendous flexibility to the UI of your projects."
Also mentions Open Source Templates.
Tips for Nested Master Pages and VS 2005 Design-Time
"One of the cool advanced features of the new Master Pages feature in ASP.NET 2.0 is the ability to nest them. For example, you could define a top-level master-page called “MainMaster.master” that defines a common logo header and footer, and defines a content-placeholder for the page called “content”. You could then define two sub-masters beneath it – one that provides a two-column layout model for the content (“TwoColumnMaster.master”), and one that provides a three-column layout model (“ThreeColumnMaster.master”). These two nested-master pages could then use the MainMaster.master file as the root master, and only adjust the layout within its content section (each would fill in the "content" placeholder and in turn add their own content-placeholders for sub-pages within it). The benefit of this approach is that if a designer ever changed the logo or top-level design of the site, they only have to update one file (MainMaster.master) and then have every page on the site automatically pick it up regardless of what master file they were based on.
"This nested model is pretty cool and powerful, and allows arbitrary levels of nesting. The only downside is that VS 2005 only supports nested master page editing in source-view, and doesn’t support it in the WYWSIWYG designer (note: obviously it does support editing them when the master-pages are not nested). "
Tuesday, October 28, 2008
Cool way to style HTML forms using CSS
Saturday, October 25, 2008
Thursday, October 16, 2008
jQuery and ASP.NET AJAX UpdateRegion
Tuesday, October 14, 2008
Google hosting javascript libraries
The AJAX Libraries API is a content distribution network and loading architecture for the most popular open source JavaScript libraries. By using the Google AJAX API Loader's google.load()
method, your application has high speed, globaly available access to a growing list of the most popular JavaScript open source libraries including:
Wednesday, September 17, 2008
Applied Software Project Management - Test Plan and Test Cases
There's also this Wikipedia link, which gives an outline of the IEEE 829-1998 test plan outline: Test Plan
Thursday, September 04, 2008
Install multiple versions of IE on your PC | TredoSoft
Tuesday, September 02, 2008
Friday, August 22, 2008
Testing on Mobile Devices using Emulators « klauskomenda.com
Mobile Web Developer’s Guide Part I
-- excellent guide to designing mobile web apps! Includes how to think of page flow, how to think about the options available to a mobile user, the market segment breakdown to phone types (in 2007), the choice of WAP, WXHTML, etc., and recommendations and best practices.
Mobile Emulators | dev.mobi
- dotMobi Online Emulator - mTLD has an online emulator that you can use to quickly see what your site will look like on a common phone
- Nokia Browser Simulator - this simulator simulates a generic Nokia phone and WAP gateway
- Openwave Phone Simulator - Openwave's browser simulator
- Opera Mini Simulator - simulates Opera's popular J2ME browser
- BlackBerry Simulator - multiple different BlackBerry simulators
- Yospace SmartPhone Emulator - a versatile emulator that can display multiple phone instances at the same time"
Thursday, July 31, 2008
Microsoft Virtual Labs
Also this link, which appears to be more inclusive: http://www.microsoft.com/events/vlabs/default.mspx
They only work in Internet Explorer.
Tuesday, July 22, 2008
Migration: Convert A Java Web Application To ASP.NET Using JLCA
Version 3.0 includes enhancements to convert Java artifacts, such as Servlets and Java Server Pages (JSPs), as well as rich-client applications that use Swing or the Abstract Windowing Toolkit (AWT). In practice, the JLCA provides a very good place to start a conversion, but it will not successfully complete the entire process. So don’t expect this to be completely hands-free—you will still need to do some manual resolution of converted items after using the tool."
Monday, July 07, 2008
How safe is instant messaging? A security and privacy survey | The Iconoclast - politics, law, and technology - CNET News.com
It's trivial to monitor unencrypted wireless networks and snatch IM passwords as they flow through the ether. Broadband providers and their business partners are enthusiastically peeking into their customers' conversations. A bipartisan majority in Congress has handed the FBI and shadowy government agencies greater surveillance authority than ever before."
Humanist → Why Make Erlang a Functional Language?
Humanist → Why Make Erlang a Functional Language?: "I’ve heard the argument many times. People “don’t like Erlang’s syntax so [they] don’t like Erlang.” I, for instance, didn’t understand the block terminator syntax when I was first learning Erlang, so I asked Yariv Sadan about it:"
Here's the accompanying reddit discussion: http://www.reddit.com/r/erlang/info/6p74v/comments/
Wednesday, June 25, 2008
robert zubek / blog :: Commentary on “A History of Erlang”
robert zubek / blog :: Commentary on “A History of Erlang”: "At a certain level, I always knew that Erlang was designed for programming telephone exchanges. But this paper really conveys the feel for what that means: huge collections of loosely coupled finite-state machines, all running in parallel, doing little bits of protocol validation here and there, but mostly staying dormant."
Sunday, June 15, 2008
Relying on getters and setters is mostly wrong, here's why and what to do instead
"Mike Feathers has posted an exploration of some ideas about and misconceptions of TDD. I wish that more people were familiar this story that he mentions:John Nolan, the CTO of a startup named Connextra [...] gave his developers a challenge: write OO code with no getters. Whenever possible, tell another object to do something rather than ask. In the process of doing this, they noticed that their code became supple and easy to change.That's right: no getters. Well, Steve Freeman was amongst those developers and the rest is history. I think that there's actually a little bit missing from Michael's telling. I'll get to it at the end."
But then, some guy thought this whole idea sucked.
Wednesday, May 14, 2008
Monday, May 05, 2008
How to Choose a Data Synchronization Technology – Offline & Collaboration
To quote from Microsoft's article:
Here at Microsoft there are a number of synchronization technologies that support offline and collaboration data solutions. The key technologies include:
- Microsoft Sync Framework Core Runtime
- Sync Services for ADO.NET
- Merge Replication
Why does Microsoft offer multiple sync solutions? Well, we believe it is virtually impossible to create a single solution that will fit everyone's needs. For example, IT administrators may look for more of a packaged solution that is easy to install and administer. ISVs and developers may be interested in a more embeddable and customizable solution. Ultimately, multiple synchronization solutions give you more choices at the cost of adding increased confusion. Hopefully this summary will help narrow down the choice for you.
The synchronization technologies can be broken down by flexibility and the amount of code required. In general, more code is required to get a greater level of synchronization flexibility.
Thursday, April 24, 2008
Perfecting OO's Small Classes and Short Methods
He suggests writing a 1000-line program with the constraints listed below. These constraints are intended to be excessively restrictive, so as to force developers out of the procedural groove. I guarantee if you apply this technique, their code will move markedly towards object orientation. The restrictions (which should be mercilessly enforced in this exercise) are:"
Git and SourceSafe
- Diff-tree from master to the desired merge point.
- Check out the files marked as "M" or "D"
- Merge desired merge point into master.
- Check in the files marked as "M" or "D"
- Add the files marked as "A".
- git diff-tree master POS-safe --name-status -r | tee files.txt
- ./Python/VSSHelper.py -o -d files.txt
- git merge POS-safe
- ./Python/VSSHelper.py -i -d files.txt -c "VSS check-in comment."
- Manually add files to SourceSafe. This should be easy in Visual Studio. If not, use the VSS client.
Thursday, April 17, 2008
MSAGL: Microsoft Automatic Graph Layout (formerly known as GLEE)
"MSAGL: Microsoft Automatic Graph Layout
MSAGL is a .NET tool for graph layout and viewing. It was developed in Microsoft Research by Lev Nachmanson. MSAGL is built on the principle of the Sugiyama scheme; it produces so called layered, or hierarchical layouts. This kind of a layout naturally applies to graphs with some flow of information. The graph could represent a control flow graph of a program, a state machine, a C++ class hierarchy, etc."
This was formerly known as GLEE:"GLEE: Graph Layout Engine
GLEE: Graph Layout Execution Engine Tool purpose GLEE is a .NET tool for graph layout and viewing. It has been developed in Microsoft Research by Lev Nachmanson
http://research.microsoft.com/users/levnach/GLEEWebPage.htm"
Wednesday, April 16, 2008
Terminal Services Group Policy (how to set timeouts for remote sessions)
It's so freaking NON-obvious how to get to the Group Policy Object Editor.
Run this:
C:\WINDOWS\system32\mmc.exe C:\WINDOWS\system32\gpedit.msc
Tuesday, April 01, 2008
Wednesday, March 26, 2008
Sorting for Humans : Natural Sort Order
1.1
1.10
1.11
1.2
etc.
1.2 should come *before* 1.10, etc., but in a naive sort it does not.
See also the C# code he cites: http://www.interact-sw.co.uk/iangblog/2007/12/13/natural-sorting
Tuesday, March 25, 2008
Git stuff - Git.Net and "Why DVCS Matters to you today"
Application for Google Summer of Code 2008, Mono Project - Git.Net. Fantastic idea!
Saturday, March 22, 2008
Monday, March 17, 2008
Technology Review: Blogs: Ed Boyden's blog: How to Think
Wednesday, March 05, 2008
Tactics for Reducing the Subjective Experience of Down Time
The formulae below all depend on use of a time indicator. The following choices of time indicators are listed from most to least desirable.
1. Estimated and remaining-time indicator. Place this either in a modal dialog or in the status bar at the bottom of the window.
2. "The system is alive" indicator. When it is impractical to offer the actual times, show an animated object that will let users know the system has not frozen. For longer waits, choose the rolling barber pole often found in status bars or other large animated object. For shorter waits (less than 10 seconds), you may use, instead, an animated "wait" mouse pointer, such as a spinning ball or animated hour glass.
3. "I hear and understand" indicator. When the expected wait is of short enough duration (less than 2 seconds) that displaying elapsed time, etc., is meaningless, display the hour glass."
Sunday, February 24, 2008
Wednesday, February 20, 2008
How-To: vmware-tools hgfs module on Ubuntu Gutsy Gibbon (7.10)
Tuesday, February 19, 2008
Intercepting method calls in C#, an approach to Aspect-Oriented Software Development
Tuesday, February 12, 2008
Community Pricing for goods (books, specifically)
http://radar.oreilly.com/archives/2008/02/community_pricing_for_books.html
Monday, February 04, 2008
Thursday, January 24, 2008
Tuesday, January 15, 2008
Signs of a Bad Boss (seen by me in the wild)
Bosses are supposed to ask themselves these questions:
1. Have you ever publicly criticized an employee?
2. Do you take credit for your employees’ work?
3. Do your employees fear you?
4. Do you expect employees to do what you tell them without question?
5. Do you believe employees should know what to do without you telling them or providing guidelines?
6. Are you a yeller?
7. Do you demean employees as a form of punishment?
8. Do you play favorites?
9. Do you hate delegating?
10. Do you check everyone’s work?
Friday, January 11, 2008
How to find files that are different between two git trees (working with git and, *gulp*, SourceSafe)
Use this command:
git diff-tree -r --name-status branch1 branch2where branch1 is the branch I'm going to check into SourceSafe and branch2 is the upstream branch.
Example:
The basic procedure is:/c/Yellowstone.master
$ git diff-tree -r --name-status master POS-safe
M Databases/OpenBook/Alter Scripts/THE ONLY 2.2 ALTER SCRIPT YOU NEED.sql
M OpenBookSolution/HotL/DirectBillPaymentForm.cs
M OpenBookSolution/HotL/EditReservationForm.cs
M OpenBookSolution/HotL/NonGraphicalReserveForm.cs
M OpenBookSolution/HotL/OpenBook.cs
M OpenBookSolution/HotL/ReportForms/ReportSelectorForm.cs
M OpenBookSolution/HotL/SelectDirectBillAccountForm.cs
A OpenBookSolution/HotLOnly.sln
D OpenBookSolution/HotLOnly/HotLOnly.sln
M OpenBookSolution/Yellowstone.OpenBook.BusinessEntities/MonetariesBusinessEntity.cs
/c/Yellowstone.master
$
- hack hack hack
- Get my tree in good shape, usually by rebasing my branch onto the SourceSafe tracking branch.*
- Run the diff-tree command above to find changed files.
- Check out those files. If there are any warnings from SourceSafe about the files being different (and not just writable), then do the following:
- Get latest from SourceSafe into the SourceSafe tracking branch (typically "master") in my project.
- Commit.
- Go back to step 2 above.
- Merge development branch into master. Sometimes I do this step a commit or three at a time instead of an en masse merge of the branch all at once.
- Check changed files back into SourceSafe.
The flavor of git I use is msysgit.
Linus clarifies "Central Repository" issue on git in a way palatable to managers
I certainly agree that almost any project will want a "central" repository
in the sense that you want to have one canonical default source base that people think of as the "primary" source base.
But that should not be a *technical* distinction, it should be a *social* one, if you see what I mean. The reason? Quite often, certain groups would know that there is a primary archive, but for various reasons would want to ignore that knowledge: the reasons can be any of ....
ExtJS javascript library
"Ext (pronounced "extent"[citation needed]) is an open-source JavaScript library, for building richly interactive web applications using techniques such as AJAX, DHTML and DOM scripting.Originally built as an extension of YUI, Ext can now also extend jQuery and Prototype. As of version 1.1, Ext can run stand-alone without relying on any of those external libraries, though they remain an option for integration.
Ext version 2.0 can now use many different base libraries (adapters) like YUI, jQuery, Prototype or it can work Stand-alone"
Tuesday, January 08, 2008
PyPy "dot" graph viewer (Python)
"For debugging purposes I implemented a visualization tool for DFAs using PyPy's pygame-based graph viewer. The graph viewer is able to visualize interactively any graph given in the graph-description language of Graphviz. Looking at the tokenizing DFA for Python is rather instructive, both for understanding how tokenizing works and (maybe) for understanding the Python language. To try it, download the dot file of the DFA and run from a pypy checkout:$ python pypy/bin/dotviewer.py tokenizer.dotThe following is a screenshot of the graphviewer: "
Monday, January 07, 2008
TCL: Creating Temporary Files
"Tcl doesn't have a built-in command to create a temporary file and there are no built-in variables for temp directories, so you have to do a little work.
....I had some luck with the following procedure on a UNIX box. Maybe, somebody can check if it works for windows.
proc tempfile {prefix suffix} {
set chars "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
set nrand_chars 10
set maxtries 10
set access [list RDWR CREAT EXCL TRUNC]
set permission 0600
set channel ""
set checked_dir_writable 0
set mypid [pid]
for {set i 0} {$i < $maxtries} {incr i} {
set newname $prefix
for {set j 0} {$j < $nrand_chars} {incr j} {
append newname [string index $chars \
[expr ([clock clicks] ^ $mypid) % 62]]
}
append newname $suffix
if {[file exists $newname]} {
after 1
} else {
if {[catch {open $newname $access $permission} channel]} {
if {!$checked_dir_writable} {
set dirname [file dirname $newname]
if {![file writable $dirname]} {
error "Directory $dirname is not writable"
}
set checked_dir_writable 1
}
} else {
# Success
return [list $newname $channel]
}
}
}
if {[string compare $channel ""]} {
error "Failed to open a temporary file: $chanel"
} else {
error "Failed to find an unused temporary file name"
}
}Igor Volobouev"