VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
pjintheusa at gmail.com Guest
|
Posted: Thu Sep 03, 2009 3:00 pm Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
Hi there:
The wiki states:
uuid_exists
Checks whether a given UUID exists.
Usage: uuid_exists <uuid>
However when I call via an API call I get:
INVALID COMMAND!
I also don't see it in MOD_COMMAND.C
Has it gone?
Thanks
Phillip Jones. |
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Thu Sep 03, 2009 3:31 pm Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
You're not on the latest SVN that was recently added.
/b
On Sep 3, 2009, at 2:55 PM, Phillip Jones wrote:
|
|
Back to top |
|
|
fraunhofer.lists.frees... Guest
|
Posted: Thu Sep 03, 2009 4:28 pm Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
Hi,
Quote: | Usage: uuid_exists <uuid>
However when I call via an API call I get:
INVALID COMMAND!
I also don't see it in MOD_COMMAND.C
|
As a workaround or if your are unable to upgrade, you can use
"uuid_getvar [some_uuid] thisVariableDoesNotExist"
("thisVariableDoesNotExist" is any variable you can think of, a valid
one or literally 'thisVariableDoesNotExist'
You'll either get an error that this channel does not exist any longer
or "undef" for the channel variable.
The api will return "+OK" in case the channel still exists, and
"ERROR" in case it does not.
Beni.
_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Thu Sep 03, 2009 5:03 pm Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
On Thu, Sep 3, 2009 at 2:23 PM, Benedikt Fraunhofer <fraunhofer.lists.freeswitch-001@traced.net (fraunhofer.lists.freeswitch-001@traced.net)> wrote:
Quote: | Hi,
Quote: | Usage: uuid_exists <uuid>
However when I call via an API call I get:
INVALID COMMAND!
I also don't see it in MOD_COMMAND.C
|
As a workaround or if your are unable to upgrade, you can use
"uuid_getvar [some_uuid] thisVariableDoesNotExist"
("thisVariableDoesNotExist" is any variable you can think of, a valid
one or literally 'thisVariableDoesNotExist'
You'll either get an error that this channel does not exist any longer
or "undef" for the channel variable.
The api will return "+OK" in case the channel still exists, and
"ERROR" in case it does not.
Beni.
|
You could even do this:
uuid_getvar <the_uuid_you_are_checking> uuid
If it exists then the return will be the uuid.
Although I must say I recommend this instead:
make current
-MC |
|
Back to top |
|
|
pjintheusa at gmail.com Guest
|
Posted: Thu Sep 10, 2009 4:33 pm Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
Strangely - the uuid_getvar <the_uuid_you_are_checking> uuid workaround does not work for me.
This is the result of:
apiResult = fsApi.ExecuteString(string.Format("uuid_getvar {0} uuid", call.Uuid));
Log.WriteLine(LogLevel.Alert, "RESULT: uuid_getvar {0} is: {1}", call.Uuid, apiResult);
returns a different uuid?????
2009-09-10 17:12:26.953125 [ALERT] switch_cpp.cpp:1130 RESULT: uuid_getvar 54dd24be-b0da-684f-acee-38c7530b4c2b is: 1a0e83db-240c-ac4e-ae45-bf5d5b46f5c3
the passed uuid is vaild however:
2009-09-10 17:12:26.953125 [ALERT] switch_cpp.cpp:1130 RESULT: uuid_kill 54dd24be-b0da-684f-acee-38c7530b4c2b is: +OK
Can a call leg have two uuids??
On Thu, Sep 3, 2009 at 5:56 PM, Michael Collins <msc@freeswitch.org (msc@freeswitch.org)> wrote:
|
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Thu Sep 10, 2009 5:10 pm Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
As a sanity test, can you bring up a bridged call and run this test directly from the command line and compare the results to what's in your script?
-MC
On Thu, Sep 10, 2009 at 2:24 PM, Phillip Jones <pjintheusa@gmail.com (pjintheusa@gmail.com)> wrote:
|
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Thu Sep 10, 2009 9:24 pm Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
What puzzles me is why you can't just update to SVN trunk to get
uuid_exists in the first place? Its going to be 1.0.5 the more people
we have testing the faster that happens.
/b
On Sep 10, 2009, at 4:24 PM, Phillip Jones wrote:
Quote: | Strangely - the uuid_getvar <the_uuid_you_are_checking> uuid
workaround does not work for me.
This is the result of:
apiResult = fsApi.ExecuteString(string.Format("uuid_getvar {0}
uuid", call.Uuid));
Log.WriteLine(LogLevel.Alert, "RESULT: uuid_getvar {0} is: {1}",
call.Uuid, apiResult);
returns a different uuid?????
2009-09-10 17:12:26.953125 [ALERT] switch_cpp.cpp:1130 RESULT:
uuid_getvar 54dd24be-b0da-684f-acee-38c7530b4c2b is: 1a0e83db-240c-
ac4e-ae45-bf5d5b46f5c3
the passed uuid is vaild however:
2009-09-10 17:12:26.953125 [ALERT] switch_cpp.cpp:1130 RESULT:
uuid_kill 54dd24be-b0da-684f-acee-38c7530b4c2b is: +OK
Can a call leg have two uuids??
|
_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
pjintheusa at gmail.com Guest
|
Posted: Fri Sep 11, 2009 11:10 am Post subject: [Freeswitch-users] uuid_exists - does it still exist? |
|
|
Yep - I built out a very simple test:
string uuid = "12345678-1234-4321-123456789012";
apiResult = fsApi.Execute("originate", string.Format("{{ignore_early_media=false,absolute_codec_string='PCMU'}}[origination_uuid={0},origination_caller_id_number={1}]sofia/gateway/broadvox/{2} &park", uuid, "2129996599", "6093693828"));
Log.WriteLine(LogLevel.Alert, "Originate returns: {0}", apiResult);
Session.Execute("park", "");
relevant log details:
2009-09-11 11:28:22.750000 [ALERT] switch_cpp.cpp:1130 Originate returns: +OK 12345678-1234-4321-123456789012
uuid_getvar 12345678-1234-4321-123456789012 uuid RETURNS: 3e1ef4ee-8e39-b841-a9a0-6ac997b56275
uuid _kill 3e1ef4ee-8e39-b841-a9a0-6ac997b56275 -ERR No Such Channel
However: uuid _kill 12345678-1234-4321-123456789012 RETURNS +OK and drops the call.
I repeated the test and attached the screenshot. Be interested to know where that 3e1ef4ee-8e39-b841-a9a0-6ac997b56275 comes from.
All academic - just for interest and better understanding.
On Thu, Sep 10, 2009 at 6:01 PM, Michael Collins <msc@freeswitch.org (msc@freeswitch.org)> wrote:
|
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|