-
Continue reading →: Error while Integrating CRM 2013 – SharePoint Online
While trying to integrate CRM 2013 Onpremise and Sharepoint Online we were getting following error. “Validation could not succeed because the List component could not be detected. Check that the URL is valid and try again. Click the following URL to verify:” While we had done everything right and…
-
Continue reading →: Windows Phone Emulator Crashing
While trying to run a Windows Phone 8 App on Windows 8.1, Visual Studio 2012 I was getting compatibility Error. Resolution: In order to resolve this issue, you will need to install the Microsoft Visual Studio 2012 Update 3 on your system. This will fix the issue. You can download…
-
Continue reading →: Error While Refreshing CRM 2011 Main Page Grid – UR 12
In our CRM 2011 ribbon we had written code to Refresh the Grid after click of a ribbon button. It was like crmGrid.Refresh(); or you might have implemented it like document.getElementById(“crmGrid”).Refresh(); After updating to UR 12 we were getting an error on crmGrid object. “Object doesn’t support property or method…
-
Continue reading →: Android and iOS Development using C# : Xamarin
Long back when Android was in its initial stages. Android 1.6 sdk was out there and Google trying hard to push developers to develop for it using various competitions I downloaded Donut SDK and IDE. Those were initial days of my career and I had been using Visual Studio as…
-
Continue reading →: Unable to install Silverlight: Windows 8/Windows 8.1
While trying to install Silverlight on Windows 8.1 I got installation error saying that “The same version of Silverlight is already installed” To fix the issue I followed given steps. Ran FixIt 20104 http://go.microsoft.com/?linkid=9831161 Followed given document http://support.microsoft.com/kb/2608523/en Reinstalled Silverlight. This helped solving the issue and reinstalling Silverlight.
-
Continue reading →: Windows Phone Emulator Error
While trying to run Windows Phone emulator I was facing given error. The Windows Phone Emulator wasn’t able to create the virtual machine: Something happened while creating a switch: Xde couldn’t find an IPv4 address for the host machine. Simple Resolution to this problem is: Run Hyper-V Manager as…
-
Continue reading →: Import Solution Issue in UR 12
Recently we tried to import solution on CRM which was recently updated from UR 6 to UR 12. Solution we had was taken from same server from a different org (after upgrade) and was getting stuck at the import step with no activity (at all) in progress bar. Following Exception…
-
Continue reading →: The operation ‘*************Async’ could not be loaded because it has a parameter or return type of type System.ServiceModel.Channels.Message or a type that has MessageContractAttribute and other parameters of different types. When using System.ServiceModel.Channels.Message or types with MessageContractAttribute, the method must not use any other types of parameters.
We were getting Below given error in all our environments except one. Searching on net gave various reasons for this error like : DataContract if used in WCF Service then gives exception if you return with primitive type etc… None of those criteria fit it as it was working fine…
-
Continue reading →: Fakes Tutorial 3: Basic Shim Sample
To Begin with Basic example of Shim, We have 3 Projects and these are on same lines as that of previous blogpost “Basic Stub Sample“. I’ve not used any System dll in this case so that it is easier to relate between differences in Stub and Shim. Projects are: BasicShim…
-
Continue reading →: Fakes Tutorial 2: Basic Stub Sample
This is in continuation to “Introduction to Microsoft Fakes” To Begin with Basic example of Stub, We have 3 Projects: BasicStub : This is simple class library with one method which is to be tested with Fakes Unit Testing ToBeStubbed : Contains code for an assembly which is referred in…