This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

websocket library help
#1
Hi,

Referring to post Websocket post we are able to connect to websocket.  Now when I try to connect to a secure websocket using copas and the url includes a query string then the query string is dropped. for example.  How can we solve this?

Code:
if not skt then  --add receive thread  copas.addthread(function()      local reconnect = function()        local url= "wss://192.168.0.54:8002/api/v2/channels/remote.control?name=MTUyNjQ1MTQ="        skt,err = ws.client('copas',0)        local noerr,a = skt:connect(url)        if(noerr==true) then                  init()        else          alert('[tcp-client] error connecting %s',a)          return        end            end      if not skt or skt==nil or skt.state=='CLOSED' then        reconnect()              end      if(skt) then        while true do          local resp,err = copas.receive(skt)          -- if theres no connection start a new connection          if(skt.state=='CLOSED')then            if not resp then              alert("[tcp-client] Receive error: %s", err)              copas.removeserver(skt)              skt = nil              break            end          else            local fd,prtd = pcall(parse,resp)            if(fd==false)then              alert("Error with parsemsg %s ",prtd)            end          end        end            end    end)   end
Reply


Messages In This Thread
websocket library help - by rocfusion - 04.01.2019, 00:37
RE: websocket library help - by admin - 04.01.2019, 10:08

Forum Jump: