_techempbenchmark.m 483 B

12345678910111213141516171819202122
  1. %techempbenchmark ; Techempower plaintext and json tests;2020-08-31 09:30PM
  2. ;
  3. te
  4. S ^%webhttp(0,"NOGZIP")=1
  5. D job^%webreq(8080,"",,,1)
  6. ;D start^%webreq(8080,"",,,,,1)
  7. Q
  8. plaintext(RESULT,ARGS) ; [Public] GET /plaintext
  9. S RESULT("mime")="text/plain"
  10. S RESULT="Hello, World!"
  11. Q
  12. json(RESULT,ARGS) ; [Public] GET /json
  13. S RESULT("mime")="application/json"
  14. ;S RESULT("headers","Temp")="Test"
  15. N MSG
  16. S MSG("message")="Hello, World!"
  17. D ENCODE^%webjson("MSG","RESULT")
  18. K MSG
  19. Q