[Freeswitch-users] Originate - using own uuid

2009-05-07 Thread Simon Tang
Hi there, I know there's a feature that allows us to create a uuid and then use that uuid to do an originate (api create_uuid). Is there any badness if I don't do the create_uuid and just do the originate using my own uuid. I experimented and made the following originate call: api originate

Re: [Freeswitch-users] Originate - using own uuid

2009-05-07 Thread Brian West
I would use real UUID's not something as simple as abcdefg cuz FS will hang up on you if you collide. /b On May 7, 2009, at 3:47 PM, Simon Tang wrote: Hi there, I know there's a feature that allows us to create a uuid and then use that uuid to do an originate (api create_uuid). Is there

Re: [Freeswitch-users] Originate - using own uuid

2009-05-07 Thread Andrew Thompson
On Thu, May 07, 2009 at 01:47:26PM -0700, Simon Tang wrote: Hi there, I know there's a feature that allows us to create a uuid and then use that uuid to do an originate (api create_uuid). Is there any badness if I don't do the create_uuid and just do the originate using my own uuid. I

Re: [Freeswitch-users] Originate - using own uuid

2009-05-07 Thread Brian West
How about something like this : {origination_caller_id_number =16041234567,originate_timeout=60,origination_uuid=$ {create_uuid()}}sofia/gateway/icall/16041234567 park You can call an api with ${apiname()} and the results will go into its place. /b On May 7, 2009, at 4:18 PM, Simon Tang

Re: [Freeswitch-users] Originate - using own uuid

2009-05-07 Thread Anthony Minessale
it's up to you what you do, break it you buy it =D On Thu, May 7, 2009 at 4:26 PM, Brian West br...@freeswitch.org wrote: How about something like this : {origination_caller_id_number=16041234567,originate_timeout=60,origination_uuid=${create_uuid()}}sofia/gateway/icall/16041234567 park