Understanding SQL Server 2005 Notification Services with ASP.NET 2.0 This

January 28, 2008 – 9:00 pm

Understanding SQL Server 2005 Notification Services with ASP.NET 2.0
This article explains SQL Server 2005 notification services with ASP.NET 2.0 and demonstrates how to set up and test it using code samples. Sudeep initially provides a brief overview of the services and then examines various configuration aspects. He also deeply covers some of the common issues that prevent queries from working with SQL Server 2005 query notifications. At the end of the article you will learn the concept of polling based Invalidation techniques with the help of source code.
Sudeep G

Silverlight Browser on CodePlex

Last week Ernie Booth announced a SilverlightBrowser plugin for Reflector. The plugin allows you to browse web pages that contain Silverlight elements and display their constituent Javascript, XAML and assembly files.

 

Ernie released the 0.1 Alpha code so people were free to modify it. The way the 0.1 code obtained the .js, .xaml and .dll files was by searching the HTML and Javascript source for specific patterns. For example it would search the HTML file for ‘Silverlight.createObject’ and extract the .xaml link from its parameters. This is similar to how Lutz’s SilverlightLoader plugin works.

The problem with this technique is that it assumes that the ‘Silverlight.js’ and API (which comes with the Silverlight SDK) is being used. Unfortunately this won’t always be the case. Some people may include the <object> or <embed> tags directly in the HTML or embed the XAML in a <script> block. A good example of this is Sam Ruby’s Inline SVG in MSIE demo. This demo creates a Silverlight <embed> element and converts the SVG content into XAML on the fly!

I’ve modified Ernie’s code so that is searches the WebBrowser object model for the .js and .xaml files. This means it is no longer making the assumption that ‘Silverlight.js’ is being used. It doesn’t yet support XAML that is emended in a <script> block. I’m hoping to have it working with Sam’s demo in the next version.

I have kicked off a community project for the SilverlightBrowser plugin on CodePlex (with Ernie’s blessing). You can download latest version of the plugin from here.

Elementool bug tracking service big time-saver
With Elementool Inc.’s web-based Bug Tracking service enables software developers to track new bugs, prioritize and assign bugs to team members, generate bug reports, send email messages between users, attach files, type notes on a message board, customi…

Excel Software ships QuickCRC tool with CRC Cards
Excel Software has started shipping QuickCRC for responsibility driven design of object-oriented software using CRC cards. CRC cards are well suited to agile methods or as a front end to UML. The new release supports Windows Vista, Universal Binaries…

Smardec releases Allatori Java Obfuscator 1.8
Smardec’s’s Allatori Java Obfuscator version 1.8 belongs to the second generation of obfuscators with a wide range of capabilities to protect your intellectual property. The 1.8 version has a new fields and methods renaming scheme that makes the resultin…

You must be logged in to post a comment.