├── .gitignore ├── CITA.json5 ├── LICENSE ├── README.md ├── apl-package.json ├── docs ├── LICENSE.md ├── assets │ └── apl385.ttf ├── conga-settings.md ├── conga.md ├── content-types.md ├── css │ └── main.css ├── encode-methods.md ├── examples.md ├── img │ ├── SquidError.PNG │ ├── avatar.png │ ├── dyalog-white.svg │ └── favicon-32.png ├── index.md ├── instance-methods.md ├── integrating.md ├── misc-methods.md ├── msgs.md ├── operational-settings.md ├── proxy-settings.md ├── proxy.md ├── quickstart.md ├── release-notes.md ├── request-settings.md ├── result-operational.md ├── result-request.md ├── result-response.md ├── secure.md ├── shortcut-methods.md ├── trouble.md └── userguide.md ├── mkdocs.yml ├── source └── HttpCommand.dyalog └── tests ├── EndPoints └── ping.aplf ├── HttpServer.dyalog ├── SourceFolder.aplf ├── closed_socket_test.dyalog ├── httpcommand_test.dyalog ├── ping.aplf ├── setup_httpcommand_test.dyalog ├── test_BaseURL.aplf ├── test_CongaInit.aplf ├── test_chunked.dyalog ├── test_closed_socket.dyalog ├── test_deflate.dyalog ├── test_get.dyalog ├── test_get_url.dyalog ├── test_gzip.dyalog ├── test_outfile.aplf ├── test_ping.aplf ├── test_restful_get.dyalog ├── test_restful_post.dyalog ├── test_restful_put.dyalog ├── test_timeout.aplf └── unit.dyalogtest /.gitignore: -------------------------------------------------------------------------------- 1 | *.dlf 2 | *.rng* 3 | site/ -------------------------------------------------------------------------------- /CITA.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/CITA.json5 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/README.md -------------------------------------------------------------------------------- /apl-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/apl-package.json -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/assets/apl385.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/assets/apl385.ttf -------------------------------------------------------------------------------- /docs/conga-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/conga-settings.md -------------------------------------------------------------------------------- /docs/conga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/conga.md -------------------------------------------------------------------------------- /docs/content-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/content-types.md -------------------------------------------------------------------------------- /docs/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/css/main.css -------------------------------------------------------------------------------- /docs/encode-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/encode-methods.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/img/SquidError.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/img/SquidError.PNG -------------------------------------------------------------------------------- /docs/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/img/avatar.png -------------------------------------------------------------------------------- /docs/img/dyalog-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/img/dyalog-white.svg -------------------------------------------------------------------------------- /docs/img/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/img/favicon-32.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/instance-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/instance-methods.md -------------------------------------------------------------------------------- /docs/integrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/integrating.md -------------------------------------------------------------------------------- /docs/misc-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/misc-methods.md -------------------------------------------------------------------------------- /docs/msgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/msgs.md -------------------------------------------------------------------------------- /docs/operational-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/operational-settings.md -------------------------------------------------------------------------------- /docs/proxy-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/proxy-settings.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /docs/request-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/request-settings.md -------------------------------------------------------------------------------- /docs/result-operational.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/result-operational.md -------------------------------------------------------------------------------- /docs/result-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/result-request.md -------------------------------------------------------------------------------- /docs/result-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/result-response.md -------------------------------------------------------------------------------- /docs/secure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/secure.md -------------------------------------------------------------------------------- /docs/shortcut-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/shortcut-methods.md -------------------------------------------------------------------------------- /docs/trouble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/trouble.md -------------------------------------------------------------------------------- /docs/userguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/docs/userguide.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /source/HttpCommand.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/source/HttpCommand.dyalog -------------------------------------------------------------------------------- /tests/EndPoints/ping.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/EndPoints/ping.aplf -------------------------------------------------------------------------------- /tests/HttpServer.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/HttpServer.dyalog -------------------------------------------------------------------------------- /tests/SourceFolder.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/SourceFolder.aplf -------------------------------------------------------------------------------- /tests/closed_socket_test.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/closed_socket_test.dyalog -------------------------------------------------------------------------------- /tests/httpcommand_test.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/httpcommand_test.dyalog -------------------------------------------------------------------------------- /tests/ping.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/ping.aplf -------------------------------------------------------------------------------- /tests/setup_httpcommand_test.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/setup_httpcommand_test.dyalog -------------------------------------------------------------------------------- /tests/test_BaseURL.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_BaseURL.aplf -------------------------------------------------------------------------------- /tests/test_CongaInit.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_CongaInit.aplf -------------------------------------------------------------------------------- /tests/test_chunked.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_chunked.dyalog -------------------------------------------------------------------------------- /tests/test_closed_socket.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_closed_socket.dyalog -------------------------------------------------------------------------------- /tests/test_deflate.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_deflate.dyalog -------------------------------------------------------------------------------- /tests/test_get.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_get.dyalog -------------------------------------------------------------------------------- /tests/test_get_url.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_get_url.dyalog -------------------------------------------------------------------------------- /tests/test_gzip.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_gzip.dyalog -------------------------------------------------------------------------------- /tests/test_outfile.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_outfile.aplf -------------------------------------------------------------------------------- /tests/test_ping.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_ping.aplf -------------------------------------------------------------------------------- /tests/test_restful_get.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_restful_get.dyalog -------------------------------------------------------------------------------- /tests/test_restful_post.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_restful_post.dyalog -------------------------------------------------------------------------------- /tests/test_restful_put.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_restful_put.dyalog -------------------------------------------------------------------------------- /tests/test_timeout.aplf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/test_timeout.aplf -------------------------------------------------------------------------------- /tests/unit.dyalogtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dyalog/HttpCommand/HEAD/tests/unit.dyalogtest --------------------------------------------------------------------------------