Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void doPost(HttpServletRequest request, HttpServletResponse response) thr
param = param.replace("\n", "").replace("\r", "").replace("\"", "\\\"");
param = param.replace("<", "").replace(">", "");
try {
response.getWriter().println(param + "{\"username\":\"test\"}");
response.getWriter().println(param + "({\"username\":\"test\"})");
} catch (Exception e) {
response.getWriter().println(e.toString());
return;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GET /jsonp/BS00113 HTTP/1.1
GET /jsonp/BS00113?BS00113=callback HTTP/1.1
Host: localhost
Connection: close
Accept-Encoding: gzip, deflate
Expand Down