MGCP and H.323 gateways not working together

We have a 3640 in Mexico defined to our Call Manager here in Atlanta as a H.323 gateway. Also in the same Call Manager is a T1 PRI defined to our PBX as a MGCP gateway. When people in Mexico call phones connected to our PBX we get one way conversations. We have a couple of other H.323 to MGCP gateways situations that don't work. It seems the two are not compatible. Has anyone else ran into this. If so, what was your solution.

According to your description, I believe that you have a topology like the following diagram.
MexicoPSTN---?---3640---h.323---CCM---mgcp---gateway?---PRI---PBX
You didn't mentioned what type of circuit you had between the 3640 and the telco in Mexico or the type of gateway used for MGCP in Atlanta.
However, there should be no problems with this type of configuration causing one-way audio.
In this case CallManager talks H.323 to the 3640 in Mexico and talks MGCP to the gateway in Atlanta for the call control. When a call is placed from a PSTN phone in Mexico to a PBX phone in Atl, the call setup will first take place via H.323 between the 3640 and CCM and via MGCP b/w the Atl gw and CCM. After the call setup is complete, the audio stream should be connected directly between the 2 endpoints (ie 3640 gateway and the Atl gateway).
You should check for IP connectivity between the Mexico 3640 and the Atl router. Note, the call setup could complete successfully b/c both devices can reach the CCM, but can they reach each other when CCM steps out of the picture?
The following URL will also provide more good info on troubleshooting one-way audio.
http://www.cisco.com/en/US/tech/tk652/tk698/technologies_tech_note09186a008009484b.shtml
Hope this helps.
Shane

