Damjan,<br><br>What I want to do is the following:<br><br>incoming call<br>- play a prompt<br>- bridge incoming to endpoint 1<br>- endpoint 1 hangs up<br>- park the incoming call<br><br>originate call to endpoint 2<br>- play a prompt to endpoint 2
<br>- bridge endpoint 2 to endpoint 3<br>- endpoint 3 hangs up<br>- bridge incoming call to endpoint 2<br><br>The details on how to accomplish this with mod_java are eluding me.&nbsp; Every approach I have attempted I have encountered roadblocks of either hitting execute blocking what I need to do or not having the right info (what needs to be passed to originate or how to play a prompt to endpoint2 or bridge to endpoint 3).&nbsp; I am getting stuck on the details and cannot find the docs to clarify.
<br><br>Jonathan<br><br><br><div class="gmail_quote">On Dec 10, 2007 10:05 PM, Damjan Jovanovic &lt;<a href="mailto:damjan@ecntelecoms.com">damjan@ecntelecoms.com</a>&gt; 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">X-ECN Telecoms-MailScanner-Information: Contact ECN Telecoms<br>X-ECN Telecoms-MailScanner: Found to be clean<br>X-ECN Telecoms-MailScanner-SpamCheck: not spam, SpamAssassin (not cached,<br></div> &nbsp; &nbsp; &nbsp; &nbsp;score=-
101.233, required 6, autolearn=not spam, ALL_TRUSTED -1.80,<br> &nbsp; &nbsp; &nbsp; &nbsp;AWL 3.17, BAYES_00 -2.60, USER_IN_WHITELIST -100.00)<br><div class="Ih2E3d">X-ECN Telecoms-MailScanner-From: <a href="mailto:damjan@ecntelecoms.com">damjan@ecntelecoms.com
</a><br>X-Spam-Status: No<br><br></div><div><div></div><div class="Wj3C7c">On Mon, 2007-12-10 at 08:53 -0800, jonathan augenstine wrote:<br>&gt;<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; On Mon, 2007-12-10 at 00:38 -0800, jonathan augenstine wrote:
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; I am trying to put together a prototype app for Freeswitch<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; using the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; mod_java interface, I am hitting a deadend and I need some<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; guidance.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; What I want to do is to answer an incoming call (endpoint<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; 1), play a<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; prompt to that call, and bridge that call to another<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; endpoint<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; (endpoint 2). &nbsp;After the second endpoint (endpoint 2)
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; disconnects, I<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; want to park that call, originate a call to another endpoint<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; (endpoint<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; 3), play a prompt to endpoint 3, and then bridge endpoint 3<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; to a new<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; endpoint (endpoint 4). &nbsp;After endpoint 4 hangs up, I want to<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; bridge<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; endpoint 1 and endpoint 3. &nbsp;Then main issue I keep running<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; into is
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; that in the dialplan and in mod_java, calls appear to block,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; so that<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; it has blocked me from a solution.<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; How do calls &quot;block&quot;? Use a remote debugger and see where it
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; happens.<br>&gt;<br>&gt; If I run the following code:<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; session = new JavaSession(sessionUuid);<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; freeswitch.console_log(&quot;notice&quot;, &quot;STARTED!!!\n&quot;);
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; session.streamFile<br>&gt; (&quot;/usr/local/freeswitch/sounds/intro.wav&quot;, 0);<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; session.execute(&quot;bridge&quot;,<br>&gt; &quot;sofia/gateway/[gatewayname]/3237773456&quot;);
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; freeswitch.console_log(&quot;notice&quot;, &quot;COMPLETED!!!\n&quot;);<br>&gt;<br>&gt; I do not see the &quot;COMPLETED!!!&quot; console message until one of the<br>&gt; callers from the &quot;bridge&quot; hangs up. &nbsp;The
<br>&gt; session.execute(&quot;bridge&quot;,.....) call blocks.<br><br></div></div>session.execute() is supposed to block until the application finishes<br>running. I&#39;m not sure why that&#39;s a problem, you only want to park the
<br>call after bridge is finished.<br><div><div></div><div class="Wj3C7c"><br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; My first question is, can you do this with the mod_java<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; interface? &nbsp;If<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; so, how? &nbsp;Secondly, if it is not possible then do you need
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; to use the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; event_socket interface to accomplish this app? &nbsp;Thank you.<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; When there is no other function that does the job, try the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; execute()
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; method in mod_java. Event sockets can probably do the same,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; but I&#39;ve<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; found them harder to work with (don&#39;t know if there are any<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; APIs that<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; make it easier), and since they cost 2 sockets and probably 1
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; thread per<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; call and if on the same machine double the number of context<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; switches,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; they are more resource intensive too.<br>&gt;<br>&gt; As illustrated above I am using the execute.
<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Best Regards,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Jonathan<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; _______________________________________________<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Freeswitch-users mailing list
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users
</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Damjan<br>&gt;<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; _______________________________________________
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Freeswitch-users mailing list<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users
</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>&gt;<br></div></div>&gt; _______________________________________________<br><div><div></div><div class="Wj3C7c">&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><br>Damjan<br><br><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></div></div></blockquote></div><br>