[appengine-java] Re: Java app-engine bug is bad news for upcoming http://opencfsummit.org/

2012-01-14 Thread Alex Skinner
ust fix that bug. > > The good news is a lot of other folks are stepping in to fill that > easy one-click cloud deployment space! > > Join us next month athttp://OpenCFSummit.orgto learn more! > > On Jan 13, 5:19 pm, Alex Skinner wrote: > > > > > > > > &g

[appengine-java] Java app-engine bug is bad news for upcoming http://opencfsummit.org/

2012-01-13 Thread Alex Skinner
has been restored. Alex -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/H9748NDKdqMJ. To post to this group, send email

[appengine-java] Error 500 when viewing php pages

2011-09-26 Thread Alex
Hi, I'm trying to run a script on App Engine and I have deployed it succesfully but when I try to view any php page I get a 500 Sever Error. Could anyone help me with this? Thanks. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group.

[appengine-java] JDO advise

2011-09-19 Thread Alex
Hi all, I'm using JDO for storage in GAE and would like some advice as I'm having trouble modelling my persistence objects. I have 2 classes, User and Event. A User owns an Event and can participate in others Events. My classes look roughly like this. @PersistenceCapable(detachable = "true") p

[appengine-java] Using JDO updating entity groups advice

2011-09-19 Thread Alex
Hi all, I’m trying to model my domain to use GAE JDO. I have User and Event classes (see below). An Event is owned by a User and a User can participate in their and others Events. My issue is that I’m having trouble persisting the participate in another User’s Event. I keep getting: java.la

[appengine-java] Re: Re : Importing Google Hosted Projects

2011-09-07 Thread Alex
The code on Google Hostings is open source code so everybody has access to it. I could check out the code using a command line. I know that there are also plugins for Eclipse to checkout the code using a GUI. The GUI of the Google for Eclipse plugin lacks an option to checkout projects of which I'

[appengine-java] Importing Google Hosted Projects

2011-09-07 Thread Alex
ber within Eclipse? Alex PS: I know that than I'm not able to commit changes, but that fine. -- 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 google-appengine-java@googlegroups

[appengine-java] Re: Consistent timeout when fetching from an unverified source via HTTPS

