Caller ID of VCS Jabber Video on SIP Trunk on the phone

Hello, Netpros.

I am trying to find a way to show a caller E.164 ID when a call to a video client Jabber a UCM or a PSTN phone.

VCSC/E 7.1; 13.2 TMS, configured TMSPE.

We have a VCSC > SIP Trunk > UCM (8,6) > H.323 GW w / PRI voice configured for the composition of and the PSTN destination.  We do this, so the Jabber client video can be used as a softphone, and so we can have transparent FindMe to voice and SNR to the video in either sense.  In TMS, we have a model of implementation configured with an address of the video, ILA and unit address.  He pulls ad office phone number for video of Jabber users.

From what I read here:

http://www.cisco.com/en/US/docs/telepresence/infrastructure/vcs/config_guide/Cisco_VCS_FindMe_Express_Deployment_Guide_X7-1.pdf, we should be able to see the caller ID when you call send out an ISDN GW.

«This section describes how to use FindMe with calls are routed through an ISDN gateway (for example, when you call a mobile phone, or any other destination accessible ISDN).» If VCS has Caller ID (Applications > FindMe > Configuration) defined to use the ID FindMe, the identification of the appellant presented will be the user E.164 phone number. »

UCM SIP config is vanilla, by

ttp: / /www.tandberg.com/collateral/documentation/Deployment_Guides/Cisco_VCS_Ci...

However, when a video call Jabber is directed to a University Complutense of MADRID registered phone, we get "unknown caller".  When to call us directly to the PSTN, we see that the BTN from the PRI.

What is strange, is that if we call another client of Jabber of VCS (with all the same problems), directly into a phone UCM via Internet on URI (for example [email protected] / * /) through the VCSE, we see the caller ID name.

Thank you, all!

Joshua

Hi Joshua,.

At present the VCS will only send caller E.164 id to a GW of H.323 ISDN, which is registered for VCS.

There a feature request in the order book to define if E.164 Caller ID or name/Video address on a per-zone basis. This will also be sove the question when the call is to go on a SIP connection, as in this case, a remote ISDN GW.

Thank you

Guy

Tags: Cisco Support

