aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-wsj1-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/afb-wsj1-test.cpp')
-rw-r--r--src/afb-wsj1-test.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/afb-wsj1-test.cpp b/src/afb-wsj1-test.cpp
new file mode 100644
index 00000000..ff74b4b9
--- /dev/null
+++ b/src/afb-wsj1-test.cpp
@@ -0,0 +1,19 @@
+#include "afb-wsj1.hpp"
+
+void onreply(const char *value){
+ std::cout << value << std::endl;
+ exit(0);
+}
+
+int main(int ac, char **av){
+ char*uri=av[1];
+ char*api =av[2];
+ char*verb =av[3];
+ char*req =av[4];
+ afb::wsj1 sj1;
+ char *x;
+ sj1.connect(uri);
+ sj1.call(api,verb,req,onreply);
+ std::cin>> x;
+ return EXIT_SUCCESS;
+} \ No newline at end of file