Hi to all,<br><br>I am a newbie in Freeswitch (FS).<br><br>I have already installed a FS machine,  following the wiki installation procedure, and I have also added the opal module following this procedure: <a href="http://wiki.freeswitch.org/wiki/Mod_opal">http://wiki.freeswitch.org/wiki/Mod_opal</a><br>
<br>When I running FS <br><br>######################################<br>freeswitch@atest&gt; module_exists mod_opal<br>API CALL [module_exists(mod_opal)] output:<br>true<br>freeswitch@atest&gt; <br>######################################<br>
<br>I think I&#39;have installed it correctly.<br>My goal is to provide a conference tool for incoming h323-calls that come from a cisco call manager: we are behind a Cisco VoIP cloud.<br>Every time a PSTN phone calls the number 1234-123456 the call manager knows that the extension 3456 has to be redirected<br>
to 192.168.193.38, that is the IP address of the FS machine, where file dialplan/default/myconference.xml contains the following lines<br><br>######################################<br>&lt;include&gt;<br>    &lt;extension name=&quot;no_conferences&quot;&gt;<br>
      &lt;condition field=&quot;destination_number&quot; expression=&quot;^3456$&quot;&gt;<br>        &lt;action application=&quot;answer&quot;/&gt;<br>        &lt;action application=&quot;info&quot;/&gt;<br>        &lt;action application=&quot;conference&quot; data=&quot;$1-${domain_name}@wideband&quot;/&gt;<br>
      &lt;/condition&gt;<br>    &lt;/extension&gt;<br>&lt;/include&gt;<br>######################################<br><br>On the other hand, whenever a user of FS calls an local extension (like 1XXX ), what I want is that FS forward this call to the cisco call manager through opal/h323<br>
therefore I have a file in <br><br>######################################<br>&lt;include&gt;<br>&lt;extension name=&quot;1xxx&quot;&gt;<br>    &lt;condition field=&quot;destination_number&quot; expression=&quot;^(1\d{3})$&quot;&gt;<br>
        &lt;action application=&quot;set&quot; data=&quot;dialed_extension=$1&quot;/&gt;<br>        &lt;action application=&quot;export&quot; data=&quot;dialed_extension=$1&quot;/&gt;<br>        &lt;action application=&quot;set&quot; data=&quot;transfer_ringback=$${hold_music}&quot;/&gt;<br>
        &lt;action application=&quot;set&quot; data=&quot;call_timeout=30&quot;/&gt;<br>        &lt;action application=&quot;set&quot; data=&quot;hangup_after_bridge=true&quot;/&gt;<br>        &lt;action application=&quot;set&quot; data=&quot;continue_on_fail=true&quot;/&gt;<br>
        &lt;action application=&quot;set&quot; data=&quot;ringback=$${us-ring}&quot;/&gt;<br>        &lt;action application=&quot;set&quot; data=&quot;instant_ringback=true&quot;/&gt;<br>        &lt;action application=&quot;bridge&quot; data=&quot;opal/h323:$1@IP.CALL.MANA.GER&quot;/&gt;<br>
        &lt;action application=&quot;answer&quot;/&gt;<br>        &lt;action application=&quot;sleep&quot; data=&quot;1000&quot;/&gt;<br>        &lt;action application=&quot;voicemail&quot; data=&quot;default ${ip_server_cisco_call_manager} ${dialed_extension}&quot;/&gt;<br>
     &lt;/condition&gt;<br>  &lt;/extension&gt;<br>&lt;/include&gt;<br>######################################<br><br>but it fails: when a FS user calls 1500, FS returns this message<br><br>######################################<br>
2009-03-12 15:55:08 [NOTICE] switch_channel.c:567 switch_channel_set_name() New Channel sofia/internal/<a href="mailto:1000@192.168.193.38">1000@192.168.193.38</a> [c7b69402-0f15-11de-b4dc-c11b39fce37c]<br>2009-03-12 15:55:08 [INFO] mod_dialplan_xml.c:233 dialplan_hunt() Processing 1000-&gt;1500 in context default<br>
2009-03-12 15:55:08 [NOTICE] switch_channel.c:567 switch_channel_set_name() New Channel opal/h323:1500@IP.CALL.MANA.GER:1720 [c7c010e0-0f15-11de-b4dc-c11b39fce37c]<br>2009-03-12 15:55:08 [INFO] h323pdu.cxx:999 H225() Read error (0): <br>
2009-03-12 15:55:08 [NOTICE] mod_opal.cpp:591 OnReleased() Hangup opal/h323:1500@IP.CALL.MANA.GER:1720 [CS_CONSUME_MEDIA] [UNKNOWN]<br>2009-03-12 15:55:08 [INFO] tlibthrd.cxx:363 PWLib() Destroyed thread 0xb171a708 H225 Caller:0xa9587b90(id = 0)<br>
2009-03-12 15:55:08 [NOTICE] switch_core_session.c:970 switch_core_session_thread() Session 22 (opal/h323:1500@IP.CALL.MANA.GER:1720) Ended<br>2009-03-12 15:55:08 [NOTICE] switch_core_session.c:972 switch_core_session_thread() Close Channel opal/h323:1500@IP.CALL.MANA.GER:1720 [CS_HANGUP]<br>
2009-03-12 15:55:08 [INFO] mod_dptools.c:1998 audio_bridge_function() Originate Failed.  Cause: UNKNOWN<br>2009-03-12 15:55:08 [NOTICE] mod_dptools.c:596 hangup_function() Hangup sofia/internal/<a href="mailto:1000@192.168.193.38">1000@192.168.193.38</a> [CS_EXECUTE] [NORMAL_CLEARING]<br>
2009-03-12 15:55:08 [NOTICE] switch_core_session.c:970 switch_core_session_thread() Session 21 (sofia/internal/<a href="mailto:1000@192.168.193.38">1000@192.168.193.38</a>) Ended<br>2009-03-12 15:55:08 [NOTICE] switch_core_session.c:972 switch_core_session_thread() Close Channel sofia/internal/<a href="mailto:1000@192.168.193.38">1000@192.168.193.38</a> [CS_HANGUP]<br>
######################################<br><br><br>I don&#39;t understand why....<br>Any suggestions...<br>Thanks<br><br clear="all"><br> Alessandro R.<br>