[appengine-java] Re: Channel API still not live...

2010-09-19 Thread Heiko Roth
Hello there, We need channel api, too. Can we use it? Greetings, Heiko. -- 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,

Re: [appengine-java] parameter values in taskqueue that contain '&' gets cut

2010-09-19 Thread Fabrizio Accatino
- how have you url-encoded the parameters? Can you share the code? - have you tried Method.POST instead of GET? fabrizio On Mon, Sep 20, 2010 at 7:45 AM, mar_novice wrote: > When using task queue and the parameters contain an ampersand, it gets > cut off when you try to its value. > > examp

[appengine-java] parameter values in taskqueue that contain '&' gets cut

2010-09-19 Thread mar_novice
When using task queue and the parameters contain an ampersand, it gets cut off when you try to its value. example: Queue queue = QueueFactory.getDefaultQueue(); queue.add( url("/mailer") .param("msg","you & me") .method(Method.GET) ); and in maile

Re: [appengine-java] Using the Python bulk exporter tool with a Java application

2010-09-19 Thread Arun Ramanujapuram
Seems like the account credentials you are using to login may not have admin privileges (i.e. should be a valid user/developer account in your app.), or there is some other authentication mechanism (e.g. spring security) that is invalidating the login. Arun

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

2010-09-19 Thread lisandrodc
Hi, Cyrille but I have at the link for inheritance: http://code.google.com/intl/en/appengine/docs/java/datastore/relationships.html#Polymorphic_Relationships And I respect this. But I don“t understand since It me does not work in the mistake that I present in the first post, when instance the field

Re: [appengine-java] Using the Python bulk exporter tool with a Java application

2010-09-19 Thread John Patterson
If you feel more comfortable working with Java, I use this code to bulk load and backup data: http://code.google.com/p/remote-datastore/ It intercepts the raw bytes sent to the local datastore and sends them to another remote datastore. Because it operates at this very low level it is ver

Re: [appengine-java] Re: A question about queries and composite indices

2010-09-19 Thread John Patterson
On 16 Sep 2010, at 21:18, Ikai Lan (Google) wrote: The way an AND query works is by making multiple queries and merging the results by zig-zagging between them. A solution to your problem may be simply to whittle down the result set to as small as you can reasonably get it, then traverse t

[appengine-java] Re: Use BlobstoreService and ImageService to upload/serve images drawn from an HTML5 canvas Paintweb JS Library

2010-09-19 Thread Doug Daniels
Is it possible or even a good idea to use the Appengine URL Fetch service and forward the image blob upload to the Blobstorage "createUploadURL()" from the server side. http://code.google.com/appengine/docs/java/urlfetch/usingjavanet.html It seems like it could be possible, but not sure it would

[appengine-java] Use BlobstoreService and ImageService to upload/serve images drawn from an HTML5 canvas Paintweb JS Library

2010-09-19 Thread Doug Daniels
I'm working on an Appengine application in Java that allows users to upload images drawn through an HTML5 canvas library called PaintWeb (http://code.google.com/p/paintweb/). Currently I have a servlet that receives the XMLHttpRequest POST from the paintweb javascript library as a formencoded imag

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

2010-09-19 Thread Cyrille Vincey
Be aware that inheritance is not supported by GAE yet. The problem might come from this issue. See : http://code.google.com/intl/fr-FR/appengine/docs/java/datastore/dataclasses. html cyrille On 19/09/10 18:55, "lisandrodc" wrote: > Thanks dushyant , but the exception is of an error of JDO,data

[appengine-java] How to do Mocking on GAE development server ?

2010-09-19 Thread Maxim Veksler
Hello, I've tried to do this: package com.FOO.madservice.servlet.mock; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import static org.mockito.Mockito.*; @SuppressWarnings("serial") public class BAR2ServletMock extends HttpServlet { ... protected

[appengine-java] preferred method of deleting child objects (quota/fees)

2010-09-19 Thread haole
say i have a persistent parent class, Employee, with a collection of child objects, PhoneNumber: @PersistenceCapable(identityType = IdentityType.APPLICATION) class Employee implements Serializable { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) Long

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

2010-09-19 Thread lisandrodc
Thanks dushyant , but the exception is of an error of JDO,datanucleus (seemingly). That it has to see with the keys it seems to me, is not the problem that I from my code can use "Long.parseLong(String) to parse". This is something internal that that should do datanucleus. Regards. Lisandro On 19

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

2010-09-19 Thread dushyant bing
java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.String use Long.parseLong(String) to parse Sent from my iPad On Sep 19, 2010, at 7:52 PM, lisandrodc wrote: Hi! I have a problem with persist a child class. The classes are: The parent class: @PersistenceCapable @Inhe

[appengine-java] How to query against system-assigned numeric ID?

2010-09-19 Thread Jason
Hi, The records in tabel (TabelA) in datastore are something like: - Key ID/ Name TestField agdmc2F5aW5ncgsLEgVRdW90ZRgBDA1 test1 agdmc2F5aW5ncgsL

[appengine-java] logging gwt ,gae

2010-09-19 Thread wingdings
how do I log events in google app engine , -- 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

[appengine-java] Problem w/ loading Jena model from URL

2010-09-19 Thread Miko
Hi everyone, I'm working on an app engine application that is integrated with the Jena Semantic Web framework. I'm aware about the compatibility issues associated with Jena, so I did all the necessary fixes described in this group so it would properly work on the app engine. My setup works fine o

[appengine-java] Re: Deploy Hangs

2010-09-19 Thread gaeuser
Thank you for responding. My application did indeed get updated successfully after I waited longer. When I posted my original message it would take over 5-7 minutes. A few hours later it magically speeded up to about 1 minute or less. (no material changes on my side). Sending you application id as

[appengine-java] Re: Deploy Hangs

2010-09-19 Thread gaeuser
(I thought I replied to this but it doesn't show up) After I posted the original report the app did update. Over the next couple of hours it would consistently take about 4-8 minutes to update. However, later in the day, without anything significant on my side, the updates became much faster -- ab

[appengine-java] logging gwt ,gae

2010-09-19 Thread wingdings
how do I log events in google app engine , -- 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

[appengine-java] CXF JAX-RS client Connection.getSSLSocketFactory Not Found

2010-09-19 Thread Gary Rudolph
I'm trying to get a CXF JAX-RS client proxy working to talk to an external service. I have a spring config like: https://api.twilio.com/ 2008-08-01.*"> I'm basically creating the jaxrs proxy and applying a conduit to ensure it's using the default ssl socket factory. I'm running into an

[appengine-java] Problem with persist a child class

2010-09-19 Thread lisandrodc
Hi! I have a problem with persist a child class. The classes are: The parent class: @PersistenceCapable @Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE) public abstract class Fecha { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) pri

[appengine-java] Channel API still not live...

2010-09-19 Thread Daniel Guermeur
Hello there, Google announced Channel API for 1.3.6 but it is still not live in 1.3.7. It runs in dev mode but when deployed I get a 'feature not implemented' exception. Does anyone has any updated on this? Google team? Thank you. Daniel -- You received this message because you are subscribed

[appengine-java] Re: SimpleDS 1.0 is out

2010-09-19 Thread George Moschovitis
great work! -g. -- 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...@googlegr