One screen presentation problem on calls pass through cube

hello all,
may I have your advices about following problem;
this is flow diagram:  cts codec (site A)  --  >>  cube  -->> cts codec  (site B) 
if the codec in the site B is one screen as cts 1100 the presentation cant be shared bidirectional.
however if it is 3 screen as cts 3010 the presentation works fine.
this is the part of config:
voice service voip
 ip address trusted list
  ipv4 X.X.X.X
  ipv4 X.X.X.X
 rtp-ssrc multiplex
 address-hiding
 allow-connections sip to sip
 redirect ip2ip
 fax protocol t38 version 0 ls-redundancy 0 hs-redundancy 0 fallback none
 sip
  session transport tcp
  rel1xx disable
  header-passing
  early-offer forced
  midcall-signaling passthru
  pass-thru headers unsupp
  pass-thru content sdp
  sip-profiles 1
  copy-list 1
voice class codec 1
 codec preference 1 aacld profile 1
 codec preference 2 g722-64
 codec preference 3 g711ulaw
 video codec h263+
 video codec h264 profile 2
 video codec mpeg4
voice class sip-profiles 1
 request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=3)" u01 
 request INVITE sip-header Contact modify "$" "\u01" 
dial-peer voice X voip
 destination-pattern X...
 video codec h264 profile 2
 rtp payload-type cisco-codec-fax-ack 126
 rtp payload-type cisco-codec-fax-ind 110
 rtp payload-type cisco-codec-aacld 96
 rtp payload-type cisco-codec-video-h264 112
 session protocol sipv2
 session target ipv4: X.X.X.X
 voice-class sip bind control source-interface GigabitEthernet0/0xxx
 voice-class sip bind media source-interface GigabitEthernet0/0xxx
 codec aacld profile 1

hi
you have any string as
voice class sip-profiles 1
 request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=3)" u01 
 request INVITE sip-header Contact modify "$" "\u01" 
change it with 
 request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=*)" u03 
 request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=(.*))" u03 
 request INVITE sip-header Contact modify "$" "\u03" 
it will work.

