last post, we finish off the deployment of the Lync server. now I going to walk through the integration of Lync and Exchange 2010 OWA. so that you can IM using OWA and also see the presence of the users.
Since the Exchange and Lync server that we installed is using Windows Server 2008 R2, we must install the UCMA 2.0 and OCS 2007 R2 web services. to do this, we need to download some files
UCMA 2.0 : http://go.microsoft.com/fwlink/?LinkID=198175 (this is a Unified Communications Managed API 2.0 Core runtime)
Microsoft Office Communications Server 2007 R2 Web Service Provider : http://go.microsoft.com/fwlink/?LinkId=199440 (this content four files after you unzip: CWAOWAASSP.msi, Donnetfx35setup.exe, UcamRedist.msi and vcredist_x64.exe.
Lastly, OCS 2007 R2 Hotfix Web Service Provider : http://go.microsoft.com/fwlink/?linkid=199437
Once you have downloaded all the files, we can start to do the installation and integration.
First, we start with UCMA 2.0
Double click the setup file for UcmaRuntime.exe, and click “Run”
Click “Install”
Second, install the OCS 2007 R2 Web Services. go to the folder “Web Service Provider Package Installer”, by default packages are extracted to the folder C: \ Web Service Provider Package Installer.
you are require to run the service in command prompt as administrator.
Locate the file CWAOWAASSP.msi and execute it.
after installed. we run the CWAOWASSP.msp hotfix.
after all installation is done. now, power up the Exchange Management Shell. and enter the following command.
Get-ExchangeCertificate | fl
and look for Thumbprint field with IIS service and copy the result to a notepad. also remember the Certificate Subject, when we configure the list of authorized hosts in Lync Server will have to configure the Certificate Subject to the name of the authorized host and create the Trusted Application Pool with this name.
In Exchange Management Shell commands are run
Get-OwaVirtualDirectory | Set-OwaVirtualDirectory-InstantMessagingServerName Name> Server Lync> InstantMessagingCertificateThumbprint <Thumbprint-Client Certificate Access> $ True-InstantMessagingEnabled InstantMessagingType-1
after we have run the command, do a iisreset.
next is Lync turn.
go to Lync Server, open the Lync Management Shell and run Get-CSSite
take note of the Site ID.
next, we create the Trusted Application in Lync Server. you can create using Power Shell or Topology Builder.
New-CsTrustedApplicationPool –Identity <Certificate Subject Name of Client Access> –ThrottleAsServer $true -TreatAsAuthenticated $true -ComputerFQDN <FQDN Server Exchenge> –Site <SiteID> –Registrar <Lync Pool Server> –RequiresReplication $ false
after that, run Enable-CsTopology to apply the setting.
Next, is to configure the ports. this port can be any available port
New-CsTrustedApplication -ApplicationId <application name> -TrustedApplicationPoolFqdn Name> Certificate Subject Name of Client Access> -Port <port number>
run last time of Enable-CsTopology.
you may also want to reference to http://blog.schertz.name/2010/11/lync-and-exchange-im-integration/
Now, login to Exchange OWA. you will be able to see the presence of the user and you can also IM to the user.
That all for now, see you next time!!