Manish Agrawal

My Experiments with Technology..

  Home  |   Contact  |   Syndication    |   Login
  68 Posts | 2 Stories | 32 Comments | 12 Trackbacks

News


live stats

Domain Name Free Service
Get a free domain name like www.YourName.co.nr with the following features included: free URL redirection with cloaking, path forwarding, all meta-tags supported, kill-frame feature, NO forced ADS at all, and more.


Google




All content © Manish Agrawal
The content on this site represents my own personal opinions and thoughts at the time of posting, and does not reflect those of my employer's in any way.
Disclaimer:- All postings in this blog is provided "AS IS" with no warranties, and confers no rights.

Article Categories

Archives

Post Categories

Image Galleries

Interesting Blogs

Interesting Links

Mobile

SharePoint

Travel Domain

Monday, February 20, 2006 #

Rajiv has written a good article on Using Query Notifications in .Net 2.0

Basically the article is about the new notification service of SQL Server 2005 which notifies the .Net code when any DML operations are performed on a specified table.

Detailed article can be accessed at: http://www.codeproject.com/cs/database/QueryNotifications.asp


Narendra has written a good post on resolving the problem related to Digitally Signing of Assemblies is .Net 2.0
(url : http://geekswithblogs.net/narent/archive/2006/02/15/69536.aspx)

The problem is:

1. To digitally sign assemblies “AssemblyIncludeSigningInformation” must be set to true, but once it is set to true
   it becomes mandatory to write “AssemblyDelaySign” attribute in AssemblyInfo.cs file.
2. There is a logical error in the code (of AssemblyInfoTask.cs), which is mentioned by Narendra in the post.

For any user it will become a problem in case assembly is to be digitally signed.
As no where it is mentioned that DelaySign Attribute must be added in the AssemblyInfo.cs file and also how the
AssemblyDelaySign value must be given (i.e. it should not be left blank).
For e.g. this is an incorrect entry [assembly: AssemblyDelaySign()]

If the incorrect entry is given, it will get converted to [assembly: AssemblyDelaySign(“false”)]
which will further lead to error in compilation.

Where as Correct Entry must be: [assembly: AssemblyDelaySign(false)]