local event = freeswitch.Event("message_waiting"); -- <-- This is the event NAME
event:addHeader("MWI-Messages-Waiting", "no");
event:addHeader("MWI-Message-Account", "sip:[EMAIL PROTECTED]");
event:fire();

/b



On Aug 27, 2008, at 4:48 AM, Juan Backson wrote:

Hi Anthony,

Thanks for your help. I can now send out custom message, but I am still not able to specify the content I want, such as Event_Type etc.

I tried the following, but still it does not work:

            e = freeswitch.Event("message");
            e:addBody("Event-Name=TestEvent")
            e:fire();

Is it possible to specify the Event-Name and Event-Type in lua?

Thanks,
JB

On Mon, Aug 25, 2008 at 10:39 PM, Anthony Minessale <[EMAIL PROTECTED] > wrote:
if you want to fire the event use

e:fire() ;)

session:sendEvent(e) will queue the event to the session which is not what you seem to want.



On Mon, Aug 25, 2008 at 1:57 AM, Juan Backson <[EMAIL PROTECTED]> wrote:
Hi Brian,

If I try
e = freeswitch.Event("message");
            e:addBody("thisisatestevent","abcd")
            session:sendEvent(e)

2008-08-25 23:09:30 [ERR] mod_lua.cpp:176 lua_parse_and_execute() Error in addBody expected 2..2 args, got 3
stack traceback:
    [C]: in function 'addBody'


If I try

e = freeswitch.Event("message");
            e:addBody("thisisatestevent")
            session:sendEvent(e)

It went through, but I can't pick up any message with the name or type "message"


Thanks for your help.

JB




On Mon, Aug 25, 2008 at 12:23 AM, Brian West <[EMAIL PROTECTED]> wrote:
Try e:addBody
/b

On Aug 24, 2008, at 8:51 AM, Juan Backson wrote:

>  e:add_body("mymsg","abcd")

Brian West
sip:[EMAIL PROTECTED]




_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:[EMAIL PROTECTED]
GTALK/JABBER/PAYPAL:[EMAIL PROTECTED]
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:[EMAIL PROTECTED]
iax:[EMAIL PROTECTED]/888
googletalk:[EMAIL PROTECTED]
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

Brian West
sip:[EMAIL PROTECTED]



_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

Reply via email to