Hi all I am getting an error when I am trying to connect Google app engine project from my application(deployed in Tomcat) using Remote Api
Error is: *java.io.IOException: can't get appId from remote api; status code = 404, body: <html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"><title>404 Not Found</title></head><body text=#000000 bgcolor=#ffffff><h1>Error: Not Found</h1><h2>The requested URL <code>/remote_api</code> was not found on this server.</h2><h2></h2></body></html> at com.google.appengine.tools.remoteapi.RemoteApiInstaller.getAppIdFromServer(RemoteApiInstaller.java:420)* I have done all the steps which is described in https://cloud.google.com/appengine/docs/java/tools/remoteapi *RemoteApiOptions options = new RemoteApiOptions().server("<ap_id>.appspot.com", 443) .credentials(username, password);//.remoteApiPath("/remote_api"); RemoteApiInstaller installer = new RemoteApiInstaller(); installer.install(options); try { DatastoreService ds = DatastoreServiceFactory.getDatastoreService(); System.out.println("Key of new entity is " + ds.put(new Entity("Hello Remote API!"))); } finally { installer.uninstall(); }* I am using 1.9.26 version. *Can anyone please help ??* -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/3ed184fc-1fd0-40a2-8330-b4a0ed9811fc%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
