|
Sunday, September 28, 2008
Securing .NET Config Files
|
Posted By: Vishwa at
02:48 PM
Category: .NET
|
Rating:
(2 reader rated)
Viewed:
25 times
|
As you know, Web.Config and App.Config files are like plain readable XML files. However, it contains sensitive information such as Connection Strings, Impersonation, App Setting Keys and their values. At some point you may need to secure these sections. .NET Framework allows to make your life simple, by just executing few commands on Command Prompt or few clicks using a Enterprise Library Configuration tool, you can achieve the desired result. There is only one basic requirement you should be able to at least remotely login to the Server where you would like to make these thing. Following are few simple steps to secure web/app.config.
Read More >
|
|
|
|
Thursday, August 28, 2008
IFMG Annual Event @Lal Quila Restaurant
|
Posted By: Vishwa at
09:34 PM
Category: Random
|
Rating:
(4 reader rated)
Viewed:
86 times
|
I got an opportunity to attend and participate in the annual event of our local Indian Friends Meetup group of Atlanta. Here are few moments of Singing and Antrakshri in which I happen to participate.
Read More >
|
|
|
|
Tuesday, July 29, 2008
Error:Communication with the underlying transaction manager has failed
|
Posted By: Vishwa at
10:33 PM
Category: Troubleshooting
|
Rating:
(4 reader rated)
Viewed:
136 times
|
If you are using .NET 2.0 or higher Framework and System.Transactions Namespace to handle your transactions, chances are you may come across this error. In my application, I was using ADO.NET transaction, in stored procedure SQL Server transaction and now we decided to use a powerful transaction handler using .NET framework. If you are writing everything fresh, most likely you won’t like to mix different type of transaction handling mechanism. But what if you already have existing code and do not want to change, what to do. I tried to mix all the three kind of transactions, but it resulted in errors. Sometime, they timeout, sometime it just hanged and sometime it produced Microsoft Transaction Coordinator (MSDTC) error. So, how to resolve this problem? After spending several hours I found that one must follow following basic steps.
Read More >
|
|
|
|
Sunday, June 15, 2008
Four Goals of Life
|
Posted By: Vishwa at
05:01 PM
Category: Spiritual
|
Rating:
(9 reader rated)
Viewed:
134 times
|
In Hinduism, it is taught that a person must achieve the following four goals in life. The correct order is Dharma, Artha, Moksha and Kama. But as an ordinary human being I believe that the sequence should be Artha, Dharma, Kama and Moksha. The reason is – in today’s world if you do not have Artha (sufficient money), you cannot perform your Dharma (duty to self or family). If you are able to have first two, you should enjoy the pleasure out of it, but do not get stuck into it and then at the same time peruse for Moksha of self liberation through spiritual path. You cannot think about spirituality if the first three basic needs are not fulfilled. The temple of Khajuraho teaches us the very same understanding that before entering into the temple, fulfill your worldly desires. If they are not fulfill, your body may be in the temple but mind will be wandering somewhere else. Here is my understanding on these goals
Read More >
|
|
|
|
Wednesday, May 28, 2008
Secure Query String using Symmetric Cryptography
|
Posted By: Vishwa at
10:50 PM
Category: .NET
|
Rating:
(7 reader rated)
Viewed:
272 times
|
It is important to secure information on the web specially when transferring data from one page to another. Some information you may not want to make it readable by end user. Microsoft .NET provides Cryptography namespace which can be easily utilized for this purpose. The following example contains a simple class containing Encryption and Decryption method. It supports 2 types – DESC and Rijndael. Symmetric type and encryption key can be configured easily through .config file.
Read More >
|
|
|
|
|