Similar Questions

  • I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    I a s 6 more and when using the phone, if my face touches the screen it clicks on the logout button and the phone hangs up the call. Is it possible to prevent this without holding the phone away from my face when calling?

    iPhones have a proximity sensor which is supposed to automatically turn off the screen when you hold it in your face. If this is not the case you can take the phone and have it checked.

  • photos, videos and music available in the phone but...

    photos, videos and music available in the phone but not visible to play music and gallary motorola any idea about that?

    What real happen?

    all the data available in the ES Explorer

    These step I tried yesterday actully I stared

    I just connect to my lappy and update the data up to now I can't all visible music playing music and photo and video gallery

  • CUCM v8.5 with 3 SIP Trunks to the Lync Server - Route algorithm of Distribution for the Group

    I CUCM connected to three different Lync server via 3 different SIP trunks.

    RG is composed of the following elements:

    LYNC SIP TRUNK 1 (1.1.1.1)

    LYNC SIP TRUNK 2 (2.2.2.2)

    LYNC SIP TRUNK 3 (3.3.3.3)

    The route group was built with "Top Down" the algorithm of distribution. The first SIP trunk knows congestion and some calls are never routed to secondary and tertiary SIP trunks.

    Based on all the forum posts I've seen - it seems that I have to configure the algorithm of group distribution of ranges as 'circular '.

    If I change the algorithm group of "Circular" lines - can I expect the following results:

    1. first call will go through LYNC SIP TRUNK 1

    2. second call will cross LYNC SIP TRUNK 2

    3. third call will cross LYNC SIP TRUNK 3

    When I change the algorithm of distribution of the route to the 'circular' group and click 'SAVE', I am invited on "RESET".  This service assigns to the existing calls through SIP Trunks?

    TIA,

    Amir

    Hello

    the circular algorithm will work the way you mentioned, but I suggest to try and make sure that is not perform integration

    to reset the SIP trunk actually active calls should not be made because the gose media directly between endpoint unles syou use something like trust rely wher evous enforce calls to go to the SIP

    Therefore, in most cases is should be fine just try configuration at the time of the calls will face service disruption

    hope this helps

  • ApplicationMenuItem called with null in JDE 4.6 when you enter the phone number

    When I install a custom phone app, ApplicationMenuItem and

    try to enter a number on the keypad of the native Dialer, and then click the custom menu,

    my custom ApplicationMenuItem is called with a null context object.

    This same code + test case works well under the 4.5 JDE / 8300 emulator

    and device 8320, but fails under JDE 4.6 with the BB 9000 emulator

    and device

    To reproduce the bug:

    * Build/launch of the attached test application

    * Send with previous key

    * Go to the native Dialer

    * Enter "123" on the keyboard of the phone

    * Click on the trackball

    * Choose Bug49 the context menu

    * It will appear a dialog box indicating "context has the null value - is this a bug?

    NOTE that if, rather than enter a number on the keypad of the phone with step 4.

    a call log is selected, then it works and a non-null context object is passed.

    Can I make it work?  If this is a known bug, are

    It no work around?

    import net.rim.blackberry.api.menuitem.ApplicationMenuItem;import net.rim.blackberry.api.menuitem.ApplicationMenuItemRepository;import net.rim.device.api.ui.UiApplication;import net.rim.device.api.ui.component.Dialog;import net.rim.device.api.ui.component.LabelField;import net.rim.device.api.ui.component.RichTextField;import net.rim.device.api.ui.container.MainScreen;
    
    public class Bug49 extends UiApplication { public Bug49()    {     super();      Bug49Screen screen = new Bug49Screen();       pushScreen(screen);       ApplicationMenuItemRepository amir = ApplicationMenuItemRepository.getInstance();     Bug49NativeMenu bug49NativeMenu = new Bug49NativeMenu(0);     amir.addMenuItem(ApplicationMenuItemRepository.MENUITEM_PHONE, bug49NativeMenu ); }
    
      public static void main(String[] args) {      Bug49 b49 = new Bug49();      b49.enterEventDispatcher();   }
    
       static class Bug49Screen extends MainScreen {     public Bug49Screen() {            super();          setTitle(new LabelField("Hello"));            add(new RichTextField("Hello"));      } }
    
      static class Bug49NativeMenu extends ApplicationMenuItem  {     public Bug49NativeMenu(int order) {           super(order);     }     public Object run(Object context) {           if (context == null) {                Dialog.alert("context is null -- is this a bug?");            }         else {                Dialog.alert("context not null");         }         return null;      }     public String toString() {            return "Bug 49";      } }}
    

    It is a problem in the version of BlackBerry device software 4.6.0.  It has been fixed in version 4.7.0.

  • Routing of calls free of charge on CUCM on SIP trunk

    Can @Mohammed al Baqari bro you help me with this one?

    There are a few possibilities here...

    Most toll-free numbers play a kind of announcement until the call is connected. It is possible that your provider should PRACK lying and that you also enable PRACK on CUCM. To do this, your provider must send 183 with SDP and request indicate BOF PRACK

    So contact your provider and explain the situation to them and know what is happening.

  • VCS SIP Trunk

    Hi all

    Is it possible to register a VCS as a SIP endpoint?  I want to be able to do the voice only calls destined for the PSTN to VCS by registering the VCS as a SIP proxy endpoint.

    Thank you

    AA

    Hi AA!

    If you look more closely the mechanisms used in venture capital, the required functionality

    is somehow already implemented with the OCS-Rleay and X 7 the B2BUA OCS.

    (who actually sign up on the OCS/Lync server).

    So in theory, it could be an application feature and some future versions now.

    But currently, I don't see that this is possible without an external host playing the role of SIP - UA.

    your registration to your proxy sip and offering VCS cases as a SIP trunk.

    Most of the Services SIP / PSTN GW also has the capablity to implement to your

    IP/domain of VCS, his less interesting to know.

    Please vote the answers and check them in as solved if they are.

  • Unplug the headphones of Walkman app silenced all functions of the phone except for incoming calls

    I found a bug that caused the alarm become silent. I am able to reproduce consistently and ahd a firend with a different Xperia V confirm.

    I use using a Sony build 4.1 version (. 490) with ADWLauncher (but my friend was also able to reproduce this with regular Sony Launcher, also on the 4.1 build)

    to reproduce:

    (1) check base case: all applications closed, adjust the volume to maximum using rocking of the volume on the side of the phone. to release the keys, you should hear a tone giving you the current volume

    It also means that the sound works

    (2) plug in headphones

    (3) open app Walkman and listen to a song

    (4) once the track has begun and you can hear in the headphones, unplug the earphones

    track must stop (correct behavior)

    5) press "Home" to return to the home screen

    (6) repeat step (1)... sound is now DISABLED, autour and shows volume knob slides it is not cut, but when I release the button it does not play the sound

    critical, it also cuts the alarm

    (so if you want that the game alarm for 2 minutes in the future before the departure the sequence above, when it fires it is silent after steps 1 through 6 have been made)

    some things that eliminate the effect once it arrives in this State buggy: If you receive a phone call, then he makes it sound and after the call, his resume (no matter what you did with the call - ignore, answer etc, all that is needed is for the phone to ring)

    also sometimes re - insert and remove the earphones also restores sound

    phone is fully updated from the Google store set to have the latest versinos of applications

    I tested this same sequence using other music apps (of rocket, Google Reader Play Music) and the phone has NOT lost his after step (4) and everythnig functioned normally.

    This bug seems to be isolated to the sony Walkman android app.

    I quite like the walkman for sony hopy app can look at this and fix it with an update of the application itself - as all other music apps I tested are causing not easy

    I do not know if this was presented in a recent version of Walkman or the 4.1 update... Maybe someone could test on a pre-version 4.1 phone to see if it still happens

    the recent firmware 9.1.A.1.140 seems to fix this problem. was not able to reproduce once I have updated.

    Thanks sony!

  • is it possible, end point of video recorded in CUCM call standalon SX10 via SIP Trunk?

    Dear all,

    Need help :)

    1.

    is it possible, end point of video recorded in CUCM call standalon SX10 via SIP Trunk?

    my customers will not buy TP - lic :)

    Topology:

    8900 (jabber) - CUCM-(SIP) - SX10

    2.

    Customer, have MCU machine.

    If not possible. is it possible, meeting point of MCU use?

    Topology:

    8900 (jabber) - CUCM - MCU - SX10

    1. Yes, but it is not that simple and straightforward that the SX10 can be reached by calling is the public IP address and CUCM does not support the IP address numbering is not a SIP address format...

    2. Yes, using the MCU would be much simpler, easier and, in my opinion, a better solution to be implemented. Here is an example of how a stand-alone SX10 could dial the IP address of the MCU standard automatic.

    You can also assign a SIP URI address to the meeting point which the SX10 can connect to.

    /Jens

    Please note the answers and score the questions as "answered" as appropriate.

  • Problem with a SIP Trunk between VCS and CUCM

    Hello world

    I created a SIP Trunk between control VCS (X7.1) and a CUCM 8.6.

    I followed this Cisco_VCS_Cisco_Unified_Communications_Manager_Deployment_Guide_CUCM_6-1_7_8_and_X7 - 0.pdf deployment guide.

    The trunk is in place, but I have the following problem: I can ring since an EX90 recorded on the VCS for a registered on the CUCM 9951 but when I take the call, I have a busy signals (audio and video). When I on the EX90 9951 ring, I have the following message on VC: can not reach the contact.

    I have a 503 service unavailable status on the call history and "call rejected" on the event log.

    My transformation is OK and the call is sent to my neighbor CUCM zone

    You have an idea to solve this problem?

    Thanks for your help

    Best regards

    Bruno Z.

    Hello

    Yes, it's true! It seems at first glance a problem with codec negotiation when I see the reason 47 code.

    in any case set the region to G.711 trunk phone in case if you have different device pool and the trunk region and ip-phones.

    make G.711 end to end and test again.

    Thank you

    Alok

  • Integration of Active Directory with telepresence - Jabber video

    Hello

    I would like to have a clarification on the integration of commercials with the existing infrastructure of TP.

    We have A VCS - C 8.x, VCS-E 7.2.2 14.3 TMS with TMSPE.

    We need to have our video Jabber users using their accounts and authentication of the user accounts existing on AD. All the other codecs authentication will be local VCS - c.

    Where can I configure the integration of ads?  The TMS only? VCS - C only? or both?

    Any document that clearly explain this configuration?

    Thank you.

    If you want to check the credentials on the control and Jabber clients video to send their requests for authentication to control VCS, where you have the setup of ADS, you must configure the default and traversal zones to check not the credentials on the highway.

    Regarding your comment on authentication to the highway, just to be clear, before the customer can actually create a record on the freeway, do you want to authenticate, meaning the subzone where they will register to check the credentials, if so, ADS a problem here.  As the video Jabber client will always use NTLM to send its credentials when ADS is used, the highway will be presented with the username/password user name field.  As the highway is not connected to the announcement of check these credentials, it will not allow recording.  Authentication of registration requests always happens on the local server, because that's where the record should be.

    Zac in the discussion below, covers this very well and how to get around it when using ADS and video recording Jabber to Hwy.

    Jabber-video-authentication-vcs-what

  • Cannot use video when Jabber is in command mode of fixed phone

    Scenario:

    The use of Jabber 9.2.1 to control a Cisco 7945.  I compose a Cisco SX20 by DN video unit, and call connect in audio mode only.

    Jabber usually allows for me to start the video after the call connects in audio mode only, but in this scenario, this option is not available.  If I change Jabber to use the device of the CSF, the video works perfectly.

    To do this, you need the MSI. Also make sure that the video is enabled on the phone (you will see a camera icon in the lower right).

    Please remember useful frequency responses and identify useful or correct answers.

  • Authentication Active Directory for Jabber video

    Hello

    I managed to configure my control of VCS to join my AD domain name, so now my video Jabber authenticate accounts with the credentials of the AD.  I downloaded certificates appropriate for VCS to make connecting to AD is encrypted TLS.

    I use the Provisioning Extensions on X7.2 and TMS 13.2.1.

    Before the addition of the VCS to the domain AD and passage to TMSPE, Movi accounts would authenticate on the (Agent of TMS) database on the VCS control, regardless of the authentication request came control VCS, or has been transferred from the highway of VCS.  Now Jabber clients trying to authenticate on the highway to VCS fail if the default Zone or subzone default are set to "verify the credentials.  If I change the settings of the area to be "treat as authenticated"... it works, but they are not actually be authenticated, since no matter what password is accepted.  Of course, this isn't a good idea.

    So my question is basically, what I'm missing?  Am I supposed to join the motorway VCS to AD as well?  Given the external location of the highway, it's a less-than-desirable solution; No there is no way to pass authentication to AD requests to the VCS control?

    I read 'Cisco_VCS_Authenticating_Devices_Deployment_Guide_X7-2' and the relevant sections of the Admin Guide VCS and I don't know if I'm missing it but I can't find information to lead me in the right direction here.

    Hi Anthony,.

    It is not necessary to join the motorway to listing! Highway should pass any authentication control and should be able to register without the need to join the domain.

    Ideally, requests authentication from the highway should be sent to the control and control put in question the user for credentials.

    for authentication of clients jabber by highway, you should put the area crossed the vcs control to check the credentials and on Highway information, keep the default zone do not check the credentials.

    Also check if you set the ADS services on the highway? If so, turn it off...

    Thank you

    Alok

  • Is Jabber Video for iPad EoL´d?

    I didn t has seen the announcement about the Jabber video for iPad has retired, but the app is more on the Apple Store.

    I can only find the new 10.5 Jabber, but this one Don t allows to register for the VCS + TMS.

    A tip how can we download the latest Cisco Jabber video app? or how to make the 10.5 to enroll in the VCS?

    Thank you

    A new version (9.3.9) is out this weekend - including iOS compatibility 8.

    https://iTunes.Apple.com/au/app/Cisco-Jabber-video-for-iPad/id540243083?Mt=8

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

  • Dialing SIP calls SIP Trunk (Avaya SM)

    Hello. I work with the telco team to send sip of our endpoints VTC voice calls to an Avaya Session Manager.

    I think I have all the areas and rules of research on the side of VCS in order to transfer the call to the SM.  I am able to confirm with the team of the phone company that the call reached the SM, but they receive the error "cannot determine realm."

    On the side of the VCS, I see the output below.  Is the problem on the VCS or SM side?  I need to create a trust with the SM? THX. - F

    • searchRule (2)
      • Name: SIP Audio out rule2
      • Zone (1)
        • Name: TEST Session Mgr
        • Type: neighbor
        • Protocol: SIP
        • Found: false
        • Reason: Internal server error (cannot determine the domain)
        • StartTime: 2015-03-09 13:21:58
        • Time: 0.05

    Another option is to see if you get up with 5060/udp or 5060/tcp, which could make it easier to trace. But yes, I prefer the encryption as well.

    Often you have set a kind of trust for a specific connection, which could include the field src or dst, ip, port,...

    good luck ;-)

