Re: [google-appengine] Re: Splitting Client and Server side in 2 AppEngines to keep server side code confidential

2012-12-05 Thread yuvi
hi Ben, In general it is possible to make Ajax call from a client on abc.com to service at xyz.com That is done normally by jsonp calls to solve the same-origin browser issue. Using GWT might complicate things. if you have used gwt-rpc then you are facing a problem. to the best of my

[appengine-java] Re: Sometimes arraylist stored in Datastore are not correctly retrieved

2011-06-09 Thread yuvi
Hi, My declarations are a bit different but I have seen this happening GAE not loading the subitems by default in some cases, then if you close the PersistenceManager, subitems List is null. I have solved it by looping all items and subitems before closing the PersistenceManager On

[appengine-java] Re: common reasons for compile jsp error

2011-06-08 Thread yuvi
Hi, what is the error ? Do you use static include in your jsp ? On Jun 7, 1:16 pm, Shash Joshi sh...@perfode.com wrote: My app runs locally, but when I go to deploy to GAE I get an compile jsp error at line -1. I'm not doing anything fancy. Is there a do and don'ts for jsp in GAE which I can

[google-appengine] Re: Where (geographically) do App Engine apps run?

2011-05-26 Thread yuvi
Hi, Looking into GAE log gives your the time zone On May 25, 8:54 pm, Craig craigtlan...@gmail.com wrote: I understand that GAE apps are deployed across multiple data centers, but I would like a better idea of where those are for the purpose of latency expectations for non-US traffic.  

[appengine-java] Re: GAE - Java - JSON?

2011-05-23 Thread yuvi
Hi, Gson worked for me on Gadglet. see: dev.gadglet.com On May 20, 1:29 pm, Ikai Lan (Google) ika...@google.com wrote: +1 for GSON. Not sure how compatible it is with the default org.json stuff Android uses. I mean, JSON is JSON, but different libraries do different things escaping

[google-appengine] Gadglet v0.1 Alpha is out

2011-04-11 Thread yuvi
Hi, I have released Gadglet v0.1 Alpha. Gadglet is an Open-source platform for developing and running OpenSocial Gadgets (Not a container). Gadglet includes many solutions for Gadgets including both technical and application aspects. Technical: Client side: GWT base APIs. Client-server

[google-appengine] Re: Using eclipse to build google gadgets...

2011-03-23 Thread yuvi
Hi, I have been doing that for the last year and about to release a new open-source for that Gadglet The CLIENT side is done with GWT library from Google see http://code.google.com/p/gwt-google-apis/wiki/GadgetsGettingStarted

[google-appengine] App Engine datastore viewer

2011-03-14 Thread yuvi
Hi, I have a persistent class that all the content is saved while using namespace. The class doesn't show in the control panel of the datastore viewer select box of available types (By kind:) -- You received this message because you are subscribed to the Google Groups Google App Engine group.

[google-appengine] _ah_SESSION Entities

2011-03-14 Thread yuvi
Hi, On the control panel Datastore Viewer I see many _ah_SESSION Entities. Are these records ever deleted by app engine ? Datastore Statistics shows that _ah_SESSION Entities takes 96% of my app storage. -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: App Engine datastore viewer

2011-03-14 Thread yuvi
Hi, there is data, but with a namespace and only with namespace. On Mar 14, 4:57 pm, Gwyn Howell gwyn.how...@appogee.co.uk wrote: there needs to be data for the entity name to be listed in the drop down -- You received this message because you are subscribed to the Google Groups Google

[google-appengine] Joins can only be sorted by the join column in ascending order

2011-03-07 Thread yuvi
Hi, I'm using owned items and it all works fine now except sorting, Is this going to be enabled any time ? SELECT FROM com.gadglet.gadgets.personalNotes.server.PersonalNotesData WHERE sharedItemReff.contains(c) c.sharedWithId == ownerIdParam VARIABLES com.gadglet.data.SharedItemReff c

[google-appengine] java dev environment change jdoconfig.xml

2011-03-06 Thread yuvi
I have manually added to jdoconfig.xml the parameter property name=datanucleus.appengine.storageVersion value=WRITE_OWNED_CHILD_KEYS_TO_PARENTS/ Every now and again this parameter is removed by the SDK ... any idea ? -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: datastore

2011-02-13 Thread yuvi
Hi, What authentication method you are planing to use/build ? On Feb 13, 10:21 pm, Clinteney huicong0...@hotmail.com wrote: Hey, I am trying to create a datastore that stores the users information like after he logs in, there is a page that shows his name. So i need the datastore for that,

[google-appengine] Re: wild match in url-pattern

2011-01-28 Thread yuvi
Hi, There are only 2 * options /dirName/* or *.fileType you can see many examples for that. On Jan 28, 1:40 pm, Sandeep Arneja sandee...@gmail.com wrote: Hi I need help with this: /_ah/mail/* -- WORKS /_ah/mail/xyz* -- DOES NOT WORK Alhough google documentation on incomming mail has:

[google-appengine] Re: Google App Engine Buit-In OAuth failing when requesting for access token

2011-01-28 Thread yuvi
Hi, I'm using it from an Opensocial Gadget and it seems to work OK. The only thing I have notice is that even when I use my Google account control panel to Revoke access the token is still working. https://www.google.com/accounts/b/0/IssuedAuthSubTokens On Jan 28, 6:40 pm, Takashi SASAKI

[google-appengine] Re: logging seems be disabled in my app

2011-01-05 Thread yuvi
Is that on development in eclipse or GAE ? -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Qauth vs OpenID

2010-12-29 Thread yuvi
Hi, I'm developing a Gadget to Java App Engine . In some cases I use GAE build-in OAuth: OAuthService oauth = OAuthServiceFactory.getOAuthService(); user = oauth.getCurrentUser(); In one case openid: UserService userService = UserServiceFactory.getUserService(); I have noticed in both cases