[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 Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/dgQ6mFkWH0wJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/NivXiDrqW7QJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 documents just fine, so I'm wondering which version is 
used on GAE?
Or is there another way to get more debug info?

Thanks,
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 
https://groups.google.com/d/msg/google-appengine-java/-/IP7Osc0iYK0J.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 
https://groups.google.com/d/msg/google-appengine-java/-/QK_bZ9C6r6QJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 I had to delete the iframe manually, but 
this did not help either.
Any ideas?
Anybody managed to properly reconnect after timeout using GWT?

Thanks,
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 
https://groups.google.com/d/msg/google-appengine-java/-/CQxdbpTJw5wJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 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/-/sg_sPX024w8J.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 
https://groups.google.com/d/msg/google-appengine-java/-/n8TtHEgI6FUJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 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/-/cI_21ja-m10J.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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.

 http://code.google.com/p/googleappengine/source/browse/#svn%2Ftrunk%2...

 Are there any other examples?

 Can google upload the code of oauthexample.

 -Wendel

-- 
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 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 jcreator.xi...@gmail.com wrote:







  Hello,

  I'm trying to find any example for the OAuth API.

  The trunk forhttp://oauthexample.appspot.com/Welcomeseemsto be empty.

 http://code.google.com/p/googleappengine/source/browse/#svn%2Ftrunk%2...

  Are there any other examples?

  Can google upload the code of oauthexample.

  -Wendel

-- 
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 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 
com.google.appengine.api.datastore.DatastoreApiHelper$1.convertException(DatastoreApiHelper.java:98)
at 
com.google.appengine.api.utils.FutureWrapper.get(FutureWrapper.java:69)
at 
com.google.appengine.api.datastore.FutureHelper$CumulativeAggregateFuture.get(FutureHelper.java:144)
at 
com.google.appengine.api.datastore.FutureHelper.getInternal(FutureHelper.java:72)
at 
com.google.appengine.api.datastore.FutureHelper.quietGet(FutureHelper.java:33)
at 
com.google.appengine.api.datastore.DatastoreServiceImpl$1.runInternal(DatastoreServiceImpl.java:78)
at 
com.google.appengine.api.datastore.DatastoreServiceImpl$1.runInternal(DatastoreServiceImpl.java:75)
at 
com.google.appengine.api.datastore.TransactionRunner.runInTransaction(TransactionRunner.java:31)
at 
com.google.appengine.api.datastore.DatastoreServiceImpl.get(DatastoreServiceImpl.java:75)
at 
com.google.appengine.api.datastore.DatastoreServiceImpl.get(DatastoreServiceImpl.java:62)
at com.floreysoft.ucm.server.DB.getContactMaster(DB.java:305)


-- 
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/-/oJsta5hCQYUJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



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 google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 called. (I can call it from the browser though, so it seems 
to be mapped correctly).

Do I have to enable some option on the devserver so that the success path 
servlet will be called once the upload is complete?

Thanks for any hints,

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 from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 
that I may need to turn on some flags to call my success path after upload?

Is there a way to turn on debug logging for the core services?

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 from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 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 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[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 pleased to announce the support for
 Cassandra and mongoDB cloud database platforms in addition to Google
 Bigtable platform which it already supports. With this new release you will
 be able to transparently choose between Google Bigtable, Cassandra and
 MongoDB as your cloud database platform.

 Please download the Cloud2db software from the following link.

 Download http://cloud2db-server.appspot.com/website/download.html(Google
 Bigtable, Cassandra, MongoDB)

 Cloud2db provides a standards-based abstraction layer over cloud databases.
 This product provides you with performance and scalability of cloud platform
 along with structure, standards and interoperability of RDBMS, SQL and JDBC.

 With Cloud2db, you will be able to manage your data on cloud platforms by
 using established concepts of RDBMS, SQL and JDBC, and thereby preserving
 your existing investments in tools, technologies, frameworks and skills.

 Here are Cloud2db features:

    - Manage data on Google Bigtable, Cassandra and MongoDB using familiar
    concepts of RDBMD, SQL
       - Referential integrity (Primary Keys, Foreign Keys)
       - Role Based Security
       - Joins (Inner Join, Left Outer Join, Theta Join, Cross Join)
       - Subqueries (Exists, Not Exists, In)
       - DDL  DML
       - Transactions (for the datastores supporting transactions)
       - ANSI SQL stored functions
       - Views
       - BLOB and CLOB support (for the datastores supporting BLOBs)

    - Use any JDBC compliant tools and frameworks in the market to interact
    with the Google Datastore. For example.
       - Squirrel SQL (database management)
       - Power Architect (data modeling)
       - Jasper Reports (reporting)
       - Hibernate (Object To Relational mapping)
       - All JDBC compliant tools

    - Port exiting RDBMS instances to cloud databases

 Please visit our websitehttp://www.cloud2db.comand try out the free trial
 version. Please visit google group
 Cloud2dbhttp://groups.google.com/group/cloud2db to
 share your feedback and thoughts.

 Sincerely,

 Sandeep Sathaye
 Founder and Chief Architect
 Cloud2db

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.