httpsポストリクエストでjson文字列をApacheサーバーに送信しています(リクエストは、実際にはpythonスクリプトであるcgi-binスクリプトにjsonデータを送信します)。標準の cgi 呼び出しを使用しています -
f=open("./testfile", "w+")
f.write("usageData json = \n")
<b>form = cgi.FieldStorage()
formList = ['Data']
str = form['Data'].value
str = json.dumps(backupstr)
</b>
print backupstr
URL の json 文字列を読み取ります。問題は、スクリプトが起動されているにもかかわらず、スクリプトが URL の json を読み取っていないことです (基本的な印刷ステートメントが実行されています ...)。これは、投稿側からデータを送信する方法です:
HttpsURLConnection connection = null;
try{
connection = (HttpsURLConnection)url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type",
"application/json");
connection.setRequestProperty("Content-Length", "" +
Integer.toString(jsonstring.getBytes().length));
connection.setRequestProperty("Content-Language", "en-US");
connection.setUseCaches (false);
connection.setDoInput(true);
connection.setDoOutput(true);
//Send request
DataOutputStream wr = new DataOutputStream (
connection.getOutputStream ());
//wr.writeBytes(jsonstring);
wr.writeUTF(URLEncoder.encode(jsonstring, "UTF-8"));
wr.flush ();
wr.close ();
//Get Response
InputStream is = connection.getInputStream();
BufferedReader rd = new BufferedReader(new InputStreamReader(is));
String line;
StringBuffer response = new StringBuffer();
while((line = rd.readLine()) != null) {
response.append(line);
}
rd.close();
//response = httpClient.execute(request);
}
catch (Exception e)
{
System.out.println("Exception " + e.getMessage());
throw e;
}
送信側で 1 つ以上の connection.setRequestProperty() 設定が欠落していると思われます。そのため、スクリプトを起動しているのに、URL の json 文字列を読み取っていないのです ...何が間違っているのでしょうか ...?