Click here to Skip to main content
15,895,799 members
Articles / Programming Languages / C#

Dynamics CRM 4.0 Web Service SDK Example

Rate me:
Please Sign up or sign in to vote.
4.41/5 (9 votes)
11 Nov 2009CPOL4 min read 77.6K   2K   27  
Using Dynamics CRM Web Service to Query & Create User Calendar
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
            <section name="CrmDiscoveryTester.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        </sectionGroup>
    </configSections>
    <applicationSettings>
        <CrmDiscoveryTester.Properties.Settings>
            <setting name="CrmDiscoveryTester_CrmSdk_Discovery_CrmDiscoveryService"
                serializeAs="String">
                <value>http://10.0.0.117:5555/MSCRMServices/2007/AD/CrmDiscoveryService.asmx</value>
            </setting>
            <setting name="CrmDiscoveryTester_CrmService_CrmService" serializeAs="String">
                <value>http://moss:5555/MSCrmServices/2007/CrmService.asmx</value>
            </setting>
        </CrmDiscoveryTester.Properties.Settings>
    </applicationSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Ayman Soft
Egypt Egypt
With more than 16 years of IT experience, traveled to 6 different countries and worked in many multi-culture environments. Since returning from Sydney To stay in Cairo i have been working for a Microsoft partner in the middle east, focusing on Microsoft Dynamics CRM 4.0 platform, a very interesting business application platform that has state of the art application design and architecture with rich extension tools for developers.
Hope to help some one out there with an idea or a code example .. Smile | :)

Comments and Discussions