Hi all,<br>Greets.<br><br>I am in the process of controlling the freeswitch with perl.<br>I have read about mod_perl and I wrote some scripts to test which works fine.<br>Yesterday I tried to access the digit_set function.<br>
So I create an object for the freeswitch::DTMF.<br>But it reported the following error.<br><br>2009-08-06 15:53:46 [ERR] mod_perl.c:69 Perl_safe_eval() [require &#39;/usr/local/freeswitch/conf/test.pl&#39;;]<br>No matching function for overloaded &#39;new_DTMF&#39; at /usr/local/freeswitch/perl/<a href="http://freeswitch.pm">freeswitch.pm</a> line 197.<br>
Compilation failed in require at (eval 2) line 1.<br><br>Here is my code.<br><br>#!/usr/bin/perl<br>use strict;<br>use freeswitch;<br>our $session;<br>$session-&gt;execute(&quot;bridge&quot;,&quot;user/1010&quot;);<br>my $sess=&amp;freeswitch::DTMF::new;<br>
return 1;<br><br>The bridge is working fine. But while creating the object it said error.<br><br>Can any one explain why this happens and how can I correct it?<br><br>