配置Lync IM/Presence 与 Exchange2010 SP1 OWA 集成

简介:
Enable Exchange 2010 SP1 Outlook Web App and IM Integration

Topic Last Modified: 2011-04-05

To enable Exchange 2010 SP1 Outlook Web Access (OWA) and instant messaging (IM) integration with Microsoft Lync Server 2010, you must add the Exchange 2010 SP1 Client Access Server (CAS) server to the Lync Server 2010 topology as a trusted application server.

Important:
There are additional configuration requirements that depend on how your Exchange 2010 SP1 server roles are configured:
  • If your CAS server is not collocated on the same server that is running Exchange 2010 SP1 Unified Messaging (UM), in addition to creating a trusted application pool you must create a trusted application, which can only be done by using Lync Server Management Shell. The trusted application must be assigned a port number on which the application will run. The port must be unique within the trusted application pool. In other words, no other applications that use this port can be defined in the specified pool. This port will not be used, but it must be assigned as described in the “Create a trusted application for the Exchange 2010 SP1 CAS server” procedure later in this topic.
     
  • If your CAS server is collocated on the same server that is running Exchange 2010 SP1 UM, and the UM server is servicing a SIP dial plan that is integrated with Lync Server 2010, you only need to create a trusted application pool. It is not necessary to create a trusted application.
  1. Log on to the computer with an account that is a member of the RTCUniversalServerAdmins group or has the equivalent administrator rights and permissions.

  2. Start the Lync Server Management Shell: Click Start, click All Programs, click Microsoft Lync Server 2010, and then click Lync Server Management Shell.

  3. Run the following cmdlet:

    This returns the siteID for the siteName in which you are creating the pool. For details, see Get-CsSite in the Lync Server Management Shell documentation.

     

    Get-CsSite
  4. Run the following cmdlet:

    For details, see  New-CsTrustedApplicationPool in the Lync Server Management Shell documentation.
    Important:
    If your CAS server is not collocated on the same server that is running Exchange 2010 SP1 Unified Messaging (UM), skip the remaining steps in this procedure and perform the “Create a trusted application for the Exchange 2010 SP1 CAS server” procedure later in this topic. If your CAS server is collocated on the same server that is running Exchange 2010 SP1 Unified Messaging (UM), complete the steps in this procedure and do not perform the “Create a trusted application for the Exchange 2010 SP1 CAS server” procedure later in this topic.
  5. Run Enable-CsTopology.

  6. Start Topology Builder: Click Start, click All Programs, click Microsoft Lync Server 2010, and then click Lync Server Topology Builder.

  7. Select the option to Download Topology from existing deployment.

  8. In the Save Topology As dialog box, select the Topology Builder file you want to use, and click Save.

  9. In the left pane, expand the tree until you reach Trusted application servers.

  10. Expand the Trusted application servers node.

  11. You should now see the Exchange 2010 SP1 CAS server listed as a trusted application server.

  1. Log on to the computer with an account that is a member of the RTCUniversalServerAdmins group or has the equivalent administrator rights and permissions.

  2. Start the Lync Server Management Shell: Click Start, click All Programs, click Microsoft Lync Server 2010, and then click Lync Server Management Shell.

  3. If your CAS server is not collocated on the same server that is running Exchange 2010 SP1 Unified Messaging (UM), run the following cmdlet:

    New-CsTrustedApplication -ApplicationId <AppID String> -TrustedApplicationPoolFqdn <E14 CAS FQDN> -Port <available port number>

    For details, see the topic New-CsTrustedApplication in the Lync Server Management Shell documentation.

     

  4. Run Enable-CsTopology.

  5. Start Topology Builder: Click Start, click All Programs, click Microsoft Lync Server 2010, and then click Lync Server Topology Builder.

  6. Select the option to Download Topology from existing deployment.

  7. In the Save Topology As dialog box, select the Topology Builder file you want to use, and click Save.

  8. In the left pane, expand the tree until you reach Trusted application servers.

  9. Expand the Trusted application servers node.

  10. You should now see the Exchange 2010 SP1 CAS server listed as a trusted application server.















本文转自legendfu51CTO博客,原文链接:http://blog.51cto.com/legendfu/1068316,如需转载请自行联系原作者

