tags:

views:

51

answers:

1

Is there any possibility to connect webservice using Lua Language in Scite editor? Otherwise Please help me how to connect webservice with Lua Language.

+1  A: 

There are Lua modules that support connectivity at various protocol levels. At the lowest level, and probably required by most other solutions, is LuaSocket.

At a much higher level you will find modules like LuaCURL.

Also, the Kepler Project supports the implementation of web applications and services in Lua.

Finally, a lot of general "How do I use Lua to do this" kind of information is available at the Lua User's Wiki.

RBerteig