Similar Messages

  • Skype calls pass through the PBX

    Hi Skype Team,
    Good day! Hope to get your immediate response. A supporting document would do for now if you are busy and could not answer immediately. Thank you.
    Is the set-up below possible?
    Skype to Skype calls pass through an Avaya PBX.
    Skype user calls another Skype user and that call passes through the PBX.   
    Thank you very much,
    Jamie Ong

    The erase all content and settings option does exactly that - it erases everything on the iPhone except for iOS and included apps, and there would be no passcode prompt since it would have been erased.
    If you have a connect to iTunes prompt, you must do as provided.
    And if you are getting  there is no SIM installed or the existing SIM is not compatible, this means the iPhone was hacked to be unlocked.
    Sounds like you restored the iPhone with iTunes instead and when doing so with a hacked iPhone, it re-locks the iPhone to the carrier the iPhone was sold as carrier locked with when new. The original iPhone was sold as carrier locked only.
    Or when doing the erase all content and settings option, it also erased the hack used to unlock the iPhone.
    There is no way to get past this now except for having a SIM card inserted from the carrier the iPhone is carrier locked with.

  • [Q] Trigger an event for calls passing through a CUBE

    Hi Guys
    Are there any events I could catch to trigger a script for new calls as they pass through a CUBE?
    I'm wanting to set up an alert based on a certain number been dialed.
    Ta
    Peter

    Not directly, but Tcl IVR can help here.  You can use IVR to generate a syslog message that EEM can process.  I'm not sure if this is applicable to CUBE, though (it works with CME).  Here's one such example implementation:
    https://supportforums.cisco.com/docs/DOC-19345

  • Problem extracting variables passed through a url

    Hi I'm trying to pass two variables via a url which I can acheive, but I'm having trouble extracting the information when page refreshes.
    This is the code I've used to pass the variables:_
    <?php while ($row = mysql_fetch_assoc($result1)) {   ?>
    <a href="<?php echo $_SERVER['PHP_SELF'];?>?gallery_id=<?php echo $row['gallery_id']; ?>&amp;year_id=<?php echo $row['year_id'];?>"><?php echo $row['name']; ?></a>
    <?php } ?>
    I'm able to acheive the my objective when on variable is passed using the following code:-
    if (array_key_exists('gallery_id', $_GET)) {
    $gallery_id = $_GET['gallery_id'];
    My question is, how do I do this with two (or more) variables? I need to extract $year_id as well.
    Thanks.

    Thanks for the reply.
    I get the following notice.
    Notice: Unidentified index: gallery_id in ......
    I'm trying to create a photo gallery that displays years at the top, the gallery names for the relevant year in the left hand pane and the relevant photos for a particular gallery in the right hand pane. I have nearly acheived the aim in that everything will initially display ok and when a different year is selected and the page reloads, it will list the galleries for that year and display the photos for the first gallery in the list.
    The problem is that when a new gallery is selected I am able to pass the new gallery_id and the year_id when the page reloads, but I can't extract both results using If(array_key_exists and since the script needs both to function I'm a bit stuck.
    What i really want to do is something like If(array_key_exists('year_id', 'gallery_id', $_GET)) {
    but this won't work! Is it possible to do it this way or am I barking up the wrong tree?
    Thanks.

  • Problem in sql pass through query

    i am using the following query:
    select * from table_name where item IN (?0) and item1 IN (?1)
    i am creating sqlPassthroughQuery but i am getting : Missing right parenthesis /Query not terminated properly exception
    but the query is working without where clause and it is working also if i am not using query without parameters i.e.
    select * from table_name where item IN ('itemvalue1','itemvalue2') and item1 IN ('itemvalue1','itemvalue2')
    Any pointers will be useful
    Prakhar

    Hi,
    i used the query like this:
    String query="Select * from table_name where col1 IN(?,?,?) and col2 = ?";
    Object params[] = new Object[4];
    params[0] = "val1";
    params[1] = "val2";
    params[2] = "val3";
    params[3] = "val4";
    Builder builder = (Builder)view.getQueryBuilder();
    Query sqlQuery = builder.createSqlPassThroughQuery(query,params);
    RepositoryItem[] items = view.executeQuery(sqlQuery);
    This is just a basic example.You can get more info @ATG Repository Guide.
    Prakhar

  • Pass Through Payments

    Hello Finance Experts,
    Can you advise please if there is functionality to achieve the following in SAP? Is there a concept called 'Pass Through payments' or something similar whereby open invoices in SAP that are due for payment could be scheduled to run automatically every morning for payment without input from an end user?
    Thanks for any

    As mentioned, you can shedule a Background Job. Go to transaction sm36 for shedulling the Job and Sm37 for monitoring backgrond job. Similarly customer incoming and outgoing payment can be sheduled and executed.
    Thanks & Regards
    Jomon.

  • Problem with "Pass Through Chapters" Theme

    I was searching old post to get some help and this one help a little but there was still one problem unanswered. I have highlighted in red;
    Nov 14, 2008 3:41 PM Re: Pass Through Theme problem
    Re: Pass Through Theme problemin response to Glo H
    My smaller text which appears in white says Scenes 1-6. The pass through text which is larger and has a different image in it says "Pass Through Chapters" and it rolls by while the smaller text stays put. I notice the image that shows through the pass through text is the same image I set on the main DVD screen. On that one my name of my disc roll past in giant see through letters. I like that but I just don't want that same effect on my chapters screens.
    Can the image behind the rolling text be changed to the current window and not the main menu image?

    Thanks for the tip and figured out to delete my "Scenes 1-6" that was automatically created when, in iMovie, I shared the movie to iDVD with chapters. The menu title text block doesn't like cut/paste and I had to retype the "Scenes 1-6" text for the motion/peek-through scrolling text to refresh.
    Hmmm, but how tricky is that and where is it mentioned in the help/faq files etc?
    cheers

  • How to pass PARAMETERS to FORMS while calling them through URL

    Hi,
    I am working on integrating EBS with OBIEE as per the doc id 552735.1(metalink2)
    In the Document, Oracle had given an example for genating the URL in OBIEE as follows,
    SELECT
    HEADER_ID,
    fnd_run_function.get_run_function_url(
    CAST(fnd_function.get_function_id('ISC_ORDINF_DETAILS_PMV') AS NUMBER),
    CAST( VALUEOF(NQ_SESSION.OLTP_EBS_RESP_APPL_ID) AS NUMBER),
    CAST( VALUEOF(NQ_SESSION.OLTP_EBS_RESP_ID) AS NUMBER),
    CAST( VALUEOF(NQ_SESSION.OLTP_EBS_SEC_GROUP_ID) AS NUMBER),
    'HeaderId='||HEADER_ID||'&pFunctionName=ISC_ORDINF_DETAILS_PMV&pMode=NO
    &pageFunctionName=ISC_ORDINF_DETAILS_PMV',
    NULL) as ORDER_HEADER_ACTION_LINK_URL
    FROM OE_ORDER_HEADERS_ALL
    But this one navigates to the JSP page of sales orders. Its working fine,
    h3. Problem :_
    If i want to navigate to Oracle forms(say Sales Orders),
    i'm able to navigate, by giving the 1st param as '5522'(Sales order Form ID(ONT_OEXOEORD)) and 5th parameter as NULL.
    The 5th parameter is used to navigate to a particular record.
    But i dono how to pass the parameters to this particular Sales Order Form..!
    (like here they hav passed HEADER_ID in a particular format)
    {I guess, this might not be understood totally with this given data here, but i don want to make this post too big.}
    CAN ANYONE PLEASE TELL ME, HOW TO KNOW THE FORMAT OF THE "PARAMETERS" TO PASS(WHILE GENERATING URL)_WHILE CALLING AN ORACLE FORM.._
    Thanks in Advance..!!

    Hi,
    In addition to the above...
    if i give the 5th parameter as, 'HEADER_ID=||'header_id { in runtime it'll be converted as 'HEADER_ID=5432..}
    I'm not getting any error, getting a fresh Sales order page..!! { The given Header ID is ignored }
    else if i give something like 'HEADER_ID=||'header_id||'&FunctionName=ONT_OEXOEORD...' { lets say }
    its throwing the following errors..
    FRM-47023: No such parameter named G_QUERY_FIND exists in form OEXOEORD.
    FRM-40105: Unable to resolve reference to item PARAMETER.G_QUERY_FIND
    FRM-47023: No such parameter named ORDER_NUMBER exists in form OEXOEORD.
    and then it shows up the Navigator.
    Requirement :_
    How to pass parameter to a form while calling them through URL.
    Thank you,

  • TS1702 One of my apps is called Shelf Wallpaper and in this App there are Icon wallpapers and it says VIP Only on them so when i press save on a wallpaper i like in this section it says: Please upgrade through in app purchase to save all vip Pictures how

    One of my apps is called Shelf Wallpaper and in these wallpapers there are Icon wallpapers and it says VIP Only on them so when i press save on a wallpaper i like in this section it says: Please upgrade through in app purchase to view and save all vip Pictures and then a button comes with Upgrade or cancel on it so naturally i press upgrade but nothing happens.How do i get to download these wallpapers.?

    Well I figured out my problem lol
    Email a- original apple id email
    Email b- original gamecenter id
    Email c- the new gamecenter id
    Email d- the temporary email for switching stuff
    So originally I had Email a for apple id and icloud, and Email b for gamecenter. I wanted my gamecenter and apple id to be the same. Well today I went on my moms phone and saw that I was still on family sharing under Email d. That's when it hit me, your gamecenter, apple id, and icloud are the same account. By switching my gamecenter id to Email a, I turned that into my new apple id. Now my apple id is back to normal, and my gamecenter is Email c (I don't use Email b anymore so that's why I wanted to switch it).
    Basically, my problem was being stupid enough not to think that your gamecenter was connected to your apple id. My problem came from switching my gamecenter email. So that's how to avoid this, don't be an idiot and think your gamecenter is a whole different account. For anyone who ever has this problem, that's why it happened haha.

  • I purchased Macbook Pro i5 in March 2011. Now the screen has problem; one vertical blue line is in the screen (at the right side). I noticed this last week when I opened the MacBook, and now I am always seeing it. How to remove it?

    I purchased Macbook Pro i5 in March 2011. Now the screen has problem; one vertical blue line is in the screen (at the right side). I noticed this last week when I opened the macbook and now I am always seening it. I am seeing the blue vertical line always in the screen. However, I am not seeing this line when I open Word, Excel, PowerPoint files (without pictures). But I am seeing this line always when I see movies, pictures, and all the files which have pictures. Please do let me know how can I remove this vertical blue line (blue tint) pernamentally from the screen.
    Regards,
    Ujjal

    Backup your files to a external hard drive and disconnect.
    Call Apple and make a warranty call, then take it to the nearest Apple Store etc.
    You can run these things and it might clear your issue or give further informaiton
    Perform a hardware check
    http://support.apple.com/kb/ht1509
    Then see if resetting the SMC/PRAM resolve your issue
    http://support.apple.com/kb/HT3964
    https://support.apple.com/kb/HT1379

  • Problem to call web service through WSDL2Java

    Hi All,
    I am gettig the error message while trying to run the below code to call web service:
    Code:
            org.apache.axis.client.Call _call = createCall();
            _call.setOperation(_operations[0]);
            _call.setUseSOAPAction(true);
           _call.setSOAPActionURI("");
            _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
            _call.setOperationName(new javax.xml.namespace.QName("http://10.171.44.97/service", "testWS"));
            setRequestHeaders(_call);
            setAttachments(_call);
            System.out.println("before invoke");
         java.lang.Object _resp = _call.invoke(new java.lang.Object[] {input});--------------------------------------------------------------------------
    Error-
    org.xml.sax.SAXException: Error: URI=null Line=3: Illegal
    xml:lang value "".----------------------------------
    I would appreciate if anyone can help me out.
    Thanks in advance.
    Regards
    Sachin

    Hi,
    Jason Straub's excellent [Flexible Web Service API|http://jastraub.blogspot.com/2008/06/flexible-web-service-api.html] could be just what you need.
    The blog posting also describes how to integrate the code into your page.
    Regards,
    Georger
    sundhar.v wrote:
    Hi
    Can we call web service through loop, If so how we can do.
    I wanted to transfer n records ex:100. to pass one record i need to call web service, like that to pass 100 records i need to call 100 times webservices and store results of each.
    Have created web reference and form so that it can send one record on submit and return's result to text box.
    I need to call this Web Service Request     page process through another plsql process.
    How can we resolve this.
    Thanks
    Sundhar

  • Lock screen enter passes through bug?

    If you have your Pre screen locked, when you enter in the unlock code via the keyboard, and hit the enter key to process the code... that enter press is passed through to whatever app is currently open.
    If this is not a bug, this seems like a very poor UI design.   
    I do not know if this was present before, but I just noticed it because I accidentally sent an incomplete text out.

  • Pass value from One Screen to Another

    Dear all,
    please tell me how can I pass field values of one screen to another called screen.
    Please help me.
    Regards
    H.P.

    Dear Singh,
    If it is dialog programming, then first get the values in first screen and pass those values to the second screen PBO.
    Rgds,
    Kiran

  • Problem in calling transaction on Portal through ITS

    Dear All,
    We are facing a problem in calling R/3 transaction through ITS on EP 6.0 , It is successfuly coming on the internet explorer 7.0 but on mozilla firefox, it is showing SAP GUI screen only. Plz suggest what we have to do. It is necessary to us to use this on Mozilla or other explorer like safari as our some user are using MAC OS.
    Ankit Gupta

    Ankit,
    You would have to verify your portal version and the browsers supported via the PAM.
    Access this link using the service marker place id and password.
    https://websmp202.sap-ag.de/pam
    http://service.sap.com/pam
    Cheers!
    Sandeep Tudumu

  • I have a mac mini and just purchased a moshi hdmi connector for my LED TV. The problem is, I wanted to be able to take my mouse from one screen to another, not just as a mirror image! Is it possible to do this some how?

    I have a mac mini and just purchased a moshi hdmi connector for my LED TV. The problem is, I wanted to be able to take my mouse from one screen to another, not just as a mirror image! Is it possible to do this some how?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    If you have two displays attached, then the function to change from mirrored to extended Desktop will appear in System Prefs/Displays.

Maybe you are looking for