Cisco Jabber for Mac - Directory Lookup and Contact Fields

Hello,
After having issues myself with Cisco Jabber for Mac 9.2 specifically with Active Directory lookups not working, or contact information not populating (and therefore not being able to call users from the contact list as no telephone information exists) I am including a sample jabber-config.xml file that works for me.
Please note: there are many different ways to configure this. What I will be showing is the method that works for me and my deployment, which is pretty standard.
As always and as a disclaimer, once again, this is what has worked for my deployment scenario. Always keep backups of your configuration files, and always be mindful of anything you have configured already, especially in the jabber-config.xml file.
Background
My deployment is based on CUCM 9, with 1 publisher and 2 subscribers. I also have a CUCM IM & Presence 9.0 server. This assumes that you have already configured your deployment and Jabber is functioning already, albeit with the aforementioned issues.
As for Active Directory, my deployment will be based on Windows 2008 R2 Domain Controllers running in native 2008 mode. For this example, we will be searching directly against one of the DCs with a Global Catalogue role. Please be aware that in large deployments you will have to plan accordingly with regards to lookup traffic from Jabber clients to the DCs.
Also, as of Cisco Jabber for Mac 9, the client no longer can search via the CUCM internal directory (which may be made of local end users, Active Directory synced users, or a mix of both) and this must be done via a LDAP mechanism.
Scenario
In this deployment scenario, Cisco Jabber for Windows is working properly - you can search and add people from Active Directory, and contacts in your contact list have all the appropriate fields populated from Active Directory. However, when trying the same with Jabber for Mac, Jabber for iPhone or Jabber for iPad you notice that you cannot perform a directory lookup, and if you add people directly (for example, [email protected]) the user only has the IM field populated. No telephone, email or additional information is displayed.
Solution
Whereas Cisco Jabber for Windows uses the EDI mechanism (native Windows), whereby when running from a computer that is on the domain (or in the event that you are search for contacts in another Active Directory domain where a domain trust exists) , Jabber for Mac / iPhone / iPad uses the BDI mechanism.
In this case, you will need to provision a jabber-config.xml file that you will upload to your TFTP server (or Publisher) that will be "downloaded" by your Jabber for Mac client and also used by the iPhone and iPad client. You can configure many options in the jabber-config.xml file, but for this example we will place just the information that we need to order for these clients to request and display Active Directory information.
Please note that the configuration may vary depending on your deployment, but at the very least we will be:
- Configuring a DC where we will perform the lookup.
- Configure credentials that will be used to perform the lookup. This will be an Active Directory account that has read rights on the Active Directory domain. Please note that these credentials are saved in plain text in the file, so ensure that the account that you will be using is not privileged.
- Configure the server port that we will be using to perform the lookup.
- Configure the Search Base. This is basically where we want the directory lookup to happen. You can either choose for this lookup to start at the "base" of the domain (and therefore the search will iterate through all the user accounts and and OUs below the root base) or define a specific OU where you want to search.
Caution!
- There is a current limitation with Cisco Jabber for Mac whereby you can only have 1 search base configured. Please keep this in mind if, like me, you have multiple OUs (like an OU for each company in your organization) and under these OUs you have sub OUs as a user account container.
- If using the top level search base, unless you specify a filter, you will potentially be able to search for all user accounts in the domain. You will need to configure the <BDIBaseFilter> parameter if you want to fine tune your search ability.
Steps
These are the steps I have followed. Other steps or considerations may vary.
- Log in to your TFTP server and download the jabber-config.xml file and keep it as a backup. If you are already using the jabber-config.xml file for other purposes, do not worry - you can add your BDI information parameters inside.
- Remove the jabber-config.xml file
- Edit the jabber-config.xml file and configure thus:
<?xml version="1.0" encoding="UTF-8"?>
<config version="1.0">
    <Directory>
        <DirectoryServerType>BDI</DirectoryServerType>
        <BDILDAPServerType>AD</BDILDAPServerType>
        <BDIPrimaryServerName>DOMAIN CONTROLLER IP ADDRESS</BDIPrimaryServerName>
        <BDIPresenceDomain>YOUR PRESENCE DOMAIN</BDIPresenceDomain>
        <BDIServerPort1>3268</BDIServerPort1>
        <BDISearchBase1>YOUR SEARCH BASE</BDISearchBase1>
        <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
        <BDIConnectionPassword>PASSWORD</BDIConnectionPassword>
        <BDIEnableTLS>0</BDIEnableTLS>
    </Directory>
