02.01.2017, 14:07
You can try adding LuaSOAP as user libraries with some minor modifications.
1. Create user library called lxplom and paste code this code:
https://github.com/LuaDist/luaexpat/blob...xp/lom.lua
2. Create user library called soap and paste code this code, replacing require"lxp.lom" with require"user.lxplom"
https://github.com/tomasguisasola/luasoa...c/soap.lua
3. Create user library called soapclient and paste code this code, replacing require("soap") with require("user.soap")
https://github.com/tomasguisasola/luasoa...client.lua
Then in your script you can load client library like this:
1. Create user library called lxplom and paste code this code:
https://github.com/LuaDist/luaexpat/blob...xp/lom.lua
2. Create user library called soap and paste code this code, replacing require"lxp.lom" with require"user.lxplom"
https://github.com/tomasguisasola/luasoa...c/soap.lua
3. Create user library called soapclient and paste code this code, replacing require("soap") with require("user.soap")
https://github.com/tomasguisasola/luasoa...client.lua
Then in your script you can load client library like this:
Code:
client = require('user.soapclient')