[appengine-java] Re: How to make GWT + App Engine application crawlable?

2010-09-25 Thread PhilBeaudoin
I've been working on this problem for a long time within the gwt- platform project: http://code.google.com/p/gwt-platform/issues/detail?id=1 I've gotten very far (i.e. I can make it work in development mode) but I ran into a very annoying issue with the urlfetch API of AppEngine:

[appengine-java] Re: what if tx.commit() fails ?

2010-09-25 Thread Didier Durand
Hi Prashant, You should read http://code.google.com/appengine/articles/transaction_isolation.html to get all infos about transaction isolation. regards didier On Sep 25, 7:27 am, Prashant nextprash...@gmail.com wrote: Hi, I have a small doubt with transactions. Suppose I am trying to

[appengine-java] Re: Updating multiple entities (in different entity groups) with transaction

2010-09-25 Thread Didier Durand
Hi Prashant, Again read http://code.google.com/appengine/articles/transaction_isolation.html On Sep 25, 6:11 am, Prashant nextprash...@gmail.com wrote: Hi, I want to update 2 different entities of same type but in different entity groups with transaction i.e. either both entities should get

[appengine-java] Re: PayPal Payflow Pro Connection Error

2010-09-25 Thread nischalshetty
Here's everything you need to get started http://is.gd/fsuBr Works for Credit Card payments as well, although the UI isn't very pro-non-paypally ;) -N On Sep 25, 3:17 am, Shaun shaunc...@gmail.com wrote: I am using Java, are you talking PayPalX? Doesn't that only support paypal accounts, i.e.

[appengine-java] Blobstore upload issue (and difference between dev and prod)

2010-09-25 Thread Guillaume Laforge
Hi all, I'm developing a small application, using among other things, the blobstore service. En passant, I'd like to mention I'm using Gaelyk as my framework of choice (http://gaelyk.appspot.com/). Everything works fine locally, I can upload pictures to my application thanks to the blobstore

[appengine-java] Re: Blobstore upload issue (and difference between dev and prod)

2010-09-25 Thread Guillaume Laforge
On Sat, Sep 25, 2010 at 15:50, Guillaume Laforge glafo...@gmail.com wrote: [...] I've got a form like this: form id=upload-form action=${blobstore.createUploadUrl('/WEB-INF/groovy/handleUpload.groovy')}        method=post enctype=multipart/form-data accept-charset=UTF-8 Which is using the

[appengine-java] Implementing custom login

2010-09-25 Thread Stakka
Anyone have tips on how to best implement custom login. Not forcing users to have an Google account. I've thought of two possible solutions: * Implement custom login in a Servlet Filter, thus replacing the standard servlet security model. * Implement an OpenID provider, then use Federated Login

Re: [appengine-java] Re: Blobstore upload issue (and difference between dev and prod)

2010-09-25 Thread romesh soni
Hi Guillaume , Why are you supplying WEB-INF path? blobstore.createUploadUrl should contain a servlet path instead. Implementing blobstore is quite simple and you just need to create a sevlet and provide its url in this method. I have noticed certain differences in using blobstore service in

Re: [appengine-java] How to make GWT + App Engine application crawlable?

2010-09-25 Thread John Patterson
You will need to post the code you are using... rest assured, you can read query string parameters on both the development and production servers. On 25 Sep 2010, at 06:23, hezjing wrote: I'm still not able to retrieve the query string from my servlet filter. For example after

Re: [appengine-java] Re: Blobstore upload issue (and difference between dev and prod)

2010-09-25 Thread Guillaume Laforge
Hi Romesh, On Sat, Sep 25, 2010 at 18:06, romesh soni soni.rom...@gmail.com wrote: Hi Guillaume , Why are you supplying WEB-INF path? I'm using Gaelyk, and I can reference the groovlets (ie. Groovy scripts which are served by a Servlet) using their path. Interestingly, it was working totally

Re: [appengine-java] Re: Blobstore upload issue (and difference between dev and prod)

2010-09-25 Thread romesh soni
Thats great to hear. Thanks Romesh On Sat, Sep 25, 2010 at 10:28 PM, Guillaume Laforge glafo...@gmail.comwrote: Hi Romesh, On Sat, Sep 25, 2010 at 18:06, romesh soni soni.rom...@gmail.com wrote: Hi Guillaume , Why are you supplying WEB-INF path? I'm using Gaelyk, and I can reference

[appengine-java] App breaking on age

2010-09-25 Thread Vik
Hie We had our app deployed on app engine. We build a newer app in our local environment. As entities were not campatible with hosted app so we deleted all the entities from gae. And the uploaded the new app. Now the problem is it is throwing exceptions. It is still referring to old java

Re: [appengine-java] App breaking on age

2010-09-25 Thread Prashant
did you update the default version on admin console ? On 25 September 2010 23:53, Vik vik@gmail.com wrote: Hie We had our app deployed on app engine. We build a newer app in our local environment. As entities were not campatible with hosted app so we deleted all the entities from gae.

[appengine-java] Re: Problem with persist a child class

2010-09-25 Thread lisandrodc
Hi! Andy I can't change the type of a member from String to Long becasue it is an internal error of datanucleus in google apps, I I do not find way of solving it. All the exception is: Problem accessing /Prode/JugarFecha.action. Reason: java.lang.Long cannot be cast to java.lang.String

Re: [appengine-java] Re: Problem with persist a child class

2010-09-25 Thread andy stevko
Hi Lisandro, Perhaps you didn't understand my last line of reasoning re: is your datastore empty... I suspect that the schema for your classes has migrated - i.e. a member that was Long and is now String or vice-versa A close read of the datastore docs says:

[appengine-java] Weird string bug when storing a timezone id in the datastore

2010-09-25 Thread Shaun
I am working with timezones and I tried to store the timezone id Etc/ GMT+12 to the datastore as a string, but it gets stored as Etc/GMT 12. Any idea why with a valid string it decides to strip out the plus? Thanks! Shaun -- You received this message because you are subscribed to the Google

[appengine-java] Re: Problem with persist a child class

2010-09-25 Thread lisandrodc
Hi! I have tried delete my local_db and the problem persist. The exception is in the next code, in the call of the build method RegFechaUsuario: ControladorFecha cF = new ControladorFecha(); System.out.println(nombre + nuevaFecha.getNombre());