s.am...@teravintech.com
unread,Jul 19, 2013, 2:29:09 AM7/19/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jay...@googlegroups.com
how to handle multiple json request?
so there is a request like bellow:
{
"id":3,
"method":"echoTest",
"params":{ "test" : "catty is here" }
},
{
"id":4,
"method":"echoTest",
"params":{ "test" : "catty is here" }
}
and i want to get a result like bellow:
{
"id":3,
"result": { "test": "response catty is here"}
},
{
"id":4,
"result": { "test": "response catty is here"}
}
is Jayrock can handle this multiple? If yes, then how?
Thank you