我正在開發一個play Web應用程序,該應用程序應該部署在Google應用程序引擎上。我正在嘗試向另一臺服務器發送請求,而不是處理響應。在我的本地主機它是完美運行然而,當我在GAE上測試時遇到困難。代碼如下:從Google App Engine發送請求
import com.google.appengine.repackaged.org.apache.http.HttpResponse;
import com.google.appengine.repackaged.org.apache.http.client.methods.HttpGet;
import com.google.appengine.repackaged.org.apache.http.conn.scheme.PlainSocketFactory;
import com.google.appengine.repackaged.org.apache.http.conn.scheme.Scheme;
import com.google.appengine.repackaged.org.apache.http.conn.scheme.SchemeRegistry;
import com.google.appengine.repackaged.org.apache.http.impl.client.DefaultHttpClient;
import com.google.appengine.repackaged.org.apache.http.impl.conn.SingleClientConnManager;
import com.google.appengine.repackaged.org.apache.http.params.BasicHttpParams;
public class Getter{
public static byte[] getStuff(){
String urlString = "http://example.com/item?param=xy";
SchemeRegistry schemeRegistry = new SchemeRegistry();
schemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
BasicHttpParams params = new BasicHttpParams();
SingleClientConnManager connmgr = new SingleClientConnManager(params, schemeRegistry);
DefaultHttpClient client = new DefaultHttpClient(connmgr, params);
HttpGet get = new HttpGet(urlString);
byte[] buf = null;
try {
HttpResponse resp = client.execute(get);
buf = new byte[(int) resp.getEntity().getContentLength()];
resp.getEntity().getContent().read(buf);
} catch (Exception e) {
System.out.println("There was a problem.");
e.printStackTrace();
}
return buf;
}
}
可悲的是,我沒有得到任何錯誤消息e.printStackTrace();在GAE上,日誌打印出「有問題」。經過研究,我嘗試了許多實現,但無法讓它們運行。 我欣賞任何形式的幫助。
這是偉大的!非常感謝你。你知道從數據中提取響應內容的方法嗎?內容是什麼是一張圖片,我只需要從該方法返回。 – 2012-01-29 10:39:17
同樣,這一切都在Google的URLFetch網站的URLFetch文檔中。我在上面的答案中增加了一些代碼。 – jmort253 2012-01-29 17:37:00