<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Thanks for the input.&nbsp;<div><br><div><blockquote type="cite">You'll have to decide on static vs. dynamic based on your needs. In either case, once the call is connected to your socket you've got all sorts of control options. PHP has an ESL abstraction just like the other languages so there shouldn't be any issue about PHP lacking the ability to control calls.<br></blockquote><br>But I'm having a hard time seeing how the ESL would duplicate this JS functionality:</div><div><br></div><div><blockquote type="cite"><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); margin-top: 0pt; margin-right: 0pt; margin-bottom: 0pt; margin-left: 0.8ex; padding-left: 1ex; position: static; z-index: auto; "><div style="word-wrap: break-word; "><div><div>session.collectInput(onInputsml, "emptyobject", 7000);</div></div></div></blockquote></div></blockquote><br>How do I set the PHP callback routine, etc.?<br><div apple-content-edited="true"> <span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><font face="Helvetica" size="3" style="font: normal normal normal 12px/normal Helvetica; ">--</font></p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><font face="Helvetica" size="3" style="font: normal normal normal 12px/normal Helvetica; ">Greg Thoen</font></p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 12px/normal Helvetica; min-height: 14px; "><br></p></div></div></span><br class="Apple-interchange-newline"> </div><br><div><div>On Aug 31, 2009, at 12:55 PM, Michael Collins wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><br><br><div class="gmail_quote">On Mon, Aug 31, 2009 at 8:22 AM, Greg Thoen <span dir="ltr">&lt;<a href="mailto:gregt@cgicommunications.com">gregt@cgicommunications.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); margin-top: 0pt; margin-right: 0pt; margin-bottom: 0pt; margin-left: 0.8ex; padding-left: 1ex; position: static; z-index: auto; "> <div style="word-wrap: break-word;">Hi. Before I go to far down this path, I wonder if what I intend to do is not a good practice.<div><br></div><div>I started using mod_xml_curl to use PHP on localhost to generate a dialplan dynamically, based on the&nbsp;Caller-Destination-Number variable that is posted. It prints out the XML that calls the javascript that then controls the call. For example,</div> <div><br></div><div><div>$response = &lt;&lt;&lt; XML</div><div>&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt;</div><div>&lt;document type="freeswitch/xml"&gt;</div><div> &nbsp;&nbsp;&lt;section name="dialplan" description="example_curl_dialplan"&gt;</div><div>&nbsp;&nbsp; &nbsp;&lt;context name="public"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp;&lt;extension name="curl_test"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;condition field="destination_number" expression="^(\+1|1?)(5844111)$"&gt;</div> <div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;action application="javascript" data="demos/stest-examp-st.js" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/condition&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp;&lt;/extension&gt;</div><div>&nbsp;&nbsp; &nbsp;&lt;/context&gt;</div><div> &nbsp;&nbsp;&lt;/section&gt;</div><div>&lt;/document&gt;</div><div>XML;</div><div><br></div><div>Then I thought, that's silly to go back out to javascript to handle the actions, playing files, using pocketsphinx, etc. I should just stay in PHP, using esl.php to answer and handle the call.</div> <div><br></div><div>Then I rethought, is that a good practice to take over the call control from freeswitch at that point, while it is in the xml-curl dialplan hunt?</div><div><br></div><div>Then I also thought, is it even possible to do some of the things I need to do from the php esl, like the equivalent of this javascript:</div> <div>session.collectInput(onInputsml, "emptyobject", 7000);</div><div> <span style="font-size: 12px;"><div style="word-wrap: break-word;"><div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><font face="Helvetica" size="3">--</font></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><font face="Helvetica" size="3">Greg Thoen</font></div></div></div></span><br></div></div></div></blockquote><div><br>Just remember that you're dealing with two somewhat related but still distinctly separate entities: generating a dialplan and executing some sort of call control from the dialplan. You need some sort of dialplan no matter what, so the issue there is whether you need a dynamic one or not. If you're just going to drop calls to an extension that opens an outbound socket to your call control program then you may not need the dynamic dp generation that mod_xml_curl gives you. You'll have to decide on static vs. dynamic based on your needs. In either case, once the call is connected to your socket you've got all sorts of control options. PHP has an ESL abstraction just like the other languages so there shouldn't be any issue about PHP lacking the ability to control calls.<br> <br>I say start hacking away at it and see what happens. :) Definitely join us in #freeswitch on <a href="http://irc.freenode.net">irc.freenode.net</a> if you want to discuss this more in realtime. <br>-MC<br><br></div></div> _______________________________________________<br>FreeSWITCH-users mailing list<br><a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<br>UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br>http://www.freeswitch.org<br></blockquote></div><br></div></div></body></html>