Re: LuaSoap and argument containting an '&'
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: LuaSoap and argument containting an '&'
- From: Tomas Guisasola Gorham <tomas@...>
- Date: 2012年1月24日 13:45:28 -0200 (BRST)
Hi Laurent
Cool : when is the release forcasted ?
I am trying to make LuaSOAP 3.0 work with all Lua 5.X versions,
which I think isn't difficult, just boring :-(
I am also modifying some details and improving the docs.
I am considering dropping soap.client.https, since it is the same as
LuaSec's ssl.https. This will add an incompatibility. Previous code
like the following:
local client = require"soap.client"
require"soap.client.https"
Would have to be rewritten as:
local client = require"soap.client"
client.https = require"ssl.https"
What do you think about?
Tomás