Telephone directory of TMS export

Hello world

We have a server TMS configured and running, with several pounds of phone manual list.

Now, I am deploying a new TMS and configuring everything from scratch (do not use existing databases), including telephone directories.

I have re-created small manuals phone books, but I have several large (100 + contacts) and it would have took me ages to manually recreate the institutions.

So, is it possible to export or copy the directories created manually 'old' TMS to the new?

Thank you

Petar

You can export directories to a file, see the section "Export Contacts to a file" in the pg 203 15.3 TMS Administrator's Guide .

It is also requested several times in the forums on how to export contacts from the phone book:

TMS-export-directory-question

How-Add-Excel-file-Address-Book-TMS

How-can-i-Export-TMS-phonebooks

Tags: Cisco Support

Similar Questions

  • Design of the telephone directory of TMS

    SALVATION of Netpro

    I have a VCS - C AND TMS located within a DMZ. The VCS-E is on the public internet.

    All internal clients are saved on the SCV - C and pull the telephone directories of TMS - OK.

    I would like to publish directories TMS to devices that are registered with the VCS-E

    Our compnay is a global organization and we have external companies with the internet only C20 end points which are registered in our E-VCS.

    My goal is this - I would like to have a global directory that all systems have access to via registration VCS /TMS

    Is the only way to achieve this goal to create two TMS servers who ask the same PB? A single server TMS on the DMZ with a NAT translation on a public address and a TMS server inside the network to all WAN / LAN clients?

    Or y at - it another way to reach my goal?

    Thank you

    Stem

    Well, the directory is transferred using http, which means that endpoint must join the tms on http or https in order to get it. An alternative would be to open port 80 or 443 so that MSDS are available on the public internet, which is what you eventually to do. If you use a double tms pointing to the same database where a single server is public you anyway compromising server tms to the public internet from the info you get would be the same no matter which tms server you connect to because of the shared db. The c20s must be added in tms as well (but not accessible by the MSDS if it is a system of soho) in order to obtain the authorization to access the directories that you set on the system. But there is no need to be very complex, as long as the endpoints can reach the tms of the internet server.

    / Magnus

    Sent by Cisco Support technique iPhone App

  • Question from TMS Export Directory

    Hi all

    I'm working on version 14.5 MSDS and I would like to export my file system directory, so I followed the section 'Contacts to export to a file' described in Cisco TMS Admin Guide 14.5:

    1 create a phone book.

    2. click on connect to this directory.
    3. Select the sources you want to export the contacts since then.
    4. for the Type of update for these sources, select Import to Cisco TMS or import to Cisco TMS and the source directory export.
    5. now select the base directory file source that you want to export.
    6. to update for this source Type, select Import to Cisco TMS and export toward the Source of the telephone directories.

    The problem is when the option choffeur to step 6, I found that I could not find 'Import to Cisco TMS and ExportSource telephone directories', only 'Import of TMS' or 'search only '? I don't know if it is to export the file and where can I find?

    As an attachment, you can find a screenshot.

    Thanks for your help.

    Sofiane

    Hi sofiane__

    I must say that it is more idiosyncratic and intuitive things I've met in a long time, although once you get your head around it, you can see the logic of programmers (although they could have made it real simple).

    You must have a SOURCE directory, which is a 'phonebook database file', then you must select that as the source within you, phone book and the value 'import and export '. All other sources of the telephone directory are defined to import into this directory...

    The exported CSV file will then appear on the MSDS Server (somewhere like "C:\Program Files (x 86) \TANDBERG\TMS\wwwTMS\data\ExternalSourceFiles") and is not the same has the file you may have used to configure the directory file-based in the first place.

    Hope this helps

    See you soon

    Chris

  • Contact TMS still appear in the telephone directory

    Hello. I have a contact who no longer exists. I deleted it from our phone book yesterday.  If I connect to Jabber, it shows again, if I use a codec, it does not work.  Am I missing something or is this just a cache problem and may eventually disappear?

    Hi Rhonda,

    I think it might take in history, could you try to erase history and check if that deal with this issue.

  • TMS - export the settings of extended endpoints?

    Hello

    I'm trying to locate two of the following parameters in the TMS and find a way to export for TC series devices.  Unfortunately, I can't find this option in view of the system.

    XStatus systemunit productid
    camera model 1 XStatus

    I have nearly 100 end points I want to check this setting on because of the EOS/EOL, and it would be a lot of time if I had to manually go into the settings of each unit extended in navigation system.

    We run 14.6 TMS and I don't see this option in MSD 15.1 - so far, I think it is not a way to do it through TMS and it might be be done via the script.  Has anyone else found a way to do this?

    You can gather the product information for the codec using TMS, under systems > overview of the system.  In the right column, select the option 'Specific Type Description of the system' under general settings.

    The only way to gather information specific to camera are either view extended settings of each managed TMS endpoint, or connect you to each endpoint manually via its web interface or SSH.

  • Telephone directory

    I managed to get the index of NAME_FAMILY and NAME_GIVEN by searching for a specific number.

    Now I can't figure out how to get these names.

    An example. is even more confused:

    BlackBerryContactList list = (BlackBerryContactList)PIM.getInstance().
    
        openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE);
    
    Contact contact = list.choose
    
        (null, BlackBerryContactList.AddressTypes.EMAIL, false);
    
    if (contact != null)
    
    {
    
      String email = contact.getString(Contact.EMAIL, 0);
    
      System.out.println("Name is: " + email);
    
    }
    
    Does this give the email or the name back??  II want to get the family and given name back
    

    Here is a code that exports a contact as a string - maybe this will help.

        public String getAsString()
        {
    
            StringBuffer text = new StringBuffer();
    
            // contact name
            if (isFieldPresent(Contact.NAME)){
                text.append(m_pimList.getFieldLabel(Contact.NAME));
                text.append(": ");
                String[] names = m_pimItem.getStringArray(Contact.NAME,0);
                String prefix = names[BlackBerryContact.NAME_PREFIX];
                String first = names[BlackBerryContact.NAME_GIVEN];
                String last = names[BlackBerryContact.NAME_FAMILY];
                if (prefix != null)
                    text.append(prefix + " ");
                if (first != null)
                    text.append(first + " ");
                if (last != null)
                    text.append(last);
                text.append("\n");
            }
    
            // title/position
            if (isFieldPresent(Contact.TITLE)){
                text.append(m_pimList.getFieldLabel(Contact.TITLE));
                text.append(": ");
                text.append(m_pimItem.getString(Contact.TITLE,0));
                text.append("\n");
            }
    
            // add company info (if present)
            if (isFieldPresent(Contact.ORG)){
                text.append(m_pimList.getFieldLabel(Contact.ORG));
                text.append(": ");
                text.append(m_pimItem.getString(Contact.ORG,0));
                text.append("\n");
            }
    
            // get URL associated with this contact
            if (isFieldPresent(Contact.URL)){
                text.append(m_pimList.getFieldLabel(Contact.URL));
                text.append(m_pimItem.getString(Contact.URL,0));
                text.append("\n");
            }
    
            // add all email addresses
            if (isFieldPresent(Contact.EMAIL)){
                String label = m_pimList.getFieldLabel(Contact.EMAIL) + ": ";
                int count = m_pimItem.countValues(Contact.EMAIL);
                for (int i = 0; i < count; i++){
                    String email = m_pimItem.getString(Contact.EMAIL,i);
                    text.append(label);
                    text.append(email);
                    text.append("\n");
                }
            }
    
            // add all telephone numbers
            if (isFieldPresent(Contact.TEL)){
                int count = m_pimItem.countValues(Contact.TEL);
                for (int i = 0; i < count; i++){
                    int attr = m_pimItem.getAttributes(Contact.TEL,i);
                    text.append(m_pimList.getAttributeLabel(attr));
                    text.append(": ");
                    text.append(m_pimItem.getString(Contact.TEL,i));
                    text.append("\n");
                }
            }
    
            // get address info
            if (isFieldPresent(Contact.ADDR)){
    
                // may have multiple address arrays
                int count = m_pimItem.countValues(Contact.ADDR);
                for (int i = 0; i < count; i++){
                    int attr = m_pimItem.getAttributes(Contact.ADDR,i);
                    text.append(m_pimList.getAttributeLabel(attr));
                    text.append(":\n");
                    // now get the address array for this type of address
                    String[] address = m_pimItem.getStringArray(Contact.ADDR,i);
                    // iterate through all address elements
                    for (int j = 0; j < address.length; j++){
                        if (address[j] != null){
                            text.append(" ");
                            text.append(m_pimList.getArrayElementLabel(Contact.ADDR,j));
                            text.append(": ");
                            text.append(address[j]);
                            text.append("\n");
                        }
                    }
                }
    
            }
    
            // get user fields
            if (isFieldPresent(BlackBerryContact.USER1)){
                text.append(m_pimList.getFieldLabel(BlackBerryContact.USER1));
                text.append(": ");
                text.append(m_pimItem.getString(BlackBerryContact.USER1,0));
                text.append("\n");
            }
            if (isFieldPresent(BlackBerryContact.USER2)){
                text.append(m_pimList.getFieldLabel(BlackBerryContact.USER2));
                text.append(": ");
                text.append(m_pimItem.getString(BlackBerryContact.USER2,0));
                text.append("\n");
            }
            if (isFieldPresent(BlackBerryContact.USER3)){
                text.append(m_pimList.getFieldLabel(BlackBerryContact.USER3));
                text.append(": ");
                text.append(m_pimItem.getString(BlackBerryContact.USER3,0));
                text.append("\n");
            }
            if (isFieldPresent(BlackBerryContact.USER4)){
                text.append(m_pimList.getFieldLabel(BlackBerryContact.USER4));
                text.append(": ");
                text.append(m_pimItem.getString(BlackBerryContact.USER4,0));
                text.append("\n");
            }
    
            // get notes field
            if (isFieldPresent(Contact.NOTE)){
                text.append(m_pimList.getFieldLabel(Contact.NOTE));
                text.append(": ");
                text.append(m_pimItem.getString(Contact.NOTE,0));
                text.append("\n");
            }
    
            return text.toString();
        }
    
  • Problem with directory of TMS to Jabber Video distribution

    Hello

    Recently, I have a problem with the configuration of the directories for video Jabber clients. Looked through a few topics that seem related but found them a little different.

    In short: TMS 13.2 configured Extension commissioning and off FindMe, VCS Expressway 7.2, Cisco Jabber client video v4.5.

    Steps performed:

    1. a new user has been created (inside Provisioning > users) with [email protected] / * / and Device_Address_Pattern =

    [email protected] / * /.

    2. this user got automatically in the Provisioning directory (which already had a few other contacts inside)

    3. I have connected the video Jabber client with the new account, but can not find all the users via the search field within the customer (TMS illustrates usage of licenses) put into service.

    It is easy to manually assign phone book on a device by using the function 'Set on systems. But what do I do to get his Jabber Client video inputs?

    Thanks in advance!

    Hi Alex

    In the management of directories if you click on a directory there are Access tab control that allows you to assign access to directories for users.

    Then you must make sure that you the directory server URI in the configuration of the user model commissioning as [email protected] / * / .

    Make sure then that the TMS and the VCS is synchronized, you should now be able to search for directories if everything is correct.

    / Magnus

  • Directory of TMS on the endpoints registered CUCM TC

    Since 14.4.0 TMS version, it is possible get endpoint CUCM registered directory server to point to the TMS directory instead of the CUCM directory.

    I tried to set up, but I still can't get it to work.

    On the endpoint of TC (version TC7.1.3), in Configuration > System Configuration > Server from the phonebook,

    I set the server type MSD and the URL as http://TMSserverFQDN/tms/public/external/phonebook/phonebookservice.asmx

    When I SSH to the endpoint TC I ping the TMS serverFQDN so DNS resolution on the endpoint is apparently works.

    When I open this URL in my browser, I get a page called "PhoneBookService" with GetPhonebooks links, ResolveSystem and research

    But on the preview endpoint it works everything simply. This shows just "no directory.

    How can I solve this problem?

    A few quick questions that jump to mind are:

    1. Endpoints defined in TMS?
    2. A TMS directory is published at the endpiont in MSDS?
    3. The directory TMS has a source valid and entered in it?

    Wayne
    --
    Remember the frequency responses and mark your question as answered as appropriate

  • Problem of update of the directory between TMS &amp; Polycom (HDX, VSX)

    Hello

    We have deployed MSDS and other cisco devices in a business.

    The company already has several devices of Polycom (HDX (3.0.5), VSX (8.5.3)) and we connected those to TMS (14.3.1) for the Organization of directories.

    Everything looks very well, we were able to see the directories of TMS on Polycome devices

    However, the question comes out when we update the directory.

    Any change of MSDS, these devices of ploycom updated their own changes meaning TMS and devices of polycom is interoperability.

    But when it comes to avian (GDS) directory, we find no changes to this directory, even its own changes.

    And these changes are correctly updated for Cisco devices.

    For example,.

    We have 1 HDX, 1VSX, 1 SX20 and MSDS.

    We changed the names of these three system with TMS.

    You could see the name changed in the information system on all devices category. (Even devices polycom names have been changed in this category)

    But if I go to GDS (Global Directory) in Polycome devices, there is no change. It comes even as before. (Even the name change itself)

    I want to ask:

    (1) why this has happened?

    (2) what can I do to fix this?

    Reference the following default:

    CSCuj42053

  • Directory of invalid export for the recognition of forms WebCenter

    Hello

    I use Oracle WebCenter forms recognition 11.1.1.8.0 that are installed on Windows server 2008 R2 and whose content WebCenter in Solaris Machine.

    Here, in the Instance of RTS, I'm trying to set the InputAgent path of solaris Machine folder that is accessible from the Server Machine window but I get the directory export not valid error please suggest me what I can solve this problem.

    InvalidExportDirectoryIssue.jpg

    Thanks in advance.

    Hi Roger,

    Solved the problem by creating the same smbusers in window Machine to start the Service Manager of Service of Runtime recognition of forms WebCenter.

    Means that both users should be same which is access the \\IPMServer\InputAgent folder and the recognition forms starting WebCenter Runtime Service Manager Service.

    Thank you

  • Assets in the root directory of the export?

    Why we cannot export assets in the root directory? Why we need the name of the directory? We would like to have the option to export without using subdirectories. When clear us the field for the path, we get error. We would like all files: html, js, images, and sounds in a same Directory and because we need to change after export manually paths in html and js.

    Try to set the path to be. / instead of vacuum.

  • Portege R500 - Mobilink error 624 "telephone directory could not be updated.

    Toshiba R500, Windows XP Portegee

    MobiLink has worked very well for 1 year. Suddenly, I get the error code 624 after trying to connect. Using the results to help in the information button, that there should be a file Rasphone.pbk in the Systemroot\System32\Ras directory. But there is no file. On the other hand, why do I need a directory to connect to internet using a SIM card?

    What can I do? I need mobile Internet and for this reason, I bought the expensive R500!

    Thanks for any help!

    Hello

    How about resettlement of Mobilink?
    On the European driver Toshiba page, you can find the Novatel MobiLink for Win XP and Vista.

    In my opinion, you should check this out!

    Welcome them

  • Directory of the exported files

    Hello

    I use the 10 database,

    I export my database, but I don't know where to find the export files?

    I use this command to export the database

    exp scott/tiger

    It will be the place where, in the command prompt, you wrote this command. "exp scott/tiger".

    the default name of this file will be "EXPDAT. DMP"If you have not given any name when running.

  • Images of Smartphones Facebook blackBerry imported in the telephone directory

    My wife had just lost his Blackberry Curve 8330.  We replaced with the same model.  I ran my laptop system restore, and it added all of his contacts, etc.  Now his photos to his contacts are the images that the person has posted on Facebook! There even their status message beside him.  -What happened?  I wouldn't mind doing the same thing on my phone because it adds a photo for a large number of people without having to store this image on your memory card.  Anyone know?

    Brandon, what you have is Facebook 1.5 - the new addition. It syncs with your address book and whatever the image is displayed on your friends facebook profile will appear in your address book.  Its kind of neat! You also get their facebook info in your address book

    Have a wonderful day and welcme on the forums!

  • GSM numbers in the TMS directory

    Hello

    I have AD facility as a source of the telephone directory in TMS for video settings. I'm having a problem where the GSM numbers for users on endpoints TP are appearing as H320 and so the calls fail. I have a VCS/TMS connected to CUCM and want to route mobile calls to CUCM and then get out. Is this possible.

    Thank you!

    Then I was watching your definitions of zone again.

    • TMS needs to know that the endpoint can make H.323/SIP
    • The permissions for the system in the browser from should not be the call blocking options (settings down to change the planning parameters)
    • The endpoint must be associated with a zone of intellectual property with a defined gateway prefix
    • The area of intellectual property must be associated with a correctly configured ISDN zone
    • Route of the directories = yes

    If all this is in place, TMS will be able to deliver to an end point unique h323 call entered ISDN or telephone through the gateway prefixes defined in the area.

    If the entries are not displayed, TMS does not believe he can do a call from the bridge... the lack of supported protocols or failure of registration status.

    You can test this by creating a simple dummy directory with just the vocal entries in it.  Then associate this directory to your endpoint.  If it's an MXP, you can use the web interface of the endpoint to display the directory of the business directory provided by TMS.

    If you can not make it work again, I'd recommend appellant TAC where they can walk through your configuration with you.

Maybe you are looking for