[appengine-java] Re: Disable Eclipse DataNucleus Enhancer from maven-eclipse-plugin?

2011-03-25 Thread Philippe Beaudoin
There is no maven-datanucleus-plugin in my POM. The datanucleus is brought in by the Google Eclipse Plugin I believe. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

[appengine-java] Disable Eclipse DataNucleus Enhancer from maven-eclipse-plugin?

2011-03-23 Thread Philippe Beaudoin
Hi! My project uses Objectify and therefore does not need the DataNucleus Enhancer to run. Running it is long and causes some nasty error popups in Eclipse. I usually disable it via: Right click on project Properties Builders Where I uncheck Enhancer. However, my project uses Maven and the

[appengine-java] Eclipse Run As Web Application overwrites all the libs

2011-03-20 Thread Philippe Beaudoin
I'm using maven with m2eclipse and want to use to nice debugging tools by running my app directly from Eclipse via the Run As Web Application command. This used to work well, but recently I've discovered that all the external dependencies in target/MyProject/WEB-INF/lib are deleted every time

[appengine-java] Re: Eclipse Run As Web Application overwrites all the libs

2011-03-20 Thread Philippe Beaudoin
I found a workaround by disabling and reenabling Maven dependency injection in Eclipse: Right-click on the project Maven Disable Dependency Management Right-click on the project Maven Enable Dependency Management I still think there may be something wrong with the GEP though... -- You

Re: [google-appengine] Channel API encoding problem

2011-03-04 Thread Philippe Beaudoin
If you use unicode characters in an hardcoded string, I believe you have to make sure the file is stored in the right format. Right-click the file, then: Properties Resources -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to

Re: [google-appengine] Channel API encoding problem

2011-03-04 Thread Philippe Beaudoin
If you use unicode characters in an hardcoded string, I believe you have to make sure the file is stored in the right format. Right-click the file, then: Properties Resources Text file encoding Other UTF-8 -- You received this message because you are subscribed to the Google Groups Google

Re: [appengine-java] Re: URLFetchService

2011-02-28 Thread Philippe Beaudoin
according to setPayload field values but the password does not get populated ? I posted a new thread for this as it might not be related to this one. Thank you On Fri, Feb 25, 2011 at 6:22 PM, Philippe Beaudoin philippe.beaud...@gmail.com wrote: I don't know about that... Have you tried

Re: [appengine-java] Re: URLFetchService

2011-02-25 Thread Philippe Beaudoin
differently from the other fields ? Thanks again for you help! On Thu, Feb 24, 2011 at 5:51 PM, Philippe Beaudoin philippe.beaud...@gmail.com wrote: My guess is that the JSESSIONID (or whichever session cookie used by the service) that is received in the HTTPResponse of your first fetch

[appengine-java] Re: URLFetchService

2011-02-24 Thread Philippe Beaudoin
My guess is that the JSESSIONID (or whichever session cookie used by the service) that is received in the HTTPResponse of your first fetch() is not sent back with your second fetch. As a consequence, the service does not know you're logged in. Here is how I would solve it (I did not test that

Re: RE: [google-appengine] love letter to appengine team (see attached)

2011-02-17 Thread Philippe Beaudoin
+1 I love working with AppEngine -- the design choices are sensible, the speed is great (esp. with the latest additions), and it's dirt cheap. Thanks!!! -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[appengine-java] Re: HtmlUnit support on GAE for GWT crawlability

2010-12-08 Thread Philippe Beaudoin
Hi Brucko, Great idea! Can you post a link to your blog, I can't see it here? Philippe On Dec 7, 3:26 pm, brucko geoff.bruck...@gmail.com wrote: Always On has made an interesting twist. If you want this to work for free, then ATM Gal Dolbers method appears to be the best at this stage.

[google-appengine] Re: Let's defend GAE!

2010-11-22 Thread Philippe Beaudoin
The best defense is not a rebuttal of negative things written about App Engine. The best defense is an active and visible ecosystem. App Engine does have that. What could we do to improve it and publicize it more? +1 Don't spend time on flame wars. Go out and do something. :) AppEngine

Re: [google-appengine] Re: How to integrate Payment module with google app engine

2010-11-19 Thread Philippe Beaudoin
we've had issues. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Fri, Nov 19, 2010 at 10:59 AM, Philippe Beaudoin philippe.beaud...@gmail.com wrote

[google-appengine] Re: How to integrate Payment module with google app engine

2010-11-16 Thread Philippe Beaudoin
I recently integrated a PayPal Website Payments Pro account with our AppEngine app, using recurring profile for subscriptions. An issue I have is that I can sometime hit the 10s limit of URLFetch which lead to recurring profiles being registered over at PayPal but no way for my AppEngine app to

[appengine-java] Extend UrlFetch timeout on development server?

2010-11-04 Thread Philippe Beaudoin
I'm trying to use the UrlFetch API to test my Paypal integration on the development server. When I send a badly formatted request I quickly get an error reponse from Paypal's sandbox server. However, as soon as I issue a valid request, it takes too long to process and I get a timeout error. I