2011-04-05 Thread Alex Langhart
Some examples to illustrate the bug... This snippet from a servlet's doGet() method displays the returned headers for a redirect as expected. This happens on BOTH the dev server and the production server because it's responding with a redirect to use HTTPS: public void doGet(HttpServletRequ

[appengine-java] Consistent timeout when fetching from an unverified source via HTTPS

2011-04-04 Thread Alex Langhart
I'm having some serious problems with UrlFetch. My app needs to pull some pages from another site via HTTPS, but to GAE the certificate is invalid (I believe because GAE is missing the intermediate CA). I really don't mind if the certificate is valid or not, I just need my app to retrieve the page.

[appengine-java] Re: 1.4 eclipse plugin

2010-12-03 Thread Alex Humesky
GPE's AppEngine SDK bundle version 1.4.0 is now up. Sorry for the delay. On Dec 3, 11:02 am, Don Schwarz wrote: > My apologies.  We plan to have it up before the end of the day today. > > > > > > > > On Fri, Dec 3, 2010 at 9:26 AM, Royce Fullerton wrote: > > When will the Eclipse plugin update

[appengine-java] GAE JDO BLOB persistence problem

2010-11-22 Thread Alex AX
not persisted, all other fields are persisted alright! Hope you can help me, Alex -- 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 google-appengine-j...@googlegroups.com. To unsubs

[appengine-java] OpenID: passing a username question

2010-11-05 Thread Alex
x27;t have a username in its URL. Alex -- 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 google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to google

[appengine-java] OpenID: What's the use of the createLoginURL attributesRequest parameter

2010-11-05 Thread Alex
; Until now I didn't require to fill this attribute to use OpenID with parties like Google, Yahoo etc. But I was wondering what kind of requests I might encounter / use here. Are there any (Java) examples where this parameter is used? And what does IDP mean? Alex -- You received this mess

[appengine-java] Re: CPU bandwidth cost $$ too expensive?

2010-08-31 Thread Alex Bertram
Are you reading the $$ from the X-AppEngine-Estimated-CPM-US-Dollars headers? Note that those are per 1000 requests, not for the single request On Aug 27, 9:31 pm, akirekadu wrote: > I wanted to benchmark GAE read performance. Around 10,000 entities are > being fetched from data store. These

[appengine-java] Re: Problems with OAuth

2010-08-13 Thread Alex Bertram
Resolved! The final gotcha was that the authorization token returned by AppEngine includes a '/' while the client library assumes that this token will be alphanumeric. http://code.google.com/p/oauth/issues/detail?id=182 Best, Alex On Aug 12, 12:04 am, "Ikai L (Google)"

[appengine-java] Problems with OAuth

2010-08-11 Thread Alex Bertram
Hi, I'm trying to use the OAuth service but am running up against a brick wall. The client is a desktop application and I'm using the .NET code found here http://oauth.googlecode.com/svn/code/csharp/OAuthBase.cs I've only been able to get 400 Bad Request responses from my app, and the requests to

[appengine-java] Change authentication from Google Apps

2010-08-09 Thread Alex Bertram
other options? Thanks, Alex -- 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 google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to google-appengin

[appengine-java] Re: String.Matches(regex) dont work in GAE

2010-07-24 Thread Alex
nvm, the text that i get from the client might be unicode. On Jul 24, 8:58 pm, Alex wrote: > my code >                 String text="[reset]"; >                 String regex="\\[reset\\]"; >                 boolean result=text.matches(regex); > > when

[appengine-java] String.Matches(regex) dont work in GAE

2010-07-24 Thread Alex
my code String text="[reset]"; String regex="\\[reset\\]"; boolean result=text.matches(regex); when i test it in java main, it return true however, when i delpoy it to app engine, String.matches(regex) return false doesn't GAE support the String cla

[appengine-java] Re: ClassNotFoundException after i deploy it for the first time

2010-07-16 Thread Alex
gt; in the right package? > > R > > 2010/7/16 Alex > > > > > but all my jar file are already in there. > > and when i change my package name from xwordbot to bot and update my > > web.xml to > > >         > >    

[appengine-java] Re: ClassNotFoundException after i deploy it for the first time

2010-07-16 Thread Alex
and also the 500 internal server error that i was getting previously why can't my package name be the same as my project name? On Jul 16, 1:38 am, Ronmell Fuentes wrote: > hi Alex. > > it's a very common error when the .jar files used by your app are not in > copied in t

[appengine-java] ClassNotFoundException after i deploy it for the first time

2010-07-15 Thread Alex
im getting ClassNotFoundException java.lang.ClassNotFoundException: xwordbot.XWordBotServlet i have checked that XWordBotServlet class is in the package xwordbot this is fragment of my web.xml XWordBot xwordbot.XWordBotServlet

[appengine-java] Re: Geospatial data management with GAE Java

2010-04-10 Thread Alex
Please check on http://code.google.com/p/javageomodel/ On Mar 18, 1:35 am, Rahul Ravikumar wrote: > There is a java port of the Geomodel project in java which you can try > out. > > On Mar 17, 1:39 am, fvisticot wrote: > > > I know that Geomodel is a solution for python users to manage > > geosp

[appengine-java] Re: Is there an equivalent of Python GeoModel project in Java?

2010-04-10 Thread Alex
ently updated the library (and added the proximity fetch search). Please post an issue if something does not look ok. ++ Alex On Mar 1, 8:09 pm, Torquester wrote: > I tried out the Java Geomodelhttp://code.google.com/p/javageomodel/ > > The query used in the example provided on the proje

[appengine-java] Re: Is there an equivalent of Python GeoModel project in Java?

2010-04-10 Thread Alex
ently updated the library (and added the proximity fetch search). Please post an issue if something does not look ok. ++ Alex On Mar 1, 8:09 pm, Torquester wrote: > I tried out the Java Geomodelhttp://code.google.com/p/javageomodel/ > > The query used in the example provided on the proje

[appengine-java] Re: App Engine and Spring slow start up

2010-02-18 Thread Alex
Hi, It appeared that long init problem is well known for Grails users: http://jira.codehaus.org/browse/GRAILSPLUGINS-1736 I wasted couple of weeks to create app I cannot run. Hope that SpringSource and Google can solve the issue. On Feb 17, 7:41 pm, Stephan Hartmann wrote: > The problem is that

[appengine-java] Re: Generic type in GAE JDO. Howto?

2010-02-11 Thread Alex Lui
; Why not create an entity and persist the Map as a field on the entity? > > > > > > On Sun, Feb 7, 2010 at 10:57 PM, Alex Lui wrote: > > As java.util.Map isn't supported by GAE, I'm trying to create a class > > > @PersistenceCapable(identityType = IdentityTyp

[appengine-java] Generic type in GAE JDO. Howto?

2010-02-08 Thread Alex Lui
As java.util.Map isn't supported by GAE, I'm trying to create a class @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true") public class DAOMap implements Map { ... however, got such exception in Eclipse console DataNucleus Enhancer (version 1.1.4) : Enhancement of clas

[appengine-java] Re: Log4j in production GAE

2010-02-03 Thread Alex
g4J messages in production logs. I removed all references to JUL from my project (deleted logging.properties and comment it out in appengine-web.xml file. Now I can see Log4J output, but can't control the verbosity level. So, JUL seems to be definitely preferable choice for GAE. Best regards, Alex

[appengine-java] Re: Datastore migration

2010-02-03 Thread Alex
currently looking for a reliable way for datastore backup. Haven't found anything really besides mimicking java classes in Python and use Python-based backup utilities. So, if you find something more convenient, please post it here. Regards, Alex On Feb 2, 1:22 pm, Moritz wrote: &

[appengine-java] Log4j in production GAE

2010-02-01 Thread Alex
test application and Lo4j is working fine in development environment. But it doesn't (just does nothing) when I deploy my test application into live GAE server. Thanks in advance for any info, Alex -- You received this message because you are subscribed to the Google Groups "Google App