Decode Error in Cisco VCS for a call from Jabber to telyHD

Hi,
We have the following setup:
Cisco Jabber <---> Cisco VCS <---> telyHD (Our Video Product)
Now, the call works well when the call is intiated from telyHD to Cisco Jabber.
But, the call fails when the Cisco Jabber initiates the call towards telyHD.
The packet capture on VCS shows that there is a syslog message from VCS to Jabber indicating the following when 180 Ringing is received from telyHD:
Message [truncated]: tvcs: Event="Decode Error" Service="SIP" Src-ip="10.1.1.19" Src-port="5060" Dst-ip="10.1.11.11" Dst-port="25331" Detail="(User-Agent) Single header User-Agent appeared twice in message" Protocol="TCP" Level="1" UTCTime
Can you please help in troubleshooting this issue. I don't see multiple "User-Agent" headers in the 180 Ringing sent by telyHD.
I have attached the packet capture on VCS.

I am also having the same issue.  Can someone please respond? Thanks.

Similar Messages

  • Delayed to stablish a call from jabber to jabber

    Good day
    I am presenting a problem:
    when I call from jabber device ( jabber for windows, ipad,) other device jabber (jabber for windows, ipad), the call sets after 8 sec, witch ip comunicator the call is immediately established.
    Is normal this in jabber?
    Is because a ipc work sccp and jabber sip?
    my device profile is the device profile default.
    please help me

    Hi Jesus,
    I  dont think that this problem could be because of SCCP vs SIP, but you could try using IPC with SIP protocol to see if there is a delay as well in that scenario and confirm this.
    In the past I saw similar issues if DN's and translation patterns on CUCM are not correctly configured (pattern and DN starting with the same digit). For instance if you have a pattern starting with 1 and expecting four other digits, and a four digit DN starting also with 1, when you dial that DN, CUCM will actually have to wait for a fifth digit (for few seconds) to see if it can pair that to a translation pattern.
    Thanks,
    Marko

  • Use Cisco CUCM for outbound "call me at" feature on Lync meetings

    I'm trying to find a step by step to enable users (non enterprise voice users) to use the dial me at feature in Lync conference meetings. I only want the user to have the ability to tell Lync to dial a number to place that number into the conference call,
    the feature is easy to enable but i can't get the routing right between CUCM and Lync. I've looked all around the net but I can't seem to find anything that matches what i'm trying to do, other docs cover enterprise voice and that's out of my scope. Any assistance
    here would be nice. Thanks

    Hi,
    In Lync Server 2010, it is not supported with “call me at” function for non-Enterprise Voice users.
    However, Lync Server 2013 now allows participants that are not Enterprise Voice enabled to initiate dial-out calls from a meeting conference, called “Dial-out Conferencing for non-Enterprise Voice users”.
    This can be configured by setting the Conferencing policy to allow this feature (Set-CSConferencingPolicy –AllowNonEnterpriseVoiceUsersToDialOut:$true). After enabling this, then assign a voice policy to the users who need the function.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • New Window for Form called from a form based on a procedure

    Hi
    I have a form that is based on a procedure that asks for an employee number. The number is then passed to the procedure. The procedure then calls the next form passing in the employee number.
    This works however I would like the form called from the procedure to open in a new window while still being able to pass in the employee number as a parameter.
    Is there a way to do this? I have tried looking at wwa_app_module.new_instance & wwv_media.show_newwindow but I these only take the moduleid, I can't see how to pass in the employee number at the same time.
    Any help would be appreciated.
    Thanks
    Belinda

    Hi,
    You can pass parameters like this
    wwv_redirect.url('SJAYARAM_9042F.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=1060253649&p_arg_names=deptno&p_arg_values=10&p_arg_names=_deptno_cond&p_arg_values=%3d');
    In this example the parameter deptno is passed with a value 10 and conditional operator '='
    Hope that helps.
    Thanks,
    Sharmila

  • Best Practice for EJB calls from servlet?

    Hi folks
    I could not find general rules for making calls to an stateful EJB from the web container (e.g. from a backingBean). In some books they say it is a bad programming style calling them directly from a common servlet. The book says create first an HTTPSession Object and from there call the stateful EJB.
    I'm a bit confused because, I'm missing some best practice guide from where to initiate such calls.
    Can somebody please point me in the right direction?
    Kind Regards
    Bruno
    Edited by: zajoho on Oct 30, 2008 11:14 PM

    Hi Bruno,
    The main issue with the combination of stateful session beans and servlets is the servlet threading model.
    It is dangerous to store a stateful session bean reference in servlet instance state, since the servlet instance
    can be accessed concurrently, yet a stateful session bean reference is intended to be used by only one
    client.
    As you point out, one alternative is to store the reference in the HttpSession. That associates the reference
    with a particular client, which matches the stateful session bean programming model.

  • Error in java code for removing messages from a Topic

    Trying to write a code using oracle.jms package to remove messages from Topic. I have a similar code with javax.jms package for removing messages from Queue and it is working well. Whereas i have written this new code for removing messages from topic using oracle.jms package as methods like CreateBrowser and CreateTopicReceiver for topic are provided in oracle package only and can't be used from javax.jms package.
    Error i am getting is JMS-126: Invalid Topic specified at
             receiverTopic   = (Topic) ctx.lookup(((String)receiverProps.get( "Q_NAME")).trim()  );
             System.out.println ("receiverTopic is[" + receiverTopic + "]");
             MBeanHome home = (MBeanHome) Helper.getAdminMBeanHome("username","pwd","url:port");
             ((AQjmsSession)topicSession).grantSystemPrivilege("MANAGE_ANY", "SA", true);
             for(Iterator i = home.getMBeansByType("JMSTopic").iterator();i.hasNext(); )
              WebLogicMBean wmb = (WebLogicMBean)i.next();
              System.out.println("topic name found: " + wmb.getName());
                topicBrowser   = ((AQjmsSession) topicSession).createBrowser(receiverTopic, "Edin");topic handle which i am receiving in receiverTopic is same as what i am expecting but still it says Invalid topic specified on createBrowser method. Anyone who can help me to write this type of code, please reply. If anyone has ready code for this situation, please reply with the same as i am working on a prodcution system and we are in serious situation to resolve this problem.

    Hi,
    I am afraid this is impossible. You need to find another solution like a filtering queue. Your messages can be sent to a queue that is monitored by let say a MDB. This MDB will maintain a map of title and only forward once a given title/message to your topic.
    Hope it helps.
    Arnaud
    www.arjuna.com

  • Best approach for RFC call from Adapter module

    What is the best approach for making a RFC call from a <b>reciever</b> file adapter module?
    1. JCo
    2. Is it possible to make use of MappingLookupAPI classes to achieve this or those run in the mapping runtime environment only?
    3. Any other way?
    Has anybody ever tried this? Any pointers????
    Regards,
    Amol

    Hi ,
    The JCo lookup is internally the same as the Jco call. the only difference being you are not hardcoding the system related data in the code. So its easier to maintain during transportation.
    Also the JCO lookup code is more readable.
    Regards
    Vijaya

  • How to disable "slide to call" feature for missed calls from lock screen on ios7

    I realized that when the iphone (running iOS7) is locked, the“Slide to Call” allows anyone to make an outgoing call to the missed calls from a locked phone (with passcode).
    it is nice feature for people who don't care about locking their phone.but I believe there should be an option to disable the “slide to call” or at least require password before allowing the outgoing call to go through.
    This is a serious security issue.it should be user configurable.
    Hope Apple will take it seriously and release a update for the same.

    You can provide feedback to Apple here: http://www.apple.com/feedback/iphone.html

  • Option to disable the "slide to call" feature for missed calls from lock screen

    I realized that when the iphone (running iOS5) is locked, the“Slide to Call” allows anyone to make an outgoing call to the missed calls from a locked phone (with passcode). This may allow malicious and unwanted calls to be made from a locked phone by anyone having access to the phone and defeats the purpose of having the phone locked by a passcode.
    Don't get me wrong, it is nice feature for people who don't care about locking their phone, but I believe there should be an option to disable the “slide to call” or at least require password before allowing the outgoing call to go through. 
    At this point the only option that I see is to disable the phone related notifications from lock screen, which prevents all phone related notifications to be displayed on lock screen (missed or voicemail). This is not a desired solution.....
    This is the first time in the history of iOSes, that a user can make outgoing calls from a locked phone with a passcode. Even the voice commands (for dialling a number) have option to be disabled on locked screen.
    I was wondering if anybody else feels the same way about this? or have a solution?

    I share the same feeling with you about this issue.
    Actually I was very surprised when I discovered that!
    In addition to this, when you actually slide a missed call, it calls the person and when you end the call, the notification of the missed call is still present! So that person can be called again and again and again.
    This is a serious issue that Apple has overlooked!
    Please secure the iOS 5.
    Thanks.

  • CodeBase for Applet called from Javascript

    I have a Search applet that is called from an HTML form in a browser when a button in the form is pressed. The Applet searches files in a folder/subfolders and uses a JSObject to create a new page for the browser with results. Up until recently I was using the plugin from jre 1.3.1 with the appropriate FilePermission entries in the .java.policy file and the applet worked as expected. IE if I added new folders to be searched, I had to add new entries to the policy file to give permission.
    I then installed jre 1.4.2 and the applet started getting Security problems stating the program did NOT have FilePermission. I tried several changes to the policy file and finally found that if I put the FilePermission entries in the empty(Global) codeBase the applet would work.
    What changed between jre 1.3.1 and 1.4.2?
    I would like to understand how the system works, ie where is the true codeBase and not cop-out with giving global permission.
    Any suggestions?
    Also the Java Tutorial shows a Windows syntax for a path (uses \) : C:\testing\-
    The policytool gets confused when I try to enter this. I use double \\ and it takes it OK when I do a Save. But later if I use policytool again to make changes somewhere else in the policy file, the \\ are removed and I end up with: C:testing- in the policy file. So I do it manually with an editor.
    Norm

    I would agree. Remember that the changes you make to the policy file apply to all applets that will ever be run on the system, not only to your applet.

  • Change iPhone number for outgoing calls from mac (Yosemite)

    I have two iPhones, and one of the iPhone is set for iPhone cellular calls (handoff) in macbook under FaceTime preference. How to change this number so that I can make outgoing calls from different iPhone?

    Hi,
    If you Erased the Drive  and set up the computer anew it will depend on how you migrated/imported your Mac User Account (if you even did).
    Mostly the process will make the Mac seen as a "New" computer.
    In some cases this will means settings that involve some sort of "pairing" will not work.
    You may also get to the point of having 5 "devices" linked to iTunes because of this.
    I have  G4 that is coming up on 121 years old.
    It has 4 drive bays and some of the drives are partitioned.
    It will boot into OS 9 and every version of OS X up to and including Leopard (OS X 10.5)
    I have tended to Clone the current set up and then Update the main Drive.
    It does mean though that iTunes counts them all individually.
    On top of that I have a Snow Leopard MacBook Pro and my current Yosemite booted iMac (It also has Older OSes on External Drives)
    The outcome is that you might have to re-link the two devices.
    9:38 pm      Friday; January 2, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • BPC75NW: Error Loading Master data for BPC Dimensions from BW InfoObject

    Hello Gurus,
    I'm trying to load master data for BPC Dimensions from BW Infoobjects.
    The ID thats used in BW is 32 char long. When I run the load, the ID is truncated after 20 chars and  the records are reported as duplicates.
    Due to this the load is failing.
    I cannot use any other ID as the texts will not be loaded in that case.
    Is there any work around to handle this?
    I cannot load the transaction data either.
    I looked at some posts and blogs in sdn, but nothing really helped.
    Cube - 0RPM_c05 (Financial Planning cube in SAP PPM)
    Version: BPC 7.5 NW SP5
    Thanks,
    Vasu

    Thanks Everyone.
    " you can write a transformation file and give a new name to those IDs who have values more than 20 characters."
    Poonam - Could you explain more?
    I tried using a additional Dimension property to hold the 32 char ID. But I cannot access this in the transformation.
    Is there a way to refer the dimension property in the Transformation file or in the UJD_ROUTINE BADI implementation?
    Thanks,
    Vasu

  • Video doesn't work when calling from Jabber to DX650

    Hi,
    I just added a DX650 to our CUCM 9.1.2. When I call from either Jabber to the DX650 or Lync to DX650, the video doesn't work and the call is audio only. The message i'm seeing on Jabber is something like "the other endpoint is not accepting video." Sorry i don't remember the exact message. Has anyone seen this issue before? Thanks!

    Lync is not standards based and has proprietary codecs for video. You will need a Expressway with the MS Interop key to get video both ways.
    https://www.cisco.com/c/dam/en/us/td/docs/telepresence/infrastructure/vcs/config_guide/X8-2/Cisco-VCS-Microsoft-Lync-Deployment-Guide-X8-2.pdf 

  • Error when Interative Adobe Form is called from Webdynpro ABAP.

    Hi Experts,
    I trying to call a Interactive adobe form from ABAP Webdynpro application but I am facing the below error.
    Line: -
    The following error text was processed in the system GJD : User session (HTTP/SMTP/..) closed after timeout
    The error occurred on the application server az18u021_GJD_01 and in the work process 0 .
    The termination type was: ERROR_MESSAGE_STATE
    The ABAP call stack was:
    Method: PREPROCESS_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST_FROM_MEMORY of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    Line: -
    When I uncheck the enabled property of the Interactive From in the Page of the WebDynpro I am able to execute the application successfully.But the Adobe form behaves as a Static Form when I uncheck the enabled property.
    So kindly provide your valuable suggestions to avoid the above error when I am calling a Interactive adobe form from Webdynpro ABAP.
    Thanks in Advance.
    Regards,
    Arun.

    Hello,
    Hello, are you sure you have your ADS credentials configured correctly and valid? I guess you know that is the only difference between clicking enabled on true or false. If you are not sure, you can use SE38, search for FP_* and pick some reports to check the licencing. The names of the reports are good enough to recognize the right one.
    Or maybe that is a security problem? Have you checked the ADS_ERROR string? Did you use the ADS trace?
    check: http://help.sap.com/saphelp_nw70/helpdata/en/2c/241a427ff6db2ce10000000a1550b0/content.htm
    and especially note 999998
    Regards, Otto

  • Problem for ResourceBundle calling from jsp file

    Hi, I am using WebLogic 5.1 in Solaris 8
              I use java.util.resourceBundle to get the information from a .properties
              file
              I put the properties file in /opt/weblogic/myserver/serverclasses
              When I call the properties file from EJB, It seems to be OK
              But when I call the properties file from JSP using the same script, It said
              the properties files not found
              The Error message is:
              <ServletContext-General> Servlet fail
              ed with Exception
              java.util.MissingResourceException: Can't find bundle for base name
              test.dbini,
              locale zh_TW
              at
              java.util.ResourceBundle.throwMissingResourceException(ResourceBundle
              .java:707)
              at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:679)
              at java.util.ResourceBundle.getBundle(ResourceBundle.java:546)
              at
              jsp_servlet._test._global_95_variable._jspService(_global_95_variable
              .java:85)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:105)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:123)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:742)
              at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:686)
              at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
              ContextManager.java:247)
              at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
              a:361)
              at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              PLease Help!!
              Regards,
              Fannie
              

    Hi,
    open dataset file for input in text mode.
    check sy-subrc = 0.
    while sy-subrc = 0.
      read dataset file into wa.
      if sy-subrc = 0.
      append wa to itab.
      else.
        exit.
      endif.
    endwhile.
    close dataset file.
    regards
    Siggi
    PS: check also the F1-help for open, read and close statements!

Maybe you are looking for

  • Help setting up or discovering a new router

    I just purchased a new cisco 881 integrated service router for my small business. I'm reasonably computer literate, but this is not my speciality and would appreciate some detailed help. I've already spent the day perusing every lead through the cisc

  • No phone service yet again!!

    #1: Reported landline problems 2nd time this month.  A few weeks ago the repair guy told us that he would put in an order for a new cable for my neighborhood.  Got a good laugh out of that.  Requests for a new cable have been going on for about 15 ye

  • Adobe photoshop CC 2014 is closing shortly after opening. It is saying it has stopped working. HELP!

    Someone help me please!!!! I just spoke with Adobe support on chat and they gave me step by step instructions to clean my adobe and what not and download the new photoshop, and it worked fine but then it is saying it has stopped working shortly after

  • How secure is APEX authorization?

    We are developing a system which mandates that a user only be able to perform functions that they have been authorized (trained) to do. My understanding is that APEX will do this nicely using authentication to make sure a user is who they say they ar

  • Express Configuration Wizard

    Dear friends, I am looking for Express Configuration Wizard to start configuration of SBO 9.0, but cannot find it anywhere. Does anyone can give me any information about it? Thank you in advance, Sina.