Monday, February 27, 2012

Charts using Silverlight Toolkit


Here are the links which you can follow to create a chart in Silverlight

Hrushikesh Zadgaonkar's Blog
Jigar.net



Monday, February 20, 2012

Silverlight SDK Sample

Dear Friends ,

Here is a link which you can get examples in silverlight application

   Silverlight SDK Sample browser
   

Tuesday, February 14, 2012

Changing the .Net Frame Work in IIS 7 & Could not load type System.ServiceModel.Activation.HttpModule

1) if you want to change the frame work in IIS 7 
    *Expand The server node
    *Click on Application pool
    *Right click on the application pool of your hosted website website
    *Click on Basic Settings 
    * Change the FrameWork 
    * Click OK 




2)If you install DotNet framework 4.0 on IIS server and then enable DotNet 3.0 or 3.5 WCF features, you might see following error when browse your application site made of ASP.NET 4.0 (or run on ASP.NET 4.0 application pool)



Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.


To resolve this issue, run the following from command line:

aspnet_regiis.exe /iru

The aspnet_regiis.exe file can be found in either
  • %windir%\Microsoft.NET\Framework\v4.0.30319
  • %windir%\Microsoft.NET\Framework64\v4.0.30319 (on a 64-bit machine)

Tuesday, February 7, 2012

Crmsvcutil

Here are the two links which will help you  to create and use early bind in CRM 2011
and this will make your work easier .. :)

Simple CrmSvcUtil example for creating early bound classes
   
How to add crmsvcutil to the External tools menu in Visual Studio

Creating Reports with Fetch XML in CRM 2011

Today i have seen a blog which is detail explanation of Creating SSRS report in CRM 2011 using Fetch XML
and read this blog and try to create a sample
Please find the link below ...

CRM 2011 Online Reports with Fetch XML

Thursday, February 2, 2012

Remote Debugger

In most of the cases we will not be installing our development enviorment in the system why because we dont want to slow down the server by installing software like Visual Studio and in this case we will installing our sever and devlopment environment seprately so we need debug our plugin remotely here is the steps to debug plugin using remote debugger

1) open the visual studion remote debugger folder
  
2) Copy the folder to server (CRMSERVER) according to wether the system is 32 bit or 64 bit 

3)Open the folder in server and Run the msvsmon.exe file 
    
 4)Tools Option Configure the permission for the user (user should be same which is running the debugging in remote desk top)
5)Copy the plugin.dll and plugin.pdb file to the " C:\Program Files\Microsoft Dynamics CRM\Server\bin\assembly " of crm server 

6)Register the plugin (assembly should be stored in disk mode)

7)Open the plugin solution in Visual studio
8) Go to tools > attach process 
9)  Enter the server name in qualifier field(which is there in the options of msvsmon.exe options )
     press enter it will list all the process running in server

10)Attach the WpW3.exe process


Now open the CRM and Trigger your plugin  

It will start debugging  :)

       


  

Wednesday, February 1, 2012