blob: 1af3f4612536fbdd1afb4e78fb0f2133027f510a [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//-------------------------------------------------------------------
// send a POST Request
//-------------------------------------------------------------------
#pragma jexl.import java.net
#pragma jexl.import java.io
{
"execute" : (sURL, jsonData) -> {
let url = new URL(sURL);
let con = url.openConnection();
con.setRequestMethod("POST");
con.setRequestProperty("Accept", "application/json");
// send data
if (jsonData != null) {
con.setRequestProperty("Content-Type", "application/json");
con.setDoOutput(true);
let outputStream = con.getOutputStream();
let input = jsonData.getBytes("utf-8");
outputStream.write(input, 0, size(input));
}
// read response
let responseCode = con.getResponseCode();
let inputStream = con.getInputStream();
let response = new StringBuilder();
if (inputStream != null) {
let in = new BufferedReader(new InputStreamReader(inputStream));
var inputLine = "";
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
}
response.toString();
}
}