I need help locating doc on moving/ugrading ccme to ccm4.1

Hi all,
I'm in the process of installing Cisco Call Manager 4.1. Currently, we are running Call Manager Express on a 3825 router. It is setup with H.323. How do I allow MGCP on the router to make my Call Manager 4.1 environment work? Can CME and CCM 4.1 exist at the same time during testing phase? Any help will greatly be appreciated. Thank you all

Below are a couple of good documents regarding configuring MGCP gateways with CCM. Yes, you can run MGCP and H.323 on the gateway at the same time to allow CCM and CME to coexist. If you have multiple ports for outgoing calls, configure some for MGCP to be controlled by CCM and leave some controlled by H.323 dial peers during your testing phase. Obviously, you will want this phase to be as short as possible as you are diminishing the number of available trunks.
Configuring Cisco CallManager with IOS MGCP Gateways (Analog FXO, FXS Ports)
http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a008009428e.shtml
How to Configure MGCP with Digital PRI and Cisco CallManager
http://www.cisco.com/en/US/tech/tk1077/technologies_configuration_example09186a00801ad22f.shtml
Hope this helps. If so, please rate the post.
Brandon

Similar Messages

  • HT1338 Need help locating where and how to update Mac OS-X 10.6.5 to the latest Mountain Lion Software...thanx John

    I need help locating where and how to update Mac OS-X to Mountain Lion.....Thanx....Jay

    First update your 10.6 version to 10.6.8 from the software update under the Apple Menu.
    This will add direct access to the Mac App store via a new application.
    Now launch the App Store from your Applications folder - Its the new icon a letter A formed from a ruler pencil and pen on a blue circle !
    Once launched you need to add your iTunes account details or create an account add payment details etc...
    Sign in purchase download and follow install processes to upgrade to 10.8 Mountain Lion.
    OH and to be safe BEFORE you install backup your current system to an external drive !

  • Need help locating my stolen iPhone

    Apart from the "findmyiphone" application, are there other measures I can take to help locate my stolen iPhone?

    Hello alueshima,
    I'm sorry to hear about your phone. I think you should look over the information in this article from Apple:
    If your iPhone, iPad, or iPod touch is lost or stolen
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Need help combining docs in Pages or Preview--glitches

    I'm trying to combine about 20 short docs into one, so it will print as one document. I've tried the following, and run into these problems:
    1) Copying thumbnails in Pages. This works most of the time--however, every now and then, it will only copy one page of a multiple-page document. It doesn't seem to matter what/where I click, only the first page of the doc will copy over. This seems to happen every fourth document or so.
    2) In Preview: tried combining PDFs by dragging and dropping from the sidebar. However, that created something that, while looking like a 38 page single document, still considered each document as separate. When I went to print, it would only print the document that was in the window.
    3) In Preview: tried doing the drag-and-drop by dragging directly on to the page in the sidebar, instead of below or above (as recommended for Snow Leopard in a MacWorld article). Didn't work. The green plus sign appeared, but after I dragged and dropped, the new pages would disappear.
    It would be incredibly helpful if I could solve this problem. I've combined a number of how-to sheets into a packet, and not being able to combine them into a single document means a very long night of collating!
    Thanks for any help.
    BTW, I'm on an iMac, Snow Leopard (10.6.8), Preview 5.0.3 and Pages 4.1.

    When copying the Thumbnails in Pages '09 to paste into the Thumbnails of a 2nd document, they both must have the same page dimensions and orientation.
    When selecting make sure you have all the sections selected (surrounded by a yellow border). Hold down the shift key and select a range or individual selections if need be.
    I have tested this and it works. Even between Word Processing and Layout templates.
    In Preview I tested the merge and yes there appears to be a bug, even after saving, then printing.
    It is not just the two parts treated as separate however, it seems to drop pages at random. Some from the dragged over version and some from the original.
    Possibly it is retaining only pages with different numbers, because it did not renumber them. I will test it further later on when I have time.
    Peter

  • Need help with DOC type web service

    hi,
    I am trying to write a simple message style ( doc type ) web service but no success so far. I have tried to search for examples but no use. I already implemented some simple RPC style web services like calculator etc and able to use them. I am more interested in the DOC type ( which sends SOAP message and receives SOAP message back). Can Anybody give me an example for implementing this type of service ( very-simple say HellowWorld ) or point me to some website . I am not able to generate the response envelope. I can write the client program which will send a SOAP Envelope to this services with one parameter NAME and the services should return Hello Name but in a SOAP envelope form. I can create a SOAP message in this Client using SOAPConnection and MessageFactory etc. Your help will be really appreciated. There is very little stuff about webservices on the internet as well on this forum.
    Thanks
    Vinod

    Hello kwilding2,
    Thanks for the quick response and pointing to some useful websites. I downloaded the code from web service essentials BUT all the examples are using SOAP RPC calls. They create a call object and call one of the service methods and a response is returned. I am little confused about this stuff. I am looking for something which returns the response in a SOAP envelope for which i think i need to use JAXM API which I already have downloaded. I have created a client which composes a SOAP envelope using SOAPConnection and other MessageFactory classes etc and can send this SOAP envelope to a web service. In return I want the web service to give the SOAP envelope.
    I have gone thru xmethods.net and picked the following stock quote request and response:
    Sample Request envelope:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <symbol xsi:type="xsd:string">IBM</symbol>
    </ns1:getQuote>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Sample Response Envelope:
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:getQuoteResponse xmlns:ns1="urn:xmethods-delayed-quotes" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <return xsi:type="xsd:float">133.625</return>
    </ns1:getQuoteResponse>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I also want the things in this order. This webservice at xmethods just returns the price for a stock, so how they say it returns this Response Envelope. Is this Envelope something implied. I am getting more confused.
    any help will be appreciated.
    Thanks
    Vinod

  • Need help locating a wallet case for an Xperia T2 Ultra Smartphone that has a slot on the side for the mini-usb

    I realize this board is for Xperia tablets, but I don't see a board for Xperia Smartphones.  I do hope someone here can help. I have a Sony Xperia T2 Ultra smartphone.  I love the phone, but I purchased a case for it not realizing that the case doesn't have a slot on the side for the mini-usb connector, which means that I have to charge the phone with the case open.
    I called Sony accessories, and they don't seem to make a case with a slot on the side.  They have a very nice case, but again, it doesn't have the correct opening for the charger and you have to charge the phone with the case open.
    I have also searched several websites for such a case with no luck.
    Does anyone here know where I can find a wallet-style case for the Sony Xperia T2 Ultra with a magnetic closure (or some way of securing the case closed) that will actually allow me to charge the phone while the case is closed?  Please let me know.

    This is the only "question" I could extract out of your confusing post:
    "I want to know if it even can be done in Flash or would we need to use something else like PHP or Javascript?"
    It can`t be done in Flash alone you need php.
    With the experience level you already admitted to, I strongly advise to stay away from such a project, you will save you and our customer a lot of headaches, no offense.

  • I need help!  I have moved my music to my new computer and now...

    My music won't play. ITunes tells me that it can't find the music and opens a window to seach, when I take it to the music folder, it then plays the music. How can I do this for all of my music instead of one by one?
    Help, desperate and tired!
    Message was edited by: lasnow

    lasnow,
    Try this.
    1. Take all of your music files (that play) and move them to your my music folder.
    2. Once the songs are in that folder, go into iTunes and delete all of your songs from your libary.
    3. Now select all of your music in the my music folder drag and drop into iTunes.
    4. Once iTunes is finished importing your songs, go to Advanced>Consolidate Library**
    **When you consolidate your library it takes all of your music and places it into the iTunes music folder so it will allways run out of the same file location.
    Hope this Helps,
    DJFX

  • HT4061 need help locating my iPad

    I have a windows phone and can't download iTunes or icloud to find my iPad, it is the night before thanksgiving and the call center is closed can anyone help PLEASE

    If the iPad was running iOS 7, the thief will not ever be able to use it.
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/HT5668
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    iCloud: Lost Mode - Lock and Trace
    http://support.apple.com/kb/PH2700
    iCloud: Remotely Erase your device
    http://support.apple.com/kb/PH2701
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • TS2446 Need help locating stolen phone

    My iphone 4S was stolen today.  I've only had a couple of months and had not downloaded any type of tracking app.  Is there by chance something automatically installed on the phone that could help me locate it?  Thank you.

    If you didn't go to Settings>icloud and turn on Find My iPhone, then you are out of luck.  If the device did have this service turned on, then using a computer's browser, log into your icloud account at icloud.com and go to the Find My iPHone page to try to track it.

  • I got robbed in Aruba and they stole my daughters iphone.  Need help locating it.  I went on line and icloud states device is off line.

    I went to Aruba on vacation and they stole all my stuff including my daughters iphone.  I went to icloud but it states all devices are off line.  Can you please help.

    iCloud (http://icloud.com on a computer or Find My iPhone on another device) are the only way that you might be able to try and locate it. What iOS version was on it ? If it was on iOS 7 then they won't be able to reset it without your password.
    I assume that you've reported it to the police (?). You should also contact your carrier and change your iTunes account password, your email account passwords, and any passwords that you'd stored on websites/emails/notes etc.

  • Need help locating backed up pictures and letters online

    I wrote a letter to my son using QuickOffice. Is it backed up with back up assistant and if so, where. If not,   how do I transfer this to the computer to print and mail the letter. He is in the Army Basic training so electronic communication is not permitted.
    Thank you for your assistance.

    Ann,
    Thanks for your help. I wasn't able to find a way to attach the letter to the email but found and app called "dropbox" free and downloaded to my phone and computer- worked beautifuly. This phone is smarter than I am but I'm learning.  I wanted to leave positive feedback for you but couldn't get that to work tonite! Sue
    <Personal information removed for privacy per the TOS. When replying by email please do not include the original message or risk exposing your email address to the public forum.>
    Message was edited by: Verizon Moderator

  • I need help locating the log tab on my Galaxy III in contacts.

    I'm having trouble locating the tab "LOG" in my contacts; I've seen it before but can't find it now. I've deleted history in my phone & messages that I want deleted. Can anyone point this out?
    Sincerely,
    A dumb-dumb with a smart phone! :O

    It's not in your contacts, it's in the phone app.

  • Need help locating duplicate files and projects. Space is running out

    Ok, over time I have made duplicate files and projects on both my local and external hard drives. What I am looking for is a program that I can run on to Identify duplicate files and such so that I can decide what to delete to free up much needed space.
    Please suggest anything you can think of, I am running out of room.
    Cheers, and Thanks in advance.

    You will find several such utilities at VersionTracker or MacUpdate.
    Tidy Up
    Dupe Guru
    OmniDiskSweeper
    Sponge
    Just to name a few.

  • HT4211 Need help locating screen lock in multitasking bar on iphone

    Can someone tell mehow to locate screen lock in multitasking bar on iphone 4?

    http://support.apple.com/kb/ts3805

  • Need help locating backup files on Ipad 1.

    Went to upgrade OS and it got hung up and restarted then everything was wiped from my Ipad. I was able to restore Apps and stuff from ITunes but lost contacts, email, Safari favorites, etc. Also got a new PC w/ Windows 7 so I have no idea what the backup would be called or where it's at...

    If you never synced with the new computer - you have no backup. If you have synced - then you have a backup.
    Do not connect the iPad to your PC. Launch iTunes and go to Edit>Preferences>Devices - do you see a backup in there? If so - then you have one.
    If you have no iTunes backup - have you been using iCloud to backup?

Maybe you are looking for

  • Windows Vista Home + iTunes = no DVD drives

    I am a long time iTunes user, and have been having an issue with iTunes for the last little while. When I install iTunes (I'm on Windows Vista 32 bit, by the way), after the required restart, my DVD drives' icons disappear (I have 2 of them). I can s

  • You Are Rad If You Know How To Do This...

    Hello My Fellow Flashophiles So, I will bow down to you if you know how to help me with this one. I have a MovieClip in my Flash file which emulates a signature being drawn by animating a mask that covers over a bit more of the underlying bitmap (of

  • HT204380 I have bought a new iPad mini. its not showing me Facetime Installed. How should I start a Facetime ?

    I have bought a new iPad mini. its not showing me Facetime Installed. How should I start a Facetime ?

  • Data Extraction From HR with Delata Update fro Payroll

    Hi All, this is Chava,i got a problem with HR Data.Already i did Full Update,Delta Initialization but after that They did some changes in HR Cluster tables and they extracted Data from R/3 in to BW WIth Functional Module.   Now the problem is Delta U

  • Update BOM with RCSBI020

    I have an issue when updating STPO-postp with the standard program RCSBI020. If STPO-POSTP is modified from 'L' to 'N' (for example), the program delete the item and re-create it. Because of this the historical of the items is deleted. Can any one he