View previous topic :: View next topic |
Author |
Message |
craig at vastpark.com Guest
|
Posted: Wed Sep 23, 2009 1:24 am Post subject: [Freeswitch-users] Conference with pin dialplan |
|
|
Hi all,
I’ve written a C# module for FS that creates conference dialplans on the fly. From my limited understanding the easiest way to do this is by writing XML to the directory: conf/dialplan/default/ - so this is the approach I’ve taken.
After some suggestions in IRC to remove errant flags, I’m still having difficulty making the conference require pin entry. My generated XML looks like this:
<extension name="requestedName">
<condition field="destination_number" expression="^(3013)$">
<action application="conference" data="requestedName@default+89497" />
</condition>
</extension>
If I dial that extension I get music but no pin challenge, the next person that dials the same. If i hardcode in conference.conf.xml (default profile) a pin of:
<param name="pin" value="89497"/>
...then it works as expected, and pin access is required.
Is it possible I’ve overridden pin settings elsewhere in the FS config? Does ACL have any relationship to conference pin requirements?
Thanks!
Craig |
|
Back to top |
|
|
jason at jasonjgw.net Guest
|
Posted: Wed Sep 23, 2009 1:55 am Post subject: [Freeswitch-users] Conference with pin dialplan |
|
|
Craig Presti <craig@vastpark.com> wrote:
Quote: | I've written a C# module for FS that creates conference dialplans on the
fly. From my limited understanding the easiest way to do this is by writing
XML to the directory: conf/dialplan/default/ - so this is the approach I've
taken.
|
mod_curl might be easier if you have a Web server handy, or you could just
write code that attaches to the socket interface, or gets invoked from the
dial plan, and creates the conferences.
See the wiki for further details.
_______________________________________________
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 |
|
|
craig at vastpark.com Guest
|
Posted: Wed Sep 23, 2009 5:19 pm Post subject: [Freeswitch-users] Conference with pin dialplan |
|
|
Thanks Jason, I'll look into your suggestions. Does this imply that creating
a conference which requires a pin via my current approach will not work?
-----Original Message-----
From: freeswitch-users-bounces@lists.freeswitch.org
[mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Jason
White
Sent: Wednesday, 23 September 2009 4:47 PM
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] Conference with pin dialplan
Craig Presti <craig@vastpark.com> wrote:
Quote: | I've written a C# module for FS that creates conference dialplans on
the fly. From my limited understanding the easiest way to do this is
by writing XML to the directory: conf/dialplan/default/ - so this is
the approach I've taken.
|
mod_curl might be easier if you have a Web server handy, or you could just
write code that attaches to the socket interface, or gets invoked from the
dial plan, and creates the conferences.
See the wiki for further details.
_______________________________________________
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
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4448 (20090922) __________
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
_______________________________________________
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 |
|
|
|