</config>
For example, let´s assume the following:
- Domain controller IP address is 10.1.1.2 .
- Your presence domain is test.local .
- Your search base will be test.local using the top level of the domain.
- Your username with which you will be doing your searches is called walt . Usually you can either identify walt as test.local\walt or [email protected] . It is always best, in these sort of scenarios, to use the UPN convention so we will be configuring a [email protected] .
- The password is the Active Directory password for the account walt .
- I have disabled TLS in my case. There are issues with the Jabber for Mac client when using other security methods.
<?xml version="1.0" encoding="UTF-8"?>
<config version="1.0">
    <Directory>
        <DirectoryServerType>BDI</DirectoryServerType>
        <BDILDAPServerType>AD</BDILDAPServerType>
        <BDIPrimaryServerName>10.1.1.2</BDIPrimaryServerName>
        <BDIPresenceDomain>test.local</BDIPresenceDomain>
        <BDIServerPort1>3268</BDIServerPort1>
        <BDISearchBase1>DC=test,DC=local</BDISearchBase1>
        <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
        <BDIConnectionPassword>walt01!</BDIConnectionPassword>
        <BDIEnableTLS>0</BDIEnableTLS>
    </Directory>
</config>
One you have configured the jabber-config.xml file, you will now need to upload it to you TFTP server. Once uploaded, you will need to restart the Cisco TFTP service. Again, my TFTP server is on my CUCM publisher, so:
- I go to Cisco Unified OS Administration on my Publisher server, TFTP File Management and I upload jabber-config.xml to / directory
- I then go to Cisco Unified Serviceability on my Publisher server, I locate the Cisco TFTP service and I restart the service
Once this is done, you can figure up your Jabber for Mac client. As a test, on your Mac (using Terminal) go to:
/Users/username/Library/Application Support/Cisco/Unified Communications/Jabber/Config
In here you will see several files, but what we want to see is jabber-config.xml . As soon as you start the Jabber for Mac client and log in, the jabber-config.xml file will download from your TFTP server and get saved here. When you see it appear, just type in your terminal window more jabber-config.xml and make sure that the output is the same as the xml file you created.
From there, try doing directory search. If you have previously added contacts and they still lack attribute information, you will need to remove them (sometimes it will not refresh properly) and add them again from the directory.
I will be updating this guide and ammending anything that is incorrect, but this is meant to be a quick checklist and steps to get this, at least in the most very basic version, up and running for Jabber for Mac.

Hello, 
Thanks for this post! It works, I can do lookup and also I can add found contact to contact list and get information about contact from LDAP.
One more question: - I can't get all information about contact. I don't get e.c mobile phone number and more others attributes. I have tried to expand your file as follows:
<?xml version="1.0" encoding="UTF-8"?>
<config version="1.0">
    <Directory>
        <DirectoryServerType>BDI</DirectoryServerType>
        <BDILDAPServerType>AD</BDILDAPServerType>
        <BDIPrimaryServerName>IP of AD</BDIPrimaryServerName>
        <BDIPresenceDomain>Presence Domain</BDIPresenceDomain>
        <BDIServerPort1>3268</BDIServerPort1>
        <BDISearchBase1> Search Base</BDISearchBase1>
        <BDIConnectionUsername>User</BDIConnectionUsername>
        <BDIConnectionPassword>Password</BDIConnectionPassword>
        <BDIEnableTLS>0</BDIEnableTLS>
        <BDISipUri>msRTCSIP-PrimaryUserAddress</BDISipUri>
        <BDIPhotoSource>thumbnailPhoto</BDIPhotoSource>
        <BDIBusinessPhone>telephoneNumber</BDIBusinessPhone>
        <BDIMobilePhone>mobile</BDIMobilePhone>
        <BDIHomePhone>homePhone</BDIHomePhone>
        <BDIOtherPhone>otherTelephone</BDIOtherPhone>
        <BDITitle>title</BDITitle>
        <BDICompanyName>company</BDICompanyName>
        <BDILocation>co</BDILocation>
        <BDIPostalCode>postalCode</BDIPostalCode>
        <BDICity>l</BDICity>
        <BDIState>st</BDIState>
        <BDIStreetAddress>streetAddress</BDIStreetAddress>
    </Directory>
