Plug-ins
CRM 4: IFD Authentication using C#
A very common question is: “How do i run a plugin/custom web application against a IFD deployment?”
You should use the below code:
CrmDiscoveryService disco = new CrmDiscoveryService();
disco.Url = “https://YOUR.IFD.URL/MSCRMServices/2007/SPLA/CrmDiscoveryService.asmx”;
RetrieveOrganizationsRequest orgRequest = new RetrieveOrganizationsRequest();
orgRequest.UserId = @”username”;
orgRequest.Password = “password”;
RetrieveOrganizationsResponse orgResponse = (RetrieveOrganizationsResponse)disco.Execute(orgRequest);
OrganizationDetail orgInfo = null;
foreach (OrganizationDetail orgdetail in orgResponse.OrganizationDetails)
{
if (orgdetail.OrganizationName.Equals(”OrgName”))
{
orgInfo [...]
Recommended Microsoft CRM 4.0 Books
Hi All,
I would like to recommend to you some of the books i have read in regards to Microsoft Dynamics CRM 4.0.
Working with Microsoft Dynamics(TM) CRM 4.0 (Paperback)
by Jim Steger (Author), Mike Snyder (Author)
Product Description
Get a practical introduction to Microsoft Dynamics CRM now updated for Microsoft Dynamics CRM 4.0. Microsoft Dynamics CRM is a value-packed customer-relationship management [...]
Company name on the phone call form.
Hi there,
Have you struggled without the company name on the phone call form in CRM 4.0??
Usually when you create phonecall campaigns you notice that the regarding field of the campaign is the ‘Campaign Name’ and the Recipient is the ‘Lead full name’ which leaves us with no information what so ever telling us the company name.
This proccess involves creating a plug-in in Visual Studio [...]
Welcome to MSCRMBlog.net
Hi Guys,
Welcome to my new Blog. My name is Ibrahim Sukari (refer to the About Me page for more info), i am a CRM developer. The company i work for is called RightServ. We have done quiet a few CRM deployments with hefty customizations. I basically created this blog to give back to the community that indeed helped [...]