lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


	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