Hi,
I am developing the presence listener using RemotePresenceView.
I have Manual Provisional environment, single machine.
I have create trusted App pool, trusted certificate requested, Application end pool
New-CsTrustedApplicationPool -Identity trustedappsManually.MyLync.local -Registrar lynclabserver.MyLync.local -Site site1 -ComputerFqdn mymachine.MyLync.local
Request-CsCertificate -New -Type default -FriendlyName "MyTestCertificate" -CA adlyncserver.MyLync.local\lync-ADLYNCSERVER-CA -ComputerFQDN mymachine.MyLync.local
FindPrivateKey.exe My LocalMachine -t "ac ed f5 77 2d f5 ba 2e 80 1c 5a 81 87 59 86 73 0a 7e 90 1f" -a
cacls "C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys\781789343f1a56ed88473eb3c2fba452_2d713c91-14e1-43ec-9981-215d2c19d59d" /E /G"LYNC\admin":R
New-CsTrustedApplication -ApplicationId "LabAppManually10601" -TrustedApplicationPoolFqdn trustedappsManually.MyLync.local -Port 10601
New-CsTrustedApplicationEndpoint -ApplicationId urn:application:LabAppManually10601 -TrustedApplicationPoolFqdn trustedappsManually.MyLync.local -SipAddress sip:labcontactManually10601@MyLync.local -DisplayName "Lab Contact 10601"
$a = Get-CsTrustedApplication -identity "trustedappsManually.MyLync.local/urn:application:LabAppManually10601"
$a.ComputerGruus
If i use UserEndPoint, i am able to get the presence of all user subscribed.
Now issue is with, applicationEndPoint
while creating the collabrationPlatform,
if i pass the certificate created above, My Endpoint is never been in established, its in retry state only.
If i don't pass the certificate, endpoint is establishing, but whichever presence i have requested subscribe those all always in Subscribing -> WaitingForReply state.
i also set the UseRegistration = true on the ApplicationEndpointSettings
is this a issue with certificate, is there any format in which the certificate name need to have?
for apppool : trustedappsManually.MyLync.local i have created certificate name 'MyTestCertificate' ? is it okay?
the certificate is issue by Ad and available on local computer.
Where i went wrong?