Similar Messages

  • Apache 2, Tomcat 4 and Oracle's XSQLServlet not working together

    Hi
    I cannot even get the basic demos in ./demo/java/xsql to work with this combination of technologies.
    I am running this on Red Hat Linux 8. Apache and Tomcat work fine, the CLASSPATH is set and I have created the Alias etc.
    I believe that the .xsql type is not being processed by my XSQLServlet, because calling up http://localhost/xsql/ brings up 3 raw xsql files in the browser.
    All the documentation I have found describes using XSQL with older Apaches and JServ. JServ is now replaced by Tomcat and Tomcat 4 is much different from earlier versions of Tomcat. Despite that I believe I have guessed and made the correct changes to httpd.conf and web.xml to make the XSQLServlet work.
    Has anyone got these to work ? I've been at this for days and am driven half mad by it ! All that has kept me at it is that this seems like a magnificent combination of technologies. Many thanks in advance... for any advice at all.
    - Des

    AndyRTR wrote:Please check the new libreoffice version in testing. It should work with openjdk6 and jre7-openjdk. Not sure if closed
    Oracle jre7 from AUR will also get detected.
    Thanks for the info. Yaourt -Syu will be my friend
    Java7 is recognized, great. Too bad java web plugin could be blacklisted because of security matters.
    Last edited by fredbezies (2011-10-05 14:58:07)

  • TableLayout and lov OAMessageLovInputBean is not working together

    Hi
    I am trying to make work a messageLovInput in tableLayout.
    The field and torch icon is rendered correctly. When I click on torch icon the lov window is opened.
    The torch onClick is working because controller class processFormRequest is executed but lov window does not open.
    I tried to change a tableLayout to advancedTable then the lov window opened and was working.
    This is not a option because the page seeded page in OA.
    Also I tried to use exactly same messageLovInput as search page field there it was also working.
    Any hints why lov is not working with tableLayout?
    Xml file looks like
    <oa:tableLayout childViewUsageName="InfoTemplatesDisplayVO" childViewAttrName="AttributeCode1" addChildren="true" controllerClass="oracle.apps.icx.por.req.webui.InfoTemplateRNCO" ....
    <oa:messageLovInput id="LOV1" viewName="InfoTemplatesDisplayVO" viewAttr="AttributeValue1" externalListOfValues="/oracle/apps/icx/lov/webui/InfoTempLOVRN">
    <jrad:lovMappings>
    <jrad:lovMap lovItem="Value" id="lovValueMap1" resultTo="LOV1" criteriaFrom="LOV1"/>
    <jrad:lovMap lovItem="FlexValueSetId" id="lovFlexValueSetIdMap1" criteriaFrom="FlexValueSetId1" programmaticQuery="false"/>
    </jrad:lovMappings>
    </oa:messageLovInput>
    Regards
    Ranno

    1. If its a seeded page, and its not working, why can't you raise an SR?Customization on top seeded page.
    2. I felt a bit confused
    "When I click on torch icon the lov window is opened."
    "The torch onClick is working because controller class processFormRequest is executed but lov window does not open."
    Does clicking on torch window, opens lov window or it doesn't open?If field is inside the tableLayout then clicking on torch window does not open the lov window.
    If field is outside of tableLayout then clicking on torch window does not open the lov window.

  • ProLoader and TLF TextFields do not work together!

    I'm using ProLoader to load a .swf that uses TLF.  The master .swf loads the target .swf and all code executes as expected with one minor glitch: the content of the loader is white/blank.  Has anyone else seen this!?
    ~~~~~~~~~~~~~~~~~~~~~~~~
    Here is the full bug report that I tried to send Adobe, but they cap reports at 2000 characters and provide no option for uploading a source .zip. (Seriously, Adobe?)  If you have time, and follow my instructions you will see how ProLoader won't even load a .swf with TLF on its stage.  (Yes, I realize this different from my problem, but I'd like to demonostrate how buggy and inconsistent ProLoader is.  The simple solution would be not to use TLF, and mostly likely, I will end up doing that.)
    ******BUG******
    ProLoader loads .swf with TLF, but ProLoader is blank.
    Steps to reproduce bug:
    1.  Download sample files (http://helpx.adobe.com/content/dam/kb/en/141/tn_14190/attachments/Load_External_SWF.zip) from the Tech Note, Load external SWF into another SWF (http://helpx.adobe.com/flash/kb/load-external-swf-swf.html).
    2.  Open ExternalSWF.fla and assign it a document class.
    Here is mine:
    package  {
              import flash.display.MovieClip;
               import flash.events.Event;
              public class ExternalSWF extends MovieClip {
                        public static var DATA_LOAD_COMPLETE:String = "ExternalSWF_DataLoadComplete";
                        private var data_:String;
                        public function ExternalSWF() {}
                        //This function will be called from the .swf that loaded me.
                        public function loadData(data:String):void
                                  data_ = data;
                                  dispatchEvent(new Event(DATA_LOAD_COMPLETE));
                        public function get data():String { return data_; }
    3.  On ExternalSWF.fla's stage, change a classic TextFields into a TLF TextField.
    4.  In Loader_Movie.fla, change all flash.display.Loader instances to fl.display.ProLoader in order to load TLF TextFields.  Also, add an event listener to myLoader for Event.COMPLETE.  Here are my Loader_Movie.fla's Actions:
    import flash.events.Event;
    import fl.display.ProLoader;
    var myLoader:ProLoader = new ProLoader();                     // create a new instance of the ProLoader class
    var url:URLRequest = new URLRequest("ExternalSWF.swf"); // in this case both SWFs are in the same folder
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, myLoaderIsLoaded);
    myLoader.load(url);                                     // load the SWF file
    addChild(myLoader);                                     // add that instance to the display list, adding it to the Stage at 0,0
    myLoader.x = 10;                                        // move the loaded SWF 10 pixels to the right (from the left edge)  
    myLoader.y = 175;                                       // move the loaded SWF 175 pixels down from the top
    // (optional) load a second external SWF file
    var my2ndLoader:ProLoader = new ProLoader();
    var url2:URLRequest = new URLRequest("ExternalSWF2.swf");
    my2ndLoader.load(url2);
    addChild(my2ndLoader);                                  // optionally, you could put the 2nd SWF beneath
                                                            // the 1st by using addChildAt(my2ndLoader, 1);
    // (optional) scaling of the 2nd SWF file
    my2ndLoader.scaleX = 2;                                 // scale the SWF horizontally by 200%
    my2ndLoader.scaleY = 2;                                 // scale the SWF vertically by 200%
    function myLoaderIsLoaded(event:Event):void
              trace("The first .swf has loaded so add event listeners");
              var swf:ExternalSWF = ExternalSWF(myLoader.content);
              swf.addEventListener(ExternalSWF.DATA_LOAD_COMPLETE, allFinished);
              swf.loadData("foobar");
    function allFinished(event:Event):void
              trace("Here is the data we loaded: " + ExternalSWF(myLoader.content).data);
    Results:
    [Trace] Output
    ReferenceError: Error #1056: Cannot create property __id0_ on ExternalSWF.
              at flash.display::Sprite/constructChildren()
              at flash.display::Sprite()
              at flash.display::MovieClip()
              at ExternalSWF()
    ExternalSWF is invisible; 4 loading dots appear instead.
    Expected results:
    Both .swfs load without incident.
    Trace output:
    The first .swf has loaded so add event listeners
    Here is the data we loaded: foobar
    Additional notes:
    I discovered this bug when my main/master .swf used ProLoader to load another .swf (with TLF on a symbol in the libary).  In this case, the ProLoader appeared blank/white, not even the 4 loading dots.  However, all the code in both .swfs still ran as expected (shown via the Output panel dumping all expected trace statements until execution finished).
    Environment:
    Adobe FLash Professional CS5.5, Version 11.5.1.349
    (bug discovered while running "Test Movie" in IDE)
    Windows 7 Professional Service Pack 1
    Intel(R) Core(TM)2 Duo CPU  E4600 @ 2.40GHz  2.39 GHz
    RAM: 6.00 GB
    64-bit Operating System

    Do you have anything that uses TLF in your preloader? It's possible that the TLF framework has made your preloader so heavy that it merely appears to not be doing anything, but the actual case is that all that stuff has to load before it can show you anything.
    You may find this helpful http://jeffkamerer.com/blog/2010/08/12/using-a-custom-preloader-loop-with-tlf-text/
    However, I don't really understand why you feel you have to use TLF to bring in the text from Photoshop. I think you must mean PhotoShop PSD's, because PhotoShop PNG's will not contain editable text (though Fireworks ones can). I get Photoshop comps all the time and bring the text in as Classic Text. While it's not an exact match 100% of the time, it's as close a match as you're going to get based on the limitations of Classic text. I think there's no reason for your designers to be redoing the designs--you just need to play around with the import settings and figure out what gets you close and then what tweaks you need to do to get closer.
    And, to answer your question, nearly everyone creates graphics for Flash files in Photoshop, despite Fireworks being the better tool. For whatever reason, designers often aren't very adventurous when it comes to learning new tools, and nearly all art schools teach PhotoShop.
    I also don't have any trouble loading CS5.5 AS3 swfs (no TLF--I just don't need the hassle) with Document Classes using an ordinary Loader. So I think there's something not right about what you're doing if you've come to the conclusion that you can't load a swf with a Document Class. Try scaling back to the bare minimum, then working up.
    Finally, I just don't "get" why people do two things that you're doing (or, I do, but I think it's unnecessary and a colossal failure on Adobe's part)
    Instantiating everything through code. Not only are you wasting an inordinate amount of time/code in specifying layout, you also completely lose the natural capability of Flash to compile assets throughout the whole of the swf. This means you have to have a preloader, because literally everything you ever use is embedded before the first visual frame. Contrast to using the timeline, where all you need to load the visuals for the first frame is the Document Class (which you can keep light by coding to Interfaces) and the visuals for the first frame. Anything else you need to load, you can defer to the frame that you've selected for embedding your AS Classes on.
    Using a preloader at all.
    My preloading strategy is very simple. I put a spinner graphic in the first frame, with the word "Loading." The playhead will stop at the frame that I've specified to use for exporting my ActionScript Classes (10--this provides enough space for the label "Loading" to be readable). When the embedded Classes and whatever is needed to display frame 11 is loaded, the playhead will continue to frame 11 by itself, with no code. On Frame 11, I have a MC that is a named instance, and I have a getter/setter pair to catch it. When the setter triggers, I know I'm ready to start the logic.
    However, you could do all sorts of things, like just putting a MC there that "is" the entirety of your other logic (has what is now the Document Class of the swf you're preloading as its BaseClass).
    Anyway, maybe something in my ramble will help you.

  • Aiport Extreme and Airport Express are not working together with DSL

    My 2wire modem failed and I have replaced it with a basic actiontec dsl modem. I have my airport extreme connected to the actiontec via ethenet cable. All is working. Internet access through the actiontec is working and internet access through the extreme is working. What I cannot for the life of me remember how to do is get my express to work as a range extender for airport extreme.
    The extreme is set up in Ethernet not PPPoE mode which might be the issue, but I can't remember the right settings (IP ranges, etc) if I set it up in PPPoE mode.
    Net - my network that was working DSL modem to Extreme to Express as a range extender no longer works at the Express end. And don't even get me started about AT&T tech support. Help smart guys/girls out there - I know this is something simple that I should have written down when I first set up my network...

    shakeelium wrote:
    Good People,
    I have an Airport Extreme serving as my wireless router with an external hard drive connected to it.  I also have an Airport Express in another room connected to a stereo for Airplay.  Neither can be found on the Airport Utility (v5.5.3), but wireless internet still works.  This happens often, with both reappearing in Airport Utility for short amounts of time periodically.
    I've once had the same problem.
    The reason for that issue is the frequency (radio band) hopping of the station.
    On your AP-Extreme
    Enter the manual setup
    Disable Guest Network if not desperately needed
    Set a dedicated name for the 5GHz wireless (wireless -> wireless options)
    Eventually change the radio mode (if no 802.11b/g systems in your home) to "only 802.11n (5GHz) - only 802.11n (2.4GHz)" by holding down the option key *alt* while clicking on the drop down.
    On your Mac
    Disable (switch off) wireless
    Enter system configuration -> network -> wireless
    Uncheck "Ask to join new networks"
    Enter advanced options and check that your wireless name is in the first position of the list. If not, drag it with the mouse to the first position.
    Click apply
    Join your wireless again and try to connect to the 5GHz name (SSID) because the 5GHz will improve the connection speed of your Mac remarkably.
    Eventually you might change the settings on the Express too.
    Check the location of the AP-Extreme.
    It should NOT be placed: On the floor, in a corner, behind furniture, near metal objects, life high voltage wire or cordless phone bases.
    It should be placed: As high as possible (up on a shelf or ceiling mounted) with a maximum line of sight to all stations, even thru walls.
    If your home situation allows that, try to use the 5GHz band only. If you own a iPhone this must use the 2.4GHz radio.
    Lupunus

  • Custom 404 cfm pages, and ColdFusion flash forms not working together

    Hi,
    I've recently ran into an issue that I was hoping I could have a little help with. My company has been using custom 404 pages for awhile that we set up in iis however we had never set up this custom 404 page to display on .cfm pages, only missing folders. Ie; www.website.com/asdasdasdsd/ would display a custom 404 error But www.website.com/asdasdasdsd.cfm would not. I recently set this up by going in the iis properties for our site, went to the home directory tab click on configuration and selected edit from the mappings tab. From here I checked the verify that file exists open. This enabled the file.cfm custom error to appear however for some reason it disabled all of my ColdFusion flash forms. None of them appear now. If I undo the iis setting that I changed earlier they all re-appear. I got these settings from http://kb2.adobe.com/cps/000/95ee04fb.html and they do the job, they just disable my flash forms. Is there any way to do this without them disabling my flash forms from working?
    Thanks!
    Paul Alkema

    Hi Paul,
    Did you ever receive an answer to this (old) post?  I'm having the same problem myself.
    Thanks,
    Michael

  • Ultra NX and Skype or MSN not working together

    I can't get Skype or MSN to work any more, I get a message to download the patch CTPatch.exe. When I down the patch and execute the exe nothing happens? Any help would be greate.

    That wasn't the answer for me, but it led me to the right solution.
    It seems SKYPE changed the default sound output location. I normally use my SPEAKERS but it changed it to my HP monitor (which also had audio out). Once I changed the default back to my speakers, I was in business. I am not sure how this affects SKYPE usage in the long-run, but at least all my videos play as I expect.
    Below is the screenshot for Windows 7 64-bit:
    Start > Control Panel > Sound

  • Mac OSX 10.9 (Mavericks) and D110 PhotoSmart Scanner not working together

    My HP Scanning Software for my D110 PhotoSmart printer stopped working with the upgrade on my IMac from 10.6.8 (Snow Leopard) to 10.9 (Mavericks).  Help!  I don't want to have to use something like VueScan and abandon HP.  I really need to be able to save scanned documents to disk, and right now my scanner won't let me save scanned pages.

    Hello all,
    I see that you are having issues scanning in MAC OX 10.9. The problem is that there are no drivers available for the D110 for Mavericks at the moment. The first link below will bring you to another page in the forums that will show you an alternate way of scanning.
    http://h30434.www3.hp.com/t5/Scanning-Faxing-and-Copying/Problems-scanning-with-HP-printer-and-Maver...
    This second link will take you to the download page for your printer. Keep checking back there to see if there are drivers available. There are still newer printers then yours that don't have drivers, so you will have to be patient.
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&dlc=en&lang=en&lc=en&product=4023246&
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • PLEASE HELP ME!!!! USTREAM PRODUCER and MY SOUND MIXER NOT WORKING TOGETHER

    Currently I am using ustream producer. I have a sony video camera plugged into my Macbook Pro via firewire 800. I would like to be able to use my very nice sound mixer with my xlr headsets. The only problem I've run into is that in Ustream Producer I can't overlay the sound from my soundmixer over my camera feed.
    Can Ustream Producer not recognize a sound mixer?????
    I have already asked this question on the ustream forums and tried contacting ustream directly, but neither one has helped me out yet.
    I'm using a 13 inch MacBook Pro.
    Please, someone help me out, this is getting very frustrating.

    Satellite A105-S4334 
    These are your options.
    1. Obtain an installation CD for some version of Windows that handles the NTFS file system (NT, 2000, XP, Vista, 7) and install it in parallel to a different folder on the same partition. See (for example) KB266465.
    2. Create a bootable CD with another OS and tools on it. See BartPE, Knoppix, UBCD4Win, and Ubuntu.
    3. Remove the hard drive and place it in an enclosure accessible from a desktop via USB.
    For the last option, see the first few steps here.
    -Jerry

  • HT5706 I am trying to set up Apple TV with my Uverse WiFi, but I get errors when entering my password.  One site said that Apple TV doesn't work with WPA which Uverse uses.  Is there anyway around this or will Uverse and Apple TV just not work together.

    Trying to set up Apple TV with ATT Uverse.  I get errors when trying to enter my WiFi password.  One site says that Apple TV doesn't work with Uverse because it uses WPA for encryption.  If true, does that mean Uverse subscribers cannot use Apple TV?

    Spurs63 wrote:
    does that mean Uverse subscribers cannot use Apple TV?
    No, that's a rather silly conclusion.
    There are two options:
    stop using the crappy router provided by the ISP.
    Physically connect the ATV to the router via Ethernet.

  • Iphone and windows 8 does not work together

    Can't sync iphone 3GS or 4 with windows 8. Anybody have a solution for this?

    Helo there mark44o,
    It sounds like you are having some difficulty getting your phones synced to your PC with Windows 8 on it. If you are syncing in the manner outlined in the following article, would you mind ellaborating on what is happening when you try to sync?
    iOS: Syncing your data with iTunes
    http://support.apple.com/kb/ht1386
    Is there some sort of error message? Does iTunes hang? Is it even seen in iTunes?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Edege animate: Parallax and Spotlight = Not working together?...

    Hi all,
    This is my first post, and sorry for my English :))
    I am learning, and have a small composition on Edge Animate CC 2014 on Scrolling Parallax, which works very well, and now I want to add a spotlight... but do not working together.
    My code is:
    Stage: 1920 x 2000
    Autoplay: No
    -- creationComplete: (nothing)
    -- compositionReady:
    EC.Parallax.setup(sym);
    On scene:
    A Text (is for launch the spotlight with the click function):
    Action for "Text":
    -- click
    // Open image in spotlight overlay
    // Set up configuration
    var config = {
    width: "1024",
    height: "768",
    type: "image",
    source: "images/dog.jpg"
    EC.Spotlight.open( config );
    My problem is that the parallax works great, but when I make a click on the button that showing the spotlight... this is not released, and "dog.jpg" picture it is show on the bottom of the page (without spotlight).
    What am I doing wrong?
    Note: I charge via url the "All in One" of EdgeCommons CDN : http://cdn.edgecommons.org/an/1.1.2/js/min/EdgeCommons.js
    Many thanks!

    Ok. I've solved. I needed to load some things:
    EC.Parallax.setup (sym);
    The full code (that works for me) is:
    -- compositionReady:
    EC.Parallax.setup(sym);
    // Load Edge Commons
    yepnope({
    load: [
    "http://cdn.edgecommons.org/an/1.1.0/js/min/EdgeCommons.js",
    // Load style sheet for the overlay
    "http://cdn.edgecommons.org/an/1.1.0/css/style.css"
    -- click
    // Open image in spotlight overlay
    // Set up configuration
    var config = {
    width: "1024",
    height: "768",
    type: "image",
    source: "images/dog.jpg"
    EC.Spotlight.open( config );
    I hope to serve others.
    Regards

  • My new macbook air and new thunderbolt monitor will not work together. the keyboard will not engage and the monitor screen keeps going black. is it a problem with the monitor, connection, laptop?

    my new macbook air and new thunderbolt monitor will not work together. the keyboard will not engage and the monitor screen keeps going black. is it a problem with the monitor, connection, laptop?

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare. They will help you.
    Best.

  • Z3 bluetooth amd wifi not working together

    hello , the bluetooth and wifi is not working together, when streaming videos through wifi and audio is connected to the bluetooth outspeaker , wifi connection drops for 30seconds and re-connecting , Sony please fix this bug.. than this phone is good. till now. 

    Hi I had the same issue a Week back with my Sony Xperia Z3 compact -- Model # D5833. 
    An auto software update in lollipop and the Wifi and Bluetooth stopped working.
    After speaking the the customer service expert (on chat) --Xperia Support center--  initially he advised me1. To start the phone in a safe mode -- (press the power button for 3-4 secs you get the option) but that didnt help.2. Next he asked me to do a repair through Sony Companion which I had installed on my laptop --- did it --reinstalled the whole software after wiping the complete software including cache--but to no avail.3. Finally when he had no solutions left.. he asked  me to show it at the authorized Sony service center as it was under warranty.
    I followed his instructions as did not want to experiment with my 7 months old handset, went next day to the Sony authorized Service Centre India (Mumbai) (17th Aug'2015) they said its a software problem and needed a day to rectify. But when I called them the next day to check on my phone status, they shared its a hardware problem and have sent across to another center which will do the hardware repair and will take maximum a week.  So the week is going to end after a couple of days....I will keep you guys posted on the update. The suggestion which I would like to share is, if you are having a similar problem run and go to the authorized service centre and leave the rest to the experts, without experimenting yourself.
    So once I will receive my handset in a weeks time ....I will share you the status....on the exact issue with the device.

  • Umm I just got this iPhone 5 and cellular data is not working, can't access apps, heck can't even download any and Safari...ummm yeah not happening.  I'm with Sprint if that makes any difference.

    Umm I just got this iPhone 5 and cellular data is not working, can't access apps, heck can't even download any and Safari...ummm yeah not happening.  I'm with Sprint if that makes any difference.

    Are you in an area where there is no coverage?
    You can try a reset, hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    If that doesn't help, then yOu'll need to contact Sprint again.

Maybe you are looking for