Redirecting System.err on a mobile phone?

Hi,
Is there a way of redirecting System.err? Unfortunately, System.setErr does not exist in MIDP, so I haven't been able to write my own PrintStream to replace err.
I need to know what the output of Exception.printStackTrace() is at a certain point. There is certainly a way of accessing System.err, otherwise it wouldn't be present in MIDP ... .
Thanks!
Stefan

Hi
J2ME Polish provides a logging framework, which offers different logging levels and the ability to view logging messages on real devices.
Mihai

Similar Messages

  • How do I redirect System.err output in iPlanet 4.1?

    All,
    I've been trying for days to redirect System.err output from a Java program
    to a log file. I followed the instructions here:
    http://knowledgebase.iplanet.com/ikb/kb/articles/4790.html
    Unfortunately, nothing has been written to any of the log files (even though
    I have plenty of System.err.println()'s in my code).
    Anyone else get this to work correctly?
    Thanks in advance,
    --Bill                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    What is the product web server or application server ? If it is application
    server then I'm very sure that this output will be seen in the kjs log file in
    Unix and in the command window in Windows NT/2K, only if you have allowed the
    process to interact with desktop. Please let me know if this answers your
    question for me to help you further on this.
    Regards
    Raj
    "news.uswest.net" wrote:
    All,
    I've been trying for days to redirect System.err output from a Java program
    to a log file. I followed the instructions here:
    http://knowledgebase.iplanet.com/ikb/kb/articles/4790.html
    Unfortunately, nothing has been written to any of the log files (even though
    I have plenty of System.err.println()'s in my code).
    Anyone else get this to work correctly?
    Thanks in advance,
    --Bill                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How redirect System.err ?

    Hi,
    I'm debbuging on device and I would like to change the System.err value to redirect its outputs.
    I have some log methods to write common outputs in a text file on the device, and I need to check the output of the mehtod Exception.printStackTrace().
    How can I redirect System.err ??
    Thanks in advance,

    Well, as a matter of fact, CLDC/MIDP specifications (this is CLDC and MIDP forum JFYI) do not provide means for application to get printStackTrace output anyhere else but System.err.
    You can not change that fact, no matter how you try. Oh and this is a verifiable fact - anyone can get mentioned specifications and check if it's true.
    I would also add that per my reading of above specifications, compliant device even "has a right" to simply swallow anything that goes to System.err - including the output of printStackTrace.
    I mean, specs allow devices where trying to get output of printStackTrace is the same as trying to get something from [ /dev/null|http://en.wikipedia.org/wiki//dev/null]. Oh and by the way my conclusion is, again, verifiable - that is, anyone can get the specs and check if there's a requirement for devices not to behave that way.
    Does that answer your question?

  • Exceptions .. redirecting System.err

    I've redirected System.err to a custom class that extends OutputStream.
    I have a couple of questions which someone in here might know the answer to:
    1. When I receive an exception write(byte b[], int off, int len) is called. The array of bytes is always 8192 long - padded with \x0000 at the end. Why?
    2. How do I know an exception has ended? I want to notify the user when it has ended (with a popup). But write() is called for each line, and flush() doesn't seem to be called at all.
    Best regards,
    Bjorn

    Depends what kind of a program you are writing. If you are doing a standalone application, you can always have a master try-catch block in the main() method that will catch Throwable. Nothing should make it past that.
    Now, if you are doing a servlet or EJB, you don't want to trap every exception because the container is supposed to receive and handle them for you (thread death, out of memory, etc.) If you have a front-controller pattern implemented, you can put a master try-catch block there and do something like the following:
    try {
    // implement cool functionality here
    catch (RuntimeException e) {
    // use code to retrieve stack trace
    throw e;
    catch (Exception e) {
    // use code to retrieve stack trace
    // handle exception in application-specific manner
    catch (Error e) {
    // use code to retrieve stack trace
    throw e;
    The cool "feature" about exceptions is that they propogate. So, if you don't have the appropriate catch block, it will move to the previous caller. Hence, you can have a master exception processor if either a) you re-throw exceptions on to be procsesed by the master exception processor or b) you don't handle the exception at all and let it propogate naturally.
    You also have a number of options so you don't have to rewrite 300 exception try-catch blocks. Subclass Exception, and for all your custom exceptions, put the functionality to dump or store the stack trace there. It will happen anytime your custom exception is instantiated.
    Lots of ways to skin a digital cat. However, the argument that you will have to change code to get new functionality is part and parcel of the beast. If you want to capture the stack trace and do something with it, code somewhere will have to change. Either use inheritance, delegation or the exception propogation mechanism inherent to Java to minimize your work.
    - Saish
    "My karma ran over your dogma." - Anon

  • Redirecting System.err to a JOptionPane

    Hello,
    I tried to write a piece of code which shows all exceptions in a JOptionPane instead of the console. But I meet two difficulties:
    1. I don't know how to detect the line count of the error message (so that currently I have to display the optionPane for each error line, which is unacceptable).
    2. I receive more error messages than expected. The produced parse error gives 5 lines on a console, but here I receive 60.
    What's wrong?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    class Redirecting extends JFrame {
      public Redirecting() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(300,300);
        JTextAreaOutputStream err= new JTextAreaOutputStream();
        System.setErr(new PrintStream(err));
        JButton b= new JButton("Produce error");
        b.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent evt) {
         System.out.println(Integer.parseInt("1"));
         System.out.println(Integer.parseInt("2"));
         System.out.println(Integer.parseInt("Error"));
        add(b, BorderLayout.SOUTH);
        setVisible(true);
      public static void main(String[] args) throws Exception {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
         new Redirecting();
      class JTextAreaOutputStream extends OutputStream {
        int icnt=0;
        private JTextArea area;
        public JTextAreaOutputStream() {
          area= new JTextArea();
        public void flush() throws IOException {
          JOptionPane.showMessageDialog(Redirecting.this, area, "Error",
                                  JOptionPane.ERROR_MESSAGE);
    //      area.setText("");
        public void write(byte b[]) throws IOException {
          area.append(new String(b));
        public void write(byte b[], int off, int len) throws IOException {
          System.out.println(icnt++);
          String s = new String(b , off , len);
          area.append(s);
          flush(); // to make error lines visible
        public void write(int b) throws IOException {
          area.append(String.valueOf(b));
    }

    maybe this ?
          * recieving error for testing
          * @param e
         protected void bt_generateError_actionPerformed(ActionEvent e) {
              DateFormat fo = new SimpleDateFormat("mm.dd.yyyy");
              try {
                   // Here reciev parsing error
                   fo.parse("sacascsa");
              } catch (ParseException e1) {
                   String exception = Util.formateException(e1.getStackTrace());
                   // show error
                   Util.showException(frame, exception);
          * utilita
          * @author Dima
         public static class Util {
               * formateException formating error in way you want
               * @param stack
               * @return
              public static String formateException(StackTraceElement[] stack) {
                   String formatedException = "";
                   for (int i = 0; i < stack.length; i++) {
                        System.err.println(stack.getClassName() + ""
                                  + stack[i].getMethodName() + "" + stack[i].getClass()
                                  + " Line" + stack[i].getLineNumber());
                        formatedException = formatedException.concat(
                                  stack[i].getClassName()
                                  + "."
                                  + stack[i].getMethodName()
                                  + " "
                                  + stack[i].getClass()
                                  /** + " Line" + stack[i].getLineNumber() */
                                  + "\n"); // remove comment and recieve errors line
                                                 // numbers
                   return formatedException;
              * showException return JOptionPane with formatted error
              * @param com
              * @param exceptionText
              public static void showException(Component com, String exceptionText) {
                   JPanel canva = new JPanel();
                   canva.setMinimumSize(new Dimension(300, 200));
                   canva.setPreferredSize(new Dimension(300, 200));
                   JTextArea area = new JTextArea();
                   area.setText(exceptionText);
                   JScrollPane pan = new JScrollPane();
                   pan.getViewport().setView(area);
                   canva.setLayout(new BorderLayout());
                   canva.add(pan);
                   JOptionPane.showMessageDialog(com, canva, "Error Title",
                             JOptionPane.ERROR_MESSAGE);

  • Redirecting System.err to a TextArea

    Hi there !
    I want to redirect the output of System.err to a TextArea.
    System.err is everywhere in my project. Is there any simple way to just redirect the output of this err to some TextArea?
    Thanks in Advance
    Dexter

    See the API java.lang.System.setErr()You will then need to start a thread to read from the PrintStream and put the
    output in your text area.
    - ajay

  • How do I redirect System.err msg on NT

    As you probably already know, when running a standard alone java program, say myapp.class, if one wants to redirect the System.out.println message, one might do this on NT dos prompt:
    java myapp > myout.txt
    In this case, all messages from System.out.println that suppose to print on the screen are redirected to be written into myout.txt.
    If your error messages are displayed using System.err.println, the same command does not save your message to the file redirected as above. Does anyone know how can I do some similar thing in the command line to redirect my error messages into a file?
    Thanks for help.
    Stan

    to redirect standard error on nt:
    java myapp 2> myout.txt

  • I can't download my photos from my mobile phone do I need an app

    I am having problems downloading photos from my Samsung Mobile phone do I need an app

    think it very much depend on the operating system of the samsung mobile phone
    no matter the operating system though I would assume that samsung have some osx software for their various phones

  • Incident Management System for Mobile Phone (Android and IOS)

    Dear Solman Gurus,
    We have already Incident Management System in our Solman 7.1 .
    We are using it efficiently, but we want to use it in mobile phones also(android and ios).
    Also we have a web link and we can manage our incident management system in this link http://xxsolman.xxxxxxxx.com:8006/support . We are using for WEB also for Incident Management System.
    My question is ; how can i use it for Mobile Phone Operation systems(android and ios) ? Which guide should i follow ? Should i upgrade pacth or something in our solman ?
    Looks like Android application is : SAP IT Incident Management
    Best Regars

    Hi Kemal,
    You need to adopt the Mobile strategy for ITSM to use this. Broadly speaking, the ITSM apps can be accessible either via internet or intranet. If you plan to use the apps outside your company network then you would need Sybase tools to enable this as shown below;
    The detailed information is available here
    Mobile Applications for SAP IT Service Management - SAP IT Service Management on SAP Solution Manager - SCN Wiki
    Regards,
    Vivek

  • Access/Browse pictures from your mobile phone

    Hello everyone and Good day,
    I was wondering if there is anyone who knows how to browse/access image files that is in the mobile phone and attached it or any such options that can be done when creating a MIDlet.
    That would mean that after running a MIDlet is would be similiar like creating an email with an attachment to a server database.Any ideas as such would be greatly appreciated

    You can create midlet with the images at design time and view it. please see the below small program for your reference:
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.util.*;
    import java.io.*;
    public class PhotoSlider extends MIDlet implements CommandListener
    {     private Command exitCommand;
         private Display display;
         private PhotoCanvas screen;
         public PhotoSlider( )
         {     display = Display.getDisplay(this);
              exitCommand = new Command("Exit", Command.EXIT, 2);
              screen = new PhotoCanvas( );
              screen.addCommand(exitCommand);
              screen.setCommandListener(this);
         public void startApp( ) throws MIDletStateChangeException
         {     display.setCurrent(screen);
         public void pauseApp( ){}
         public void destroyApp(boolean unconditional)
         {     notifyDestroyed( );
         public void commandAction(Command c, Displayable s)
         {     if (c == exitCommand)
              {     destroyApp(false);
    class PhotoCanvas extends Canvas
    {     private Image[ ] photos;
         private String[ ] captions = {"1","2","3","4","5"};
         private int currentPhoto = 0;
         public PhotoCanvas( )
         {     try
              {     photos = new Image[5];
                   photos[0] = Image.createImage("/1.jpg");
                   photos[1] = Image.createImage("/2.jpg");
                   photos[2] = Image.createImage("/3.jpg");
                   photos[3] = Image.createImage("/4.jpg");
                   photos[4] = Image.createImage("/5.jpg");     
              catch (IOException e)
              {     System.err.println("Image Loading Failed!");
         public void keyPressed(int keyCode)
         {     int action = getGameAction(keyCode);     
              switch (action)
              {     case LEFT:
                        if(--currentPhoto < 0)
                        {     currentPhoto = photos.length -1;
                        repaint( );
                        break;
                   case RIGHT:
                        if (++currentPhoto >= photos.length)
                        {     currentPhoto = 0;
                        repaint( );
                        break;
         public void paint(Graphics g)
         {     g.setColor(255,255,255);
              g.fillRect(0,0,getWidth(),getHeight());
              g.drawImage(photos[currentPhoto],getWidth()/2,getHeight()/2,Graphics.HCENTER | Graphics.VCENTER);
              Font f = Font.getFont(Font.FACE_PROPORTIONAL,Font.STYLE_BOLD,Font.SIZE_MEDIUM);
              g.setFont(f);
              g.setColor(0,0,0);
              g.drawString(captions[currentPhoto],getWidth()/2,0,Graphics.HCENTER | Graphics.TOP);
    }hope this will help you make the concept clear....:)

  • Error when trying to sign in on mobile phone

    Dear Admin,
    I want to browse the ORACLE ADF FORUMS in my mobile phone (nokia x2-01 with UC and Opera mini Browser), the forum page opens correctly but when i try to signin it gives me error.
    ORACLE ACCESS MANAGER
    ERROR:
    System error. Please re-try your action. If you continue to get this error, please contact the administratorIts strange that when i try to do same using my PC it works......
    Any Ideas?? Can any one there resolve this issue....
    Regards,
    Santosh

    Probably because Opera is a non-supported browser on Oracle sites...

  • Mobile menu works on pc but not on mobile phone

    If I test the link, below, on my PC (it is my mobile phone menu), it works fine.
    If I test it on my Galaxy S5, however, it seems to cycle back to menu without displaying the link.
    Can anyone help me with this?
    Glenn's Photographs
    Thanks,
    Glenn
    Here is the actual code:
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="Photographs and Paintings">
    <meta name="keywords" content="photographs, creative photographs, art, painting, paintingst">
    <meta name="author" content="Glenn Abelson">
    <title>Glenn's Photographs</title>
    <link href="../../boilerplate.css" rel="stylesheet" type="text/css">
    <link href="../../index.css" rel="stylesheet" type="text/css">
    <!-- Redirect for mobile phone -->
    <!--
    To learn more about the conditional comments around the html tags at the top of the file:
    paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
    Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
    * insert the link to your js here
    * remove the link below to the html5shiv
    * add the "no-js" class to the html tags at the top
    * you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
    -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script type="text/javascript">
      <!--
      if (screen.width <= 600) {
        document.location = "index_mobile.html";
      //-->
    </script>
    <script type="text/javascript">
    <!--
    <!-- Specifically for iphones -->
    if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
       location.replace("index_mobile.html");
    </script>
    <script src="../../respond.min.js"></script>
    <style type="text/css">
    -->
    body {
        background-color: #3b424d;
        background-image: url();
    body {
        background-color: #3b424d;
    #apDiv1 {
        position: relative;
        width: 200px;
        height: 115px;
        z-index: 1;
        left: auto;
        top: 1px;
    #bkgrnd {
        position: absolute;
        width: 326px;
        height: 637px;
        z-index: 1;
        left: 4px;
        top: 12px;
    a:link {
        color: #9FF;
    a:visited {
        color: #FF9933;
    a:hover {
        color: #FFC;
    #apDiv2 {
        position: relative;
        width: 289px;
        height: 84px;
        z-index: 2;
        left: auto;
        top: 233px;
        color: #FFF;
    </style>
    </head>
    <body><!--<div class="gridContainer clearfix"> --><img src="images/index_mobile2.fw.png" alt="Glenn Abelson Photographs" usemap="#Map" longdesc="http://www.abelson.com">
    <map name="Map">
      <area shape="rect" coords="16,8,50,29" href="../../index_mobile.html">
      <area shape="rect" coords="30,247,211,271" href="creative_part1/index.html">
      <area shape="rect" coords="30,277,213,293" href="creative_part2/index.html">
      <area shape="rect" coords="32,323,111,345" href="landmarks/index.html">
      <area shape="rect" coords="27,296,109,320" href="animals/index.html">
    <area shape="rect" coords="32,351,112,368" href="landscapes/index.html">
      <area shape="rect" coords="32,422,98,444" href="people/index.html">
      <area shape="rect" coords="32,444,118,465" href="perspectives/index.html">
      <area shape="rect" coords="30,471,123,495" href="street_scenes/index.html">
    </map>
    <!--</div>-->
    </body>
    </html>

    All the menus are image maps. Three out of four work.
    My div text menu on  top of an image gave me similar problems.

  • Error message: "the software required for communicating with Ipods and mobile phones was not installed correctly....

    2 error messages when opening itunes: "The software required for communicating with Ipods and mobile phones was not installed correctly.  Do you want Itunes to repair this for you?"  When clicking yes another message indicates not able to remove services.  Another message is: "Service (ipod service) could not be installed.  Verify that you have sufficient privileges to install system sources."  I've uninstalled all Apple services (itunes, quicktime, apple software update, apple mobiles devices support, bonjour and apple application support and reinstalled itunes/quicktime - no change in error messages.  I cannot burn CDs using Itunes.  This all seemed to happen when I updated itunes to version 10.  I have a Windows 7 64-bit operating system on a Dell Inspiron Zino HD; the Itunes software is also 64 bit.

    See the second box of  Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Writing file content on to mobile phone (need to specify the file name req)

    Hi,
    I have a jsp page which i am trying to execute on a mobile phone. In this page i am trying to open a ServletOutputStream and using this i am trying to write some content on to the phone. But by default the file name is beeing given as the name of the jsp page, so is there any that we can we specify the name of the file explicitly using the program itself (i mean other than the jsp file name). Can some one give me an idea to implement this.
    Here is the code snippet used......
    ServletOutputStream outstr = response.getOutputStream();
    String itemPath = "http://172.10.100.25/file_dwn/funny_pic.gif";
    java.net.URL url = new java.net.URL(itemPath);
    javax.activation.URLDataSource source = new javax.activation.URLDataSource(url);
    javax.activation.DataHandler dataHand = new javax.activation.DataHandler(source);
    String file = itemPath.substring(itemPath.lastIndexOf("/")+1);
    response.setHeader("Content-Type","application/vnd.oma.drm.message;boundary=foo");     
    outstr.println();
    outstr.println("--foo");
    outstr.println("Content-Type: " + dataHand.getContentType()+";Name=\""+file+"\"");
    outstr.println("");
    dataHand.writeTo(outstr);
    outstr.println();
    outstr.println("--foo--");
    outstr.println();
    outstr.flush();
    outstr.close();

    Hi,
    You can Include a Knowledge Management Folder as a Web Folder, this way you can copy and paste files from KM to  file system very easily.
    Check this
    http://help.sap.com/saphelp_nw70/helpdata/EN/30/75b62c659d724fb908c74ade23af51/frameset.htm
    Regards,
    Praveen Gudapati

  • Unified Mobility, no audio on Send call to Mobile Phone

    I'm using UCM 9.1 with Unified Mobility (xfer to alternate number) with good success if I follow a typical call flow:
    Inbound call -> Ext -> Rings deskphone x seconds -> Rings mobile phone -> Answer mobile phone -> hangup -> Resume call on desk phone.
    But if I pick up a call on my desk phone, and use the Mobility button to xfer a call to my mobile phone I get no audio:
    Inbound call -> Ext -> Pickup desk phone -> Mobility soft button, 'Send call to Mobile Phone' -> Answer mobile phone, no audio -> Hang up mobile phone -> Resume call on desk phone (two-way audio).
    Device wise the call flow is:
    ITSP SIP trunk -> CUBE -> CUCM -> 7965 IP Phone.
    Recently I reconfigured CUCM to use the CUBE for any MTP resources instead of the software option and I think I may have missed something.
    CUBE config:
    voice-card 0 dspfarm dsp services dspfarm!!!voice service voip ip address trusted list  ipv4 173.46.30.218  ipv4 173.46.30.202  ipv4 10.0.6.30  ipv4 10.0.6.31  ipv4 10.0.6.33  ipv4 10.0.6.32  ipv4 10.1.1.4  ipv4 10.0.250.0 255.255.255.0 mode border-element allow-connections h323 to h323 allow-connections h323 to sip allow-connections sip to h323 allow-connections sip to sip redirect ip2ip fax protocol t38 version 0 ls-redundancy 0 hs-redundancy 0 fallback none sip  midcall-signaling passthru media-change  early-offer forced  no call service stop  registration passthrough!voice class codec 1 codec preference 1 g711ulawsccp local GigabitEthernet0/0.42sccp ccm 10.0.6.30 identifier 1 version 7.0 sccp!sccp ccm group 1 bind interface GigabitEthernet0/0.42 associate ccm 1 priority 1 associate profile 1 register MTP_2951-01!dspfarm profile 2 transcode universal  codec pass-through codec g711ulaw codec g711alaw codec g729ar8 codec g729abr8 maximum sessions 11 associate application SCCP shutdown!dspfarm profile 3 conference  codec g711ulaw codec g711alaw codec g729ar8 codec g729abr8 codec g729r8 codec g729br8 maximum sessions 2 associate application SCCP!dspfarm profile 1 mtp  codec pass-through codec g711ulaw maximum sessions hardware 15 associate application SCCP!
    In CUCM I removed the software MTP from the MRG:
    Not sure where to start troubleshooting this problem, any help is appreciated.
    Steve

    Thanks for the help gents. I couldn't get to this until we're out of office hours on the weekend.
    Interestingly, I have no mid-call option in my dial-peers. This is a 2951 running 15.2(4)M2.
    I double checked the MRGL, my phone is associated with it.
    Codec is G711 on ITSP side, and on phones - I'm not sure I fully understand the use cases for MTP, this is something I need to research more.
    I've included two ccsip message debugs, the first one is the existing issue of no audio (in either direction).
    The second I've changed the midcall-signaling passthru option, dropping the media-change bit and we get audio in both directions for mobility except we use Unity call handlers for IVR functionality, and now when an inbound caller is forwarded to an extension we get no audio - obviously this is a game stopper.
    In Unity I have the port group configured as SCCP - Maybe I should be using SIP instead?
    No Audio:
    voice service voip
    sip
      midcall-signaling passthru media-change
      early-offer forced
      no call service stop
      registration passthrough
    Dec  8 21:07:35.842: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: INVITE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1b7e642f53From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: timer,resource-priority,replacesMin-SE:  1800User-Agent: Cisco-CUCM9.1Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFYCSeq: 101 INVITEExpires: 180Allow-Events: presenceSupported: X-cisco-srtp-fallbackSupported: GeolocationCisco-Guid: 3244526336-0000065536-0000003600-0503709706Session-Expires:  1800Diversion: ;reason=follow-me;privacy=off;screen=yesP-Asserted-Identity: "Steve Dainard" Remote-Party-ID: "Steve Dainard" ;party=calling;screen=yes;privacy=offContact: ;isFocusMax-Forwards: 70Content-Length: 0Dec  8 21:07:35.850: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: INVITE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274BE17From: "Steve Dainard" ;tag=47582CDC-2165To: Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: 100rel,timer,resource-priority,replaces,sdp-anatMin-SE:  1800Cisco-Guid: 3244526336-0000065536-0000003600-0503709706User-Agent: Cisco-SIPGateway/IOS-15.2.4.M2Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERCSeq: 101 INVITETimestamp: 1386536855Contact: Expires: 180Allow-Events: telephone-eventMax-Forwards: 69Diversion: ;privacy=off;reason=follow-me;screen=yesContent-Type: application/sdpContent-Disposition: session;handling=requiredContent-Length: 238v=0o=CiscoSystemsSIP-GW-UserAgent 7885 9952 IN IP4 10.0.1.67s=SIP Callc=IN IP4 10.0.1.67t=0 0m=audio 29558 RTP/AVP 0 101c=IN IP4 10.0.1.67a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:07:35.850: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 100 TryingVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1b7e642f53From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: 101 INVITEAllow-Events: telephone-eventServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:07:35.858: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 100 TryingVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274BE17From: "Steve Dainard" ;tag=47582CDC-2165To: Call-ID: [email protected]: 101 INVITETimestamp: 1386536855Dec  8 21:07:41.986: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 183 Session ProgressVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274BE17From: "Steve Dainard" ;tag=47582CDC-2165To: ;tag=as1502e8b4Call-ID: [email protected]: 101 INVITETimestamp: 1386536855Contact: Server: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Type: application/sdpContent-Length: 253v=0o=root 959120698 959120698 IN IP4 173.46.30.202s=Rogers SIPc=IN IP4 173.46.30.202t=0 0m=audio 40818 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=silenceSupp:off - - - -a=ptime:20a=sendrecvDec  8 21:07:41.986: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 180 RingingVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274BE17From: "Steve Dainard" ;tag=47582CDC-2165To: ;tag=as1502e8b4Call-ID: [email protected]: 101 INVITETimestamp: 1386536855Contact: Server: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Length: 0Dec  8 21:07:41.990: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 183 Session ProgressVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1b7e642f53From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: 101 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Type: application/sdpContent-Disposition: session;handling=requiredContent-Length: 241v=0o=CiscoSystemsSIP-GW-UserAgent 3614 6206 IN IP4 10.0.250.4s=SIP Callc=IN IP4 10.0.250.4t=0 0m=audio 29556 RTP/AVP 0 101c=IN IP4 10.0.250.4a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:07:41.990: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 180 RingingVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1b7e642f53From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: 101 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Server: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:07:43.938: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 200 OKVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274BE17From: "Steve Dainard" ;tag=47582CDC-2165To: ;tag=as1502e8b4Call-ID: [email protected]: 101 INVITETimestamp: 1386536855Contact: Server: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Type: application/sdpContent-Length: 253v=0o=root 959120698 959120699 IN IP4 173.46.30.202s=Rogers SIPc=IN IP4 173.46.30.202t=0 0m=audio 40818 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=silenceSupp:off - - - -a=ptime:20a=sendrecvDec  8 21:07:43.938: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1b7e642f53From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: 101 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: replacesSupported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Require: timerSession-Expires:  1800;refresher=uacSupported: timerContent-Type: application/sdpContent-Disposition: session;handling=requiredContent-Length: 241v=0o=CiscoSystemsSIP-GW-UserAgent 3614 6206 IN IP4 10.0.250.4s=SIP Callc=IN IP4 10.0.250.4t=0 0m=audio 29556 RTP/AVP 0 101c=IN IP4 10.0.250.4a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:07:43.942: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: ACK sip:[email protected]:5060;transport=udp SIP/2.0Via: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274C4F2From: "Steve Dainard" ;tag=47582CDC-2165To: ;tag=as1502e8b4Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: 70CSeq: 101 ACKAllow-Events: telephone-eventContent-Length: 0Dec  8 21:07:43.958: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: ACK sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1d288c5e53From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: 70CSeq: 101 ACKAllow-Events: presenceContent-Type: application/sdpContent-Length: 218v=0o=CiscoSystemsCCM-SIP 40265 1 IN IP4 10.0.6.30s=SIP Callc=IN IP4 10.0.6.30t=0 0m=audio 4000 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=ptime:20a=inactivea=rtpmap:101 telephone-event/8000a=fmtp:101 0-15Dec  8 21:07:44.158: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: UPDATE sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1f50a2749fFrom: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:35 GMTCall-ID: [email protected]: Cisco-CUCM9.1Max-Forwards: 70Supported: timer,resource-priority,replacesAllow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFYCSeq: 102 UPDATESupported: X-cisco-srtp-fallbackSupported: GeolocationP-Asserted-Identity: "Steve Dainard" Remote-Party-ID: "Steve Dainard" ;party=calling;screen=yes;privacy=offContact: Content-Length: 0Dec  8 21:07:44.158: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b1f50a2749fFrom: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:44 GMTCall-ID: [email protected]: Cisco-SIPGateway/IOS-15.2.4.M2CSeq: 102 UPDATEAllow-Events: telephone-eventContact: Supported: timerContent-Length: 0Dec  8 21:07:44.162: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: INVITE sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2028eab237From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:44 GMTCall-ID: [email protected]: timer,resource-priority,replacesMin-SE:  1800User-Agent: Cisco-CUCM9.1Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFYCSeq: 103 INVITEMax-Forwards: 70Expires: 180Allow-Events: presenceSupported: X-cisco-srtp-fallbackSupported: GeolocationSession-Expires:  1800;refresher=uacP-Asserted-Identity: "Steve Dainard" Remote-Party-ID: "Steve Dainard" ;party=calling;screen=yes;privacy=offContact: Content-Length: 0Dec  8 21:07:44.162: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 100 TryingVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2028eab237From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:44 GMTCall-ID: [email protected]: 103 INVITEAllow-Events: telephone-eventServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:07:44.162: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2028eab237From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:44 GMTCall-ID: [email protected]: 103 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: replacesSupported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Require: timerSession-Expires:  1800;refresher=uacSupported: timerContent-Type: application/sdpContent-Length: 241v=0o=CiscoSystemsSIP-GW-UserAgent 3614 6206 IN IP4 10.0.250.4s=SIP Callc=IN IP4 10.0.250.4t=0 0m=audio 29556 RTP/AVP 0 101c=IN IP4 10.0.250.4a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:07:44.214: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: ACK sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2151dd5c40From: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249To: ;tag=475844D8-1CC2Date: Sun, 08 Dec 2013 21:07:44 GMTCall-ID: [email protected]: 70CSeq: 103 ACKAllow-Events: presenceContent-Type: application/sdpContent-Length: 232v=0o=CiscoSystemsCCM-SIP 40265 3 IN IP4 10.0.6.30s=SIP Callc=IN IP4 10.0.250.93b=TIAS:64000b=AS:64t=0 0m=audio 25834 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=ptime:20a=rtpmap:101 telephone-event/8000a=fmtp:101 0-15Dec  8 21:07:52.590: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: INVITE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK76uf9710bomh2kk6c350.1Max-Forwards: 68From: ;tag=as1502e8b4To: "Steve Dainard" ;tag=47582CDC-2165Call-ID: [email protected]: CSeq: 102 INVITEUser-Agent: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Type: application/sdpContent-Length: 253v=0o=root 959120698 959120700 IN IP4 173.46.30.202s=Rogers SIPc=IN IP4 173.46.30.202t=0 0m=audio 40818 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=silenceSupp:off - - - -a=ptime:20a=sendrecvDec  8 21:07:52.594: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 100 TryingVia: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK76uf9710bomh2kk6c350.1From: ;tag=as1502e8b4To: "Steve Dainard" ;tag=47582CDC-2165Date: Sun, 08 Dec 2013 21:07:52 GMTCall-ID: [email protected]: 102 INVITEAllow-Events: telephone-eventServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:07:52.594: //13815/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK76uf9710bomh2kk6c350.1From: ;tag=as1502e8b4To: "Steve Dainard" ;tag=47582CDC-2165Date: Sun, 08 Dec 2013 21:07:52 GMTCall-ID: [email protected]: 102 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: replacesSupported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Supported: timerContent-Type: application/sdpContent-Length: 238v=0o=CiscoSystemsSIP-GW-UserAgent 7885 9953 IN IP4 10.0.1.67s=SIP Callc=IN IP4 10.0.1.67t=0 0m=audio 29558 RTP/AVP 0 101c=IN IP4 10.0.1.67a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:07:52.610: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: ACK sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK8m4hbg10c8ag4kg723g0.1Max-Forwards: 68From: ;tag=as1502e8b4To: "Steve Dainard" ;tag=47582CDC-2165Call-ID: [email protected]: CSeq: 102 ACKUser-Agent: Rogers SIP CoreContent-Length: 0Dec  8 21:07:52.630: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: BYE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK96bidp10cou05l89e611.1Max-Forwards: 68From: ;tag=as1502e8b4To: "Steve Dainard" ;tag=47582CDC-2165Call-ID: [email protected]: 103 BYEUser-Agent: Rogers SIP CoreX-RBS-SIP-HangupCause: Normal ClearingX-RBS-SIP-HangupCauseCode: 16Content-Length: 0Dec  8 21:07:52.634: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Sent: BYE sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK274D1192From: ;tag=475844D8-1CC2To: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249Date: Sun, 08 Dec 2013 21:07:44 GMTCall-ID: [email protected]: Cisco-SIPGateway/IOS-15.2.4.M2Max-Forwards: 70Timestamp: 1386536872CSeq: 101 BYEReason: Q.850;cause=16P-RTP-Stat: PS=0,OS=0,PR=420,OR=67200,PL=0,JI=0,LA=0,DU=8Content-Length: 0Dec  8 21:07:52.634: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK96bidp10cou05l89e611.1From: ;tag=as1502e8b4To: "Steve Dainard" ;tag=47582CDC-2165Date: Sun, 08 Dec 2013 21:07:52 GMTCall-ID: [email protected]: Cisco-SIPGateway/IOS-15.2.4.M2CSeq: 103 BYEReason: Q.850;cause=16P-RTP-Stat: PS=2,OS=320,PR=100,OR=16000,PL=0,JI=0,LA=0,DU=8Content-Length: 0Dec  8 21:07:52.646: //13814/C1638B000000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK274D1192From: ;tag=475844D8-1CC2To: "Steve Dainard" ;tag=40265~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727249Date: Sun, 08 Dec 2013 21:07:52 GMTCall-ID: [email protected]: 101 BYEContent-Length: 0
    bi-direcitonal audio:
    voice service voip
    sip     
      early-offer forced
      midcall-signaling passthru
      no call service stop
      registration passthrough
    Dec  8 21:09:44.331: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: INVITE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b267445467fFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: timer,resource-priority,replacesMin-SE:  1800User-Agent: Cisco-CUCM9.1Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFYCSeq: 101 INVITEExpires: 180Allow-Events: presenceSupported: X-cisco-srtp-fallbackSupported: GeolocationCisco-Guid: 0239559040-0000065536-0000003601-0503709706Session-Expires:  1800Diversion: ;reason=follow-me;privacy=off;screen=yesP-Asserted-Identity: "Steve Dainard" Remote-Party-ID: "Steve Dainard" ;party=calling;screen=yes;privacy=offContact: ;isFocusMax-Forwards: 70Content-Length: 0Dec  8 21:09:44.339: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: INVITE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274E8E6From: "Steve Dainard" ;tag=475A22C4-26C5To: Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: 100rel,timer,resource-priority,replaces,sdp-anatMin-SE:  1800Cisco-Guid: 0239559040-0000065536-0000003601-0503709706User-Agent: Cisco-SIPGateway/IOS-15.2.4.M2Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERCSeq: 101 INVITETimestamp: 1386536984Contact: Expires: 180Allow-Events: telephone-eventMax-Forwards: 69Diversion: ;privacy=off;reason=follow-me;screen=yesSession-Expires:  1800Content-Type: application/sdpContent-Disposition: session;handling=requiredContent-Length: 238v=0o=CiscoSystemsSIP-GW-UserAgent 4519 2507 IN IP4 10.0.1.67s=SIP Callc=IN IP4 10.0.1.67t=0 0m=audio 29562 RTP/AVP 0 101c=IN IP4 10.0.1.67a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:09:44.339: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 100 TryingVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b267445467fFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: 101 INVITEAllow-Events: telephone-eventServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:09:44.347: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 100 TryingVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274E8E6From: "Steve Dainard" ;tag=475A22C4-26C5To: Call-ID: [email protected]: 101 INVITETimestamp: 1386536984Dec  8 21:09:52.535: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 183 Session ProgressVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274E8E6From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beCall-ID: [email protected]: 101 INVITETimestamp: 1386536984Contact: Server: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Type: application/sdpContent-Length: 255v=0o=root 1961674502 1961674502 IN IP4 173.46.30.202s=Rogers SIPc=IN IP4 173.46.30.202t=0 0m=audio 37982 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=silenceSupp:off - - - -a=ptime:20a=sendrecvDec  8 21:09:52.539: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 183 Session ProgressVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b267445467fFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: 101 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Type: application/sdpContent-Disposition: session;handling=requiredContent-Length: 241v=0o=CiscoSystemsSIP-GW-UserAgent 7438 7415 IN IP4 10.0.250.4s=SIP Callc=IN IP4 10.0.250.4t=0 0m=audio 29560 RTP/AVP 0 101c=IN IP4 10.0.250.4a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:09:53.007: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 180 RingingVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274E8E6From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beCall-ID: [email protected]: 101 INVITETimestamp: 1386536984Contact: Server: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Length: 0Dec  8 21:09:53.007: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 180 RingingVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b267445467fFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: 101 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Server: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:09:54.967: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 200 OKVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274E8E6From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beCall-ID: [email protected]: 101 INVITETimestamp: 1386536984Contact: Server: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Type: application/sdpContent-Length: 255v=0o=root 1961674502 1961674503 IN IP4 173.46.30.202s=Rogers SIPc=IN IP4 173.46.30.202t=0 0m=audio 37982 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=silenceSupp:off - - - -a=ptime:20a=sendrecvDec  8 21:09:54.967: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b267445467fFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: 101 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: replacesSupported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Supported: timerContent-Type: application/sdpContent-Disposition: session;handling=requiredContent-Length: 241v=0o=CiscoSystemsSIP-GW-UserAgent 7438 7415 IN IP4 10.0.250.4s=SIP Callc=IN IP4 10.0.250.4t=0 0m=audio 29560 RTP/AVP 0 101c=IN IP4 10.0.250.4a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:09:54.967: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: ACK sip:[email protected]:5060;transport=udp SIP/2.0Via: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK274F1060From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beDate: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: 70CSeq: 101 ACKAllow-Events: telephone-eventContent-Length: 0Dec  8 21:09:54.979: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: ACK sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2876c28ab9From: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: 70CSeq: 101 ACKAllow-Events: presenceContent-Type: application/sdpContent-Length: 218v=0o=CiscoSystemsCCM-SIP 40276 1 IN IP4 10.0.6.30s=SIP Callc=IN IP4 10.0.6.30t=0 0m=audio 4000 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=ptime:20a=inactivea=rtpmap:101 telephone-event/8000a=fmtp:101 0-15Dec  8 21:09:55.007: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: UPDATE sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2ada930ebFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:44 GMTCall-ID: [email protected]: Cisco-CUCM9.1Max-Forwards: 70Supported: timer,resource-priority,replacesAllow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFYCSeq: 102 UPDATESupported: X-cisco-srtp-fallbackSupported: GeolocationP-Asserted-Identity: "Steve Dainard" Remote-Party-ID: "Steve Dainard" ;party=calling;screen=yes;privacy=offContact: Content-Length: 0Dec  8 21:09:55.011: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2ada930ebFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:55 GMTCall-ID: [email protected]: Cisco-SIPGateway/IOS-15.2.4.M2CSeq: 102 UPDATEAllow-Events: telephone-eventContact: Supported: timerContent-Length: 0Dec  8 21:09:55.011: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: INVITE sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2be82180dFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:55 GMTCall-ID: [email protected]: timer,resource-priority,replacesMin-SE:  1800User-Agent: Cisco-CUCM9.1Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFYCSeq: 103 INVITEMax-Forwards: 70Expires: 180Allow-Events: presenceSupported: X-cisco-srtp-fallbackSupported: GeolocationP-Asserted-Identity: "Steve Dainard" Remote-Party-ID: "Steve Dainard" ;party=calling;screen=yes;privacy=offContact: Content-Length: 0Dec  8 21:09:55.011: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: INVITE sip:[email protected]:5060;transport=udp SIP/2.0Via: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK275014C3From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beDate: Sun, 08 Dec 2013 21:09:55 GMTCall-ID: [email protected]: timer,resource-priority,replaces,sdp-anatMin-SE:  1800Cisco-Guid: 0239559040-0000065536-0000003601-0503709706User-Agent: Cisco-SIPGateway/IOS-15.2.4.M2Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERCSeq: 102 INVITEMax-Forwards: 70Timestamp: 1386536995Contact: Diversion: ;privacy=off;reason=follow-me;screen=yesExpires: 180Allow-Events: telephone-eventContent-Length: 0Dec  8 21:09:55.011: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 100 TryingVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2be82180dFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:55 GMTCall-ID: [email protected]: 103 INVITEAllow-Events: telephone-eventServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:09:55.019: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 100 TryingVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK275014C3From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beCall-ID: [email protected]: 102 INVITETimestamp: 1386536995Dec  8 21:09:55.031: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 200 OKVia: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK275014C3From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beCall-ID: [email protected]: 102 INVITETimestamp: 1386536995Contact: Server: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Type: application/sdpContent-Length: 279v=0o=root 1961674502 1961674504 IN IP4 173.46.30.202s=Rogers SIPc=IN IP4 173.46.30.202t=0 0m=audio 37982 RTP/AVP 0 8 101a=rtpmap:0 PCMU/8000a=rtpmap:8 PCMA/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=silenceSupp:off - - - -a=ptime:20a=sendrecvDec  8 21:09:55.035: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2be82180dFrom: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:55 GMTCall-ID: [email protected]: 103 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: replacesSupported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Supported: timerContent-Type: application/sdpContent-Length: 241v=0o=CiscoSystemsSIP-GW-UserAgent 7438 7415 IN IP4 10.0.250.4s=SIP Callc=IN IP4 10.0.250.4t=0 0m=audio 29560 RTP/AVP 0 101c=IN IP4 10.0.250.4a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:09:55.175: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: ACK sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.6.30:5060;branch=z9hG4bK6b2c8e71c96From: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255To: ;tag=475A42CC-1387Date: Sun, 08 Dec 2013 21:09:55 GMTCall-ID: [email protected]: 70CSeq: 103 ACKAllow-Events: presenceContent-Type: application/sdpContent-Length: 232v=0o=CiscoSystemsCCM-SIP 40276 3 IN IP4 10.0.6.30s=SIP Callc=IN IP4 10.0.250.93b=TIAS:64000b=AS:64t=0 0m=audio 22546 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=ptime:20a=rtpmap:101 telephone-event/8000a=fmtp:101 0-15Dec  8 21:09:55.179: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: ACK sip:[email protected]:5060;transport=udp SIP/2.0Via: SIP/2.0/UDP 10.0.1.67:5060;branch=z9hG4bK2751A88From: "Steve Dainard" ;tag=475A22C4-26C5To: ;tag=as314346beDate: Sun, 08 Dec 2013 21:09:55 GMTCall-ID: [email protected]: 70CSeq: 102 ACKAllow-Events: telephone-eventContent-Type: application/sdpContent-Length: 238v=0o=CiscoSystemsSIP-GW-UserAgent 4519 2508 IN IP4 10.0.1.67s=SIP Callc=IN IP4 10.0.1.67t=0 0m=audio 29562 RTP/AVP 0 101c=IN IP4 10.0.1.67a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:10:05.267: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: INVITE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK3tuoo01070ag0lg7o5k0.1Max-Forwards: 68From: ;tag=as314346beTo: "Steve Dainard" ;tag=475A22C4-26C5Call-ID: [email protected]: CSeq: 102 INVITEUser-Agent: Rogers SIP CoreAllow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFOSupported: replacesContent-Type: application/sdpContent-Length: 255v=0o=root 1961674502 1961674505 IN IP4 173.46.30.202s=Rogers SIPc=IN IP4 173.46.30.202t=0 0m=audio 37982 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=silenceSupp:off - - - -a=ptime:20a=sendrecvDec  8 21:10:05.271: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: INVITE sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK27523EAFrom: ;tag=475A42CC-1387To: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: 100rel,timer,resource-priority,replaces,sdp-anatMin-SE:  1800Cisco-Guid: 0239559040-0000065536-0000003601-0503709706User-Agent: Cisco-SIPGateway/IOS-15.2.4.M2Allow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERCSeq: 101 INVITEMax-Forwards: 70Timestamp: 1386537005Contact: Expires: 180Allow-Events: telephone-eventContent-Type: application/sdpContent-Length: 241v=0o=CiscoSystemsSIP-GW-UserAgent 7438 7415 IN IP4 10.0.250.4s=SIP Callc=IN IP4 10.0.250.4t=0 0m=audio 29560 RTP/AVP 0 101c=IN IP4 10.0.250.4a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:10:05.271: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 100 TryingVia: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK3tuoo01070ag0lg7o5k0.1From: ;tag=as314346beTo: "Steve Dainard" ;tag=475A22C4-26C5Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: 102 INVITEAllow-Events: telephone-eventServer: Cisco-SIPGateway/IOS-15.2.4.M2Content-Length: 0Dec  8 21:10:05.275: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 100 TryingVia: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK27523EAFrom: ;tag=475A42CC-1387To: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: 101 INVITEAllow-Events: presenceContent-Length: 0Dec  8 21:10:05.275: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK27523EAFrom: ;tag=475A42CC-1387To: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: 101 INVITEAllow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFYAllow-Events: presenceSupported: replacesSupported: X-cisco-srtp-fallbackSupported: GeolocationP-Asserted-Identity: "Steve Dainard" Remote-Party-ID: "Steve Dainard" ;party=called;screen=yes;privacy=offContact: Content-Type: application/sdpContent-Length: 232v=0o=CiscoSystemsCCM-SIP 40276 3 IN IP4 10.0.6.30s=SIP Callc=IN IP4 10.0.250.93b=TIAS:64000b=AS:64t=0 0m=audio 22546 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=ptime:20a=rtpmap:101 telephone-event/8000a=fmtp:101 0-15Dec  8 21:10:05.279: //13819/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK3tuoo01070ag0lg7o5k0.1From: ;tag=as314346beTo: "Steve Dainard" ;tag=475A22C4-26C5Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: 102 INVITEAllow: INVITE, OPTIONS, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY, INFO, REGISTERAllow-Events: telephone-eventContact: Supported: replacesSupported: sdp-anatServer: Cisco-SIPGateway/IOS-15.2.4.M2Supported: timerContent-Type: application/sdpContent-Length: 238v=0o=CiscoSystemsSIP-GW-UserAgent 4519 2508 IN IP4 10.0.1.67s=SIP Callc=IN IP4 10.0.1.67t=0 0m=audio 29562 RTP/AVP 0 101c=IN IP4 10.0.1.67a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=ptime:20Dec  8 21:10:05.279: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: ACK sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK27531E8DFrom: ;tag=475A42CC-1387To: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: 70CSeq: 101 ACKAllow-Events: telephone-eventContent-Length: 0Dec  8 21:10:05.295: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: ACK sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK4d5qq910785h6ks9f3c0.1Max-Forwards: 68From: ;tag=as314346beTo: "Steve Dainard" ;tag=475A22C4-26C5Call-ID: [email protected]: CSeq: 102 ACKUser-Agent: Rogers SIP CoreContent-Length: 0Dec  8 21:10:05.295: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Received: BYE sip:[email protected]:5060 SIP/2.0Via: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK4tbtsi10785h6jcp71g1.1Max-Forwards: 68From: ;tag=as314346beTo: "Steve Dainard" ;tag=475A22C4-26C5Call-ID: [email protected]: 103 BYEUser-Agent: Rogers SIP CoreX-RBS-SIP-HangupCause: Normal ClearingX-RBS-SIP-HangupCauseCode: 16Content-Length: 0Dec  8 21:10:05.295: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Sent: BYE sip:[email protected]:5060;transport=tcp SIP/2.0Via: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK275469CFrom: ;tag=475A42CC-1387To: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: Cisco-SIPGateway/IOS-15.2.4.M2Max-Forwards: 70Timestamp: 1386537005CSeq: 102 BYEReason: Q.850;cause=16P-RTP-Stat: PS=511,OS=81760,PR=505,OR=80800,PL=0,JI=0,LA=0,DU=10Content-Length: 0Dec  8 21:10:05.299: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:Sent: SIP/2.0 200 OKVia: SIP/2.0/UDP 173.46.30.202:5060;branch=z9hG4bK4tbtsi10785h6jcp71g1.1From: ;tag=as314346beTo: "Steve Dainard" ;tag=475A22C4-26C5Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: Cisco-SIPGateway/IOS-15.2.4.M2CSeq: 103 BYEReason: Q.850;cause=16P-RTP-Stat: PS=505,OS=80800,PR=634,OR=101440,PL=0,JI=0,LA=0,DU=10Content-Length: 0Dec  8 21:10:05.303: //13818/0E4761800000/SIP/Msg/ccsipDisplayMsg:Received: SIP/2.0 200 OKVia: SIP/2.0/TCP 10.0.250.4:5060;branch=z9hG4bK275469CFrom: ;tag=475A42CC-1387To: "Steve Dainard" ;tag=40276~d732e07f-799a-4d2b-9d6a-ae2aaf54507d-19727255Date: Sun, 08 Dec 2013 21:10:05 GMTCall-ID: [email protected]: 102 BYEContent-Length: 0

Maybe you are looking for

  • Duplicate Payment Order

    Hi, After making sucessfull payment run duplicate payment order genearting in backround. Can anyone advise reason. Regards MRS.

  • Wipe sites on tablet and phone left or right

    Hello, I want to wipe the sides to the left or right at the tablet and the phone, how does it work? Thanks for help, Martin

  • Using XML_SECTION_GROUP within Intermedia

    Hello, I wanted to use Oracle's Intermedia Text services to store XML in a CLOB. I also wanted to see if I could do the following. 1. create index only on certain elements (and not all as in a AUTO_SECTION_GROUP).Intermedia Text Manager does not allo

  • Setting the font of the titlebar on JInternalFrames

    hi all, i am trying to change the font of the titles of JinternalFrames.. i have tried it but cant pass compilation.. i have done.. title.setFont(X,X,X); is this possible to set the fonts of titles of frames? If i cant do it like this, is there anoth

  • Do you prefer Facebook, LinkedIn, Twitter, or ??

    I teach a class on how to market with social media, and I was curious which social media tools are being used by you guys and gals here?  I am signed up for most but actively use Facebook, LinkedIn, Twitter, and blogs. Just starting BranchOut, avoidi