[appengine-java] Re: Cloud2db for Cassandra and MongoDb

2010-12-28 Thread Daniel Florey
Hi, this sounds very interesting. Will the data stored in the db be human-readable in the datastore with datastore viewer or will it just store a bunch of blobs? Daniel On Dec 28, 9:03 pm, Sandeep Sathaye sandeep.sath...@gmail.com wrote: Hi Everyone, Cloud2db http://www.cloud2db.com/ is

[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-17 Thread Daniel Florey
You can check out http://code.google.com/p/jmte/ -- 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.com. To unsubscribe from this group, send email to

[appengine-java] Deploy credentials with 3.6 beta plugin

2011-04-14 Thread Daniel Florey
Since upgrading to the 3.6 beta plugin I am unable to deploy apps with ant. It will always complain that my credentials have expired, so I can only upload from the IDE. This is annoying since it will always trigger full gwt compile... Any ideas? Daniel -- You received this message because you

[appengine-java] Upload blob never calls success path

2011-05-23 Thread Daniel Florey
I guess I'm just dumb, but please help me anyway ;-) I've just tried to upload a blob into the blobstore. When I upload the blobs I can see an entry for each upload in the __BlobUploadSession__ table. I also can see in there that the success path is properly set, but my mapped servlet is never

[appengine-java] Re: Upload blob never calls success path

2011-05-23 Thread Daniel Florey
Hi, thanks a lot for the info. I did not even upload to App Engine, just using the development server. So I guess there is just the default version? My servlet is never called, so I cannot even send a redirect yet. I just end up with an entry in the __BlobUploadSession__ table and I assume

[appengine-java] Re: Upload blob never calls success path

2011-05-24 Thread Daniel Florey
As I expected in the first place I'm just dumb. After running into a lot of issues (OutOfMemory and alike) I found out that I just forgot to attach the form to the site properly ;-) -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group.

[appengine-java] List of supported content types in BlobStore?

2011-05-24 Thread Daniel Florey
Hi, is there a list of content types that BlobStore is be able to detect? Thanks, Daniel -- 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.com. To unsubscribe

Aw: Re: [appengine-java] javax.mail.SendFailedException: Send failure:Unauthorized Sender: Unauthorized sender

2011-08-12 Thread Daniel Florey
Same problem here. -- 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/-/V5KAFTzYUUsJ. To post to this group, send email to

[appengine-java] Strange datastore exception

2011-09-05 Thread Daniel Florey
Anybody seen this exception before? Thanks for your help, Daniel Caused by: java.lang.IllegalArgumentException: app s~floreysoftucm cannot access app floreysoftucm's data at com.google.appengine.api.datastore.DatastoreApiHelper.translateError(DatastoreApiHelper.java:36) at

[appengine-java] Re: Java OAuth API, example

2011-09-11 Thread Daniel Florey
As it is not related to GAE you should check the GData docs. You'll find all the good stuff there. On Sep 11, 1:56 pm, de Witte jcreator.xi...@gmail.com wrote: Hello, I'm trying to find any example for the OAuth API. The trunk forhttp://oauthexample.appspot.com/Welcomeseems to be empty.

[appengine-java] Re: Java OAuth API, example

2011-09-11 Thread Daniel Florey
...or are you interested in implementing an OAuth provider? Then of course it is a different story. On Sep 11, 11:12 pm, Daniel Florey daniel.flo...@gmail.com wrote: As it is not related to GAE you should check the GData docs. You'll find all the good stuff there. On Sep 11, 1:56 pm, de Witte

[appengine-java] Re: SocketTimeoutException when doing URLFetch between 2 apps

2011-09-16 Thread Daniel Florey
Any ideas anyone? -- 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/-/oS6fYc8lgcsJ. To post to this group, send email to

[appengine-java] Re: Writing to google spreadsheet from GAE

2011-09-19 Thread Daniel Florey
I've been able to access spreadsheets from GAE without problems. The only problem is the limited upload size for URLFetch that makes it impossible to upload large pre-populated sheets. Other than that it worked without problmes... -- You received this message because you are subscribed to the

[appengine-java] Parsing XML on GAE/Java

2011-10-05 Thread Daniel Florey
Hi, just wanted to share my experience with parsing XML on App Engine/Java: http://www.floreysoft.net/en/blog.html Cheers, Daniel -- 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

[appengine-java] Channel API reconnect after token timeout

2011-11-14 Thread Daniel Florey
Hi, I'm not able to re-open a channel after the token expired. I'm using GWT on the client side. I am creating a new channel after the onError() method is called when the token expires. Everything looks ok but I do not get any events after reopening the channel. I've read in another thread that

[appengine-java] Re: Channel API reconnect after token timeout

2011-11-14 Thread Daniel Florey
...finally figured out how to properly remove the iframe from a GWT app: public static native void removeChannelApi() /*-{ var child = $wnd.parent.document.getElementById(wcs-iframe); if ( child != null ) { child.parentNode.removeChild(child); } }-*/; -- You received this message

[appengine-java] Conversion API: Best way to track down conversion issues?

2011-12-09 Thread Daniel Florey
Hi, I'm getting started with the new Conversion API. While it works like a charm for some documents (html-pdf) I end up with empty pdf's for others. The pdf's seem to be generated with Prince (princexml.com), so I've downloaded the latest release to track down the issue. Prince converts the

[appengine-java] Re: Conversion API: Best way to track down conversion issues?

2011-12-09 Thread Daniel Florey
Everything works fine now! I've been just messing up the pdf document by streaming it to the client with the wrong encoding... -- 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

[appengine-java] Re: Channel API reconnect after token timeout

2012-01-06 Thread Daniel Florey
I've received a reasonable workaround from Google Enterprise Support: You can use a timer on the client side to renew the token before it expires. This will work somehow... -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view

[appengine-java] Re: Request for best practice ideas for deployment of GWT JARs in AppEngine project

2012-02-12 Thread Daniel Florey
Hi, our approach is to split up gwt modules into xxx-user.jar and xxx-server.jar. You can then copy the xxx-server.jar (containing only server/shared code) to WEB-INF/lib. What 3rd party modules are you referring to? Daniel -- You received this message because you are subscribed to the Google