</config>
But it didn't help.
When I capture lookup via Wireshark, I can see that Jabbers sends search request with bunch of attributes, but from LDAP answer contains only 8 attributes. (see attached screenshots)

Similar Messages

  • Cisco jabber for mac over fortigate vpn problem

    Hi all,
    We have installed the cisco jabber for mac successfully.Jabber client able to register locally successfully.
    Calling and other features working properly. Jabber IM also working fine.
    But when we try over vpn its shows error."services are missing".All the ports are open on fortigate firewall.

    If you have detailed diagnostics from the Jabber Mac client, this would provide some more context to why it's displaying those errors.  (Help > Detailed Logging enabled) (Help > Report a problem)
    Another thing to check for would be DNS resolution of the configured servers when the Mac is VPN'd in.  If Jabber cannot resolve the DNS name, it will not know where to connect to.
    If the diagnostics are pointing towards a connectivity problem, but the firewall says it's wide open, then taking a packet capture on the Mac where Jabber is trying to register may illustrate what's going on at the network layer.

  • Cisco Jabber for Mac, possible without a Presence Server?

    Hi all,
    is it possible to use the cisco jabber client for Mac without a presence server in the uc environment? A customer is looking for Voip Client/Softphone for their Apple Macs. Instant Messaging is no requirement.
    Regards
    Steffen

    WIlliam,
    I belive he could use a Webex Connect account, IPSec VPN, and a CSF device in CUCM to achieve what he is looking for. Though it is a shame that he would need to have Webex Connect to do this just to be able to login to Jabber...
    FYI:
    I just tried out the CUP integration with Jabber for Mac with my customer with CUCM 8.6.2(a), CUCXN 8.6.2(a), and CUP 8.6.1 HA. It seemed to work ok (I was using VPN as well). For some reason the directory service said it failed yet I could search for people in the directory and it worked fine (strange...). I think this may be because the XCP Directory Service on both CUP servers will not start (not sure why because I do not seem to need it).
    My only complaint is that I originally had Jabber for Mac installed for Webex Connect integration. There appeared to me, that there was no way to re-run that original wizard (I looked all around in the package contents...) and select Cisco Presence instead of Webex Connect. To get around this I used AppCleaner to remove Jabber, re-download from Cisco, and re-install, this time selecting the Presence option. Once I tested I had to rinse-repeat to get my Webex Connect back because that is what we use internally. Hopefully they fix this because it makes it hard for us engineers to test Presence integration during installs.
    Opinion on Jabber with Webex Connect:
    I love it for creating Instant Meetings - It sends an email instantly to me that I can forward to attendee's right away (most of time not with contacts otherwise I would do it that way).
    I love the new iPhone app that was just released as well. Very cool. (Do not like how you cannot be logged into both though, not a big deal, Archives of chats are my biggest concern). It is a pretty seemless login/logout from iPhone to Mac and Mac to iPhone though, which I appreciate.
    I have no desire for Phone Services or Voicemail integration so it is annoying that it always says at the bottom of the buddy list "Server or port unreachable". I assume that you need to be connected to VPN in order to have connection to CUCM to use the CSF device... Jabber 8.6 Release Notes says that Jabber is not supported with NAT without VPN
    Also the Chat History is weak on Mac, and none existent on iPhone . Would be cool if history was built in like CUPC or Lync, doesn't require going to Finder to view, and messages would archive on server.
    Plus we use Exchange UM for our Voicemail so not sure how that would integrate with Webex Connect. I believe Exchange Voicemail in Jabber would work with Presence integration though (which is puzzling but I guess it is because you can do all of those XCP external integrations in CUP. However, don't get me started with CUP/Exchange calendar integration and CUP not supporting SAN certificates with multiple hostnames on Exchange...
    Thanks for the info on X-Lite and Bria, I may try out these options. I have been using CIPC through VMWare Fusion and it worked quite well. I believe I needed to install Virtual Audio Cable for the sound to work correctly. I use it through Fusion's "Unity" function and it looks like it is native!
    Just my 2 cents. Let me know what you think.
    One more thing (SJ):
    Check out this site for Mac Apps for Engineers:
    http://ciscovoiceguru.com/2071/mac-app-cisco/comment-page-1/#comment-2760
    Ryan

  • Cisco Jabber for Windows 10.5 search Contact with two lastnames

    Hey Guys,
    I have a little problem with the contact search feature of the cisco jabber for windows (Version 10.5.37889)
    In my environment I have some Users (secretary phones and users too) which have two lastnames.
    Exampleuser1: Firstname: Thomas Lastname: Meier Cisco ....
    If a user is searching for Exampleuser1 by lastname (Cisco) the correct contact won't be listed
    If a user is searching for Exampleuser1 by firstname (Thomas) the correct contact will be listed
    If a user is searching for Exampleuser1 by lastname (Meier) the correct contact will be listed
    is there a workaround or something else for resolving my problem?
    thanks for reading my question :)

    Workaround: "Cisco Meier, Thomas"
    Have you looked at enabling wild card searches in jabber-config.xml?

  • Cisco Jabber for windows directory issue

    Hello ,
    i have cucm 9x and cup 9.x ,
    Cisco jabber is showing directory but its all user from MS out look User not LDAP user and also user and on Jabber client connection window Directory is showing not connected .
    please advise .

    J4W does NOT use the directory info that you configure in CUCM as a UC service, it relies on the domain info from the machine you're logging in as default, or the config from the .xml file.
    If you cannot connect to the directory, make sure there's nothing blocking the communication, and that your configuration is correct.

  • Cisco Jabber for Windows in Extend and Connect mode and making outbound calls

    Hi guys,
    I've set up Cisco Jabber for Windows to use Extend and Connect to control a remote PBX endpoint. I've configured the required CTI-RD device, remote destinations, associated the users to the line and added the devices to end-user controlled device. The extend and connect part is working flawlessly without any issues. I'm able to receive inbound calls on the remote PBX endpoint and control the call (hold, resume, transfer etc.) using the Jabber call window that pops up.
    However, I'm unable to make any outbound calls via the Jabber client when in extend and Connect mode. Reading the Extend and Connect guide, I need to configure Dial Via Office (DVO) Reverse. So when the user initiates a Dial-Via-Office reverse call, CUCM calls and connect to the Extend and Connect device (CTI-RD). CUCM then calls and connects to the number the user dialled and finally connects the two call legs.
    After attempting to configure DVO-R for Jabber for Windows in Extend and Connect mode following the CUCM feature services guide, i'm unable to get any outbound calls working. From RTMT, i am receiving the following Termination Cause Code: (27) Destination out of order. What i also notice is that there is no calling number for that trace either. I would've thought that the calling party would've been the Enterprise Feature Access (EFA) number.
    Has anyone got this working or can provide some guidance?
    Thanks.

    Hi guys,
    I've set up Cisco Jabber for Windows to use Extend and Connect to control a remote PBX endpoint. I've configured the required CTI-RD device, remote destinations, associated the users to the line and added the devices to end-user controlled device. The extend and connect part is working flawlessly without any issues. I'm able to receive inbound calls on the remote PBX endpoint and control the call (hold, resume, transfer etc.) using the Jabber call window that pops up.
    However, I'm unable to make any outbound calls via the Jabber client when in extend and Connect mode. Reading the Extend and Connect guide, I need to configure Dial Via Office (DVO) Reverse. So when the user initiates a Dial-Via-Office reverse call, CUCM calls and connect to the Extend and Connect device (CTI-RD). CUCM then calls and connects to the number the user dialled and finally connects the two call legs.
    After attempting to configure DVO-R for Jabber for Windows in Extend and Connect mode following the CUCM feature services guide, i'm unable to get any outbound calls working. From RTMT, i am receiving the following Termination Cause Code: (27) Destination out of order. What i also notice is that there is no calling number for that trace either. I would've thought that the calling party would've been the Enterprise Feature Access (EFA) number.
    Has anyone got this working or can provide some guidance?
    Thanks.

  • Cisco Jabber for Mac 9.2.1: slow to register with CUCM

    Hi,
    We have this specific problem on our Jabber for Mac 9.2.1 client only: the client takes 60 to 70 seconds to connect to CUCM (running 8.6.2) when it starts.
    After Jabber registers with CUCM, there is no issue, it's just very slow to register.
    Anybody getting the same behaviour? We have no such issue on previous versions of Jabber for Mac version 8 or Jabber for Windows version 9.
    Thanks,
    Fabrice

    For those interested, I have the answer to my own question: if one of your configured DNS servers is not responding, Jabber 9.2.1 will delay registration to the phone services. This behaviour is seen only in this specifc version of Jabber, hopefully it will be fixed in the next release. Watch out if one of your DNS server goes offilne.
    Fabrice

  • HT3748 since upgrading to Mountain Lion, my Mac Mail no longer works well w/exchange email; so, I have had to switch back to outlook. Now, how can I use outlook for mac's calendar and contacts with icloud?

    Since uprgading to Mountain Lion, my mac mail no longer works with my exchange email properly. I finally gave up and moved back to outlook for mac, but now my new issue is using outlook calendar and contacts with icloud; possible?

    Sorry but I'm really not to sure what I have. I'm not good with knowing my computer model. All I know is that its a MacBook running with Leopard. I got my computer last year so I suppose its fairly new. Is there a place on my computer where I can check to see what it is (sorry to be so dumb with my own mac)
    And everything else works fine. I love Safari. It's just my mail that doesn't work. Here's the message that pop up several times.
    "The MobileMe IMAP server “mail.mac.com” rejected the password for user “akcastaldo”
    Please re-enter your password, or cancel."
    The only problem here is, even though I enter my password it doesn't do anything. It makes that message go away for about 3-5 mins. After that it pops right back up. And I can't even go into my preference and change my email password. So I don't know what to do.

  • Can I synch my Outlook for Mac 2011 calendars and contacts with my iPhone calendars and contacts?

    I have Outlook for Mac 2011 and also use OSx Mountain Lion on my iMac.  I want to synch my Calendar and Contacts from Outlook with my iOS devices (iPhone 5 and iPad).  How can I do this so I don't have two calendars and two contacts that don't sync with each other?

    if you don't have a online account that outlook is syncing the calendar with you can't sync it with anything else.
    Just because you enter a appointment, or something, in the outlook calendar that does not auto sync it with other devices unless you have it setup to sync the local, on computer, calendar with a online account of some type. That could be outlook.com or office365 or google or even apple icloud. Once you setup a online account of some type to sync the local calendar with then you can sync that account calendar with orher devices.
    This is what the other poster was trying to say but did not fully explain with the mention of icloud.
    StephenJHall wrote:
    I have Mountain Lion (10x) not Lion.  When I go to Sync Services in the Outlook preferences - there is no Calender there to link to.  Is this because MS no longer supports Mountain Lion?  Is there any other way to sync to iCal?

  • Cisco Jabber 9.2 -Directory Lookup-external phone book

    if a customer calls jabber user A  from their mobile, is it possible to see the name of the person who calls A?
    I have tried to add this customer's mobile phone number to AD, but it still doesn't show up the name.

    Have you configured the jabber-config.xml file?? That configuration you have is not for Jabber, if you haven't, review the configuration guide for details.
    Sent from Cisco Technical Support iPad App

  • Does Jabber for Mac 9.2.1 require jabber-xml.config?

    Hello,
    Does anybody know if new Jabber for Mac version 9.2.1 require a jabber-xml config file?
    Users with this new version are complaining that they can't search on the directory and that usernames are not showing correctly on the contact list (they just see the username@domain instead).
    Jabber for mac version 8.x works correctly as it has been doing for a while.
    Regards.

    Yes, the latest release along with the feature regression, requires the .xml file
    Global configuration files
    Global configuration files apply to all Cisco Jabber for Mac users. Cisco Jabber for Mac downloads the global configuration file from your TFTP server during the login sequence.
    The default name for the global configuration file is jabber-config.xml.
    http://www.cisco.com/en/US/partner/docs/voice_ip_comm/jabber/mac/9.2.1/JABM_BK_CB0ACEBC_00_cisco-jabber-for-mac-installation_chapter_010.html
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • Contacts search for cisco Jabber for Windows & MAC

    Hello,
    Please assist on given below query !!
    System Deatails of CUCM & IM Presence Server
    CUCM:
    1>  System version: 9.1.1.20000-5
    2>  VMware Installation: 2 vCPU Intel(R) Xeon(R) CPU X5650 @  2.67GHz, disk 1: 80Gbytes, 4096Mbytes RAM
    3> Physical Server UCS210 M2
    4>  Already Integrated with IM & Presence
    IM & Presence:
    1>  System version: 9.1.1.20000-5
    2>  VMware Installation: 1 vCPU Intel(R) Xeon(R) CPU X5650 @  2.67GHz, disk 1: 80Gbytes, 2048Mbytes RAM
    3> Physical Server UCS210 M2
    4>  Already Integrated with CUCM
    Requirement:
    1>  User Search base for Cisco Jabber for Windows & MAC Client
    2>  Will we able to get contacts list(Jabber For windows & MAC) as like "Lotus Sametimes" for all users?
    Every reply would highly Appreciated!!

    Hi Karthik,
    Thanks for your reply!
    I have gone through the link but query is different actually, please assist on below query and provide any document links if possible.
    1>  The contacts does not appear when I perform a search
    2>  Do I required to integrate LDAP for same? If Yes Then Do I need to perform integration with CUCM Or IM & Presence? Or Only CUCM? Or only IM & Presence? (Please post a link to perform same)
    3>  Please also provide If any specific system requirement for LDAP server.
    4>  Is it possible without LDAP integration?
    It is really urgent and every post would highly appreciate..........

  • What is BDI or BDS spelled out? Jabber for Mac 9.2(1) Installation and Configuration Guide

    I’m spending the day catching up on Jabber/IM&P release notes across the server/clients.
    So I’m used to EDI and UDS, but we have a new acronym in the Jabber for Mac 9.2(1) Installation and Configuration Guide called BDI and BDS. However they don’t define what BDI stands for other than BDI is LDAP for non-windows
    Clients and suggests it should be used for Jabber for Mac.
    What is BDI or BDS spelled out? Something directory integration, but what is the B ?
    Then to add to the mix they reference BDS which sounds like the old UDS (is UDS changing to BDS?)
    How can Jabber get any more confusing…
    I also noted in the  Jabber Video for iPad 9.3.4 release notes that Apple is removing the Always Connect option in the near future. Manually launching Cisco AnyConnect Secure Mobility Client before making a call. This is going to upset some customers who like how Lync uses https and just works from anywhere with enhanced directory integration…

    Basic Directory Integration. It's not new, we had it in the Windows clients as far back as CUPC. The distinction got introduced when EDI was introduced, relying on Windows ADSI APIs instead of the client making a native LDAP bind.
    To my knowledge BDI/BDS are the same thing; I'm guessing S is 'service'. UDS remains unchanged.
    I also noted in the  Jabber Video for iPad 9.3.4 release notes that Apple is removing the Always Connect option in the near future.
    Well, they lost a patent infringement lawsuit and chose to change the functionality instead of pay the troll. That's not Jabber's fault. Collaboration Edge will be the way to avoid this in the near future.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • BE 3000 with Jabber (for Mac) and webex connect integration problems

    Hi,
    This is my first question on the forum so please be gentle!
    I have a customer who has a Business Edition 3000 and they have purchased WebEx connect and Jabber integration to go with it.
    My problem is I am having difficulty getting the setup to work and I have a number of questions on how to set this up.  Most of the docs on Cisco's website seem to be related to either CUCME or full CUCM, but not a lot on BE 3000.  My questions are below:
    1.  I have been reading the documentation for WebEx connect and it states to set the IP address of the BE 3000 server in the Configuration>Additional Services>Unified Communications>Voicemail tab.  This is currently on the network with a 192.168.x.x address however.  My predecessor put this IP address in the WebEx configuration page but I'm not sure this will work with a private IP as I don't know how this communicates back.  The documentation isn't very clear on this.  Does this have to be a public IP address / FQDN for it to work?
    2.  Are there any SRNDs for this type of setup that could help?  Again, looking through the website hasn't turned anything up yet.
    Note: 
    we are using the following software:
    Jabber for MAC:
    uc-client-mac-8.6.7.20127.fcs.zip
    MAC OS:
    OSX 10.8.3
    BE 3000:
    MCS7890C1-BE8
    8.6.4.10000-15.
    Thanks in advance for any help.
    Regards,
    Jason

    Hi - I have done this via the admin portal but still cannot get the Jabber client for Mac to register for voice.  The Windows version works fine for the same user and CUCM device.   Are there any other settings that need to be enabled specific to the Mac client?
    Thanks.

  • Configure Jabber for Mac with local CUCM and WebEx Connect

    Hi, I was wondering if anyone has been able to configure the Jabber for Mac 8.6.2 client to use the WebEx Connect presence server with a local CUCM and Unity Connection servers. The preferences accounts tab does not show or allow the addition of the voice services. I have added from a working local CUCM preferences plist file what I believe are the correct entries however I still cannot see the accounts on the preferences tab. We currently do not have a local cisco presence server hence the requirement to trial the WebEx Connect server as I can't get past the first configuration step without it.
    regards
        paul

    Hi - I have done this via the admin portal but still cannot get the Jabber client for Mac to register for voice.  The Windows version works fine for the same user and CUCM device.   Are there any other settings that need to be enabled specific to the Mac client?
    Thanks.

