Does AST mean Asterisk Open Source PBX ?<br><br>If so, then yes I am familiar with it&#39;s archetechure as I am a former developer from that project.<br><br>You have 3 choices with FreeSWITCH<br><br>1) You can open a dedicated connection to mod_event_socket or XMLRPC per call and issue the originate command from there: <br>

&nbsp;&nbsp;&nbsp; This will block until you know for sure the outcome of the
attempt.&nbsp; If it&#39;s success it will give you the uuid if not it gives you
the cause code.<br><br>2)
You can use a single mod_event_socket or XMLRPC connection to send all
calls but use the bgapi mechanism which will do the same as above<br>
&nbsp;&nbsp;&nbsp; only asynchronously, The command will return immediately and the
result will be fired as an event that you can pick up on the same or
different event_socket connection or<br>&nbsp; &nbsp; other event consumer such as a custom C,perl,lua etc module.<br>
<br>3) You can use mod_xml_cdr to generate detailed 1-file-per-leg call
files that will tell you when where and why the calls failed or did not
fail.<br><br><br><div class="gmail_quote">On Fri, Jan 23, 2009 at 4:39 PM, Michael Collins <span dir="ltr">&lt;<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Fri, Jan 23, 2009 at 2:15 PM, Shelby Ramsey &lt;<a href="mailto:sicfslist@gmail.com">sicfslist@gmail.com</a>&gt; wrote:<br>
&gt; Sorry for the double post ... actually hit send too early ...<br>
&gt; OK ... Here goes another I&#39;m doing this with AST &nbsp;... but I want to move it<br>
&gt; to FS. &nbsp;Searched via google site:<a href="http://lists.freeswitch.org" target="_blank">lists.freeswitch.org</a> auto dialer and others<br>
&gt; ... nothing useful.<br>
&gt; Today I have a platform for auto dialing with AST (centrally managed ...<br>
&gt; about 10 machines) and we do this:<br>
&gt; &nbsp; -- Remote machines query central DB for numbers to call based on certain<br>
&gt; configs<br>
&gt; &nbsp; -- Use AMI to generate the call<br>
&gt; &nbsp; -- If call gets answered, extension info queried via rta (central db<br>
&gt; again)<br>
&gt; The nice thing about all of this is it&#39;s relatively easy to manage (through<br>
&gt; one central web interface we built) and it works ... the bad part is<br>
&gt; reporting ...<br>
&gt; So ... conceptually I&#39;m trying to accomplish the same thing ...<br>
&gt; Today we use FS a lot for termination of VoIP traffic ... all done via<br>
&gt; XML_CURL ... which is awesome &nbsp;(not to xml cdr ... and the &quot;proxying&quot; of<br>
&gt; media) ...<br>
&gt; Would like to do something like:<br>
&gt; &nbsp; -- originate request (looks simple enough)<br>
&gt; &nbsp; -- on answer XML_CURL posts info<br>
<br>
</div>Several choices, depending upon how much you want it handled inside<br>
the dialplan vs. handled in the scripting language. For the sake of<br>
testing you could do something like this:<br>
&lt;extension name=&quot;ivr-start&quot;&gt;<br>
 &nbsp;&lt;condition field=&quot;destination_number&quot; expression=&quot;ivr_whatever&quot;&gt;<br>
 &nbsp; &nbsp;&lt;action application=&quot;set&quot; data=&quot;execute_on_answer=transfer<br>
IVR_ANSWER XML default&quot;/&gt;<br>
 &nbsp; &nbsp;&lt;!-- rest of dialplan --&gt;<br>
 &nbsp;&lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
Then have:<br>
&lt;extension name=&quot;ivr-answer&quot;&gt;<br>
 &nbsp;&lt;condition field=&quot;destination_number&quot; expression=&quot;IVR_ANSWER&quot;&gt;<br>
 &nbsp; &nbsp;&lt;action application=&quot;lua&quot; data=&quot;post-info.lua ${some_important_value}&quot;/&gt;<br>
 &nbsp;&lt;/condition&gt;<br>
&lt;/extension&gt;<br>
<br>
This would have any answered call go to the &quot;ivr-answer&quot; extension<br>
while unanswered calls could stay in the ivr-start extension to get<br>
properly handled. (Busy, no answer, invalid/SIT, etc.)<br>
<br>
You could then have the &quot;ivr-answer&quot; extension do whatever is<br>
appropriate, like listen for digits, play announcement, beg for money,<br>
etc. :)<br>
<br>
-MC<br>
<div class="Ih2E3d"><br>
&gt; But for the life of me I can&#39;t figure out how to translate this into the xml<br>
&gt; response ...<br>
&gt; [campaign]<br>
&gt; exten =&gt; 100,1,ANSWER()<br>
&gt; exten =&gt; 100,n,WAIT(2)<br>
&gt; exten =&gt; 100,n,BACKGROUND(${SOUND_DIR}/somefile)<br>
&gt; exten =&gt; 100,n,WAITEXTEN(10)<br>
&gt; exten =&gt; 100,n,HANGUP()<br>
&gt; exten =&gt; 1,1,PLAYBACK(goodbye)<br>
&gt; .... and so on ...<br>
&gt; I&#39;ve looked at the ivr.conf stuff but it&#39;s all static and all of this has to<br>
&gt; be manageable via a web interface .... meaning dumping into a DB and<br>
&gt; returning an XML response seems reasonable ... but trying to stick or modify<br>
&gt; static text files from the web interface is too much text parsing and bad<br>
&gt; things will happen ...<br>
&gt; Any thoughts or pointing me in the right direction would be appreciated.<br>
&gt; Shelby<br>
&gt;<br>
&gt;<br>
&gt;<br>
</div>&gt; _______________________________________________<br>
&gt; Freeswitch-users mailing list<br>
&gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
<br>
_______________________________________________<br>
Freeswitch-users mailing list<br>
<a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
<br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400<br>