zoukankan      html  css  js  c++  java
  • mscrm WebService开发 之 CrmDiscoveryService

    代码
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using CrmDiscoveryWeservice.CrmSdk.Discovery;

    namespace CrmDiscoveryWeservice
    {
        
    /// <summary>
        
    /// author:seer lin
        
    /// description:demo of using the CrmDiscoveryService to retrieve organization infomation
        
    /// </summary>
        public partial class Form1 : Form
        {
            
    public Form1()
            {
                InitializeComponent();
            }

            
    private void button1_Click(object sender, EventArgs e)
            {
                CrmDiscoveryService discoveryService 
    = new CrmDiscoveryService();
                discoveryService.UseDefaultCredentials 
    = true;
                discoveryService.Url 
    = "http://localhost:5555/MSCRMServices/2007/AD/CrmDiscoveryService.asmx";

                RetrieveOrganizationsRequest orgRequest 
    = new RetrieveOrganizationsRequest();
                RetrieveOrganizationsResponse orgResponse 
    = (RetrieveOrganizationsResponse)discoveryService.Execute(orgRequest);

                
    foreach (OrganizationDetail orgDetail in orgResponse.OrganizationDetails)
                {
                    MessageBox.Show(
    "组织名称为:"+orgDetail.OrganizationName + "\nWebService访问地址:"+orgDetail.CrmServiceUrl);
                }
            }
        }
    }
  • 相关阅读:
    《试题库管理系统的设计与实现》11
    转 windows10安装docker
    转 linux 安装docker
    Centos7 离线安装RabbitMQ,并配置集群
    Linux配置Redis主从
    CENTOS7下安装REDIS
    sql删除相同数据(无主键)
    mybatis中 <if test=>等于的条件怎么写
    java 日期获取,每月一号,每周一
    Oracle中merge into的使用
  • 原文地址:https://www.cnblogs.com/seerlin/p/1756481.html
Copyright © 2011-2022 走看看