PSTN Call progress indicator

Hi,
I have a set-up where call comes in for prompting and on selection of an option is sent out to an external IVR. The call-flow:
PSTN -> VoiceGW -> CVP -> ICM -> CUCM Directory Number -> Call FWD to PSTN# -> VoiceGW.
At the external IVR, there is a (approx) 20 second ringing before a voice prompt is played.
The issue that I observe is that I do not hear the 20 second ring-back. I get only silence and then the voice prompt is heard.
Debug ISDN q931 shows:
Dec 12 04:33:51.761: ISDN Se0/0/2:23 Q931: RX <- CALL_PROC pd = 8  callref = 0x80E8
        Channel ID i = 0xA98397
                Exclusive, Channel 23
Dec 12 04:33:54.965: ISDN Se0/0/2:23 Q931: RX <- ALERTING pd = 8  callref = 0x80E8
        Progress Ind i = 0x8088 - In-band info or appropriate now available
Dec 12 04:34:16.213: ISDN Se0/0/2:23 Q931: RX <- CONNECT pd = 8  callref = 0x80E8
Dec 12 04:34:16.213: ISDN Se0/0/2:23 Q931: TX -> CONNECT_ACK pd = 8  callref = 0x00E89120174620
30
Any thoughts on how to get the ringback.
Thanks,
Dilip

Hello Megan
What you can do is to calculate the number or entries found on your select, before doing the selection ....and finally on each loop asign a percentage and call the FM again.
i would recommend to not do it....the report will go slower....just put as information before and after the select stm..
Bye
Gabriel

