Hello,I'm trying to get the JSON response of the submitJob operation launched by a restful call: http://<gp-task-url>/submitJob.I'm using Java7. The response I'm getting is an HTML response, using the code below:URL url = new URL("http://<gp-task-url>/submitJob"); HttpURLConnection connection = (HttpURLConnection) url .openConnection(); connection.setRequestProperty("Content-Type", "application/json"); connection.setRequestMethod("GET"); InputStream is = connection.getInputStream(); Do you have any idea on how to retrieve a JSON response?Thanks.