[Freeswitch-users] Lua Script Return Value mod_xmlrpc

2009-08-06 Thread Nick Lemberger
Is it possible to have a LUA script return something to the client when 
accessed via the XML RPC gateway  luarun?

ie: access the url: http://FSip:8080/api/luarun?myscript.lua and have the 
script return a value?

-Nick


___
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


Re: [Freeswitch-users] Lua Script Return Value mod_xmlrpc

2009-08-06 Thread Pete Mueller
Yes, you can use the stream global object. example: local api = freeswitch.API(); local reply = api:execute("originate", someRoute); if (reply) then stream:write("RESULT: " .. reply .. "\n"); else stream:write("ERROR") end


---- Original Message ----
Subject: [Freeswitch-users] Lua Script Return Value  mod_xmlrpc
From: "Nick Lemberger" nick.lember...@lkfd.net
Date: Thu, August 06, 2009 4:19 pm
To: freeswitch-users@lists.freeswitch.org

Is it possible to have a LUA script return something to the client when accessed via the XML RPC gateway  luarun?

ie: access the url: http://FSip:8080/api/luarun?myscript.lua and have the script return a value?

-Nick


___
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