相关文章
|
6月前
|
SQL Java 关系型数据库
Dataphin功能Tips系列(53)-离线集成任务如何合理配置JVM资源
本文探讨了将MySQL数据同步至Hive时出现OOM问题的解决方案。
167 5
|
8月前
|
缓存 Java API
微服务——SpringBoot使用归纳——Spring Boot集成 Swagger2 展现在线接口文档——Swagger2 的配置
本文介绍了在Spring Boot中配置Swagger2的方法。通过创建一个配置类,添加`@Configuration`和`@EnableSwagger2`注解,使用Docket对象定义API文档的详细信息,包括标题、描述、版本和包路径等。配置完成后,访问`localhost:8080/swagger-ui.html`即可查看接口文档。文中还提示了可能因浏览器缓存导致的问题及解决方法。
1011 0
微服务——SpringBoot使用归纳——Spring Boot集成 Swagger2 展现在线接口文档——Swagger2 的配置
|
6月前
|
JSON JavaScript API
MCP 实战:用配置与真实代码玩转 GitHub 集成
MCP 实战:用配置与真实代码玩转 GitHub 集成
1490 4
|
7月前
|
缓存 前端开发 API
(网页系统集成CAD功能)在线CAD中配置属性的使用教程
本文介绍了Mxcad SDK在线预览和编辑CAD图纸的功能及配置方法。通过Vite、CDN或Webpack实现集成,用户可自定义设置以满足项目需求。主要内容包括:1)`createMxCad()`方法的初始属性配置,如画布ID、WASM文件路径、字体加载路径等;2)`MxFun.setIniset()`方法提供的更多CAD初始配置;3)`McObject`对象API用于动态调整视图背景色、浏览模式等。此外,还提供了在线Demo(https://demo2.mxdraw3d.com:3000/mxcad/)供用户测试实时效果。
|
9月前
|
Cloud Native Java Nacos
springcloud/springboot集成NACOS 做注册和配置中心以及nacos源码分析
通过本文,我们详细介绍了如何在 Spring Cloud 和 Spring Boot 中集成 Nacos 进行服务注册和配置管理,并对 Nacos 的源码进行了初步分析。Nacos 作为一个强大的服务注册和配置管理平台,为微服务架构提供
3951 14
|
8月前
|
Java 数据库连接 数据库
微服务——SpringBoot使用归纳——Spring Boot集成MyBatis——MyBatis 介绍和配置
本文介绍了Spring Boot集成MyBatis的方法,重点讲解基于注解的方式。首先简述MyBatis作为持久层框架的特点,接着说明集成时的依赖导入,包括`mybatis-spring-boot-starter`和MySQL连接器。随后详细展示了`properties.yml`配置文件的内容,涵盖数据库连接、驼峰命名规范及Mapper文件路径等关键设置,帮助开发者快速上手Spring Boot与MyBatis的整合开发。
1102 0
|
8月前
|
缓存 Java 应用服务中间件
微服务——SpringBoot使用归纳——Spring Boot集成Thymeleaf模板引擎——依赖导入和Thymeleaf相关配置
在Spring Boot中使用Thymeleaf模板,需引入依赖`spring-boot-starter-thymeleaf`,并在HTML页面标签中声明`xmlns:th=&quot;http://www.thymeleaf.org&quot;`。此外,Thymeleaf默认开启页面缓存,开发时建议关闭缓存以实时查看更新效果,配置方式为`spring.thymeleaf.cache: false`。这可避免因缓存导致页面未及时刷新的问题。
361 0
|
11月前
|
机器学习/深度学习 自然语言处理 监控
智能客服系统集成技术解析和价值点梳理
在 2024 年的智能客服系统领域,合力亿捷等服务商凭借其卓越的技术实力引领潮流,它们均积极应用最新的大模型技术,推动智能客服的进步。
525 7
|
持续交付 jenkins Devops
WPF与DevOps的完美邂逅:从Jenkins配置到自动化部署,全流程解析持续集成与持续交付的最佳实践
【8月更文挑战第31天】WPF与DevOps的结合开启了软件生命周期管理的新篇章。通过Jenkins等CI/CD工具,实现从代码提交到自动构建、测试及部署的全流程自动化。本文详细介绍了如何配置Jenkins来管理WPF项目的构建任务,确保每次代码提交都能触发自动化流程,提升开发效率和代码质量。这一方法不仅简化了开发流程,还加强了团队协作,是WPF开发者拥抱DevOps文化的理想指南。
285 1
|
jenkins 持续交付 网络安全
利用 Jenkins 实现持续集成与持续部署-代码拉取终端的配置
安装Git、配置用户信息、生成SSH密钥以及在Gitee上创建项目仓库等。
272 0