「応答にコンテンツ タイプが含まれていません」??
ここでは、次のような XML を取得するために、アプリケーション内で接続を構築しています。
try {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(uri1);
if(list!=null)
{
UrlEncodedFormEntity formEntity = new UrlEncodedFormEntity(list);
httpPost.setEntity(formEntity);
}
URI uri=httpPost.getURI();
HttpResponse httpResponse = httpClient.execute(httpPost);
StringBuffer sb = new StringBuffer("");
String line = "";
String NL = System.getProperty("line.separator");
while ((line = in.readLine()) != null) {
sb.append(line + NL);
}
in.close();
result = sb.toString();
}
catch(UnsupportedEncodingException e)
{
String err = (e.getMessage()==null)?"Cant connect to server":e.getMessage();
Log.e("Network Error:",err);
}
catch (MalformedURLException e) {
String err = (e.getMessage()==null)?"Malformed Exception":e.getMessage();
Log.e("Malformed Exception:",err);
}
catch(Exception ex)
{
Log.i("Exception,ex", ex.getMessage());
String err = (ex.getMessage()==null)?"NetworkConnectionException":ex.getMessage();
Log.e("NetworkConnectionException:",err);
}
finally {
if (in != null) {
try {
in.close();
} catch (Exception ex) {
String err = (ex.getMessage()==null)?"Excepion":ex.getMessage();
Log.e("Exception:",err);
}
}
}
return result;
ここで使用している URL は、RSS フィードを含むブログの URL です
応答のエラー: 「応答にコンテンツ タイプが含まれていません」または「コンテンツが消費されました」
私はすべてを試しましたが、まだ成功していません..pls help
[編集]: XML をフェッチする通常の URL は正常に機能していますが、このブログの URL でこのエラーが発生しています