How to set Out put to JSON
Hi all,
There is any body knows how to make LotusScript web Agent output is JSON?
- I have Agent with LotusScript :
Agent Name : getusertitle
sub Initialize
print |{“name”:“Bill Gates”,“Title”:“Domino Developer”}|
end sub
- When i run with browser :
http://www.server.com/db.nsf/getusertitle?openagent
- The Result like this :
{“name”:“Bill Gates”,“Title”:“Domino Developer”}
- Howw to make the output like JSON format only like this (no html tag) :
{“name”:“Bill Gates”,“Title”:“Domino Developer”}
- What i must to do?
Thanks for help.