├── .gitignore ├── .vscode ├── actions.json ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── documentation ├── ILEvator.drawio ├── iledocs │ ├── basics.html │ ├── constants.html │ ├── css │ │ └── iledocs.css │ ├── encoding.html │ ├── form.html │ ├── iledocs-ilevator.json │ ├── index.html │ ├── multipart.html │ ├── request.html │ └── websocket.html └── userguide │ ├── 1 installation.md │ ├── 10 https.md │ ├── 11 http tunneling.md │ ├── 12 websocket.md │ ├── 13 debug mode.md │ ├── 14 examples.md │ ├── 15 faq.md │ ├── 2 getting started.md │ ├── 3 low-level vs porcelain.md │ ├── 4 consecutive requests.md │ ├── 5 forms.md │ ├── 6 multipart.md │ ├── 7 headers.md │ ├── 8 encoding.md │ ├── 9 request handler.md │ ├── _index.md │ ├── config.json │ └── images │ ├── ILEvator - User Guide.jpg │ ├── ilevator-request build flow.drawio │ ├── ilevator-request build flow.jpg │ ├── ilevator-request build flow.png │ ├── ilevator-request-build-flow.jpg │ └── user-guide-landing-page.jpg ├── examples ├── IVEX01-Simple GET request.rpgle ├── IVEX02-HTTPS GET request.rpgle ├── IVEX03-Simple GET request with encoded query parameters.rpgle ├── IVEX04-Simple GET request with HTTP status handling.rpgle ├── IVEX05-Simple GET request with additional headers.rpgle ├── IVEX06-Simple POST request with text as message body.rpgle ├── IVEX07-Simple POST request with non default content type header.rpgle ├── IVEX08-Write response data to stream file.rpgle ├── IVEX09-Enable debug output.rpgle ├── IVEX10-Enable comm trace output to stream file.rpgle ├── IVEX11-GET request with basic auth.rpgle ├── IVEX12-GET request with bearer token.rpgle ├── IVEX13-Set automatic retries.rpgle ├── IVEX14-Simple POST request with form data.rpgle ├── IVEX15-POST request with different charset.rpgle ├── IVEX15A-POST request with file payload.rpgle ├── IVEX16-Multipart form data.rpgle ├── IVEX17-HTTP tunneling.rpgle ├── IVEX18-HTTP tunneling https.rpgle ├── IVEX18A-HTTP tunneling https POST.rpgle ├── IVEX19-HTTP Tunneling send SMS.sqlrpgle ├── IVEX20-Flowrates.rpgle ├── IVEX21-HTTPS Request with specific TLS version.rpgle ├── IVEX22-HTTPS GET request to VAX360.rpgle ├── IVEX23-HTTPS SNI Server Name Indication.rpgle ├── IVEX24-HTTP GET big json.rpgle ├── IVEX25-HTTP GET blocking sockets.rpgle ├── IVEX26-HTTP GET loop.sqlrpgle ├── IVEX27-Consecutive HTTP requests.rpgle ├── IVEX30-OpenAI.rpgle ├── IVEX30a-OpenAI consecutive.rpgle ├── README.md ├── compile.sh ├── compile_73.sh ├── makefile └── modules │ ├── mimeex1.c │ ├── msgex1.c │ ├── requestex1.c │ ├── streamex1.c │ ├── strutilex1.c │ └── urlex1.c ├── ext ├── headers │ ├── apierr.h │ ├── base64.h │ ├── base64.rpginc │ ├── ceeapi.rpginc │ ├── libc.rpginc │ ├── message.h │ ├── message.rpginc │ ├── ostypes.h │ ├── psds.rpginc │ ├── simpleList.h │ ├── simpleList.rpginc │ ├── stream.rpginc │ ├── streamer.h │ ├── strutil.h │ ├── strutil.rpginc │ ├── teraspace.h │ ├── teraspace.rpginc │ ├── varchar.h │ ├── varchar.rpginc │ ├── xlate.h │ └── xlate.rpginc ├── makefile └── src │ ├── base64.c │ ├── message.c │ ├── simpleList.c │ ├── stream.c │ ├── strutil.c │ ├── teraspace.c │ ├── varchar.c │ └── xlate.c ├── headers ├── anychar.h ├── anychar.rpginc ├── api.rpginc ├── basetypes.rpginc ├── basicauth.rpginc ├── bearer.rpginc ├── chunked.h ├── chunked.rpginc ├── clib.rpginc ├── crypto.rpginc ├── debug.h ├── debug.rpginc ├── encode.rpginc ├── form.rpginc ├── httpclient.h ├── httpclient.rpginc ├── ilevator.bnd ├── ilevator.h ├── ilevator.rpgle ├── mime.h ├── mime.rpginc ├── multipart.rpginc ├── parms.h ├── request.h ├── request.rpginc ├── sockets.h ├── sockets.rpginc ├── tunnel.rpginc ├── url.h ├── url.rpginc └── websocket.rpginc ├── ilevator.RDB ├── ilevator.kdb ├── integrationtests ├── Makefile ├── README.md ├── TEMPLATES.RPGINC ├── assert.rpginc ├── helidon │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── ilevator │ │ │ ├── EntryResource.java │ │ │ ├── FormResource.java │ │ │ ├── HeaderResource.java │ │ │ ├── HelloResource.java │ │ │ ├── IlevatorApplication.java │ │ │ ├── MultiPartResource.java │ │ │ ├── PostResource.java │ │ │ ├── QueryParameterResource.java │ │ │ └── ws │ │ │ ├── ChatEndpoint.java │ │ │ ├── EchoEndpoint.java │ │ │ ├── LanguagesResource.java │ │ │ ├── MessageEndpoint.java │ │ │ ├── MessageQueueProvider.java │ │ │ ├── MessageResource.java │ │ │ ├── MultiFrameEndpoint.java │ │ │ ├── ObservableQueue.java │ │ │ └── UploadEndpoint.java │ │ └── resources │ │ ├── META-INF │ │ ├── beans.xml │ │ └── microprofile-config.properties │ │ └── logging.properties ├── ileastic │ ├── Makefile │ ├── ivileadel.rpgmod │ ├── ivileaget.rpgmod │ ├── ivileahead.rpgmod │ ├── ivileaopt.rpgmod │ ├── ivileapat.rpgmod │ ├── ivileaput.rpgmod │ └── ivileastic.rpgmod ├── itconnect.rpgmod ├── itdelete.rpgmod ├── itexec.rpgmod ├── itget.rpgmod ├── ithead.rpgmod ├── itmulti.rpgmod ├── itoptions.rpgmod ├── itpatch.rpgmod ├── itpost.rpgmod ├── itput.rpgmod ├── itreqhdlr.rpgmod ├── ittunnel.rpgmod ├── itwebsock.rpgmod ├── proxy.echo │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── ilevator │ │ └── proxy │ │ └── echo │ │ ├── EchoService.java │ │ └── ProxyEchoApplication.java └── resources │ ├── avatar.jpg │ └── yellow-sky.jpg ├── issues ├── IVISSUE044-redirect-timeout.rpgle ├── compile.sh └── makefile ├── makefile ├── src ├── anychar.c ├── api.rpgmod ├── basicauth.rpgmod ├── bearer.rpgmod ├── chunked.c ├── crypto.rpgmod ├── debug.rpgmod ├── encode.rpgmod ├── form.rpgmod ├── httpclient.c ├── init.cpp ├── joblog.c ├── mime.rpgmod ├── multipart.rpgmod ├── request.rpgmod ├── sockets.c ├── url.rpgmod ├── websocket.rpgmod └── websockets.c └── unittests ├── Makefile ├── README.md ├── TEMPLATES.RPGINC ├── apiut.rpgmod ├── assert.rpginc ├── base64ut.rpgmod ├── basicautut.rpgmod ├── bearerut.rpgmod ├── cryptout.rpgmod ├── encodeut.rpgmod ├── formut.rpgmod ├── multipart ├── test1-single-text-part.txt ├── test2-single-text-part-with-additional-headers.txt ├── test3-multiple-text-parts.txt ├── test4-umlaut-field-name.txt ├── test5-single-bytes-part.txt ├── test6-input.txt ├── test6-single-file-part.txt ├── test7-input.txt ├── test7-single-file-part-base64.txt ├── test8-single-text-part-base64.txt ├── yellow-sky-base64-76.txt ├── yellow-sky-base64.txt └── yellow-sky.jpg ├── multiparut.rpgmod ├── request ├── request-content-from-file.txt ├── test1-minimum.http ├── test10-formData.http ├── test11-content-from-file.http ├── test12-content-from-stream.http ├── test2-delete.http ├── test3-options.http ├── test4-head.http ├── test5-port.http ├── test6-path.http ├── test7-queryNoPath.http ├── test8-textBody.http └── test9-overrideAccept.http ├── requestut.rpgmod ├── smpllstut.rpgmod ├── strutilut.rpgmod ├── urlparseut.rpgmod └── websockut.rpgmod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/.vscode/actions.json -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/README.md -------------------------------------------------------------------------------- /documentation/ILEvator.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/ILEvator.drawio -------------------------------------------------------------------------------- /documentation/iledocs/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/basics.html -------------------------------------------------------------------------------- /documentation/iledocs/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/constants.html -------------------------------------------------------------------------------- /documentation/iledocs/css/iledocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/css/iledocs.css -------------------------------------------------------------------------------- /documentation/iledocs/encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/encoding.html -------------------------------------------------------------------------------- /documentation/iledocs/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/form.html -------------------------------------------------------------------------------- /documentation/iledocs/iledocs-ilevator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/iledocs-ilevator.json -------------------------------------------------------------------------------- /documentation/iledocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/index.html -------------------------------------------------------------------------------- /documentation/iledocs/multipart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/multipart.html -------------------------------------------------------------------------------- /documentation/iledocs/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/request.html -------------------------------------------------------------------------------- /documentation/iledocs/websocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/iledocs/websocket.html -------------------------------------------------------------------------------- /documentation/userguide/1 installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/1 installation.md -------------------------------------------------------------------------------- /documentation/userguide/10 https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/10 https.md -------------------------------------------------------------------------------- /documentation/userguide/11 http tunneling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/11 http tunneling.md -------------------------------------------------------------------------------- /documentation/userguide/12 websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/12 websocket.md -------------------------------------------------------------------------------- /documentation/userguide/13 debug mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/13 debug mode.md -------------------------------------------------------------------------------- /documentation/userguide/14 examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/14 examples.md -------------------------------------------------------------------------------- /documentation/userguide/15 faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/15 faq.md -------------------------------------------------------------------------------- /documentation/userguide/2 getting started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/2 getting started.md -------------------------------------------------------------------------------- /documentation/userguide/3 low-level vs porcelain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/3 low-level vs porcelain.md -------------------------------------------------------------------------------- /documentation/userguide/4 consecutive requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/4 consecutive requests.md -------------------------------------------------------------------------------- /documentation/userguide/5 forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/5 forms.md -------------------------------------------------------------------------------- /documentation/userguide/6 multipart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/6 multipart.md -------------------------------------------------------------------------------- /documentation/userguide/7 headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/7 headers.md -------------------------------------------------------------------------------- /documentation/userguide/8 encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/8 encoding.md -------------------------------------------------------------------------------- /documentation/userguide/9 request handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/9 request handler.md -------------------------------------------------------------------------------- /documentation/userguide/_index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/userguide/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/config.json -------------------------------------------------------------------------------- /documentation/userguide/images/ILEvator - User Guide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/images/ILEvator - User Guide.jpg -------------------------------------------------------------------------------- /documentation/userguide/images/ilevator-request build flow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/images/ilevator-request build flow.drawio -------------------------------------------------------------------------------- /documentation/userguide/images/ilevator-request build flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/images/ilevator-request build flow.jpg -------------------------------------------------------------------------------- /documentation/userguide/images/ilevator-request build flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/images/ilevator-request build flow.png -------------------------------------------------------------------------------- /documentation/userguide/images/ilevator-request-build-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/images/ilevator-request-build-flow.jpg -------------------------------------------------------------------------------- /documentation/userguide/images/user-guide-landing-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/documentation/userguide/images/user-guide-landing-page.jpg -------------------------------------------------------------------------------- /examples/IVEX01-Simple GET request.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX01-Simple GET request.rpgle -------------------------------------------------------------------------------- /examples/IVEX02-HTTPS GET request.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX02-HTTPS GET request.rpgle -------------------------------------------------------------------------------- /examples/IVEX03-Simple GET request with encoded query parameters.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX03-Simple GET request with encoded query parameters.rpgle -------------------------------------------------------------------------------- /examples/IVEX04-Simple GET request with HTTP status handling.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX04-Simple GET request with HTTP status handling.rpgle -------------------------------------------------------------------------------- /examples/IVEX05-Simple GET request with additional headers.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX05-Simple GET request with additional headers.rpgle -------------------------------------------------------------------------------- /examples/IVEX06-Simple POST request with text as message body.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX06-Simple POST request with text as message body.rpgle -------------------------------------------------------------------------------- /examples/IVEX07-Simple POST request with non default content type header.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX07-Simple POST request with non default content type header.rpgle -------------------------------------------------------------------------------- /examples/IVEX08-Write response data to stream file.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX08-Write response data to stream file.rpgle -------------------------------------------------------------------------------- /examples/IVEX09-Enable debug output.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX09-Enable debug output.rpgle -------------------------------------------------------------------------------- /examples/IVEX10-Enable comm trace output to stream file.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX10-Enable comm trace output to stream file.rpgle -------------------------------------------------------------------------------- /examples/IVEX11-GET request with basic auth.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX11-GET request with basic auth.rpgle -------------------------------------------------------------------------------- /examples/IVEX12-GET request with bearer token.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX12-GET request with bearer token.rpgle -------------------------------------------------------------------------------- /examples/IVEX13-Set automatic retries.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX13-Set automatic retries.rpgle -------------------------------------------------------------------------------- /examples/IVEX14-Simple POST request with form data.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX14-Simple POST request with form data.rpgle -------------------------------------------------------------------------------- /examples/IVEX15-POST request with different charset.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX15-POST request with different charset.rpgle -------------------------------------------------------------------------------- /examples/IVEX15A-POST request with file payload.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX15A-POST request with file payload.rpgle -------------------------------------------------------------------------------- /examples/IVEX16-Multipart form data.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX16-Multipart form data.rpgle -------------------------------------------------------------------------------- /examples/IVEX17-HTTP tunneling.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX17-HTTP tunneling.rpgle -------------------------------------------------------------------------------- /examples/IVEX18-HTTP tunneling https.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX18-HTTP tunneling https.rpgle -------------------------------------------------------------------------------- /examples/IVEX18A-HTTP tunneling https POST.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX18A-HTTP tunneling https POST.rpgle -------------------------------------------------------------------------------- /examples/IVEX19-HTTP Tunneling send SMS.sqlrpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX19-HTTP Tunneling send SMS.sqlrpgle -------------------------------------------------------------------------------- /examples/IVEX20-Flowrates.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX20-Flowrates.rpgle -------------------------------------------------------------------------------- /examples/IVEX21-HTTPS Request with specific TLS version.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX21-HTTPS Request with specific TLS version.rpgle -------------------------------------------------------------------------------- /examples/IVEX22-HTTPS GET request to VAX360.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX22-HTTPS GET request to VAX360.rpgle -------------------------------------------------------------------------------- /examples/IVEX23-HTTPS SNI Server Name Indication.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX23-HTTPS SNI Server Name Indication.rpgle -------------------------------------------------------------------------------- /examples/IVEX24-HTTP GET big json.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX24-HTTP GET big json.rpgle -------------------------------------------------------------------------------- /examples/IVEX25-HTTP GET blocking sockets.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX25-HTTP GET blocking sockets.rpgle -------------------------------------------------------------------------------- /examples/IVEX26-HTTP GET loop.sqlrpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX26-HTTP GET loop.sqlrpgle -------------------------------------------------------------------------------- /examples/IVEX27-Consecutive HTTP requests.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX27-Consecutive HTTP requests.rpgle -------------------------------------------------------------------------------- /examples/IVEX30-OpenAI.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX30-OpenAI.rpgle -------------------------------------------------------------------------------- /examples/IVEX30a-OpenAI consecutive.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/IVEX30a-OpenAI consecutive.rpgle -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/compile.sh -------------------------------------------------------------------------------- /examples/compile_73.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/compile_73.sh -------------------------------------------------------------------------------- /examples/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/makefile -------------------------------------------------------------------------------- /examples/modules/mimeex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/modules/mimeex1.c -------------------------------------------------------------------------------- /examples/modules/msgex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/modules/msgex1.c -------------------------------------------------------------------------------- /examples/modules/requestex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/modules/requestex1.c -------------------------------------------------------------------------------- /examples/modules/streamex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/modules/streamex1.c -------------------------------------------------------------------------------- /examples/modules/strutilex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/modules/strutilex1.c -------------------------------------------------------------------------------- /examples/modules/urlex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/examples/modules/urlex1.c -------------------------------------------------------------------------------- /ext/headers/apierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/apierr.h -------------------------------------------------------------------------------- /ext/headers/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/base64.h -------------------------------------------------------------------------------- /ext/headers/base64.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/base64.rpginc -------------------------------------------------------------------------------- /ext/headers/ceeapi.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/ceeapi.rpginc -------------------------------------------------------------------------------- /ext/headers/libc.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/libc.rpginc -------------------------------------------------------------------------------- /ext/headers/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/message.h -------------------------------------------------------------------------------- /ext/headers/message.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/message.rpginc -------------------------------------------------------------------------------- /ext/headers/ostypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/ostypes.h -------------------------------------------------------------------------------- /ext/headers/psds.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/psds.rpginc -------------------------------------------------------------------------------- /ext/headers/simpleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/simpleList.h -------------------------------------------------------------------------------- /ext/headers/simpleList.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/simpleList.rpginc -------------------------------------------------------------------------------- /ext/headers/stream.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/stream.rpginc -------------------------------------------------------------------------------- /ext/headers/streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/streamer.h -------------------------------------------------------------------------------- /ext/headers/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/strutil.h -------------------------------------------------------------------------------- /ext/headers/strutil.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/strutil.rpginc -------------------------------------------------------------------------------- /ext/headers/teraspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/teraspace.h -------------------------------------------------------------------------------- /ext/headers/teraspace.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/teraspace.rpginc -------------------------------------------------------------------------------- /ext/headers/varchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/varchar.h -------------------------------------------------------------------------------- /ext/headers/varchar.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/varchar.rpginc -------------------------------------------------------------------------------- /ext/headers/xlate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/xlate.h -------------------------------------------------------------------------------- /ext/headers/xlate.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/headers/xlate.rpginc -------------------------------------------------------------------------------- /ext/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/makefile -------------------------------------------------------------------------------- /ext/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/base64.c -------------------------------------------------------------------------------- /ext/src/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/message.c -------------------------------------------------------------------------------- /ext/src/simpleList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/simpleList.c -------------------------------------------------------------------------------- /ext/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/stream.c -------------------------------------------------------------------------------- /ext/src/strutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/strutil.c -------------------------------------------------------------------------------- /ext/src/teraspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/teraspace.c -------------------------------------------------------------------------------- /ext/src/varchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/varchar.c -------------------------------------------------------------------------------- /ext/src/xlate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ext/src/xlate.c -------------------------------------------------------------------------------- /headers/anychar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/anychar.h -------------------------------------------------------------------------------- /headers/anychar.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/anychar.rpginc -------------------------------------------------------------------------------- /headers/api.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/api.rpginc -------------------------------------------------------------------------------- /headers/basetypes.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/basetypes.rpginc -------------------------------------------------------------------------------- /headers/basicauth.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/basicauth.rpginc -------------------------------------------------------------------------------- /headers/bearer.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/bearer.rpginc -------------------------------------------------------------------------------- /headers/chunked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/chunked.h -------------------------------------------------------------------------------- /headers/chunked.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/chunked.rpginc -------------------------------------------------------------------------------- /headers/clib.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/clib.rpginc -------------------------------------------------------------------------------- /headers/crypto.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/crypto.rpginc -------------------------------------------------------------------------------- /headers/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/debug.h -------------------------------------------------------------------------------- /headers/debug.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/debug.rpginc -------------------------------------------------------------------------------- /headers/encode.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/encode.rpginc -------------------------------------------------------------------------------- /headers/form.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/form.rpginc -------------------------------------------------------------------------------- /headers/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/httpclient.h -------------------------------------------------------------------------------- /headers/httpclient.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/httpclient.rpginc -------------------------------------------------------------------------------- /headers/ilevator.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/ilevator.bnd -------------------------------------------------------------------------------- /headers/ilevator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/ilevator.h -------------------------------------------------------------------------------- /headers/ilevator.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/ilevator.rpgle -------------------------------------------------------------------------------- /headers/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/mime.h -------------------------------------------------------------------------------- /headers/mime.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/mime.rpginc -------------------------------------------------------------------------------- /headers/multipart.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/multipart.rpginc -------------------------------------------------------------------------------- /headers/parms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/parms.h -------------------------------------------------------------------------------- /headers/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/request.h -------------------------------------------------------------------------------- /headers/request.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/request.rpginc -------------------------------------------------------------------------------- /headers/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/sockets.h -------------------------------------------------------------------------------- /headers/sockets.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/sockets.rpginc -------------------------------------------------------------------------------- /headers/tunnel.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/tunnel.rpginc -------------------------------------------------------------------------------- /headers/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/url.h -------------------------------------------------------------------------------- /headers/url.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/url.rpginc -------------------------------------------------------------------------------- /headers/websocket.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/headers/websocket.rpginc -------------------------------------------------------------------------------- /ilevator.RDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ilevator.RDB -------------------------------------------------------------------------------- /ilevator.kdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/ilevator.kdb -------------------------------------------------------------------------------- /integrationtests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/Makefile -------------------------------------------------------------------------------- /integrationtests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/README.md -------------------------------------------------------------------------------- /integrationtests/TEMPLATES.RPGINC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/TEMPLATES.RPGINC -------------------------------------------------------------------------------- /integrationtests/assert.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/assert.rpginc -------------------------------------------------------------------------------- /integrationtests/helidon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/.gitignore -------------------------------------------------------------------------------- /integrationtests/helidon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/README.md -------------------------------------------------------------------------------- /integrationtests/helidon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/pom.xml -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/EntryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/EntryResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/FormResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/FormResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/HeaderResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/HeaderResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/HelloResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/HelloResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/IlevatorApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/IlevatorApplication.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/MultiPartResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/MultiPartResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/PostResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/PostResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/QueryParameterResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/QueryParameterResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/ChatEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/ChatEndpoint.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/EchoEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/EchoEndpoint.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/LanguagesResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/LanguagesResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/MessageEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/MessageEndpoint.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/MessageQueueProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/MessageQueueProvider.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/MessageResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/MessageResource.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/MultiFrameEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/MultiFrameEndpoint.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/ObservableQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/ObservableQueue.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/java/ilevator/ws/UploadEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/java/ilevator/ws/UploadEndpoint.java -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/resources/META-INF/microprofile-config.properties: -------------------------------------------------------------------------------- 1 | server.port=35801 2 | ilevator.upload.dir=/tmp -------------------------------------------------------------------------------- /integrationtests/helidon/src/main/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/helidon/src/main/resources/logging.properties -------------------------------------------------------------------------------- /integrationtests/ileastic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/Makefile -------------------------------------------------------------------------------- /integrationtests/ileastic/ivileadel.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/ivileadel.rpgmod -------------------------------------------------------------------------------- /integrationtests/ileastic/ivileaget.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/ivileaget.rpgmod -------------------------------------------------------------------------------- /integrationtests/ileastic/ivileahead.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/ivileahead.rpgmod -------------------------------------------------------------------------------- /integrationtests/ileastic/ivileaopt.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/ivileaopt.rpgmod -------------------------------------------------------------------------------- /integrationtests/ileastic/ivileapat.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/ivileapat.rpgmod -------------------------------------------------------------------------------- /integrationtests/ileastic/ivileaput.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/ivileaput.rpgmod -------------------------------------------------------------------------------- /integrationtests/ileastic/ivileastic.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ileastic/ivileastic.rpgmod -------------------------------------------------------------------------------- /integrationtests/itconnect.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itconnect.rpgmod -------------------------------------------------------------------------------- /integrationtests/itdelete.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itdelete.rpgmod -------------------------------------------------------------------------------- /integrationtests/itexec.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itexec.rpgmod -------------------------------------------------------------------------------- /integrationtests/itget.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itget.rpgmod -------------------------------------------------------------------------------- /integrationtests/ithead.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ithead.rpgmod -------------------------------------------------------------------------------- /integrationtests/itmulti.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itmulti.rpgmod -------------------------------------------------------------------------------- /integrationtests/itoptions.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itoptions.rpgmod -------------------------------------------------------------------------------- /integrationtests/itpatch.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itpatch.rpgmod -------------------------------------------------------------------------------- /integrationtests/itpost.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itpost.rpgmod -------------------------------------------------------------------------------- /integrationtests/itput.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itput.rpgmod -------------------------------------------------------------------------------- /integrationtests/itreqhdlr.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itreqhdlr.rpgmod -------------------------------------------------------------------------------- /integrationtests/ittunnel.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/ittunnel.rpgmod -------------------------------------------------------------------------------- /integrationtests/itwebsock.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/itwebsock.rpgmod -------------------------------------------------------------------------------- /integrationtests/proxy.echo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/proxy.echo/.gitignore -------------------------------------------------------------------------------- /integrationtests/proxy.echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/proxy.echo/README.md -------------------------------------------------------------------------------- /integrationtests/proxy.echo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/proxy.echo/pom.xml -------------------------------------------------------------------------------- /integrationtests/proxy.echo/src/main/java/ilevator/proxy/echo/EchoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/proxy.echo/src/main/java/ilevator/proxy/echo/EchoService.java -------------------------------------------------------------------------------- /integrationtests/proxy.echo/src/main/java/ilevator/proxy/echo/ProxyEchoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/proxy.echo/src/main/java/ilevator/proxy/echo/ProxyEchoApplication.java -------------------------------------------------------------------------------- /integrationtests/resources/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/resources/avatar.jpg -------------------------------------------------------------------------------- /integrationtests/resources/yellow-sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/integrationtests/resources/yellow-sky.jpg -------------------------------------------------------------------------------- /issues/IVISSUE044-redirect-timeout.rpgle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/issues/IVISSUE044-redirect-timeout.rpgle -------------------------------------------------------------------------------- /issues/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/issues/compile.sh -------------------------------------------------------------------------------- /issues/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/issues/makefile -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/makefile -------------------------------------------------------------------------------- /src/anychar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/anychar.c -------------------------------------------------------------------------------- /src/api.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/api.rpgmod -------------------------------------------------------------------------------- /src/basicauth.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/basicauth.rpgmod -------------------------------------------------------------------------------- /src/bearer.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/bearer.rpgmod -------------------------------------------------------------------------------- /src/chunked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/chunked.c -------------------------------------------------------------------------------- /src/crypto.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/crypto.rpgmod -------------------------------------------------------------------------------- /src/debug.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/debug.rpgmod -------------------------------------------------------------------------------- /src/encode.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/encode.rpgmod -------------------------------------------------------------------------------- /src/form.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/form.rpgmod -------------------------------------------------------------------------------- /src/httpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/httpclient.c -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/joblog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/joblog.c -------------------------------------------------------------------------------- /src/mime.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/mime.rpgmod -------------------------------------------------------------------------------- /src/multipart.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/multipart.rpgmod -------------------------------------------------------------------------------- /src/request.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/request.rpgmod -------------------------------------------------------------------------------- /src/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/sockets.c -------------------------------------------------------------------------------- /src/url.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/url.rpgmod -------------------------------------------------------------------------------- /src/websocket.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/websocket.rpgmod -------------------------------------------------------------------------------- /src/websockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/src/websockets.c -------------------------------------------------------------------------------- /unittests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/Makefile -------------------------------------------------------------------------------- /unittests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/README.md -------------------------------------------------------------------------------- /unittests/TEMPLATES.RPGINC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/TEMPLATES.RPGINC -------------------------------------------------------------------------------- /unittests/apiut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/apiut.rpgmod -------------------------------------------------------------------------------- /unittests/assert.rpginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/assert.rpginc -------------------------------------------------------------------------------- /unittests/base64ut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/base64ut.rpgmod -------------------------------------------------------------------------------- /unittests/basicautut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/basicautut.rpgmod -------------------------------------------------------------------------------- /unittests/bearerut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/bearerut.rpgmod -------------------------------------------------------------------------------- /unittests/cryptout.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/cryptout.rpgmod -------------------------------------------------------------------------------- /unittests/encodeut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/encodeut.rpgmod -------------------------------------------------------------------------------- /unittests/formut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/formut.rpgmod -------------------------------------------------------------------------------- /unittests/multipart/test1-single-text-part.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test1-single-text-part.txt -------------------------------------------------------------------------------- /unittests/multipart/test2-single-text-part-with-additional-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test2-single-text-part-with-additional-headers.txt -------------------------------------------------------------------------------- /unittests/multipart/test3-multiple-text-parts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test3-multiple-text-parts.txt -------------------------------------------------------------------------------- /unittests/multipart/test4-umlaut-field-name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test4-umlaut-field-name.txt -------------------------------------------------------------------------------- /unittests/multipart/test5-single-bytes-part.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test5-single-bytes-part.txt -------------------------------------------------------------------------------- /unittests/multipart/test6-input.txt: -------------------------------------------------------------------------------- 1 | ILEvator rocks! -------------------------------------------------------------------------------- /unittests/multipart/test6-single-file-part.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test6-single-file-part.txt -------------------------------------------------------------------------------- /unittests/multipart/test7-input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test7-input.txt -------------------------------------------------------------------------------- /unittests/multipart/test7-single-file-part-base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test7-single-file-part-base64.txt -------------------------------------------------------------------------------- /unittests/multipart/test8-single-text-part-base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/test8-single-text-part-base64.txt -------------------------------------------------------------------------------- /unittests/multipart/yellow-sky-base64-76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/yellow-sky-base64-76.txt -------------------------------------------------------------------------------- /unittests/multipart/yellow-sky-base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/yellow-sky-base64.txt -------------------------------------------------------------------------------- /unittests/multipart/yellow-sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multipart/yellow-sky.jpg -------------------------------------------------------------------------------- /unittests/multiparut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/multiparut.rpgmod -------------------------------------------------------------------------------- /unittests/request/request-content-from-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/request-content-from-file.txt -------------------------------------------------------------------------------- /unittests/request/test1-minimum.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test1-minimum.http -------------------------------------------------------------------------------- /unittests/request/test10-formData.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test10-formData.http -------------------------------------------------------------------------------- /unittests/request/test11-content-from-file.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test11-content-from-file.http -------------------------------------------------------------------------------- /unittests/request/test12-content-from-stream.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test12-content-from-stream.http -------------------------------------------------------------------------------- /unittests/request/test2-delete.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test2-delete.http -------------------------------------------------------------------------------- /unittests/request/test3-options.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test3-options.http -------------------------------------------------------------------------------- /unittests/request/test4-head.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test4-head.http -------------------------------------------------------------------------------- /unittests/request/test5-port.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test5-port.http -------------------------------------------------------------------------------- /unittests/request/test6-path.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test6-path.http -------------------------------------------------------------------------------- /unittests/request/test7-queryNoPath.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test7-queryNoPath.http -------------------------------------------------------------------------------- /unittests/request/test8-textBody.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test8-textBody.http -------------------------------------------------------------------------------- /unittests/request/test9-overrideAccept.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/request/test9-overrideAccept.http -------------------------------------------------------------------------------- /unittests/requestut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/requestut.rpgmod -------------------------------------------------------------------------------- /unittests/smpllstut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/smpllstut.rpgmod -------------------------------------------------------------------------------- /unittests/strutilut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/strutilut.rpgmod -------------------------------------------------------------------------------- /unittests/urlparseut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/urlparseut.rpgmod -------------------------------------------------------------------------------- /unittests/websockut.rpgmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitemule/ILEvator/HEAD/unittests/websockut.rpgmod --------------------------------------------------------------------------------