Similar Messages

  • PSTN Caller no ring back tone when IPPhone is CallForwarded

    CallManager version 4.1(3)SR with 6608 T1 blade. IPPhone is call forwarded to an external PSTN number. PSTN caller dials IPPHone DID number, Phone is forwarded to external number via 6608 T1 PRI, PSTN user hears no ring back. User most of the time hangs up. Any help would be great.

    Hi John,
    You could try changing this setting on the Callmanager Gateway config page (after hours);
    Setup non-ISDN Progress Indicator IE Enable
    Default leaves this setting disabled (unchecked).
    Enable this setting only if users are not receiving ringback tones on outbound calls.
    When this setting is enabled, the Cisco CallManager sends Q.931 Setup messages out digital (that is, non-H.323) gateways with the Progress Indicator field set to non-ISDN.
    This message notifies the destination device that the Cisco CallManager gateway is non-ISDN and that the destination device should play in-band ringback.
    From this doc;
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_administration_guide_chapter09186a00803ed699.html#wp1311922
    Hope this helps!
    Rob
    Please remember to rate helpful posts...........

  • How to use progress indicator which block the user for editing ?

    Hi All,
    I have a requirement where i need to show a round progress bar while processing to the database.For example :- I have a bounded taskflow and inside it I have a two jspx page called as "First.jspx" and "Second.jspx".And i have two textboxes and one "Save" button on first.jspx page.
    Now when user puts the values in the textboxes and hits the "Save" button , my ticker or progress indicator should say "Please wait while processing" and as soon as the transaction is complete , i need to show another page which is "Second.jspx" page. "Save" button action has method inside a managed bean which has some functionality and then it executes the VO(View Object) and commits the data.
    How should i implement the indicator?
    I have read this article :- http://www.oracle.com/technetwork/developer-tools/adf/learnmore/42-progressbarcolor-169184.pdf but it doesn't fit to my requirement.I need indicator which holds the user to edit anything on the page.Like what we get when we do any transaction in banks while navigating to payment gateway.
    Please suggest!!!
    Thanks and Regards,
    Shah

    Hi Shah,
    The answer was around the same are that you were looking into. http://www.oracle.com/technetwork/developer-tools/adf/learnmore/27-long-running-queries-169166.pdf but the sample was the 27.
    - Juan Camilo

  • Colors in Progress Indicator

    How to  change colors in Progress Indicator in ALV?

    hi
    good
    go through this hope this would help you to solve your problem
    Please check this sample code.
    data: index type i.
    do 4 times.
    index = sy-index * 25.
      call function 'SAPGUI_PROGRESS_INDICATOR'
           exporting
                percentage = index
                text       = 'Processing Data'.
      wait up to 1 seconds.
    enddo.
    Also check this thread for another sample codes.
    Function module to display % complete message
    reward point if helpful.
    thanks
    mrutyun^

  • Table cell progress indicator

    I see in the JavaFX 2.2 API that there is a table cell implementation for rendering a progress bar. However, it appears that this only supports the progress indicator that takes an incremental update value (as a double, presumably a value between 0 and 1?) to adjust the "progress" in the indicator. There does not appear to be any support for an indeterminate progress indicator that can be embedded in a table cell.
    I am asking because I have a situation where there will be a background task that will be launched potentially for any row in a table. The task may take some time to execute and complete and I would like to show an indeterminate progress indicator that will "spin" until the task completes. I wanted to be able to include this as a cell (column) for each row so that individual rows could indicate whether they were currently "working" or done.
    Is there, or will there be in the near future, support for this type of functionality? Or, are there suggestions on a way to cobble together something that can do this?

    Copy and paste the ProgressBarTableCell code and search and replace ProgressBar with ProgressIndicator on it.
    http://hg.openjdk.java.net/openjfx/8/master/rt/file/tip/javafx-ui-controls/src/javafx/scene/control/cell/ProgressBarTableCell.java
    Here's a minor update to the great example James put together which does this.
    Seems to work fine. Only issue I see when running it on a recent jdk8 version is that the indeterminate progress indicator is a bit too big, then the whole indicator shrinks a little bit once the indicator switches to reporting percentage progress. I didn't investigate that any further, likely it's a minor styling bug in the new JavaFX modena style sheet for Java 8 which you could work around by applying your own style to indeterminate progress indicators.
    * Portions of this code (ProgressIndicatorTableCell) are base upon Oracle
    * JavaFX code (ProgressBarTableCell), which is subject to the following license term.
    * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    * This code is free software; you can redistribute it and/or modify it
    * under the terms of the GNU General Public License version 2 only, as
    * published by the Free Software Foundation.  Oracle designates this
    * particular file as subject to the "Classpath" exception as provided
    * by Oracle in the LICENSE file that accompanied this code.
    * This code is distributed in the hope that it will be useful, but WITHOUT
    * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    * version 2 for more details (a copy is included in the LICENSE file that
    * accompanied this code).
    * You should have received a copy of the GNU General Public License version
    * 2 along with this work; if not, write to the Free Software Foundation,
    * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    * or visit www.oracle.com if you need additional information or have any
    * questions.
    package test;
    import java.util.Random;
    import java.util.concurrent.*;
    import javafx.application.Application;
    import javafx.beans.value.ObservableValue;
    import javafx.concurrent.Task;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.layout.BorderPane;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    public class ProgressIndicatorTableCellTest extends Application {
      public void start(Stage primaryStage) {
        TableView<TestTask> table = new TableView<>();
        Random rng = new Random();
        for (int i = 0; i < 20; i++) {
          table.getItems().add(
                  new TestTask(rng.nextInt(3000) + 2000, rng.nextInt(30) + 20));
        TableColumn<TestTask, String> statusCol = new TableColumn("Status");
        statusCol.setCellValueFactory(new PropertyValueFactory<TestTask, String>(
                "message"));
        statusCol.setPrefWidth(75);
        TableColumn<TestTask, Double> progressCol = new TableColumn("Progress");
        progressCol.setCellValueFactory(new PropertyValueFactory<TestTask, Double>(
                "progress"));
        progressCol
                .setCellFactory(ProgressIndicatorTableCell.<TestTask>forTableColumn());
        table.getColumns().addAll(statusCol, progressCol);
        BorderPane root = new BorderPane();
        root.setCenter(table);
        primaryStage.setScene(new Scene(root));
        primaryStage.show();
        ExecutorService executor = Executors.newFixedThreadPool(table.getItems().size(), new ThreadFactory() {
          @Override
          public Thread newThread(Runnable r) {
            Thread t = new Thread(r);
            t.setDaemon(true);
            return t;
        for (TestTask task : table.getItems()) {
          executor.execute(task);
      public static void main(String[] args) { launch(args); }
      static class TestTask extends Task<Void> {
        private final int waitTime; // milliseconds
        private final int pauseTime; // milliseconds
        public static final int NUM_ITERATIONS = 100;
        TestTask(int waitTime, int pauseTime) {
          this.waitTime = waitTime;
          this.pauseTime = pauseTime;
        @Override
        protected Void call() throws Exception {
          this.updateProgress(ProgressIndicator.INDETERMINATE_PROGRESS, 1);
          this.updateMessage("Waiting...");
          Thread.sleep(waitTime);
          this.updateMessage("Running...");
          for (int i = 0; i < NUM_ITERATIONS; i++) {
            updateProgress((1.0 * i) / NUM_ITERATIONS, 1);
            Thread.sleep(pauseTime);
          this.updateMessage("Done");
          this.updateProgress(1, 1);
          return null;
    class ProgressIndicatorTableCell<S> extends TableCell<S, Double> {
      public static <S> Callback<TableColumn<S, Double>, TableCell<S, Double>> forTableColumn() {
        return new Callback<TableColumn<S, Double>, TableCell<S, Double>>() {
          @Override
          public TableCell<S, Double> call(TableColumn<S, Double> param) {
            return new ProgressIndicatorTableCell<>();
      private final ProgressIndicator progressIndicator;
      private ObservableValue observable;
      public ProgressIndicatorTableCell() {
        this.getStyleClass().add("progress-indicator-table-cell");
        this.progressIndicator = new ProgressIndicator();
        setGraphic(progressIndicator);
      @Override public void updateItem(Double item, boolean empty) {
        super.updateItem(item, empty);
        if (empty) {
          setGraphic(null);
        } else {
          progressIndicator.progressProperty().unbind();
          observable = getTableColumn().getCellObservableValue(getIndex());
          if (observable != null) {
            progressIndicator.progressProperty().bind(observable);
          } else {
            progressIndicator.setProgress(item);
          setGraphic(progressIndicator);
    }

  • Display a progress indicator in the jsp

    Hi to all;
    Once more i need your help.
    I have built a website that can connect insert and retrieve data into and from any database.
    My problem is that, since some of the insert operations take long to complete, I would like a pop up progress indicator to display in order to keep the user inform.
    I have tried AJAX stuff, but i am not satisfied.
    Is there another way to work this out?
    I use sun studio creator and java.
    Thanks

    Encephalopathic wrote:
    DrLaszloJamf wrote:
    What all the koolio kidz be using these days is JavaFX, although I calls it Jizzle.
    I'm not sure about the "koolio kidz", but Sun is sure putting its marketing and development might behind this and apparently to the detriment of Swing. :( Maybe we all will be FX'ing in the near future.I really am waiting for them to get a rapper to start shilling for JavaFX, the way Snoop Dogg played golf on a commercial with Lee Iacocca to sell the Chrysler 300.

  • Methods in cl_gui_frontend_services will break the progress indicator

    Hi guys,
    I have a list of directories of client to check if it exists.
    I use cl_gui_frontend_services=>directory_exist method.
    And I want to show the progress indicator.
    But the method directory_exist will break the indicator, show the status bar's message is like, flashing. appear, disappear, appear, disappear ...
    You can use the codes below to see what happens and can take a comparsion when you comment the method directory_exist .
    any suggestions?
    thanks a lot.
    REPORT  z_test.
    type-POOLs abap.
    DATA: A LIKE SY-UCOMM,
        ldf_derectory  TYPE string,
        ldf_result     TYPE abap_bool.
    ldf_derectory = 'c:\'.
    DO 100 TIMES.
      DO 300 TIMES.
        GET TIME.
      ENDDO.
      A(3) = SY-INDEX.
      A+3 = '%'.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
      EXPORTING
        PERCENTAGE = SY-INDEX
        TEXT       = A.
      CALL METHOD cl_gui_frontend_services=>directory_exist
      EXPORTING
        directory = ldf_derectory
        RECEIVING
        result    = ldf_result.
    ENDDO.

    Hi,
    I'm not sure there is anything you can do about the flashing clock icon in this case.  This may just be a limitation of the GUI.
    Of course, you always have the option of using 0% as the percentage when calling SAPGUI_PROGRESS_INDICATOR.  This will eliminate the clock from the progress display, leaving just the percentage number plus the '%' sign.
    In other words, you can eliminate the annoying flickering by changing your function call to:
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          percentage = 0
          text       = a.
    Regards,
    Jamie

  • No progress indicator or report for Tools menu sequence execution?

    I have a sequence that I call from the TestStand customized Tools menu.
    This sequence generates custom reports on sequences. The report generation
    process can take anywhere from 10 to 60 seconds (there are DB queries
    involved).
    I hoped to use the TestStand progress indicator to display the report
    generation progress and the Report.Load method to display the report to the
    user when its done.
    If I set a breakpoint on the first step of the report generation sequence
    and run it, everything works as expected after I proceed from the break
    point. The progress indicator comes up and updates itself. And the
    operator gets a copy of the report in the Report tab of the execution
    window.
    However, if I don't set a bre
    akpoint, an execution window never pops up. No
    progress indicator, no report when done.
    I assume its got to do with interactive v. non-interactive execution. Is
    there a way to force a Tools menu sequence to execute as an interactive
    execution so I get the execution window to pop up?
    Bob Rafuse
    Etec, Inc.

    James,
    > I think tool menu items are run with the ExecTypeMask_InitiallyHidden
    > and ExecTypeMask_TracingInitiallyOff flags passed to the
    > executionTypeMaskParam parameter to Engine.NewExecution. Thus tool
    > menu executions don't appear in a window unless you hit a breakpoint.
    >
    > In a simple tool menu sequence, I added a statement step with the
    > expression RunState.Tracing = True. This caused the window to appear
    > so the progress indicator and report are visible.
    Thanks. I forgot to mention that I'd tried that... still no luck. I added
    the RunState.Tracing = True as a statement as the first step in my Tools
    seqeunce call. The execution window still does not appear. Is there some
    place special this statement needs to be?
    Are there any global setting
    s that override the Tracing flag? If I check
    Enable Tracing in Station Options, while the window pops up, the execution
    takes unacceptably long as TestStand traces every single step, even when
    tracing speed is set to max. I can't find any other setting that seems
    related to this...
    Any other ideas?
    Thanks,
    Bob
    Etec, Inc.

  • Progress Indicator in ALV report

    Hi All,
    Can any body please help me by providing  code for displaying progress indicator in  ALV report?
    Thanks in advance.
    Tamal Roy

    Hi Biswajit,
    U need to use  this function module  'SAPGUI_PROGRESS_INDICATOR'
    Please check this code
    DATA: A LIKE SY-UCOMM.
    DO 100 TIMES.
      DO 300 TIMES.
        GET TIME.
      ENDDO.
      A(3) = SY-INDEX.A+3 = '%'.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
           EXPORTING
                PERCENTAGE = SY-INDEX
                TEXT       = A.
    ENDDO.
    Best regards,
    raam

  • Progress Indicator usage, examples....

    Hello All,
    I was messing around with the progress indicator UI. It seems as if I can't get it to behave how I want.
    In my example, I am loading some records into the context. (The backend call has already been made and everything is sitting in the cache). The rfc call retrieves some 50,000 records. I am loading 100 at a time into my context everytime the user clicks a button. In the loop that loads the 100 records I've got the following:
    int progress = 0;
    for ( int i=0; i<100; i++ )
        SomeElement el = nodeRFCNode().getSomeElementAt(i);
        CustomElement cusEl = customElementNode.createCustomElement();
        cusEl.setVar( el.getVar() );
        customElementNode.add( cusEl );
        progress++;
        wdContext.currentContextElement().setProgress(progress);
    Progress is an integer value attribute that is bound to the percentValue property of the Progress Indicator UI element.
    Now what I expected to see was the progress indicator increase by 1% every loop iteration. But instead what I saw was the entire progress indicator full after the loop had run its entire course!! That ofcourse is of no value. Can someone help me understand and achieve the result that I expected to see please??
    Kind regards,
    Marshall.

    Hi,
    Thanks for the replies....
    Here is how I have implemented TimedTrigger
    int progress = 0;
    wdContext.currentContextElement().setTrigger(true);
    for ( int i=0; i<100; i++ )
        SomeElement el = nodeRFCNode().getSomeElementAt(i);
        CustomElement cusEl = customElementNode.createCustomElement();
        cusEl.setVar( el.getVar() );
        customElementNode.add( cusEl );
        progress++;
        wdContext.currentContextElement().setProgress(progress);
    wdContext.currentContextElement().setTrigger(false);
    I have created a context value attribute of type boolean called trigger and bound it to the enabled property of the timed trigger. I've set the delat property to 1 and have an onAction event called UpdateProgress. Inside the action I just increment the percentage value of the progress bar. The loop takes approx 8 secs to run, so I know it doesn't finish too quickly.
    However, the progress bar is still not responding as expected. I don't think the TimedTrigger event ever fires. Even when enabled is set to true.
    Any other suggestions please?
    M

  • How to show webgui progress indicator in Webgui while executing report

    ITS 6.2 patch 18
    I am calling r/3 report as a new window from template base html page. Mission is to show webgui progress indicator instead of hour glass. The report takes 3 minutes to the result. Shortly before showing result page,the webgui progress indicator appears at the center of the page. I tried abap function SAPGUI_PROGRESS_INDICATOR to r/3 report.However, it did not work.
    If anyone konws how to do it, let me know.
    I am using below function to call r/3 report.
    <script language="JavaScript">
      function new_win(){
    var w_address, wp  ;
    w_address    = "http://`HTTP_HOST`/scripts/wgate/webgui/!?transaction=ZZZZ&~OkCode=EXEC&PA0001-ORGEH=" + "`PA0001-ORGEH`" + "&PCHDY-DEPTH="  + "`PCHDY-DEPTH`" ; ;
    w_address    = w_address    +  "&client=`write(client)`&language=`write(language)`"  ;
        win_prop = "left=0, top=0, height=600, width=800, status=no, menubar=no, resizable=yes,  fullsize=yes, channelmode=no, scrollbars=yes";
    alert(w_address);
    wp = window.open(w_address,'',win_prop);
    wp.location.href = w_address;
    alert(w_address);
    if (window.focus) {
          wp.focus()
         return false;  
    </SCRIPT>

    Hi Klaus,
    I appreciate your quick response.
    Okay ! Let me give up webgui progress indicator.
    Another question is how to grab webguiform input field data.
    I got other issues.
    As you see source code, I pass parameter like PA0001-ORGEH=`PA0001-ORGEH` to the javascript function for a popup window .
    When I use this `SAP_InputField("PA0001-ORGEH")` clause at template script, I cannot grab data properly before hitting enter. I guess the reason is in webgui's dynamic webpage generation. Is it right ?
    When I use html code <input type="text">, there is no problem in passing parameter. When I use search help function with <input> code,  other field's data is changed into default value.
    If someone knows the way to grab input field data from DOM, let me know. I tried document.webguiform.element[0].value, it did not work.
    It seems there are tons of limits in webgui function.

  • SPA3102 incoming PSTN call volume

    Hi,
    Hope I'm in the right place!
    I have owned an SPA3102 for several years. Principally used for dialling out on a standard DECT handset via my VOIP provider. This works well with no issues at all.
    However, although I do not suffer from echo, I have a problem with call volume if I receive, or make, a call on the BT line. All incoming calls are on the BT line - I have no VOIP number.
    I have now upgraded the firmware to 5.2.13(GW002) hoping that something might magically change but it hasn't of course. I'd be really obliged if someone can give me some settings to play with / tweak. I'm pretty technical but the UI is complex so not sure where to start.
    Many Thanks,
    Jeremy

    Some settings that you can try, the info is from the admin guide.
    The following 2 are in the PSTN Line tab.
    SPA To PSTN Gain - dB of digital gain (or attenuation if negative) to be applied
    to the signal sent from the SPA to the PSTN side. The range is -15 to 12.
    The default is 0.
    PSTN To SPA Gain-  dB of digital gain (or attenuation if negative) to be applied
    to the signal sent from the PSTN side to the SPA. The range is -15 to 12.
    The default is 0.
    The following 2 are in the Regional tab.
    FXS Port Input Gain - Input gain in dB, up to three decimal places. The range is
    6.000 to -12.000.
    The default is -3.
    FXS Port Output Gain - Output gain in dB, up to three decimal places. The range is
    6.000 to -12.000. The Call Progress Tones and DTMF playback level are not affected by the FXS Port Output
    Gain parameter.
    The default is -3.

  • Cisco 2911 Voice Gateway SIP PSTN Calls Fail

    Hello All,
        I am having trouble with outboud SIP PSTN calls through a Cisco 2911 Voice Gateway.  2911 VG terminates PSTN SIP Traffic and connects to Avaya CS1000M via QSIG PRI Trunks. When calls are attempted outbound fron the PBX the caller gets a fast busy.  Debug ISDN q931 shows the call hitting the 2911 properly, debug voip ccapi inout shows the call matching the correct dial peers and debug ccsip shows the invite to the PSTN Provider SBC, however within the invite the "from" address incorrectly shows the calling number with the provider SBC address (see below).  does anyone have any insight on how to correct this?  Attached are VG config and Debug isdn q931, voip ccapi inout, ccsip messages and ccsip call.  Thanks in advance for any help!!
    From: <sip:[email protected]>:tag=6166CDC4-882
    To: <sip:[email protected]>
    Shawn C. Smith

    i have same problem my cucm ip is 192.168.200.53
    my Voice Gateway is SIP by ip 192.168.200.86 for internal
    and 172.29.7.94
    and my SIP Server is 10.208.9.69
    if its oky can yuo take a look at my problem please
    this is the syslog from debug
    May 30 20:19:34.284: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    INVITE sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 192.168.200.53:5060;branch=z9hG4bK3bd451bf17e0
    From: "Aysar Mohamed" <sip:[email protected]>;tag=37693~244641b0-36ac-434c-91c1-823f25a68b28-18299026
    To: <sip:[email protected]>
    Date: Fri, 30 May 2014 20:19:34 GMT
    Call-ID: [email protected]
    Supported: timer,resource-priority,replaces
    Min-SE:  1800
    User-Agent: Cisco-CUCM8.6
    Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY
    CSeq: 101 INVITE
    Expires: 180
    Allow-Events: presence, kpml
    Supported: X-cisco-srtp-fallback
    Supported: Geolocation
    Call-Info: <sip:192.168.200.53:5060>;method="NOTIFY;Event=telephone-event;Duration=500"
    Cisco-Guid: 3047462016-0000065536-0000004549-0902342848
    Session-Expires:  1800
    P-Asserted-Identity: "Aysar Mohamed" <sip:[email protected]>
    Remote-Party-ID: "Aysar Mohamed" <sip:[email protected]>;party=calling;screen=yes;privacy=off
    Contact: <sip:[email protected]:5060>
    Max-Forwards: 70
    Content-Length: 0
    May 30 20:19:34.284: //-1/B5A494800000/CCAPI/cc_api_display_ie_subfields:
       cc_api_call_setup_ind_common:
       cisco-username=2217156
       ----- ccCallInfo IE subfields -----
       cisco-ani=2217156
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=90555769123
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    May 30 20:19:34.288: //-1/B5A494800000/CCAPI/cc_api_call_setup_ind_common:
       Interface=0x30CF41D4, Call Info(
       Calling Number=2217156,(Calling Name=)(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=90555769123(TON=Unknown, NPI=Unknown),
       Calling Translated=FALSE, Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE,
       Incoming Dial-peer=0, Progress Indication=NULL(0), Calling IE Present=TRUE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, CLID Transparent=FALSE), Call Id=465
    May 30 20:19:34.288: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    May 30 20:19:34.288: :cc_get_feature_vsa malloc success
    May 30 20:19:34.288: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    May 30 20:19:34.288:  cc_get_feature_vsa count is 1
    May 30 20:19:34.288: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    May 30 20:19:34.288: :FEATURE_VSA attributes are: feature_name:0,feature_time:832953048,feature_id:85
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/cc_api_call_setup_ind_common:
       Set Up Event Sent;
       Call Info(Calling Number=2217156(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=90555769123(TON=Unknown, NPI=Unknown))
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/cc_process_call_setup_ind:
       Event=0x2B82D890
    May 30 20:19:34.288: //-1/xxxxxxxxxxxx/CCAPI/cc_setupind_match_search:
       Try with the demoted called number 90555769123
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccCallSetContext:
       Context=0x2ABC2E44
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/cc_process_call_setup_ind:
       >>>>CCAPI handed cid 465 with tag 0 to app "_ManagedAppProcess_Default"
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccCallProceeding:
       Progress Indication=NULL(0)
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccCallSetupRequest:
       Destination=, Calling IE Present=TRUE, Mode=0,
       Outgoing Dial-peer=802, Params=0x2ABC19D4, Progress Indication=NULL(0)
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccCheckClipClir:
       In: Calling Number=2217156(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccCheckClipClir:
       Out: Calling Number=2217156(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed)
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccCallSetupRequest:
       Destination Pattern=9T, Called Number=0555769123, Digit Strip=FALSE
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccCallSetupRequest:
       Calling Number=2217156(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=0555769123(TON=Unknown, NPI=Unknown),
       Redirect Number=, Display Info=Aysar Mohamed
       Account Number=2217156, Final Destination Flag=TRUE,
       Guid=B5A49480-0001-0000-0000-11C535C8A8C0, Outgoing Dial-peer=802
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/cc_api_display_ie_subfields:
       ccCallSetupRequest:
       cisco-username=2217156
       ----- ccCallInfo IE subfields -----
       cisco-ani=2217156
       cisco-anitype=0
       cisco-aniplan=0
       cisco-anipi=0
       cisco-anisi=1
       dest=0555769123
       cisco-desttype=0
       cisco-destplan=0
       cisco-rdie=FFFFFFFF
       cisco-rdn=
       cisco-rdntype=0
       cisco-rdnplan=0
       cisco-rdnpi=-1
       cisco-rdnsi=-1
       cisco-redirectreason=-1   fwd_final_type =0
       final_redirectNumber =
       hunt_group_timeout =0
    May 30 20:19:34.288: //465/B5A494800000/CCAPI/ccIFCallSetupRequestPrivate:
       Interface=0x30CF41D4, Interface Type=3, Destination=, Mode=0x0,
       Call Params(Calling Number=2217156,(Calling Name=Aysar Mohamed)(TON=Unknown, NPI=Unknown, Screening=User, Passed, Presentation=Allowed),
       Called Number=0555769123(TON=Unknown, NPI=Unknown), Calling Translated=FALSE,
       Subscriber Type Str=Unknown, FinalDestinationFlag=TRUE, Outgoing Dial-peer=802, Call Count On=FALSE,
       Source Trkgrp Route Label=, Target Trkgrp Route Label=, tg_label_flag=0, Application Call Id=)
    May 30 20:19:34.288: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    May 30 20:19:34.288: :cc_get_feature_vsa malloc success
    May 30 20:19:34.288: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    May 30 20:19:34.288:  cc_get_feature_vsa count is 2
    May 30 20:19:34.288: //-1/xxxxxxxxxxxx/CCAPI/cc_get_feature_vsa:
    May 30 20:19:34.288: :FEATURE_VSA attributes are: feature_name:0,feature_time:832952824,feature_id:86
    May 30 20:19:34.292: //466/B5A494800000/CCAPI/ccIFCallSetupRequestPrivate:
       SPI Call Setup Request Is Success; Interface Type=3, FlowMode=1
    May 30 20:19:34.292: //466/B5A494800000/CCAPI/ccCallSetContext:
       Context=0x2ABC1984
    May 30 20:19:34.292: //465/B5A494800000/CCAPI/ccSaveDialpeerTag:
       Outgoing Dial-peer=802
    May 30 20:19:34.292: //466/B5A494800000/CCAPI/cc_api_call_proceeding:
       Interface=0x30CF41D4, Progress Indication=NULL(0)
    May 30 20:19:34.292: //465/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 192.168.200.53:5060;branch=z9hG4bK3bd451bf17e0
    From: "Aysar Mohamed" <sip:[email protected]>;tag=37693~244641b0-36ac-434c-91c1-823f25a68b28-18299026
    To: <sip:[email protected]>
    Date: Fri, 30 May 2014 20:19:34 GMT
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Allow-Events: telephone-event
    Server: Cisco-SIPGateway/IOS-12.x
    Content-Length: 0
    May 30 20:19:34.292: //466/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    INVITE sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 172.29.7.94:5060;branch=z9hG4bK461C
    Remote-Party-ID: "Aysar Mohamed" <sip:[email protected]>;party=calling;screen=yes;privacy=off
    From: "Aysar Mohamed" <sip:[email protected]>;tag=7394E4-1898
    To: <sip:[email protected]>
    Date: Fri, 30 May 2014 20:19:34 GMT
    Call-ID: [email protected]
    Supported: timer,resource-priority,replaces,sdp-anat
    Min-SE:  1800
    Cisco-Guid: 3047462016-0000065536-0000004549-0902342848
    User-Agent: Cisco-SIPGateway/IOS-12.x
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    CSeq: 101 INVITE
    Timestamp: 1401481174
    Contact: <sip:[email protected]:5060>
    Call-Info: <sip:172.29.7.94:5060>;method="NOTIFY;Event=telephone-event;Duration=2000"
    Expires: 180
    Allow-Events: kpml, telephone-event
    Max-Forwards: 69
    Session-Expires:  1800
    Content-Length: 0
    May 30 20:19:34.300: //466/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 172.29.7.94:5060;branch=z9hG4bK461C
    Call-ID: [email protected]
    From: "Aysar Mohamed"<sip:[email protected]>;tag=7394E4-1898
    To: <sip:[email protected]>
    CSeq: 101 INVITE
    Content-Length: 0
    May 30 20:19:34.612: //466/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 183 Session Progress
    Via: SIP/2.0/UDP 172.29.7.94:5060;branch=z9hG4bK461C
    Record-Route: <sip:10.208.9.69:5060;transport=udp;lr>
    Call-ID: [email protected]
    From: "Aysar Mohamed"<sip:[email protected]>;tag=7394E4-1898
    To: <sip:[email protected]>;tag=sbc0806eppk5yip-CC-57
    CSeq: 101 INVITE
    Contact: <sip:[email protected]:5060;user=phone>
    Allow: INVITE,ACK,OPTIONS,BYE,CANCEL,REGISTER,INFO,PRACK,SUBSCRIBE,NOTIFY,UPDATE,MESSAGE,REFER
    Content-Length: 328
    Content-Type: application/sdp
    v=0
    o=- 17192647 17192647 IN IP4 10.208.9.69
    s=SBC call
    c=IN IP4 10.208.9.69
    t=0 0
    m=audio 39910 RTP/AVP 8 0 102 102 18 116
    a=rtpmap:8 PCMA/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:102 AMR/8000
    a=rtpmap:102 AMR/8000
    a=rtpmap:18 G729/8000
    a=rtpmap:116 telephone-event/8000
    a=ptime:5
    a=fmtp:116 0-15
    a=fmtp:18 annexb=yes
    May 30 20:19:34.612: %SIP-3-UNSUPPORTED: Unsupported ptime value
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_caps_ind:
       Destination Interface=0x0, Destination Call Id=-1, Source Call Id=466,
       Caps(Codec=0x2, Fax Rate=0x2, Vad=0x1,
       Modem=0x0, Codec Bytes=160, Signal Type=2)
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_caps_ind:
       Caps(Playout Mode=1, Playout Initial=60(ms), Playout Min=40(ms),
       Playout Max=1000(ms), Fax Nom=300(ms))
    May 30 20:19:34.612: //465/B5A494800000/CCAPI/cc_api_caps_ack:
       Destination Interface=0x0, Destination Call Id=-1, Source Call Id=465,
       Caps(Codec=g729r8(0x4), Fax Rate=FAX_RATE_VOICE(0x2), Vad=ON(0x2),
       Modem=OFF(0x0), Codec Bytes=20, Signal Type=2, Seq Num Start=3882)
    May 30 20:19:34.612: //465/B5A494800000/CCAPI/cc_api_caps_ack:
       Destination Interface=0x0, Destination Call Id=-1, Source Call Id=465,
       Caps(Codec=g729r8(0x4), Fax Rate=FAX_RATE_VOICE(0x2), Vad=ON(0x2),
       Modem=OFF(0x0), Codec Bytes=20, Signal Type=2, Seq Num Start=3882)
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_event_indication:
       Event=170, Call Id=466
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_event_indication:
       Event Is Sent To Conferenced SPI(s) Directly
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_event_indication:
       Event=98, Call Id=466
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_event_indication:
       Event Is Sent To Conferenced SPI(s) Directly
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_call_cut_progress:
       Interface=0x30CF41D4, Progress Indication=INBAND(8), Signal Indication=SIGNAL RINGBACK(1),
       Cause Value=0
    May 30 20:19:34.612: //466/B5A494800000/CCAPI/cc_api_call_cut_progress:
       Call Entry(Responsed=TRUE)
    May 30 20:19:34.612: //465/B5A494800000/CCAPI/ccCallCutProgress:
       Progress Indication=INBAND(8), Signal Indication=SIGNAL RINGBACK(1), Cause Value=0
       Voice Call Send Alert=FALSE, Call Entry(Alert Sent=FALSE)
    May 30 20:19:34.612: //465/B5A494800000/CCAPI/ccCallCutProgress:
       Call Entry(Responsed=TRUE)
    May 30 20:19:34.612: //465/B5A494800000/CCAPI/ccConferenceCreate:
       (confID=0x30C11410, callID1=0x1D1, gcid=8C9E3127-E76E11E3-8274BE8C-EC3B12A0, tag=0x0)
    May 30 20:19:34.616: //466/B5A494800000/CCAPI/ccConferenceCreate:
       (confID=0x30C11410, callID2=0x1D2, gcid=8C9E3127-E76E11E3-8274BE8C-EC3B12A0, tag=0x0)
    May 30 20:19:34.616: //465/B5A494800000/CCAPI/ccConferenceCreate:
       Conference Id=0x30C11410, Call Id1=465, Call Id2=466, Tag=0x0
    May 30 20:19:34.616: //465/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    May 30 20:19:34.616: cc_api_get_xcode_stream : 4702
    May 30 20:19:34.616: //466/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    May 30 20:19:34.616: cc_api_get_xcode_stream : 4702
    May 30 20:19:34.616: //465/B5A494800000/CCAPI/ccConferenceCreate:
    May 30 20:19:34.616: ccConferenceCreate: ret1=0, codecMask1=2, bytes1=160, negot1=0, dtmf1=0
                        ret2=0, codecMask2=2, bytes2=160, negot2=1, dtmf2=6,
                        tx_dynamic_pt1=0, rx_dynamic_pt1=0, codec_mode1=0, params_bitmap1 =0
                        tx_dynamic_pt2=8, rx_dynamic_pt2=8, codec_mode2=0, params_bitmap2 =0
    May 30 20:19:34.616: //465/B5A494800000/CCAPI/ccConferenceCreate:
       delay media to slow start case, codec negotation is not done
    May 30 20:19:34.616: //465/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    May 30 20:19:34.616: cc_api_get_xcode_stream : 4702
    May 30 20:19:34.616: //465/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    May 30 20:19:34.616: cc_api_get_xcode_stream : 4702
    May 30 20:19:34.616: //465/B5A494800000/CCAPI/cc_api_bridge_done:
       Conference Id=0x16, Source Interface=0x30CF41D4, Source Call Id=465,
       Destination Call Id=466, Disposition=0x0, Tag=0x0
    May 30 20:19:34.616: //466/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    May 30 20:19:34.616: cc_api_get_xcode_stream : 4702
    May 30 20:19:34.616: //466/xxxxxxxxxxxx/CCAPI/cc_api_get_xcode_stream:
    May 30 20:19:34.616: cc_api_get_xcode_stream : 4702
    May 30 20:19:34.616: //466/B5A494800000/CCAPI/cc_api_bridge_done:
       Conference Id=0x16, Source Interface=0x30CF41D4, Source Call Id=466,
       Destination Call Id=465, Disposition=0x0, Tag=0x0
    May 30 20:19:34.616: //465/B5A494800000/CCAPI/cc_generic_bridge_done:
       Conference Id=0x16, Source Interface=0x30CF41D4, Source Call Id=466,
       Destination Call Id=465, Disposition=0x0, Tag=0x0
    May 30 20:19:34.616: //465/B5A494800000/CCAPI/ccConferenceCreate:
       Call Entry(Conference Id=0x16, Destination Call Id=466)
    May 30 20:19:34.616: //466/B5A494800000/CCAPI/ccConferenceCreate:
       Call Entry(Conference Id=0x16, Destination Call Id=465)
    May 30 20:19:34.616: //465/B5A494800000/CCAPI/cc_process_notify_bridge_done:
       Conference Id=0x16, Call Id1=465, Call Id2=466
    May 30 20:19:34.616: //465/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 183 Session Progress
    Via: SIP/2.0/UDP 192.168.200.53:5060;branch=z9hG4bK3bd451bf17e0
    From: "Aysar Mohamed" <sip:[email protected]>;tag=37693~244641b0-36ac-434c-91c1-823f25a68b28-18299026
    To: <sip:[email protected]>;tag=739628-1BDB
    Date: Fri, 30 May 2014 20:19:34 GMT
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    Allow-Events: telephone-event
    Remote-Party-ID: <sip:[email protected]>;party=called;screen=yes;privacy=off
    Contact: <sip:[email protected]:5060>
    Supported: sdp-anat
    Server: Cisco-SIPGateway/IOS-12.x
    Content-Type: application/sdp
    Content-Disposition: session;handling=required
    Content-Length: 233
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 2639 5276 IN IP4 192.168.200.86
    s=SIP Call
    c=IN IP4 192.168.200.86
    t=0 0
    m=audio 18288 RTP/AVP 8 0 19
    c=IN IP4 192.168.200.86
    a=rtpmap:8 PCMA/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:19 CN/8000
    May 30 20:19:34.680: //466/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Received:
    SIP/2.0 500 Server Internal Error
    Via: SIP/2.0/UDP 172.29.7.94:5060;branch=z9hG4bK461C
    Record-Route: <sip:10.208.9.69:5060;transport=udp;lr>
    Call-ID: [email protected]
    From: "Aysar Mohamed"<sip:[email protected]>;tag=7394E4-1898
    To: <sip:[email protected]>;tag=sbc0806eppk5yip-CC-57
    CSeq: 101 INVITE
    Reason: Q.850;cause=127;text="interworking unspecified"
    Warning: 399 - "SoftX3000 R601-CCU Rel POS:[3103] Release from CR"
    Content-Length: 0
    May 30 20:19:34.680: //466/B5A494800000/CCAPI/cc_api_call_disconnected:
       Cause Value=41, Interface=0x30CF41D4, Call Id=466
    May 30 20:19:34.680: //466/B5A494800000/CCAPI/cc_api_call_disconnected:
       Call Entry(Responsed=TRUE, Cause Value=41, Retry Count=0)
    May 30 20:19:34.680: //465/B5A494800000/CCAPI/ccCallReleaseResources:
       release reserved xcoding resource.
    May 30 20:19:34.680: //466/B5A494800000/CCAPI/ccCallSetAAA_Accounting:
       Accounting=0, Call Id=466
    May 30 20:19:34.680: //465/B5A494800000/CCAPI/ccConferenceDestroy:
       Conference Id=0x16, Tag=0x0
    May 30 20:19:34.680: //465/B5A494800000/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x16, Source Interface=0x30CF41D4, Source Call Id=465,
       Destination Call Id=466, Disposition=0x0, Tag=0x0
    May 30 20:19:34.680: //466/B5A494800000/CCAPI/cc_api_bridge_drop_done:
       Conference Id=0x16, Source Interface=0x30CF41D4, Source Call Id=466,
       Destination Call Id=465, Disposition=0x0, Tag=0x0
    May 30 20:19:34.680: //465/B5A494800000/CCAPI/cc_generic_bridge_done:
       Conference Id=0x16, Source Interface=0x30CF41D4, Source Call Id=466,
       Destination Call Id=465, Disposition=0x0, Tag=0x0
    May 30 20:19:34.680: //466/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    ACK sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 172.29.7.94:5060;branch=z9hG4bK461C
    From: "Aysar Mohamed" <sip:[email protected]>;tag=7394E4-1898
    To: <sip:[email protected]>;tag=sbc0806eppk5yip-CC-57
    Date: Fri, 30 May 2014 20:19:34 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: kpml, telephone-event
    Content-Length: 0
    May 30 20:19:34.684: //466/B5A494800000/CCAPI/ccCallDisconnect:
       Cause Value=41, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=41)
    May 30 20:19:34.684: //466/B5A494800000/CCAPI/ccCallDisconnect:
       Cause Value=41, Call Entry(Responsed=TRUE, Cause Value=41)
    May 30 20:19:34.684: //466/B5A494800000/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x30CF41D4, Tag=0x0, Call Id=466,
       Call Entry(Disconnect Cause=41, Voice Class Cause Code=0, Retry Count=0)
    May 30 20:19:34.684: //466/B5A494800000/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    May 30 20:19:34.684: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    May 30 20:19:34.684: :cc_free_feature_vsa freeing 31A5D9F0
    May 30 20:19:34.684: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    May 30 20:19:34.684:  vsacount in free is 1
    May 30 20:19:34.684: //465/B5A494800000/CCAPI/ccCallDisconnect:
       Cause Value=41, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=0)
    May 30 20:19:34.684: //465/B5A494800000/CCAPI/ccCallDisconnect:
       Cause Value=41, Call Entry(Responsed=TRUE, Cause Value=41)
    May 30 20:19:34.684: //465/B5A494800000/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 503 Service Unavailable
    Via: SIP/2.0/UDP 192.168.200.53:5060;branch=z9hG4bK3bd451bf17e0
    From: "Aysar Mohamed" <sip:[email protected]>;tag=37693~244641b0-36ac-434c-91c1-823f25a68b28-18299026
    To: <sip:[email protected]>;tag=739628-1BDB
    Date: Fri, 30 May 2014 20:19:34 GMT
    Call-ID: [email protected]
    CSeq: 101 INVITE
    Allow-Events: telephone-event
    Server: Cisco-SIPGateway/IOS-12.x
    Reason: Q.850;cause=41
    Content-Length: 0
    May 30 20:19:34.684: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    ACK sip:[email protected]:5060 SIP/2.0
    Via: SIP/2.0/UDP 192.168.200.53:5060;branch=z9hG4bK3bd451bf17e0
    From: "Aysar Mohamed" <sip:[email protected]>;tag=37693~244641b0-36ac-434c-91c1-823f25a68b28-18299026
    To: <sip:[email protected]>;tag=739628-1BDB
    Date: Fri, 30 May 2014 20:19:34 GMT
    Call-ID: [email protected]
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: presence, kpml
    Content-Length: 0
    May 30 20:19:34.688: //465/B5A494800000/CCAPI/cc_api_call_disconnect_done:
       Disposition=0, Interface=0x30CF41D4, Tag=0x0, Call Id=465,
       Call Entry(Disconnect Cause=41, Voice Class Cause Code=0, Retry Count=0)
    May 30 20:19:34.688: //465/B5A494800000/CCAPI/cc_api_call_disconnect_done:
       Call Disconnect Event Sent
    May 30 20:19:34.688: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    May 30 20:19:34.688: :cc_free_feature_vsa freeing 31A5DAD0
    May 30 20:19:34.688: //-1/xxxxxxxxxxxx/CCAPI/cc_free_feature_vsa:
    May 30 20:19:34.688:  vsacount in free is 0
    May 30 20:19:36.044: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    OPTIONS sip:172.29.7.94:5060 SIP/2.0
    Via: SIP/2.0/UDP 10.208.9.69:5060;branch=z9hG4bKmisco3ykfiooegpygsphkocp1T20326
    Call-ID: isbcfemyk1p1mkteets1tcmi53eeehfhikcp@SoftX3000
    From: <sip:172.29.7.94:5060>;tag=sbc0803k1pyk51o
    To: <sip:172.29.7.94>
    CSeq: 1 OPTIONS
    Max-Forwards: 70
    Content-Length: 0
    May 30 20:19:36.048: //467/8DAABF6C8278/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 200 OK
    Via: SIP/2.0/UDP 10.208.9.69:5060;branch=z9hG4bKmisco3ykfiooegpygsphkocp1T20326
    From: <sip:172.29.7.94:5060>;tag=sbc0803k1pyk51o
    To: <sip:172.29.7.94>;tag=739BBC-1CE2
    Date: Fri, 30 May 2014 20:19:36 GMT
    Call-ID: isbcfemyk1p1mkteets1tcmi53eeehfhikcp@SoftX3000
    Server: Cisco-SIPGateway/IOS-12.x
    CSeq: 1 OPTIONS
    Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTER
    Allow-Events: telephone-event
    Accept: application/sdp
    Supported: 100rel,timer,resource-priority,replaces,sdp-anat
    Content-Type: application/sdp
    Content-Length: 446
    v=0
    o=CiscoSystemsSIP-GW-UserAgent 3496 1601 IN IP4 172.29.7.94
    s=SIP Call
    c=IN IP4 172.29.7.94
    t=0 0
    m=audio 0 RTP/AVP 18 0 8 9 4 2 15
    c=IN IP4 172.29.7.94
    m=image 0 udptl t38
    c=IN IP4 172.29.7.94
    a=T38FaxVersion:0
    a=T38MaxBitRate:9600
    a=T38FaxFillBitRemoval:0
    a=T38FaxTranscodingMMR:0
    a=T38FaxTranscodingJBIG:0
    a=T38FaxRateManagement:transferredTCF
    a=T38FaxMaxBuffer:200
    a=T38FaxMaxDatagram:320
    a=T38FaxUdpEC:t38UDPRedundancy
    My SIP GW internal ip address is 192.168.200.86
    and the Public IP is : 172.29.7.94
    My CUCM is 192.168.200.53
    my GW Config is :
    voice service voip
     allow-connections h323 to h323
     allow-connections h323 to sip
     allow-connections sip to h323
     allow-connections sip to sip
     fax protocol t38 version 0 ls-redundancy 0 hs-redundancy 0 fallback none
     sip
      registrar server
    voice class codec 1
     codec preference 1 g711alaw
     codec preference 2 g711ulaw
     codec preference 3 g729r8
     codec preference 4 g729br8
    voice translation-rule 3
     rule 1 /^9\(\)/ /\1/
    voice translation-rule 4
     rule 4 /^22217/ /7/
     rule 5 /^2217/ /7/
     rule 6 /^022217/ /7/
     rule 7 /^0122217/ /7/
    voice translation-rule 5
     rule 1 /^5/ /905/
     rule 2 /^1/ /901/
     rule 3 /^2/ /902/
     rule 4 /^3/ /903/
     rule 5 /^4/ /904/
     rule 6 /^6/ /906/
     rule 7 /^7/ /907/
     rule 8 /^8/ /908/
     rule 10 /^00/ /900/
     rule 11 /'+'/ /900/
    voice translation-profile OUT
     translate called 3
    voice translation-profile REDIAL
     translate calling 5
    voice translation-profile SIP-NEW
     translate called 4
    application
     service mva http://192.168.200.53:8080/ccmivr/pages/IVRMainpage.vxml
     service ccm http://192.168.200.53:8080/ccmivr/pages/IVRMainpage.vxml
    license udi pid CISCO2921/K9 sn FCZ164960G0
    hw-module pvdm 0/0
    hw-module pvdm 0/1
    interface Embedded-Service-Engine0/0
     no ip address
     shutdown
    interface GigabitEthernet0/0
     description $ETH-LAN$$ETH-SW-LAUNCH$$INTF-INFO-GE 0/0$
     ip address 192.168.200.86 255.255.255.0
     duplex auto
     speed auto
    interface GigabitEthernet0/1
     ip address 172.29.7.94 255.255.255.252
     duplex auto
     speed auto
    ip http server
    ip http access-class 23
    ip http authentication local
    no ip http secure-server
    ip http timeout-policy idle 60 life 86400 requests 10000
    ip route 0.0.0.0 0.0.0.0 192.168.200.1
    ip route 10.208.9.0 255.255.255.0 172.29.7.93
    access-list 23 permit 10.10.10.0 0.0.0.7
    control-plane
    mgcp profile default
    sccp local GigabitEthernet0/0
    sccp ccm 192.168.200.53 identifier 1 priority 1 version 7.0
    sccp
    sccp ccm group 1
     associate ccm 1 priority 1
     associate profile 2 register NAGHI-MTP
    dspfarm profile 2 mtp
     codec g711alaw
     maximum sessions hardware 25
     associate application SCCP
    dial-peer voice 802 voip
     description ** SIP TO STC **
     translation-profile outgoing OUT
     destination-pattern 9T
     session protocol sipv2
     session target ipv4:10.208.9.69:5060
     session transport udp
     voice-class codec 1
     voice-class sip dtmf-relay force rtp-nte
     dtmf-relay sip-notify rtp-nte sip-kpml
     no vad
    dial-peer voice 811 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.53
     incoming called-number 022217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    dial-peer voice 812 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.53
     incoming called-number 22217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    dial-peer voice 813 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.53
     incoming called-number 2217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    dial-peer voice 814 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     preference 1
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.63
     incoming called-number 022217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    dial-peer voice 815 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     preference 1
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.63
     incoming called-number 22217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    dial-peer voice 816 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     preference 1
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.63
     incoming called-number 2217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    dial-peer voice 817 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.53
     incoming called-number 0122217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    dial-peer voice 818 voip
     description ** SIP INCOMING FROM STC **
     translation-profile incoming SIP-NEW
     translation-profile outgoing REDIAL
     preference 1
     destination-pattern 7...
     session protocol sipv2
     session target ipv4:192.168.200.63
     incoming called-number 0122217...$
     dtmf-relay sip-notify rtp-nte sip-kpml
     codec g711alaw
    Please i need ur help ASAP

  • Can't get past gray screen with progress indicator... Help

    I can't turn on my Macbook. It starts but won't go past the gray screen with the progress indicator (spinning circle).
    I have tried:
    1. turning off, removing battery, holding start for 5+ seconds, replacing battery and then turning on.
    2. Holding command + option + R + P while staring up, waited for 3+ chimes.
    3. holding Shift down while starting up
    none of these things are working.
    I've been on hold with apple service/support for almost an hour now.
    I have an assignment on the computer that is due by midnight.
    HELP!
    I'm not very computer savvy and this is my first mac.
    Any ideas folks??
    Thanks.
    Macbook   Mac OS X (10.4.7)  

    You've done all the standard procedures. If you have any peripherals attached, disconnect them.
    This describes resetting the PMU:
    http://docs.info.apple.com/article.html?artnum=303319
    Did you have the AC disconnected when you did it? I don't have any other ideas.
    These are the startup key options:
    http://docs.info.apple.com/article.html?artnum=303124
    Edit: If you have the install disc stuck in it anyway, can you get the hardware test to work? (Reboot while pressing the D key.)

  • Can we have our custom name in the place of Progress Indicator ?

    Hello all..
    I am using Captivate 4. I would like to use a custom name "Prasna"(means the word "question' in a local language) instead of the word "Question". How can I change it as per my requirement. In the progress indicator window, there are only 2 options where I couldn't find what I need.
    Thanks & regards,
    Pullela.

    Hello Pullela,
    For once you are lucky to use Captivate 4, because this feature was lost in CP5. It is a bit cumbersome but possible: choose File Export Captions to Word (do not remember the exact phrasing, sorry). In the Word document you will see the progess indicators, and you'll be able to change the word Question. Then re-import without changing the filename in the Captivate file.
    For CP5-users I posted an alternative workaround on my blog recently; it uses the master slide, but you could also tweak this for CP4, you'll have to copy/paste to all slides:
    Customize the progress indicator
    Lilybiri

Maybe you are looking for

  • Executable JAR file: Could not find the main class.

    Hello, I have a problem with making an executable JAR file. I have written a JAVA program that consists of five different classes of which User.java is the main class and I have saved a text document with Main-Class: User and a blank line after that.

  • JNI and Cryptography

    I am using Visual C++ program that uses JNI. Within the code, I am using Java 2 Cryptography extension to do encrypting and decrypting. I need help to understand the error message I have and what I need to do to fix this bug.... Thanks so much for an

  • 32 bit chroot vs multilib?

    What are the advantages and disadvantages of using a chroot vs using multilib for running 32 bit applications? What are people using? My system is pure 64 bit at the moment but I'd like to set up ndispluginwrapper + flash, and 32 bit wine.

  • Why is it taking so long to upload articles with video content?

    It was uploading well the past several days now it seems to take forever, or it throws an error and doesn't upload at all. The videos aren't that big, between 10 - 20 Mb.

  • How to read/convert hexidecimal string to an interger

    Hello everyone, This is probably very simple but non of my books show what I need to do. I am running Java 1.4.2 and not ready yet for 1.5. I wanted to read Property entries containing hexidecimal entries and then convert the hexidecimal entries (whi