Skip to content

Instantly share code, notes, and snippets.

@PeterBloom
Created June 10, 2010 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PeterBloom/432449 to your computer and use it in GitHub Desktop.
Save PeterBloom/432449 to your computer and use it in GitHub Desktop.
00000 00-1 01:32:40 AM Trying to create application for URL=http://hosting.tropo.com/46294/www/joopconnect2.rb and type=jruby
00001 00-1 01:32:40 AM Tropo app dir is c:\tropo_app_home
00002 00-1 01:32:40 AM Application[http://hosting.tropo.com/46294/www/joopconnect2.rb:cus] ver(1.0.42856) has been created.
00003 00-1 01:32:40 AM Found hosted Application[http://hosting.tropo.com/46294/www/joopconnect2.rb:cus] ver(1.0.42856) [token=f419d15fd2c13244ae4da5787fc0136872946078c2097526064a6ee86e9158d4aefb74add28f59b5aa5cbe68]
00004 00-1 01:32:40 AM Mgr Cached app=Application[http://hosting.tropo.com/46294/www/joopconnect2.rb:cus] ver(1.0.42856) for token=f419d15fd2c13244ae4da5787fc0136872946078c2097526064a6ee86e9158d4aefb74add28f59b5aa5cbe68,_cache.size=0
00005 00-1 01:32:40 AM Thread http/0.0.0.0/8080-t-49 acquired engine of type jruby, activeEngines = 5
00006 00-1 01:32:40 AM Thread http/0.0.0.0/8080-t-49 got engine to compile script
00007 00-1 01:32:40 AM # This script is called via HTTP. # line 187
00008 00-1 01:32:40 AM # This is to demo Tropo conferencing functionality (via hosted script). # line 188
00009 00-1 01:32:40 AM # line 189
00010 00-1 01:32:40 AM # Define Global Options # line 190
00011 00-1 01:32:40 AM applicationCallerID = "6502916707" # line 191
00012 00-1 01:32:40 AM # line 192
00013 00-1 01:32:40 AM # Method to create timeStamp as our conferenceID # line 193
00014 00-1 01:32:40 AM def get_conference_id() # line 194
00015 00-1 01:32:40 AM timeVar = Time.new # line 195
00016 00-1 01:32:40 AM formattedTime = timeVar.strftime("%Y%H%M%S") # line 196
00017 00-1 01:32:40 AM return formattedTime # line 197
00018 00-1 01:32:40 AM end # line 198
00019 00-1 01:32:40 AM # line 199
00020 00-1 01:32:40 AM # Setup some mapped 'call', 'say', 'conference', and 'choice' options # line 200
00021 00-1 01:32:40 AM # line 201
00022 00-1 01:32:40 AM callOptions = { :channel => "VOICE", # line 202
00023 00-1 01:32:40 AM :answerOnMedia => false, # line 203
00024 00-1 01:32:40 AM :timeout => 30.0 # line 204
00025 00-1 01:32:40 AM #, # line 205
00026 00-1 01:32:40 AM #:callerID => applicationCallerID # line 206
00027 00-1 01:32:40 AM } # line 207
00028 00-1 01:32:40 AM # line 208
00029 00-1 01:32:40 AM sayOptions = { :voice => "kate"} # line 209
00030 00-1 01:32:40 AM # line 210
00031 00-1 01:32:40 AM # line 211
00032 00-1 01:32:40 AM conferenceOptions = { :mute => false, # line 212
00033 00-1 01:32:40 AM :playTones => false, # line 213
00034 00-1 01:32:40 AM :terminator => "*", # line 214
00035 00-1 01:32:40 AM :joinPrompt => "Connecting now.", # line 215
00036 00-1 01:32:40 AM :leavePrompt => "We hope you enjoyed your call! Goodbye!" # line 216
00037 00-1 01:32:40 AM } # line 217
00038 00-1 01:32:40 AM # line 218
00039 00-1 01:32:40 AM choiceOptions = { :choices => 'yes( 1, yes), no( 2, no)', # line 219
00040 00-1 01:32:40 AM :repeat => 3 # line 220
00041 00-1 01:32:40 AM } # line 221
00042 00-1 01:32:40 AM # line 222
00043 00-1 01:32:40 AM # Before any calls, create conference ID and log it. # line 223
00044 00-1 01:32:40 AM conferenceID = get_conference_id() # line 224
00045 00-1 01:32:40 AM log "@"*20 + ": " + conferenceID # line 225
00046 00-1 01:32:40 AM # line 226
00047 00-1 01:32:40 AM # Make an outbound call to BANDMEMBER (first leg) with callOptions 'merge' into parameters hash. # line 227
00048 00-1 01:32:40 AM call 'tel:+1' + $bandmemberNumberToDial, # line 228
00049 00-1 01:32:40 AM { :onAnswer => lambda{|event| # line 229
00050 00-1 01:32:40 AM log "@"*5 + "BANDMEMBER has answered" # line 230
00051 00-1 01:32:40 AM # Ask BANDMEMBER if they want to talk to a fan now. # line 231
00052 00-1 01:32:40 AM wait(2000) # line 232
00053 00-1 01:32:40 AM say("<prosody rate='-10%'>This is band call calling with a lucky fan connection! Would you like to connect to your fan now?</prosody>", sayOptions) # line 233
00054 00-1 01:32:40 AM result = ask 'To connect, just say yes! or press 1. For no, just say no, or press 2.', choiceOptions # line 234
00055 00-1 01:32:40 AM if result.name == 'choice' # line 235
00056 00-1 01:32:40 AM case result.value # line 236
00057 00-1 01:32:40 AM # YES, Bandmember wants to talk # line 237
00058 00-1 01:32:40 AM when 'yes' # line 238
00059 00-1 01:32:40 AM say('OK, we are connecting you with a fan right now. The fans name is ' + $fanName + ', Please hold while we connect your call. You can press star at any time to disconnect.', sayOptions) # line 239
00060 00-1 01:32:40 AM # Create second thread for call to second leg (FAN) # line 240
00061 00-1 01:32:40 AM Thread.new do # line 241
00062 00-1 01:32:40 AM log "@"*5 + "Start second tread: call to Fan" # line 242
00063 00-1 01:32:40 AM call 'tel:+1'+ $fanNumberToDial, # line 243
00064 00-1 01:32:40 AM { :onAnswer => lambda{|event| # line 244
00065 00-1 01:32:40 AM log "@"*5 + "FAN has answered" # line 245
00066 00-1 01:32:40 AM newCall = event.value # line 246
00067 00-1 01:32:40 AM # announce caller (Bandmember) to Fan # line 247
00068 00-1 01:32:40 AM wait(2000) # line 248
00069 00-1 01:32:40 AM newCall.say("This is band call calling with a lucky fan connection! You have a call from the rolling stones!", sayOptions) # line 249
00070 00-1 01:32:40 AM # join Fan to conference # line 250
00071 00-1 01:32:40 AM newCall.conference(conferenceID, conferenceOptions) # line 251
00072 00-1 01:32:40 AM } # line 252
00073 00-1 01:32:40 AM }.merge(callOptions) # line 253
00074 00-1 01:32:40 AM end # line 254
00075 00-1 01:32:40 AM # NO, Bandmember does not want to talk now # line 255
00076 00-1 01:32:40 AM when 'no' # line 256
00077 00-1 01:32:40 AM say ('OK, we can try again later. Goodbye.') # line 257
00078 00-1 01:32:40 AM hangup # line 258
00079 00-1 01:32:40 AM end # line 259
00080 00-1 01:32:40 AM end # line 260
00081 00-1 01:32:40 AM newCall = event.value # line 261
00082 00-1 01:32:40 AM # prompt Bandmember # line 262
00083 00-1 01:32:40 AM wait(2500) # line 263
00084 00-1 01:32:40 AM newCall.say("We are connecting to" + $fanName, sayOptions) # line 264
00085 00-1 01:32:40 AM # join Bandmember to conference # line 265
00086 00-1 01:32:40 AM newCall.conference(conferenceID,conferenceOptions) # line 266
00087 00-1 01:32:40 AM } # line 267
00088 00-1 01:32:40 AM }.merge(callOptions) # line 268
00089 00-1 01:32:40 AM Thread http/0.0.0.0/8080-t-49 returning engine after compiling script
00090 00-1 01:32:40 AM Thread http/0.0.0.0/8080-t-49 returned engine of type jruby, activeEngines = 4
00091 00-1 01:32:40 AM ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo] has been created.
00092 00-1 01:32:40 AM bandmemberNumberToDial:6502916707 is added into the context of app instance : ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo]
00093 00-1 01:32:40 AM fanNumberToDial:6505394019 is added into the context of app instance : ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo]
00094 00-1 01:32:40 AM token:f419d15fd2c13244ae4da5787fc0136872946078c2097526064a6ee86e9158d4aefb74add28f59b5aa5cbe68 is added into the context of app instance : ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo]
00095 00-1 01:32:40 AM fanName:Shirish is added into the context of app instance : ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo]
00096 00-1 01:32:40 AM action:create is added into the context of app instance : ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo]
00097 00-1 01:32:40 AM bandmemberName:Mick Jagger is added into the context of app instance : ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo]
00098 00-1 01:32:40 AM com.voxeo.tropo.core.SimpleCallFactory@aabdc0 is added into the context of app instance : ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo]
00099 00-1 01:32:40 AM ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo] starts execution on Thread Script
00100 00-1 01:32:40 AM Thread Script acquired engine of type jruby, activeEngines = 5
00101 00-1 01:32:40 AM ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo] replaced script engine [com.sun.script.jruby.JRubyScriptEngine@10e4473] --> [com.sun.script.jruby.JRubyScriptEngine@10e4473] in field <this$0>
00102 00-1 01:32:40 AM ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo] : @@@@@@@@@@@@@@@@@@@@: 2010013240
00103 00-1 01:32:40 AM Parse result for [tel:+16502916707] : CalledNumber@1877dfc[to=tel:+16502916707 pause=0 postDial=null]
00104 00-1 01:32:40 AM Creating outgoing call : sip:Tropo@10.6.69.201-->sip:+16502916707@sbc-staging-internal.orl.voxeo.net,false
00105 00-1 01:32:40 AM From: sip:Tropo@10.6.69.201/sip:Tropo@10.6.69.201
00106 00-1 01:32:40 AM To: sip:+16502916707@sbc-staging-internal.orl.voxeo.net/tel:+16502916707
00107 00-1 01:32:40 AM Creating SimpleOutgoingCall from original request [INVITE sip:+16502916707@sbc-staging-internal.orl.voxeo.net SIP/2.0 To: sip:+16502916707@sbc-staging-internal.orl.voxeo.net CSeq: 1 INVITE Content-Length: 0 Call-ID: kocbwkea3ch1 From: <sip:Tropo@10.6.69.201>;tag=mswjwfd7a0i8 ] using new request [INVITE sip:+16502916707@sbc-staging-internal.orl.voxeo.net SIP/2.0 To: sip:+16502916707@sbc-staging-internal.orl.voxeo.net CSeq: 1 INVITE Content-Length: 0 Call-ID: kocbwkea3ch1 From: <sip:Tropo@10.6.69.201>;tag=mswjwfd7a0i8 ]
00108 00-1 01:32:40 AM Call[Tropo->+16502916707] state is changed: null->ANSWERING
00109 00-1 01:32:40 AM to uri is sip:+16502916707@sbc-staging-internal.orl.voxeo.net
00110 00-1 01:32:40 AM Initializing MrcpClient to endpoint sbc-staging-internal.orl.voxeo.net:-1
00111 00-1 01:32:40 AM MrcpClient initialized: com.voxeo.sipmethod.mrcp.client.impl.MrcpClientImpl@606abf
00112 03cc 01:32:40 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/mixer RTSP/1.0 CSeq: 1 X-Voxeo-VXML-Session-Id: 832c90937725a4d3fe0f718bda97c95a X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826
00113 03cc 01:32:40 AM MRCP endpoints: local=10.6.69.203:10596
00114 03cc 01:32:40 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Transport: RTP/AVP;unicast;client_port=65535-65536;server_port=10596-10597 CSeq: 1 Content-Type: application/sdp Content-Length: 293 v=0 o=- 23267828125 23267828125 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10596 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00115 00-1 01:32:40 AM asrSession: com.voxeo.sipmethod.mrcp.client.impl.MrcpAsrSessionImpl@f9fb9f
00116 00-1 01:32:40 AM endpoint: MrcpEndpoint[_remoteHost=10.6.69.203, _remotePort=10596, _sdp=v=0 o=- 23267828125 23267828125 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10596 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20 ]
00117 00-1 01:32:40 AM _mrcpSDP: v=0 o=- 23267828125 23267828125 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10596 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00118 00-1 01:32:40 AM _mrcpSDP now: v=0 o=- 23267828125 23267828125 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10596 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00119 00-1 01:32:40 AM Call[Tropo->+16502916707] will be called.
00120 00-1 01:32:40 AM getFirstCall({Call[Tropo->+16502916707]=null}, 30000, , audio/wav, POST)
00121 00-1 01:32:40 AM Ringing unknown +16502916707 from unknown Tropo
00122 00-1 01:32:40 AM Call[Tropo->+16502916707] is calling.
00123 00-1 01:32:40 AM Call[Tropo->+16502916707]->sending outgoing INVITE [timeout:30000,answerOnMedia:false]: [INVITE sip:+16502916707@sbc-staging-internal.orl.voxeo.net SIP/2.0 Content-Type: application/sdp To: sip:+16502916707@sbc-staging-internal.orl.voxeo.net Via: SIP/2.0/UDP 10.6.69.203:5060;branch=z9hG4bK1lo7mhk3hwkr6 CSeq: 1 INVITE Content-Length: 293 Call-ID: kocbwkea3ch1 Max-Forwards: 70 From: <sip:Tropo@10.6.69.201>;tag=mswjwfd7a0i8 Contact: <sip:10.6.69.203:5060;transport=udp> v=0 o=- 23267828125 23267828125 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10596 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20 ]
00124 03cc 01:32:53 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/mixer RTSP/1.0 Content-Length: 200 Content-Type: application/sdp CSeq: 2 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc X-Voxeo-VXML-Session-Id: 832c90937725a4d3fe0f718bda97c95a X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826 v=0 o=voxeo.8.0.307.0 0 0 IN IP4 10.6.63.201 s=voxeo c=IN IP4 10.6.63.201 t=0 0 m=audio 10666 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00125 03cc 01:32:53 AM MRCP endpoints: local=10.6.69.203:10596 remote=10.6.63.201:10666
00126 03cc 01:32:53 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 2 Content-Type: application/sdp Content-Length: 219 v=0 o=- 23281156250 23281156250 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10596 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00127 03cc 01:32:53 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 200 Content-Type: application/sdp CSeq: 3 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Transport: RTP/AVP;unicast;destination=10.6.63.201;client_port=5060-5061 X-Voxeo-VXML-Session-Id: 832c90937725a4d3fe0f718bda97c95a X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826 v=0 o=voxeo.8.0.307.0 0 0 IN IP4 10.6.63.201 s=voxeo c=IN IP4 10.6.63.201 t=0 0 m=audio 10666 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00128 03cc 01:32:53 AM RTP session (10596) was modified successfully.
00129 03cc 01:32:53 AM MRCP endpoints: local=10.6.69.203:10596 remote=10.6.63.201:10666
00130 03cc 01:32:53 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Transport: RTP/AVP;unicast;client_port=10666-10667;server_port=10596-10597 CSeq: 3
00131 00-1 01:32:53 AM Call[Tropo->+16502916707] is answered.
00132 00-1 01:32:53 AM Call[Tropo->+16502916707] : currentCall is assigned to outgoing Call[Tropo->+16502916707]
00133 00-1 01:32:53 AM Call[Tropo->+16502916707] : @@@@@BANDMEMBER has answered
00134 00-1 01:32:53 AM Call[Tropo->+16502916707]->block(2000)
00135 00-1 01:32:55 AM Call[Tropo->+16502916707]->prompt("<prosody rate='-10%'>This is band call calling with a lucky fan connection! Would you like to connect to your fan now?</prosody>",true,"","",0.3,any,30000)
00136 03cc 01:32:55 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 4 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Transport: RTP/AVP;unicast;destination=10.6.63.201;client_port=5060-5061 X-Voxeo-VXML-Session-Id: 832c90937725a4d3fe0f718bda97c95a X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826
00137 03cc 01:32:55 AM RTP session (10596) was modified successfully.
00138 03cc 01:32:55 AM MRCP endpoints: local=10.6.69.203:10596 remote=10.6.63.201:10666
00139 03cc 01:32:55 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Transport: RTP/AVP;unicast;client_port=10666-10667;server_port=10596-10597 CSeq: 4
00140 00-1 01:32:55 AM Call[Tropo->+16502916707] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Kate-EnglishGB}
00141 00-1 01:32:55 AM ->waitForListener()
00142 03cc 01:32:55 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 452 Content-Type: application/mrcp CSeq: 5 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc SPEAK 4003000 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Kate-EnglishGB Content-Type: application/synthesis+ssml Content-Length: 128 <prosody rate='-10%'>This is band call calling with a lucky fan connection! Would you like to connect to your fan now?</prosody>
00143 03cc 01:32:55 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 5 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003000 200 IN-PROGRESS
00144 03cc 01:33:02 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 1 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 74 SPEAK-COMPLETE 4003000 COMPLETE MRCP/1.0 completion-cause: 000 normal
00145 03cc 01:33:02 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 1 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00146 00-1 01:33:02 AM ->notifyListener(), listener is com.voxeo.tropo.util.MrcpTtsListener@1f26c15
00147 00-1 01:33:02 AM listener's event is null
00148 03cc 01:33:02 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 6 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc STOP 4003001 MRCP/1.0
00149 03cc 01:33:02 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 6 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003001 200 COMPLETE
00150 00-1 01:33:02 AM <-waitForListener()
00151 00-1 01:33:02 AM Call[Tropo->+16502916707]->prompt("To connect, just say yes! or press 1. For no, just say no, or press 2.",true,"yes( 1, yes), no( 2, no)","",0.3,any,30000)
00152 03cc 01:33:02 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 7 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003002 200 IN-PROGRESS
00153 00-1 01:33:02 AM Call[Tropo->+16502916707] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Allison-EnglishUS}
00154 00-1 01:33:02 AM ->waitForListener()
00155 03cc 01:33:02 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 454 Content-Type: application/mrcp CSeq: 8 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc SPEAK 4003003 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Allison-EnglishUS Content-Type: application/synthesis+ssml Content-Length: 123 <?xml version="1.0" encoding="UTF-8"?><speak>To connect, just say yes! or press 1. For no, just say no, or press 2.</speak>
00156 03cc 01:33:02 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 8 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003003 200 IN-PROGRESS
00157 03cc 01:33:06 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 CSeq: 2 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 48 START-OF-SPEECH 4003002 IN-PROGRESS MRCP/1.0
00158 03cc 01:33:06 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 3 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 76 SPEAK-COMPLETE 4003003 COMPLETE MRCP/1.0 completion-cause: 001 barge-in
00159 03cc 01:33:06 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 CSeq: 4 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 360 RECOGNITION-COMPLETE 4003002 COMPLETE MRCP/1.0 completion-cause: 000 success content-length: 223 content-type: application/x-nlsml <?xml version="1.0"?> <result grammar="0@dba0b856.vxmlgrammar"> <interpretation grammar="0@dba0b856.vxmlgrammar" confidence="100"> <input mode="dtmf">dtmf-1</input> </interpretation> </result>
00160 03cc 01:33:06 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 2 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00161 03cc 01:33:06 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 38 Content-Type: application/mrcp CSeq: 9 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc BARGE-IN-OCCURRED 4003004 MRCP/1.0
00162 00-1 01:33:06 AM ->notifyListener(), listener is com.voxeo.tropo.util.MrcpTtsListener@6b811a
00163 03cc 01:33:06 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 9 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003004 200 COMPLETE
00164 00-1 01:33:06 AM listener's event is null
00165 03cc 01:33:06 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 3 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00166 03cc 01:33:06 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 4 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00167 03cc 01:33:06 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 10 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc STOP 4003005 MRCP/1.0
00168 03cc 01:33:06 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 10 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003005 200 COMPLETE
00169 00-1 01:33:06 AM <-waitForListener()
00170 00-1 01:33:06 AM ->waitForListener()
00171 00-1 01:33:06 AM ->notifyListener(), listener is com.voxeo.tropo.util.MrcpAsrListener@ed192e
00172 00-1 01:33:06 AM listener's event is null
00173 03cc 01:33:06 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 11 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc STOP 4003006 MRCP/1.0
00174 03cc 01:33:06 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 11 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003006 200 COMPLETE
00175 00-1 01:33:06 AM <-waitForListener()
00176 00-1 01:33:06 AM +++++++++++++++++++++++++++++++++++++++++++++{SWI_literal=1, vmlslot0=1}
00177 00-1 01:33:06 AM Call[Tropo->+16502916707]->prompt returned : {concept=yes, tag={SWI_literal=1, vmlslot0=1}, value=yes, utterance=1, xml=<?xml version="1.0"?> <result grammar="0@dba0b856.vxmlgrammar"> <interpretation grammar="0@dba0b856.vxmlgrammar" confidence="100"> <input mode="dtmf">dtmf-1</input> </interpretation> </result> , confidence=1.0, interpretation=1}
00178 00-1 01:33:06 AM Call[Tropo->+16502916707]->prompt("OK, we are connecting you with a fan right now. The fans name is Shirish, Please hold while we connect your call. You can press star at any time to disconnect.",true,"","",0.3,any,30000)
00179 00-1 01:33:06 AM Call[Tropo->+16502916707] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Kate-EnglishGB}
00180 00-1 01:33:06 AM ->waitForListener()
00181 03cc 01:33:06 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 536 Content-Type: application/mrcp CSeq: 12 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc SPEAK 4003007 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Kate-EnglishGB Content-Type: application/synthesis+ssml Content-Length: 212 <?xml version="1.0" encoding="UTF-8"?><speak>OK, we are connecting you with a fan right now. The fans name is Shirish, Please hold while we connect your call. You can press star at any time to disconnect.</speak>
00182 03cc 01:33:06 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 12 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003007 200 IN-PROGRESS
00183 03cc 01:33:16 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 5 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 74 SPEAK-COMPLETE 4003007 COMPLETE MRCP/1.0 completion-cause: 000 normal
00184 03cc 01:33:16 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 5 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00185 00-1 01:33:16 AM ->notifyListener(), listener is com.voxeo.tropo.util.MrcpTtsListener@158d77d
00186 00-1 01:33:16 AM listener's event is null
00187 03cc 01:33:16 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 13 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc STOP 4003008 MRCP/1.0
00188 03cc 01:33:16 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 13 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003008 200 COMPLETE
00189 00-1 01:33:16 AM <-waitForListener()
00190 00-1 01:33:16 AM Call[Tropo->+16502916707]->block(2500)
00191 00-1 01:33:16 AM Call[Tropo->+16502916707] : @@@@@Start second tread: call to Fan
00192 00-1 01:33:16 AM Parse result for [tel:+16505394019] : CalledNumber@1eb77b[to=tel:+16505394019 pause=0 postDial=null]
00193 00-1 01:33:16 AM Creating outgoing call : sip:Tropo@10.6.69.201-->sip:+16505394019@sbc-staging-internal.orl.voxeo.net,false
00194 00-1 01:33:16 AM From: sip:Tropo@10.6.69.201/sip:Tropo@10.6.69.201
00195 00-1 01:33:16 AM To: sip:+16505394019@sbc-staging-internal.orl.voxeo.net/tel:+16505394019
00196 00-1 01:33:16 AM Creating SimpleOutgoingCall from original request [INVITE sip:+16505394019@sbc-staging-internal.orl.voxeo.net SIP/2.0 To: sip:+16505394019@sbc-staging-internal.orl.voxeo.net CSeq: 1 INVITE Content-Length: 0 Call-ID: m626sozbdlcu From: <sip:Tropo@10.6.69.201>;tag=v7cc2zson8as ] using new request [INVITE sip:+16505394019@sbc-staging-internal.orl.voxeo.net SIP/2.0 To: sip:+16505394019@sbc-staging-internal.orl.voxeo.net CSeq: 1 INVITE Content-Length: 0 Call-ID: m626sozbdlcu From: <sip:Tropo@10.6.69.201>;tag=v7cc2zson8as ]
00197 00-1 01:33:16 AM Call[Tropo->+16505394019] state is changed: null->ANSWERING
00198 00-1 01:33:16 AM to uri is sip:+16505394019@sbc-staging-internal.orl.voxeo.net
00199 00-1 01:33:16 AM Initializing MrcpClient to endpoint sbc-staging-internal.orl.voxeo.net:-1
00200 00-1 01:33:16 AM MrcpClient initialized: com.voxeo.sipmethod.mrcp.client.impl.MrcpClientImpl@9ff16d
00201 03ce 01:33:16 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/mixer RTSP/1.0 CSeq: 1 X-Voxeo-VXML-Session-Id: 442e291dade4653ce3cc09ead7e69262 X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826
00202 03ce 01:33:16 AM MRCP endpoints: local=10.6.69.203:10600
00203 03ce 01:33:16 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce Transport: RTP/AVP;unicast;client_port=65535-65536;server_port=10600-10601 CSeq: 1 Content-Type: application/sdp Content-Length: 293 v=0 o=- 23304484375 23304484375 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10600 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00204 00-1 01:33:16 AM asrSession: com.voxeo.sipmethod.mrcp.client.impl.MrcpAsrSessionImpl@1e2ba74
00205 00-1 01:33:16 AM endpoint: MrcpEndpoint[_remoteHost=10.6.69.203, _remotePort=10600, _sdp=v=0 o=- 23304484375 23304484375 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10600 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20 ]
00206 00-1 01:33:16 AM _mrcpSDP: v=0 o=- 23304484375 23304484375 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10600 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00207 00-1 01:33:16 AM _mrcpSDP now: v=0 o=- 23304484375 23304484375 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10600 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00208 00-1 01:33:16 AM Call[Tropo->+16505394019] will be called.
00209 00-1 01:33:16 AM getFirstCall({Call[Tropo->+16505394019]=null}, 30000, , audio/wav, POST)
00210 00-1 01:33:16 AM Ringing unknown +16505394019 from unknown Tropo
00211 00-1 01:33:16 AM Call[Tropo->+16505394019] is calling.
00212 00-1 01:33:16 AM Call[Tropo->+16505394019]->sending outgoing INVITE [timeout:30000,answerOnMedia:false]: [INVITE sip:+16505394019@sbc-staging-internal.orl.voxeo.net SIP/2.0 Content-Type: application/sdp To: sip:+16505394019@sbc-staging-internal.orl.voxeo.net Via: SIP/2.0/UDP 10.6.69.203:5060;branch=z9hG4bKotn7oebcfkts CSeq: 1 INVITE Content-Length: 293 Call-ID: m626sozbdlcu Max-Forwards: 70 From: <sip:Tropo@10.6.69.201>;tag=v7cc2zson8as Contact: <sip:10.6.69.203:5060;transport=udp> v=0 o=- 23304484375 23304484375 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10600 RTP/AVP 0 8 3 112 101 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:3 GSM/8000 a=rtpmap:112 L16/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20 ]
00213 03ce 01:33:18 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/mixer RTSP/1.0 Content-Length: 200 Content-Type: application/sdp CSeq: 2 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce X-Voxeo-VXML-Session-Id: 442e291dade4653ce3cc09ead7e69262 X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826 v=0 o=voxeo.8.0.307.0 0 0 IN IP4 10.6.63.201 s=voxeo c=IN IP4 10.6.63.201 t=0 0 m=audio 11016 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00214 03ce 01:33:18 AM MRCP endpoints: local=10.6.69.203:10600 remote=10.6.63.201:11016
00215 03ce 01:33:18 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 2 Content-Type: application/sdp Content-Length: 219 v=0 o=- 23306593750 23306593750 IN IP4 10.6.69.203 s=voxeo.10.0.39114.0 c=IN IP4 10.6.69.203 t=0 0 m=audio 10600 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00216 03ce 01:33:18 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 200 Content-Type: application/sdp CSeq: 3 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce Transport: RTP/AVP;unicast;destination=10.6.63.201;client_port=5060-5061 X-Voxeo-VXML-Session-Id: 442e291dade4653ce3cc09ead7e69262 X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826 v=0 o=voxeo.8.0.307.0 0 0 IN IP4 10.6.63.201 s=voxeo c=IN IP4 10.6.63.201 t=0 0 m=audio 11016 RTP/AVP 0 101 a=rtpmap:0 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=ptime:20
00217 03ce 01:33:18 AM RTP session (10600) was modified successfully.
00218 03ce 01:33:18 AM MRCP endpoints: local=10.6.69.203:10600 remote=10.6.63.201:11016
00219 03ce 01:33:18 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce Transport: RTP/AVP;unicast;client_port=11016-11017;server_port=10600-10601 CSeq: 3
00220 00-1 01:33:18 AM Call[Tropo->+16505394019] is answered.
00221 00-1 01:33:18 AM Call[Tropo->+16502916707] : @@@@@FAN has answered
00222 00-1 01:33:18 AM Call[Tropo->+16502916707]->block(2000)
00223 00-1 01:33:19 AM Call[Tropo->+16502916707]->prompt("We are connecting toShirish",true,"","",0.3,any,30000)
00224 00-1 01:33:19 AM Call[Tropo->+16502916707] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Kate-EnglishGB}
00225 00-1 01:33:19 AM ->waitForListener()
00226 03cc 01:33:19 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 403 Content-Type: application/mrcp CSeq: 14 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc SPEAK 4003009 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Kate-EnglishGB Content-Type: application/synthesis+ssml Content-Length: 80 <?xml version="1.0" encoding="UTF-8"?><speak>We are connecting toShirish</speak>
00227 03cc 01:33:19 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 14 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003009 200 IN-PROGRESS
00228 00-1 01:33:20 AM Call[Tropo->+16505394019]->prompt("This is band call calling with a lucky fan connection! You have a call from the rolling stones!",true,"","",0.3,any,30000)
00229 03ce 01:33:20 AM RTSP Message(i): SETUP rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 4 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce Transport: RTP/AVP;unicast;destination=10.6.63.201;client_port=5060-5061 X-Voxeo-VXML-Session-Id: 442e291dade4653ce3cc09ead7e69262 X-Voxeo-Account-Id: 46294 X-Voxeo-App-Id: 106826
00230 03ce 01:33:20 AM RTP session (10600) was modified successfully.
00231 03ce 01:33:20 AM MRCP endpoints: local=10.6.69.203:10600 remote=10.6.63.201:11016
00232 03ce 01:33:20 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce Transport: RTP/AVP;unicast;client_port=11016-11017;server_port=10600-10601 CSeq: 4
00233 00-1 01:33:20 AM Call[Tropo->+16505394019] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Kate-EnglishGB}
00234 00-1 01:33:20 AM ->waitForListener()
00235 03ce 01:33:20 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 472 Content-Type: application/mrcp CSeq: 5 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce SPEAK 3961000 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="kate.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Kate-EnglishGB;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Kate-EnglishGB Content-Type: application/synthesis+ssml Content-Length: 148 <?xml version="1.0" encoding="UTF-8"?><speak>This is band call calling with a lucky fan connection! You have a call from the rolling stones!</speak>
00236 03ce 01:33:20 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 5 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 3961000 200 IN-PROGRESS
00237 03cc 01:33:21 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 6 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 74 SPEAK-COMPLETE 4003009 COMPLETE MRCP/1.0 completion-cause: 000 normal
00238 03cc 01:33:21 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 6 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00239 00-1 01:33:21 AM ->notifyListener(), listener is com.voxeo.tropo.util.MrcpTtsListener@e0ecaf
00240 00-1 01:33:21 AM listener's event is null
00241 03cc 01:33:21 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 15 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc STOP 4003010 MRCP/1.0
00242 03cc 01:33:21 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 15 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003010 200 COMPLETE
00243 00-1 01:33:21 AM <-waitForListener()
00244 00-1 01:33:21 AM Call[Tropo->+16502916707]->conference("2010013240", "false", "false", "*", "", "Connecting now.", "We hope you enjoyed your call! Goodbye!")
00245 00-1 01:33:21 AM com.voxeo.tropo.core.ConferenceFactory@f2c3c8->createConference("2010013240", "46294")
00246 00-1 01:33:21 AM com.voxeo.tropo.core.ConferenceFactory@f2c3c8->created Conference("2010013240", "46294") : 2010013240||staging||46294
00247 00-1 01:33:21 AM Call[Tropo->+16502916707] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Allison-EnglishUS}
00248 03cc 01:33:21 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 398 Content-Type: application/mrcp CSeq: 16 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc SPEAK 4003011 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Allison-EnglishUS Content-Type: application/synthesis+ssml Content-Length: 68 <?xml version="1.0" encoding="UTF-8"?><speak>Connecting now.</speak>
00249 03cc 01:33:21 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 16 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003011 200 IN-PROGRESS
00250 03cc 01:33:22 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 7 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 74 SPEAK-COMPLETE 4003011 COMPLETE MRCP/1.0 completion-cause: 000 normal
00251 03cc 01:33:22 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 7 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00252 03cc 01:33:22 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/mixer RTSP/1.0 Content-Length: 180 Content-Type: application/mrcp CSeq: 17 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc VOXEO-JOIN 4003012 MRCP/1.0 Vendor-Specific-Parameters: Voxeo-Join-DTMF-Passthrough=false;Voxeo-Join-Listen-Only=false X-Voxeo-Join-ID: 2010013240||staging||46294@10.6.69.203
00253 03cc 01:33:22 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 17 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003012 200 IN-PROGRESS
00254 00-1 01:33:22 AM Call[Tropo->+16502916707] has entered conference[2010013240]
00255 00-1 01:33:22 AM ->waitForListener()
00256 03cc 01:33:22 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 581 Content-Type: application/mrcp CSeq: 18 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc RECOGNIZE 4003013 MRCP/1.0 Content-Id: 1@dba0b856.vxmlgrammar Sensitivity-Level: 50 Recognizer-Start-Timers: false N-Best-List-Length: 1 No-Input-Timeout: 60000 Vendor-Specific-Parameters: Recognition-Mode=hotword Confidence-Threshold: 100 Speed-Vs-Accuracy: 50 Dtmf-Interdigit-Timeout: 120000 Speech-Language: en-US Vendor-Specific-Parameters: Voxeo-Input-Mode=dtmf Content-Type: application/x-jsgf Content-Length: 145 #JSGF 1.0; grammar SIMPLE_GRAMMAR_3389DAE361AF79B04C9C8E7057F60CC6; public <SIMPLE_GRAMMAR_3389DAE361AF79B04C9C8E7057F60CC6> = (/1.0/dtmf-star);
00257 03cc 01:33:22 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 18 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003013 200 IN-PROGRESS
00258 03cc 01:33:22 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 210 Content-Type: application/mrcp CSeq: 19 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc RECOGNITION-START-TIMERS 4003014 MRCP/1.0 Content-Id: 1@dba0b856.vxmlgrammar Vendor-Specific-Parameters: Recognition-Mode=hotword Speech-Language: en-US Vendor-Specific-Parameters: Voxeo-Input-Mode=dtmf
00259 03cc 01:33:22 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 19 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003014 200 COMPLETE
00260 03ce 01:33:26 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 1 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce Content-Type: application/mrcp Content-Length: 74 SPEAK-COMPLETE 3961000 COMPLETE MRCP/1.0 completion-cause: 000 normal
00261 03ce 01:33:26 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 1 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce
00262 00-1 01:33:26 AM ->notifyListener(), listener is com.voxeo.tropo.util.MrcpTtsListener@1d68c36
00263 00-1 01:33:26 AM listener's event is null
00264 03ce 01:33:26 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 6 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce STOP 3961001 MRCP/1.0
00265 03ce 01:33:26 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 6 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 3961001 200 COMPLETE
00266 00-1 01:33:26 AM <-waitForListener()
00267 00-1 01:33:26 AM Call[Tropo->+16505394019]->conference("2010013240", "false", "false", "*", "", "Connecting now.", "We hope you enjoyed your call! Goodbye!")
00268 00-1 01:33:26 AM com.voxeo.tropo.core.ConferenceFactory@1a1f4bd->createConference("2010013240", "46294")
00269 00-1 01:33:26 AM com.voxeo.tropo.core.ConferenceFactory@1a1f4bd->created Conference("2010013240", "46294") : 2010013240||staging||46294
00270 00-1 01:33:26 AM Call[Tropo->+16505394019] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Allison-EnglishUS}
00271 03ce 01:33:26 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 398 Content-Type: application/mrcp CSeq: 7 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce SPEAK 3961002 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Allison-EnglishUS Content-Type: application/synthesis+ssml Content-Length: 68 <?xml version="1.0" encoding="UTF-8"?><speak>Connecting now.</speak>
00272 03ce 01:33:26 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 7 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 3961002 200 IN-PROGRESS
00273 03ce 01:33:28 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 2 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce Content-Type: application/mrcp Content-Length: 74 SPEAK-COMPLETE 3961002 COMPLETE MRCP/1.0 completion-cause: 000 normal
00274 03ce 01:33:28 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 2 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce
00275 03ce 01:33:28 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/mixer RTSP/1.0 Content-Length: 180 Content-Type: application/mrcp CSeq: 8 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce VOXEO-JOIN 3961003 MRCP/1.0 Vendor-Specific-Parameters: Voxeo-Join-DTMF-Passthrough=false;Voxeo-Join-Listen-Only=false X-Voxeo-Join-ID: 2010013240||staging||46294@10.6.69.203
00276 03ce 01:33:28 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 8 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 3961003 200 IN-PROGRESS
00277 00-1 01:33:28 AM Call[Tropo->+16505394019] has entered conference[2010013240]
00278 00-1 01:33:28 AM ->waitForListener()
00279 03ce 01:33:28 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 581 Content-Type: application/mrcp CSeq: 9 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce RECOGNIZE 3961004 MRCP/1.0 Content-Id: 0@5760b8ea.vxmlgrammar Sensitivity-Level: 50 Recognizer-Start-Timers: false N-Best-List-Length: 1 No-Input-Timeout: 60000 Vendor-Specific-Parameters: Recognition-Mode=hotword Confidence-Threshold: 100 Speed-Vs-Accuracy: 50 Dtmf-Interdigit-Timeout: 120000 Speech-Language: en-US Vendor-Specific-Parameters: Voxeo-Input-Mode=dtmf Content-Type: application/x-jsgf Content-Length: 145 #JSGF 1.0; grammar SIMPLE_GRAMMAR_3389DAE361AF79B04C9C8E7057F60CC6; public <SIMPLE_GRAMMAR_3389DAE361AF79B04C9C8E7057F60CC6> = (/1.0/dtmf-star);
00280 03ce 01:33:28 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 9 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 3961004 200 IN-PROGRESS
00281 03ce 01:33:28 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 210 Content-Type: application/mrcp CSeq: 10 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce RECOGNITION-START-TIMERS 3961005 MRCP/1.0 Content-Id: 0@5760b8ea.vxmlgrammar Vendor-Specific-Parameters: Recognition-Mode=hotword Speech-Language: en-US Vendor-Specific-Parameters: Voxeo-Input-Mode=dtmf
00282 03ce 01:33:28 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 10 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 3961005 200 COMPLETE
00283 03cc 01:34:22 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 CSeq: 8 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 90 RECOGNITION-COMPLETE 4003013 COMPLETE MRCP/1.0 completion-cause: 002 no-input-timeout
00284 03cc 01:34:22 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 31 Content-Type: application/mrcp CSeq: 20 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc SET-PARAMS 4003015 MRCP/1.0
00285 03cc 01:34:22 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 20 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003015 200 COMPLETE
00286 03cc 01:34:22 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 8 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00287 00-1 01:34:22 AM Call[Tropo->+16502916707]->leftConference("2010013240")
00288 03cc 01:34:22 AM RTSP Message(i): TEARDOWN rtsp://10.6.69.203:9974/mixer RTSP/1.0 CSeq: 21 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00289 03cc 01:34:22 AM RTP session (10596) was modified successfully.
00290 03cc 01:34:22 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 21
00291 00-1 01:34:22 AM conference unbound
00292 00-1 01:34:22 AM ->notifyListener(), listener is com.voxeo.tropo.util.MrcpAsrListener@12ec1bb
00293 00-1 01:34:22 AM listener's event is null
00294 03cc 01:34:22 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 22 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc STOP 4003016 MRCP/1.0
00295 03cc 01:34:22 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 22 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 4003016 200 COMPLETE
00296 00-1 01:34:22 AM <-waitForListener()
00297 00-1 01:34:22 AM Call[Tropo->+16502916707] buildSpeakProperties: {Kill-On-Barge-In=true, Vendor-Specific-Parameters=Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging, Voice-Name=Allison-EnglishUS}
00298 03cc 01:34:22 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 Content-Length: 422 Content-Type: application/mrcp CSeq: 23 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc SPEAK 4003017 MRCP/1.0 Kill-On-Barge-In: true Vendor-Specific-Parameters: Voxeo-Resource="en-US.TTS.324f78c749da436fad7249ded88e272d.staging;voiceName=Allison-EnglishUS;type=loquendo;plugin=vxttsloq7";Voxeo-Virtual-Platform=staging Voice-Name: Allison-EnglishUS Content-Type: application/synthesis+ssml Content-Length: 92 <?xml version="1.0" encoding="UTF-8"?><speak>We hope you enjoyed your call! Goodbye!</speak>
00299 03cc 01:34:22 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 23 Content-Type: application/mrcp Content-Length: 36 MRCP/1.0 4003017 200 IN-PROGRESS
00300 03cc 01:34:25 AM RTSP message(o): ANNOUNCE rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 9 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc Content-Type: application/mrcp Content-Length: 74 SPEAK-COMPLETE 4003017 COMPLETE MRCP/1.0 completion-cause: 000 normal
00301 03cc 01:34:25 AM RTSP Message(i): RTSP/1.0 200 OK CSeq: 9 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00302 00-1 01:34:25 AM +++++++++++++++++++++++++++++++++++++++++++++null
00303 00-1 01:34:25 AM ApplicationInstance[http://hosting.tropo.com/46294/www/joopconnect2.rb, sas_2-15-sm1jb9db1tc3pe9tropo] ends execution on Thread Script
00304 00-1 01:34:25 AM Thread Script returned engine of type jruby, activeEngines = 4
00305 00-1 01:34:25 AM Hanging up call [id=832c90937725a4d3fe0f718bda97c95a]
00306 00-1 01:34:25 AM Call[Tropo->+16502916707]->hangup(), headers ={}
00307 00-1 01:34:25 AM Call[Tropo->+16502916707] state is changed: ANSWERED->DISCONNECTED
00308 03cc 01:34:25 AM RTSP Message(i): TEARDOWN rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 24 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00309 03cc 01:34:25 AM RTP session (10596) was modified successfully. RTPSTAT:Duration=0092108;TX=004505|000;RX=004648|043|004605|0000;BR=000000|000000|000000|0000;TM=00000|0000|000;CONF=0000000|0000000|0000000|0000000;ERR=000|000|000|000|005|020|000;10.6.63.201:10666;
00310 03cc 01:34:25 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 24
00311 03cc 01:34:25 AM RTSP Message(i): TEARDOWN rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 CSeq: 25 Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc
00312 03cc 01:34:25 AM RTP session (10596) was stopped. RTPSTAT:Duration=0092109;TX=004505|000;RX=004648|043|004605|0000;BR=000000|000000|000000|0000;TM=00000|0000|000;CONF=0000000|0000000|0000000|0000000;ERR=000|000|000|000|005|020|000;10.6.63.201:10666; JB:000000|000000|004602|000038|000008;003927|000000|000697|000021|000003;drops=0000|0000|0000|00|00.00;disc=00000|000|000|000;other=000|000|000;
00313 03cc 01:34:25 AM RTSP message(o): RTSP/1.0 200 OK Session: 832c90937725a4d3fe0f718bda97c95a-819288265-9d48d2a216a30d10-0000097c-000003cc CSeq: 25
00314 00-1 01:34:25 AM Hanging up call [id=442e291dade4653ce3cc09ead7e69262]
00315 00-1 01:34:25 AM Call[Tropo->+16505394019]->hangup(), headers ={}
00316 00-1 01:34:25 AM Sending CDR [callId=832c90937725a4d3fe0f718bda97c95a, text={"call":{"CallID":"832c90937725a4d3fe0f718bda97c95a","DateCreated":"Thu, 10 Jun 2010 01:32:53 +0000","DateUpdated":"Thu, 10 Jun 2010 01:32:53 +0000","AccountID":"46294","Called":"+16502916707","Caller":"Tropo","PhoneNumberSid":"unknown","Status":"unknown","StartTime":"Thu, 10 Jun 2010 01:32:53 +0000","EndTime":"Thu, 10 Jun 2010 01:34:25 +0000","Duration":"92109","Flags":"out","RecordingDuration":"0","Network":"PSTN","Channel":"VOICE","ApplicationId":"106826","ApplicationType":"jruby","ServiceId":"272577","StartUrl":"http:\/\/hosting.tropo.com\/46294\/www\/joopconnect2.rb"}}]
00317 00-1 01:34:25 AM Call[Tropo->+16505394019] state is changed: ANSWERED->DISCONNECTED
00318 03ce 01:34:25 AM RTSP Message(i): ANNOUNCE rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 Content-Length: 25 Content-Type: application/mrcp CSeq: 11 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce STOP 3961006 MRCP/1.0
00319 03ce 01:34:25 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 11 Content-Type: application/mrcp Content-Length: 33 MRCP/1.0 3961006 200 COMPLETE
00320 00-1 01:34:25 AM <-waitForListener()
00321 03ce 01:34:25 AM RTSP Message(i): TEARDOWN rtsp://10.6.69.203:9974/synthesizer/ RTSP/1.0 CSeq: 12 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce
00322 03ce 01:34:25 AM RTP session (10600) was modified successfully. RTPSTAT:Duration=0066664;TX=003233|000;RX=003332|000|003332|0000;BR=000000|000000|000000|0000;TM=00000|0000|000;CONF=0000001|0002872|0002872|0000000;ERR=000|000|000|000|000|000|000;10.6.63.201:11016;
00323 03ce 01:34:25 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 12
00324 03ce 01:34:25 AM RTSP Message(i): TEARDOWN rtsp://10.6.69.203:9974/mixer RTSP/1.0 CSeq: 13 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce
00325 03ce 01:34:25 AM RTP session (10600) was modified successfully. RTPSTAT:Duration=0066664;TX=003233|000;RX=003332|000|003332|0000;BR=000000|000000|000000|0000;TM=00000|0000|000;CONF=0000001|0002872|0002872|0000000;ERR=000|000|000|000|000|000|000;10.6.63.201:11016;
00326 03ce 01:34:25 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 13
00327 03ce 01:34:25 AM RTSP Message(i): TEARDOWN rtsp://10.6.69.203:9974/recognizer/ RTSP/1.0 CSeq: 14 Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce
00328 03ce 01:34:25 AM RTP session (10600) was stopped. RTPSTAT:Duration=0066667;TX=003233|000;RX=003332|000|003332|0000;BR=000000|000000|000000|0000;TM=00000|0000|000;CONF=0000000|0000000|0000000|0000000;ERR=000|000|000|000|000|000|000;10.6.63.201:11016; JB:000000|000000|002532|000800|000000;000002|000000|003331|000000|000000;drops=0001|0000|0000|00|00.00;disc=00000|000|000|000;other=000|000|000;
00329 03ce 01:34:25 AM RTSP message(o): RTSP/1.0 200 OK Session: 442e291dade4653ce3cc09ead7e69262-819324921-9d48d2a2177b3d40-0000097c-000003ce CSeq: 14
00330 00-1 01:34:25 AM Sent CDR [callId=832c90937725a4d3fe0f718bda97c95a]
00331 00-1 01:34:25 AM Sending CDR [callId=442e291dade4653ce3cc09ead7e69262, text={"call":{"CallID":"442e291dade4653ce3cc09ead7e69262","DateCreated":"Thu, 10 Jun 2010 01:33:18 +0000","DateUpdated":"Thu, 10 Jun 2010 01:33:18 +0000","AccountID":"46294","Called":"+16505394019","Caller":"Tropo","PhoneNumberSid":"unknown","Status":"unknown","StartTime":"Thu, 10 Jun 2010 01:33:18 +0000","EndTime":"Thu, 10 Jun 2010 01:34:25 +0000","Duration":"66656","Flags":"out","RecordingDuration":"0","Network":"PSTN","Channel":"VOICE","ApplicationId":"106826","ApplicationType":"jruby","ServiceId":"272577","StartUrl":"http:\/\/hosting.tropo.com\/46294\/www\/joopconnect2.rb"}}]
00332 00-1 01:34:25 AM Sent CDR [callId=442e291dade4653ce3cc09ead7e69262]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment