Google App Engine Remote API を使用して、開発サーバーから本番データストアに接続しようとしています。最初のリクエストは成功したようで、実稼働データストアに接続していますが、後続のリクエストでは正しく接続されず、次のメッセージが表示されます。
remote API is already installed
これは、Remote API に接続するために使用するコードです。
try {
RemoteApiOptions options = new RemoteApiOptions()
.server("xxxxx.appspot.com", 80)
.useServiceAccountCredential("xxxxx@appspot.gserviceaccount.com",
"WEB-INF/xxxxxx-xxxxxx.p12");
RemoteApiInstaller installer = new RemoteApiInstaller();
installer.install(options);
} catch (Exception e) {
System.out.println(e.getMessage());
}
関連性があるかどうかはわかりませんが、objectify を使用してデータストアと対話します