SiteMap Editor for Microsoft Dynamics CRM 2011 使用说明
How to connect to CRM environments using this tool
If you already connected to a CRM deployment using my tools, you should have a list of saved connections when using my tools
If you didn’t already connect to a deployment or would like to create a new connection, just click on the button “Create new connection”. The connection dialog appears. Follow the instructions below.
To set a connection to a CRM environment, you need to fill several information:
- A connection name : This can be whatever you want to remember where this connection points to
The server name :
- For OnPremise deployment : Specify the name of the CRM server
- For IFD deployment : Specify the hostname part of the discovery url (example: disco.mydomain.myextension)
- You can also provide an additionnal Home Realm Url if your authentication server is not the one configured in the CRM deployment
- For CRM Online : Specify only the common part of the url (ie. crm*.dynamics.com ; '*' could be an empty string for North America, '4' for EMEA and '5' for Asia/Pacific)
- If your organization uses the new OSDP authentication model (Office 365), then you should tick the checkbox “Use OSDP” (or "Use Office365"), with “Use CRM Online” still ticked.
- If you don’t succeed to connect anymore to your online organization, update the connection properties to use the OSDP authentication model
- The application port : Only for OnPremise/IFD deployment, if different from 80 (http) or 443 (https) <!--EndFragment-->
- An authentication type :
- Windows integrated authentication : The tool will use the credentials of the current logged in user
- Custom authentication : The tool will use the credentials provided in the field "Domain", "Login" and "password"
- Some CRM deployment properties :
- Use SSL : check this box to indicate that the CRM deployment is secured
- Use IFD : check this box to indicate that the CRM deployment use ADFS to perform authentication
- Use CRM Online : check this box to indicate that the CRM deployment is a CRM Online one
- Use OSDP : check this box to indicate that the CRM Online deployment use the new OSDP authentication model
After having filled all these information, you can click on the button "Get Orgs." to obtain the list of organization that can be selected regarding the current credentials provided.
Select an organization and click on the button "OK"
The program checks the information provided and attempt to authenticate the user against the selected organization.
Bravo! you are connected
| Note: When a connection succeed, the settings are saved in a file named mscrmtools2011.config. This file can be shared across all my tools. Just put all of them in the same folder |
Samples
OnPremise configuration with Windows Integrated Authentication
OnPremise configuration with custom credentials
IFD configuration
CRM Online configuration
CRM Online with OSDP
Last edited Oct 12, 2012 at 11:21 PM by tanguy92, version 7、
SiteMap Editor for Microsoft Dynamics CRM 2011 使用说明的更多相关文章
- How to control PrincipalObjectAccess table growth in Microsoft Dynamics CRM 2011
https://support.microsoft.com/en-us/kb/2664150 How to control PrincipalObjectAccess table growth in ...
- Microsoft Dynamics CRM 2011的组织服务中的RetrieveMultiple方法(转)
本篇文章,介绍Microsoft Dynamics CRM 2011的组织服务中的RetrieveMultiple方法. RetreiveMultiple方法,用于获取实体的多个实例,该方法的签名如下 ...
- Dynamices CRM JS 类库 神器 XrmServiceToolkit - A Microsoft Dynamics CRM 2011 & CRM 2013 JavaScript Library
XrmServiceToolkit - A Microsoft Dynamics CRM 2011 & CRM 2013 JavaScript Library http://xrmservic ...
- Error message “Assembly must be registered in isolation” when registering Plugins in Microsoft Dynamics CRM 2011 2013 解决办法
Error message “Assembly must be registered in isolation” when registering Plugins in Microsoft Dynam ...
- Microsoft Dynamics CRM 2011 相关-摘自网络
Microsoft Dynamics CRM Server 2011硬件需求: 组件 *最低要求 *推荐配置 处理器 x64 体系结构或兼容的双核 1.5 GHz 处理器 四核 x64 体系结构 2 ...
- Microsoft Dynamics CRM 2011 当您在 大型数据集上执行 RetrieveMultiple 查询很慢的解决方法
症状 当您在 Microsoft Dynamics CRM 2011 年大型数据集上执行 RetrieveMultiple 查询时,您会比较慢. 原因 发生此问题是因为大型数据集缓存 Retrieve ...
- 转:JavaScript Reference for Microsoft Dynamics CRM 2011 / 2013
JavaScript Reference for Microsoft Dynamics CRM 2011 / 2013 98 Replies Here’s a quick reference guid ...
- Microsoft Dynamics CRM4.0 和 Microsoft Dynamics CRM 2011 JScript 方法对比
CRM 2011 如果需要再IE里面调试,可以按F12在前面加上contentIFrame,比如 contentIFrame.document.getElementById("字段" ...
- Microsoft Dynamics CRM 2011 安装完全教程
作者:卞功鑫,转载请保留.http://www.cnblogs.com/BinBinGo/p/4302612.html 环境介绍 WINDOWS 2008 R2 Datacenter Microsof ...
随机推荐
- 正向代理到指定泛域名的nginx配置
resolver 8.8.8.8; #必须配置!!!不然无法代理 server { listen default_server; listen [::]: default_server; server ...
- OC Block(代码块)
#import "ViewController.h" @interface ViewController () @end @implementation ViewControlle ...
- Spark任务提交底层原理
Driver的任务提交过程 1.Driver程序的代码运行到action操作,触发了SparkContext的runJob方法.2.SparkContext调用DAGScheduler的runJob函 ...
- setuid和setgid
关于有效用户,实际用户的问题,参考: http://www.cnblogs.com/kunhu/p/3699883.html 内核对进程存取文件的许可检查,是通过考查进程的有效用户ID来实现的的. 在 ...
- 070——VUE中vuex之使用getters计算每一件购物车中商品的总价
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- Hash索引和BTree索引
索引是帮助mysql获取数据的数据结构.最常见的索引是Btree索引和Hash索引. 不同的引擎对于索引有不同的支持:Innodb和MyISAM默认的索引是Btree索引:而Mermory默认的索引是 ...
- C++中特殊的宏定义
常规用法不再介绍,做如下几点说明和介绍 1. 带参数的宏只完成简单字符替换,之前不做计算实参的工作,如下 #define SUM(x,y) x+yint a=3,b=2,c=1;int s;s=SUM ...
- Java实现交换两个String
在Java中我们所使用的实例变量其实都是一个引用,所以如果要求实现一个swap(String A, String B)这种函数时无法实现的,因为在类方法的定义中是先对行参进行地址传递,然后对形参修改, ...
- opencv-python教程学习系列6-用滑动条做调色板
前言 opencv-python教程学习系列记录学习python-opencv过程的点滴,本文主要介绍opencv-python用滑动条做调色板,坚持学习,共同进步. 系列教程参照OpenCV-Pyt ...
- Fzu软工第二次作业-词频分析
(0)前言: Github项目 作业地址 (1)PSP表格: PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning 计划 ...