I am playing with .Net2.0 Cryptography, and want to Implement different scenarios. Let me start with this one and please comment if you know of a better solution.Scenario 1: I want to setup a Public Key Interface, where Sender signs a Message using Senders Certificate and then Encrypts / Envelops it using Recipients Certificate and then Send the Encrypted Message. Solution: I am writing a Sender WebApplication where on click of a Button, Recipients Certificate is downloaded from a WebService Store ......
2 days back I installed Community Server 2.1 (SP2) with hosting provider webhost4life. They have a very handy Pre Installed Community Server Thing... Just 2 clicks and you get the Community Server Installed...All was going ok and I was very happy with this new hosting provider and about to test the emailsettings so I put the smtp details as provided by the hosting provider and then logged off. Pressed forgot password link and wanted to test whether the forgot password email sending option is working ......
source: http://blog.davestechshop.n... Ridings has a nice list of blog ping services he calls, "Ultimate List of RPC Ping Services For Your Blog". Use this list to get the word out that you have posted something new on your blog.Here is the list. All credit goes to Matt, and I'm sure he would appreciate a comment on his blog if you find this list useful. I'm simply passing along his good work.As Matt says, "Check to see if your blogging tool or software requires a separator (such as a semicolon, ......
Here are some good Cryptography related resources.Cryptography Overviewhttp://msdn2.micros... and improved Security in the .Net Framework2.0 http://msdn2.microsoft.com/... the examples are very useful Protect Private Data with the Cryptography Namespaces of the .NET Frameworkhttp://msdn.micros... should help you get an insight on .NET Cryptography essentials. Walkthrough Creating a Cryptographic Application.http://msdn2.mi... ......
SmartCodeGenerator fans the CTP 2.6.0 has been uploaded to CodePlex. This latest version remembers the entered values on the custom properties and does not require you to retype the property values repeatedly everytime you run the application. I hope this will make codegeneration and debugging experience more simpler. Also Uploaded 2 Articles at Code Project, but still in the Unedited Section. Hope Code Project will move them to the right section soon. This article demonstrates how to use SCGSmartCodeGenerator: ......
I was Queuing a Serialized object in MSMQ. But soon realized that VB (legacy) do not like the format. public void QueueJob(Job job, string destinationQueue, string messageLabel) { try { // open the queue MessageQueue mq = new MessageQueue(destinationQue... // set the message to durable. mq.DefaultPropertiesToSend.... = true; // send the job object mq.Send(job, messageLabel); mq.Close(); } catch (Exception e) { throw e; } } The Queued Serialized Job Object was picked up by VB as "?????????????????"For ......
Asp.Net Cachinghttp://msdn2.microso... Asp.Net Caching Featureshttp://msdn.microso... Asp.Net Quickstart- Caching for performancehttp://quickstar... Video: How Do I Make use of Cachinghttp://www.asp.net/l... Video: How Do I make Greater use of Cachinghttp://www.asp.net/l... ......
http://www.pinvoke.net comes with handy C# /VB.Net signatures for invoking with core Win32 API.for example if we search for MessageBox in http://www.pinvoke.net we get the following result: C# Signature (Original): [DllImport("user32.dll", CharSet=CharSet.Auto)]public static extern uint MessageBox(IntPtr hWnd, String text, String caption, uint type);This is the bare minimum and we can use this straight way in our application but I always prefer to write a Wrapper around it. Which turns into something ......