--------------------------------------------------------
print "inicio de comunicacion"
local http = require"socket.http"
local ltn12 = require"ltn12"
local reqbody = "?DATA="
local respbody = {} -- for the response body
http.TIMEOUT = 5
local result, respcode, respheaders, respstatus = http.request {
method = "POST",url = "http://????.COM/JSON.asmx",source = ltn12.source.string(reqbody),
headers = {
["content-type"] = "text/plain",
["content-length"] = tostring(#reqbody)
},
sink = ltn12.sink.table(respbody)
}
-- get body as string by concatenating table filled by sink
respbody = table.concat(respbody)
print "final"
--------------------------------------------------------
--
Has recibido este mensaje porque estás suscrito al grupo "FreeSWITCH-es" de Grupos de Google.
Para anular la suscripción a este grupo y dejar de recibir sus mensajes, envía un correo electrónico a freeswitch-e...@googlegroups.com.
Para publicar una entrada en este grupo, envía un correo electrónico a freesw...@googlegroups.com.
Visita este grupo en http://groups.google.com/group/freeswitch-es.
Para obtener más opciones, visita https://groups.google.com/d/optout.