cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 
cancel
507
Views
0
Helpful
2
Replies

Can't download photo - Jabber Windows

voiphub01
Level 1
Level 1

Hi friends,

I'm getting issues in downloading contact photos for Windows Jabber. 

I have edited jabber-config.xml as per Jabber 9.7 deployment guide. Jabber client successfully download this configuration but doesn't initiate HTTP request to download contact photos.

Following is the config file;

<?xml version="1.0" encoding="utf-8"?>

<config version="1.0">

 <Directory>

   <DirectoryServerType>UDS</DirectoryServerType>

   <UdsServer>192.168.15.10</UdsServer>
   <UdsPhotoUriWithToken>http://192.168.15.1/%%uid%%.jpg</UdsPhotoUriWithToken>

</Directory>

</config>

 

Do you think I'm missing any other parameter which forces Jabber client to not initiate HTTP request to download phone contacts...

CUCM: 9.1

Regards

 

1 Accepted Solution

Accepted Solutions

Ankoor Bek
Cisco Employee
Cisco Employee

Hi,

Please try the below configs.

<?xml version="1.0" encoding="utf-8"?>
<config version="1.0">
 <Directory>
   <DirectoryServerType>UDS</DirectoryServerType>
   <PresenceDomain>abc.com</PresenceDomain>
   <UdsServer>192.168.15.10</UdsServer>
   <UdsPhotoUriWithToken>http://192.168.15.1/%%uid%%.jpg</UdsPhotoUriWithToken>
 </Directory>
</config>

View solution in original post

2 Replies 2

Ankoor Bek
Cisco Employee
Cisco Employee

Hi,

Please try the below configs.

<?xml version="1.0" encoding="utf-8"?>
<config version="1.0">
 <Directory>
   <DirectoryServerType>UDS</DirectoryServerType>
   <PresenceDomain>abc.com</PresenceDomain>
   <UdsServer>192.168.15.10</UdsServer>
   <UdsPhotoUriWithToken>http://192.168.15.1/%%uid%%.jpg</UdsPhotoUriWithToken>
 </Directory>
</config>

Hi Ankoor,

Great, it worked. So do you mean <PresenceDomain>abc.com</PresenceDomain> header is compulsory to download contact photos? Respective documentation doesn't mention the same.

Regards