[google-appengine] Tutorial for using GAE with Java

2014-01-13 Thread Juan de Dios Becerra
I am new in GAE and I have in mind the development of an application using Admin SDK and Google + Domains API, where can find some tutorial or directions for starting GAE with Java, and if somebody knows if it is possible to use the mentioned services(Admin SDK and G + Domains API) I would be

Re: [google-appengine] Tutorial for using GAE with Java

2014-01-14 Thread Juan de Dios Becerra
Jan 13, 2014 at 12:02 PM, Juan de Dios Becerra < > j.bece...@gmail.com > wrote: > >> >> I am new in GAE and I have in mind the development of an application >> using Admin SDK and Google + Domains API, where can find some tutorial or >> directions for starting GAE

[google-appengine] How can I use java.io.File(filePath) in AppEngine?

2014-01-21 Thread Juan de Dios Becerra
I am trying to use Google + Domains API in GAE, but when I try to create a GoogleCredential I need to use this: .setServiceAccountPrivateKeyFromP12File(new java.io.File(filePath)) Where filePath is a .p12 extension file(private key for authentication) this file I put in WEB-INF folder and I gra

Re: [google-appengine] How can I use java.io.File(filePath) in AppEngine?

2014-01-22 Thread Juan de Dios Becerra
ream * variable? El martes, 21 de enero de 2014 22:39:14 UTC-6, Vinny P escribió: > > On Tue, Jan 21, 2014 at 3:55 PM, Juan de Dios Becerra > > > wrote: > >> I am trying to use Google + Domains API in GAE, but when I try to create &

[google-appengine] It is possible to update datastore entities or delete entities of a Kind?

2014-02-05 Thread Juan de Dios Becerra
I would like to make some kind of dashboard about certain information that has to be updated every week approximately, but I would like to update the actual registers not to add more, I have not found a good example of how to update datastore, so I am doing manually delete the entities and then

Re: [google-appengine] It is possible to update datastore entities or delete entities of a Kind?

2014-02-06 Thread Juan de Dios Becerra
you have examples? Thank you. El miércoles, 5 de febrero de 2014 19:01:49 UTC-6, Vinny P escribió: > > On Wed, Feb 5, 2014 at 10:35 AM, Juan de Dios Becerra > > > wrote: >> >> I have not found a good example of how to update datastore, so I am doing >> man

Re: [google-appengine] It is possible to update datastore entities or delete entities of a Kind?

2014-02-07 Thread Juan de Dios Becerra
to the > DatastoreService.get()<https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/DatastoreService#get(com.google.appengine.api.datastore.Key)> > method: > > // Key employeeKey = ...; > Entity employee = datastore.get(employeeKey); >

Re: [google-appengine] It is possible to update datastore entities or delete entities of a Kind?

2014-02-10 Thread Juan de Dios Becerra
ava/javadoc/com/google/appengine/api/datastore/DatastoreService#get(com.google.appengine.api.datastore.Key)> >> method: >> >> // Key employeeKey = ...; >> Entity employee = datastore.get(employeeKey); >> >> >> PK >> http://www.gae123.com >> &

[google-appengine] Using PlusDomains.Activities not always return the same number of activities per user

2014-02-13 Thread Juan de Dios Becerra
I am using the Google API PlusDomain to fetch activities of the users under a domain(domain of my job) I have a list of users and I developed in Java a function to retrieve activities of every user, but it is happening something weird, especially when I test in appengine, not in my local develo

[google-appengine] Re: access localhost from remote computer

2014-05-14 Thread Juan de Dios Becerra
Hi , I have the same problem but I am using Java in Eclipse with GAE plugin, if I modify the Run Configuration, in the section Arguments I put: --address=/home/juan_becerra/workspace/GPlusSanminaUser/war the application can not run, I get this output in console: Usage: [options] Options: --he

Re: [google-appengine] google app engine application run with ipaddress instead of localhost

2014-05-14 Thread Juan de Dios Becerra
It is only available for command line? I am using java in eclipse with GAE plugin, I have modified Configurations but I have this message when I try to run it: Usage: [options] Options: --help, -h Show this help message and exit. --server=SERVERThe server to use t

[google-appengine] How to modify an application from Automatic scaling to Manual or Basic scaling? how to integrate Modules?

2014-07-17 Thread Juan de Dios Becerra
I have developed my app with all default, this imply Automatic scaling, lastly some processes are getting longer and I wanted to use Backends, but right now are deprecated, so I need to use Modules, reading the Modules documentation I realized that modifying the file appengine-web.xml I can mod

Re: [google-appengine] Re: Dev workflow for Modules + Maven

2014-07-17 Thread Juan de Dios Becerra
I am trying to use Modules for my first time, but I am not using Maven, only eclipse with Java, I have a simple project(not with modules) and I need to use modules, but I can't make it work, when I complete my configuration(modify the actual project) I deploy to App Engine but I get this warnin

[google-appengine] I can not upload my app to App Engine server

2014-09-11 Thread Juan de Dios Becerra
I am trying to upload my project to the App Engine server, I am using Maven so I followed these instructions: https://developers.google.com/appengine/docs/java/tools/maven, but when I run in the console this: mvn appengine:update nothing what is described in the instructions, the console after

Re: [google-appengine] Re: App Engine pricing details

2014-09-24 Thread Juan de Dios Becerra
Hi guys, I am getting the same error, what is confusing for me is this, I had worked on my project using only Java without Maven, I am using Google Drive API, so it was working well, but I wanted to make a refactoring to the project using Maven and Angular, so locally I can get my project worki