Maybe you are looking for

  • Cannot see the Airplay icon on my iphone 5

    Hi all, want to see if anyone have similar case on my iphone 5. I want to use my bluetooth headset (BOSE) to listen songs and podcast. However, although my bluetooth headset is connected and no problem when talking to the phone, it could not use to l

  • RGB Only Prints in Black and White

    My Illustrator CS3 seems to have developed a strange problem.  If I create a new RGB based document, a 'Web Document' or a 'Basic RGB Document' for example, and the print it, I only get a black and white print.  If I create a CMYK based document it p

  • My "submit" button is not working?

    Hello I have created my submit button in Dreamweaver using a form. However what I would like to do is have people enter their email address and with the submit button it would be sent to my gmail account. I went to my actions tab for my form and subm

  • Error When Changing Modules

    Hey, all. I just got Lightroom 5.3 for my Macbook Pro and have been attempting to use it for the past several days, but regardless of what I try nothing works -- I have spent several hours on the Adobe troubleshooting website going through every proc

  • WHAT'S THE DEAL I NEEDS MY MACBOOK

    Hey...when I boot up my Mac it turns on, I get the start up sound and then it'll stay on the grey screen for a bit before a folder icon with a question mark in the middle starts flashing in the center of my screen. Does anyone know what this is? WHAT