<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p
        {mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
        {mso-style-priority:99;
        mso-style-link:"Sprechblasentext Zchn";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:8.0pt;
        font-family:"Tahoma","sans-serif";}
span.E-MailFormatvorlage18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
span.SprechblasentextZchn
        {mso-style-name:"Sprechblasentext Zchn";
        mso-style-priority:99;
        mso-style-link:Sprechblasentext;
        font-family:"Tahoma","sans-serif";
        mso-fareast-language:DE-AT;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 2.0cm 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=DE-AT link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Thanks for your answer, it’s working now </span><span style='font-size:11.0pt;font-family:Wingdings;color:#1F497D'>J</span><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><b><span lang=DE style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Von:</span></b><span lang=DE style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] <b>Im Auftrag von </b>Seven Du<br><b>Gesendet:</b> Dienstag, 01. Jänner 2013 02:06<br><b>An:</b> FreeSWITCH Users Help<br><b>Betreff:</b> Re: [Freeswitch-users] mod_event_erlang and invalid process type<o:p></o:p></span></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal>First, try this <o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><div><p class=MsoNormal>init(Node) -&gt;<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {foo, Node} ! register_event_handler,<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {event, Node} ! {event, 'ALL'}.<o:p></o:p></p></div></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>register_event_handler will tell FS to send all events back to the *current* process, so you can get all events by using flush().<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>2) If you want to coming events send to a dedicated PID, spawn a process and then send the following message in that process<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {foo, Node} ! register_event_handler,<o:p></o:p></p></div></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>IN your case, you might want this:<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><div><p class=MsoNormal>loop() -&gt;<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {foo, Node} ! register_event_handler,<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {event, Node} ! {event, 'ALL'},<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; receive<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;stop -&gt;<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ok;<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;_Anything -&gt;<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;io:format(&quot;received ~p~n&quot;, [_Anything]),<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;loop()<o:p></o:p></p></div><div><p class=MsoNormal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end.<o:p></o:p></p></div></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>3) Anyway, try read the freeswitch.erl in the source tree to understand more.<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>--&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal>Seven Du<o:p></o:p></p></div><div><p class=MsoNormal>Sent with <a href="http://www.sparrowmailapp.com/?sig">Sparrow</a><o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div></div><p><span style='color:#A0A0A8'>On Monday, December 31, 2012 at 9:12 PM, Gerald Weber wrote:<o:p></o:p></span></p><blockquote style='border:none;border-left:solid windowtext 1.0pt;padding:0cm 0cm 0cm 8.0pt;margin-left:0cm;margin-top:5.0pt;margin-bottom:5.0pt'><div><div><div><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>Some more infos:</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>Changed the init/1 function to:</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>init(Node) -&gt;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {foo, Node} ! register_event_handler,</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {foo, Node} ! register_log_handler,</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {foo, Node} ! {event, 'ALL'},</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {foo, Node} ! {set_log_level, debug}.</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>Now the „invalid process type“ error message disappeared, but i still dont get any events.</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>Some erlang console command outputs:</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>freeswitch@fstest&gt; erlang listeners</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>Listener to <a href="mailto:test33@freeswitch.besharp.at">test33@freeswitch.besharp.at</a> with 0 outbound sessions</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>freeswitch@fstest&gt; erlang bindings</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>No bindings</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>freeswitch@fstest&gt; erlang handlers</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>Listener <a href="mailto:test33@freeswitch.besharp.at">test33@freeswitch.besharp.at</a>:</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>--------------------------------</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CLONE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_CREATE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_DESTROY</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_STATE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_CALLSTATE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_ANSWER</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_HANGUP</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_HANGUP_COMPLETE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_EXECUTE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_EXECUTE_COMPLETE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_HOLD</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_UNHOLD</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_BRIDGE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_UNBRIDGE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_PROGRESS</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_PROGRESS_MEDIA</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_OUTGOING</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_PARK</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_UNPARK</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_APPLICATION</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_ORIGINATE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_UUID</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>API</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>LOG</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>INBOUND_CHAN</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>OUTBOUND_CHAN</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>STARTUP</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>SHUTDOWN</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>PUBLISH</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>UNPUBLISH</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>TALK</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>NOTALK</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>SESSION_CRASH</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>MODULE_LOAD</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>MODULE_UNLOAD</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>DTMF</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>MESSAGE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>PRESENCE_IN</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>NOTIFY_IN</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>PRESENCE_OUT</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>PRESENCE_PROBE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>MESSAGE_WAITING</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>MESSAGE_QUERY</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>ROSTER</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CODEC</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>BACKGROUND_JOB</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>DETECTED_SPEECH</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>DETECTED_TONE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>PRIVATE_COMMAND</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>HEARTBEAT</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>TRAP</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>ADD_SCHEDULE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>DEL_SCHEDULE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>EXE_SCHEDULE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>RE_SCHEDULE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>RELOADXML</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>NOTIFY</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>SEND_MESSAGE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>RECV_MESSAGE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>REQUEST_PARAMS</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CHANNEL_DATA</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>GENERAL</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>COMMAND</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>SESSION_HEARTBEAT</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CLIENT_DISCONNECTED</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>SERVER_DISCONNECTED</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>SEND_INFO</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>RECV_INFO</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>RECV_RTCP_MESSAGE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CALL_SECURE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>NAT</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>RECORD_START</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>RECORD_STOP</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>PLAYBACK_START</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>PLAYBACK_STOP</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CALL_UPDATE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>FAILURE</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>SOCKET_DATA</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>MEDIA_BUG_START</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>MEDIA_BUG_STOP</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CONFERENCE_DATA_QUERY</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CONFERENCE_DATA</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CALL_SETUP_REQ</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CALL_SETUP_RESULT</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>CUSTOM:</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>Thanks</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>gw</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'><span style='color:#1F497D'>&nbsp;</span><o:p></o:p></p><div><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p style='margin:0cm;margin-bottom:.0001pt'><b><span lang=DE style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Von:</span></b><span lang=DE style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> <a href="mailto:freeswitch-users-bounces@lists.freeswitch.org">freeswitch-users-bounces@lists.freeswitch.org</a> [<a href="mailto:freeswitch-users-bounces@lists.freeswitch.org">mailto:freeswitch-users-bounces@lists.freeswitch.org</a>] <b>Im Auftrag von </b>Gerald Weber<br><b>Gesendet:</b> Montag, 31. Dezember 2012 13:30<br><b>An:</b> <a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.freeswitch.org</a><br><b>Betreff:</b> [Freeswitch-users] mod_event_erlang and invalid process type</span><o:p></o:p></p></div></div><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Hi all,<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>trying to learn erlang i tried to connect to freeswitch using mod_event_erlang and receive some events:<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>erlang shell:<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>[root@fstest ~]# erl -name <a href="mailto:test33@freeswitch.besharp.at">test33@freeswitch.besharp.at</a> -setcookie ClueCon<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Erlang R15B03 (erts-5.9.3.1) [source] [64-bit] [smp:2:2] [async-threads:0] [hipe] [kernel-poll:false]<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Eshell V5.9.3.1&nbsp; (abort with ^G)<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>(<a href="mailto:test33@freeswitch.besharp.at)1">test33@freeswitch.besharp.at)1</a>&gt; Pid = fsevents:start().<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&lt;0.46.0&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>(<a href="mailto:test33@freeswitch.besharp.at)2">test33@freeswitch.besharp.at)2</a>&gt; fsevents:init('<a href="mailto:freeswitch@freeswitch.besharp.at">freeswitch@freeswitch.besharp.at</a>').<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>{event,'ALL'}<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>(<a href="mailto:test33@freeswitch.besharp.at)3">test33@freeswitch.besharp.at)3</a>&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Console output:<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:18:36.900506 [DEBUG] handle_msg.c:301 ALL events enabled<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:18:36.900506 [DEBUG] handle_msg.c:314 enable event ALL<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:18:51.480577 [ERR] ei_helpers.c:274 Invalid process type 0! ((null),, &lt;0.0.0&gt;)<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:18:51.480577 [ERR] ei_helpers.c:274 Invalid process type 0! ((null),, &lt;0.0.0&gt;)<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:18:51.500492 [ERR] ei_helpers.c:274 Invalid process type 0! ((null),, &lt;0.0.0&gt;)<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Can anyone tell me what i’m doing wrong ? Console log keeps saying invalid process type (until i kill the erlang process)<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>and i dont receive any events.<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Erlang Version: 5.9.3.1<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Freeswitch: latest HEAD from 2012-12-31 <o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>The fsevents module:<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>-module(fsevents).<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>-export([start/0, init/1, loop/0]).<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>start() -&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Pid = spawn(?MODULE, loop, []),<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; register(?MODULE,Pid),<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Pid.<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>init(Node) -&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {foo, Node} ! {event, 'ALL'}.<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>loop() -&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; receive<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stop -&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ok;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; _Anything -&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; io:format(&quot;received ~p~n&quot;, [_Anything]),<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; loop()<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; end.<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>The communication seems to work basically:<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>(<a href="mailto:test33@freeswitch.besharp.at)4">test33@freeswitch.besharp.at)4</a>&gt; {foo, <a href="mailto:freeswitch@freeswitch.besharp.at">freeswitch@freeswitch.besharp.at</a>} ! {api, status, &quot;&quot;}.<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>{api,status,[]}<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>(<a href="mailto:test33@freeswitch.besharp.at)5">test33@freeswitch.besharp.at)5</a>&gt; receive Y -&gt; Y after 1000 -&gt; timeout end.<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>{ok,&quot;UP 0 years, 0 days, 1 hour, 20 minutes, 52 seconds, 534 milliseconds, 225 microseconds\nFreeSWITCH (Version 1.3.13b git 8859eb0 2012-12-30 19:08:55Z) is ready\n0 session(s) since startup\n0 session(s) - 0 out of max 30 per sec \n1000 session(s) max\nmin idle cpu 0.00/99.00\nCurrent Stack Size/Max 240K/8192K\n&quot;}<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>(<a href="mailto:test33@freeswitch.besharp.at)3">test33@freeswitch.besharp.at)3</a>&gt;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Console output:<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>freeswitch@fstest&gt; load mod_erlang_event<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [INFO] mod_enum.c:872 ENUM Reloaded<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [INFO] switch_time.c:1165 Timezone reloaded 530 definitions<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [DEBUG] mod_erlang_event.c:1816 sections 16<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [CONSOLE] switch_loadable_module.c:1348 Successfully Loaded [mod_erlang_event]<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [NOTICE] switch_loadable_module.c:254 Adding Application 'erlang'<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [NOTICE] switch_loadable_module.c:254 Adding Application 'erlang_sendmsg'<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [NOTICE] switch_loadable_module.c:298 Adding API Function 'erlang'<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>+OK Reloading XML<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>+OK<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [DEBUG] mod_erlang_event.c:1915 Socket 48 up listening on 0.0.0.0:8031<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:21.420611 [DEBUG] mod_erlang_event.c:1946 Connected to epmd and published erlang cnode at <a href="mailto:freeswitch@freeswitch.besharp.at">freeswitch@freeswitch.besharp.at</a><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>freeswitch@fstest&gt; 2012-12-31 13:17:43.380527 [DEBUG] mod_erlang_event.c:1986 Launching listener, connection from node <a href="mailto:test33@freeswitch.besharp.at">test33@freeswitch.besharp.at</a>, ip 192.168.20.73<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>2012-12-31 13:17:43.380527 [DEBUG] mod_erlang_event.c:1009 Connection Open from 192.168.20.73<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Thanks / regards and Happy New Year <span style='font-family:Wingdings'>J</span><o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>Gw<o:p></o:p></p><p style='margin:0cm;margin-bottom:.0001pt'>&nbsp;<o:p></o:p></p></div></div><div><div><p class=MsoNormal>_________________________________________________________________________<o:p></o:p></p></div><div><p class=MsoNormal>Professional FreeSWITCH Consulting Services:<o:p></o:p></p></div><div><p class=MsoNormal><a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><o:p></o:p></p></div><div><p class=MsoNormal><a href="http://www.freeswitchsolutions.com">http://www.freeswitchsolutions.com</a><o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>FreeSWITCH-powered IP PBX: The CudaTel Communication Server<o:p></o:p></p></div><div><p class=MsoNormal><a href="http://www.cudatel.com">http://www.cudatel.com</a><o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>Official FreeSWITCH Sites<o:p></o:p></p></div><div><p class=MsoNormal><a href="http://www.freeswitch.org">http://www.freeswitch.org</a><o:p></o:p></p></div><div><p class=MsoNormal><a href="http://wiki.freeswitch.org">http://wiki.freeswitch.org</a><o:p></o:p></p></div><div><p class=MsoNormal><a href="http://www.cluecon.com">http://www.cluecon.com</a><o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>FreeSWITCH-users mailing list<o:p></o:p></p></div><div><p class=MsoNormal><a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><o:p></o:p></p></div><div><p class=MsoNormal><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><o:p></o:p></p></div><div><p class=MsoNormal>UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><o:p></o:p></p></div><div><p class=MsoNormal><a href="http://www.freeswitch.org">http://www.freeswitch.org</a><o:p></o:p></p></div></div></div></blockquote><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div></div></body></html>