-- ********************************************************************** -- * simple http post -- * requestdata demo -- ********************************************************************** -- require nothing local WebRoot = "webapps/demo3/web/" local CloseSession = "KEEP" function LUNAAPI_GET(requestheader,requestdata) return {filename=WebRoot.."test.pdf",type="application/pdf"} end function LUNAAPI_POST(requestheader,requestdata) return LUNAAPI_GET(requestheader,requestdata) end function LUNAAPI_SESSIONCLOSEQUERY(requestheader,requestdata) return CloseSession end