On Microsoft Dynamics CRM 4 this error comes due to the follow reason. If MS Asynchronous service has been disabled or stopped then following error occurs.“The key specified to compute a hash value is expired, only active keys are valid. … Read More
Blog
Blog
SQL Server: Rule Valid Database compatability level and successfull connection failed
On upgrading Microsoft SQL Server 2008R To MS SQL Server 2012 I was keep getting error Rule “Valid Database compatibility level and successful connection” failed The report server database is not supported compatibility level… I installed latest service pack for SQL … Read More
How to connect to internet from VMware player VPC
Most of the time you don’t want your VPC(Virtual PC) to be connected to the internet for several reasons but there are times when you need to connect to the internet.For instance I was getting this error on VPC that … Read More
CISCO AnyConnect issue VPN
Came across an issue when connecting to VPN on AnyConnect in Windows 8. On checking found out that as I was sharing my connection with virtual machine and therefore AnyConnect did not like it. On disabling Internet Connection Sharing in … Read More
Could not load file or assembly or one of its dependencies
Could not load file or assembly or one of its dependencies I was getting this error as one of the primary dll has a different version and failing on load Solution: I had version number of the project in properties set … Read More
fiddler not capturing local web service calls
Why fiddler not capturing local web service calls in WCF? As always, new environment new machine and Windows 7… Tried testing and calling a WCF service, hosting on Visual Studio 2012 web server and could not catch traffic in Fiddler. … Read More
Why and Where to use Delegate in C#
I am going to explain why and where we need to use delegates in C#. Let’s suppose we have an investment application, which takes investment from customers and then calculates profit on the basis of investment. We have some rules … Read More
Difference between Action and Func in C#
Difference between Func<T> and Action<T> in C# and where to use them. Let’s suppose we have small program which returns a number using a delegate static void Main(string[] args){MyCalculations del = MyCalculationsMethod;int value = del.Invoke(5); Console.WriteLine(“Result is: ” +value);}public static … Read More
crm 2011 A webresource with the same name already exists. Use a different name.
Keep getting error below after deleting a web resource file from VS>Organization>Web Resources>Data(XML) I had to delete one of the resource file as it was not deploying updated version. After deletion and on deployment I kept getting above error… Checked … Read More
How to run Asynchronous task and override it
We need to run Asynchronous task due to some requirements but we want that to be override able, unfortunately that is not possible however we can create Asynchronous method but then call that method inside of Synchronous method and make … Read More