Maybe you are looking for

  • Delete a photo library, now can bring into the iPhoto library

    I have Photos of El Capitan put in place to manage multiple libraries on the same MacBook Pro internal hard drive.  I was trying to create a new additional library, but seem to have screwed things up. I created the new photo library, called "BB_Photo

  • How to start the exe downloaded the installer for a new version?

    With an old windows XL, I thought that my firefox is old and unsafe. I try to download a new version. To download an exe installation file, it seems to me, but then nothing happens. According to the 'help' maybe there should be an 'OK' button to clic

  • Re: HP Envy recovery factory 700-074 disc HP failed

    I cleaned the discs to ensure they were free of fingerprints to scratches etc and represented the revovery.  The installation process began after an automatic restart.  Welcome administrator came and came HPSoftware Installation window screen.   Prog

  • BlackBerry BlackBerry World 10 crashes when opening

    On my Z10 I get the blue spinning for HOURS thing, BlackBerry world never gets to the point where I can interact with it. I don't know even where to start dealing with this. Of course, I restarted, from battery, etc, etc. Any help appreciated. Thank

  • Concentrator releases

    Everyone knows (or have a link) why it has still provided of 2 lines for concentrator 3000 Series: 4.1 and 4.7... and what are the major differences? Thanks in advance Edgar