[appengine-java] Re: Mobile subdomain in app engine

2011-10-10 Thread Nischal
You don't really need to do anything different in order that a user who lands on m.mydomain.com sees a different page. Wherever you have your domain hosted, make m point to google's name server (I think some ghs.google.com) After that, go to your appengine admin and configure this as another

[appengine-java] Namespaces and filter instances

2011-10-10 Thread dimi
I'm kinda new to Java web development and I wonder if I'm implementing my application correctly. I'm building an application which should be accessible on 2 different paths: /app1/* /app2/* Both apps connect to the same Servlets because both apps have the same functionality. The only

[appengine-java] Re: Local datastore can't be browsed but has data

2011-10-10 Thread Mark Silberbauer
@gk. Yes, it was the app id after all. Here is a stackoverflow question and answer that covers this topic: http://stackoverflow.com/questions/5443855/how-can-i-change-my-app-id-in-gae-and-still-access-the-same-permanent-datastore -- You received this message because you are subscribed to the

[appengine-java] Re: Namespaces and filter instances

2011-10-10 Thread Simon Knott
Hi, Unfortunately setting the namespace in the init method won't work, as the setting of the Namespace is on a per-thread basis (see http://thoughts.inphina.com/2010/09/16/multi-tenancy-in-google-app-engine-scope-of-namespacemanager/ for more info on how it works under the hood). The better

[appengine-java] Re: Namespaces and filter instances

2011-10-10 Thread Simon Knott
And I've just re-read your post - apologies, as this was exactly what you were suggesting and it will work fine! -- 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: Namespaces and filter instances

2011-10-10 Thread Simon Knott
Re-reading your post, I've realised that this is almost what you were proposing anyway - the only difference is that you can't use the init method. You'll need to store the namespace passed into the init method and use it to call the NamespaceManager in the doFilter method. -- You received

[appengine-java] Re: Namespaces and filter instances

2011-10-10 Thread dimi
Thanks for the article and your feedback. Looks like I do need to move some code to the doFilter-method. Thanks for your fast response Simon! -- 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

Re: [appengine-java] Re: 404 for app thats deployed successfully.

2011-10-10 Thread Manilal K M
On 7 October 2011 16:33, Manilal K M libreg...@gmail.com wrote: I forgot to add all the configuration files in my earlier email: WEB-INF/web.xml: http://pastie.org/2654599 WEB-INF/spring/application-config.xml http://pastie.org/2654607 WEB-INF/spring/servlet-config.xml

[appengine-java] Re: Help with sharded counters and loading results.

2011-10-10 Thread Mat Jaggard
This is really similar to the thread entitled GAE - Vote counting system - have a look and see if it fits with your use case. http://groups.google.com/group/google-appengine-java/browse_thread/thread/4812840ad76c73b On Oct 5, 6:53 pm, dnkoutso dnkou...@gmail.com wrote: I have an Android client

[appengine-java] Using the AsyncDatastoreService what happens to the DatastoreUnavailableException?

2011-10-10 Thread Mat Jaggard
Do we have to use the Cababilities API instead of getting this exception? Do we get a null result from the future.get(); in this case? Is that the same as the entity not being present? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group.

[appengine-java] Help! I'm getting an over quota error

2011-10-10 Thread Jason Cahill
My Java Backend is throwing: The API call taskqueue.QueryAndOwnTasks() required more quota than is available. I've gone and looked and I'm not over on any quota. I have plenty of budget left both in $$$ and in API calls. My service is down because of this. What can I do? This service have

[appengine-java] ***MODERATOR*** Please delete my previous message, I posted it to the wrong group.

2011-10-10 Thread Mat Jaggard
***MODERATOR*** Please delete my previous message, I posted it to the wrong group. -- 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

[appengine-java] Re: Namespace not being set from google apps

2011-10-10 Thread Kristof Boden
Hi, I'm currently experiencing the same problem. GetGoogleAppsNamespace() returns when the application is invoked from the Universal Navigation menu in Google Apps. How is the user_organization value working for you? I can't seem to find this value in the UserService class. -- You received

[appengine-java] Re: Moderation enabled

2011-10-10 Thread Larry McList
i ijust saw this postsorry, i just double posted a post i did last nightplease ignore one of them -- 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: Prerelease SDK 1.5.5 available for download!

2011-10-10 Thread Damian del Rivero Lagunes
found it... it's inside google.appengine.api.files , the module is called gs.py -- 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] error on upload war in GAP

2011-10-10 Thread Brito
I got the error upload file on gap. I used google app engine sdk for upload war. I got the error enable jar spliting. My project size is above 50 MB. Thanks advance. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this

[appengine-java] java.lang.IllegalStateException: Found a jar file too large to upload: C:\DOCUM E~1\USER~1.SER\LOCALS~1\Temp\appcfg58666690729387545.tmp\WEB-INF\lib\gwt-user.ja r. Consider using -

2011-10-10 Thread Brito
Upload my project into GAP. I got the error on command prompt. java.lang.IllegalStateException: Found a jar file too large to upload: C:\DOCUM E~1\USER~1.SER\LOCALS~1\Temp \appcfg5890729387545.tmp\WEB-INF\lib\gwt-user.ja r. Consider using --enable_jar_splitting. -- You received this

[appengine-java] Increase Incoming Mail Size

2011-10-10 Thread Larry McList
Is there a way to increase the incoming mail size to over 10MB?? Ive a bunch of business customers using my app that need to send emails upto 30MB in size. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on

[appengine-java] Increase Incoming Mail Size Quota

2011-10-10 Thread Larry McList
is this possible? Ive a couple of customers who regularly send 10MB attachments. -- 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: Prerelease SDK 1.5.5 available for download!

2011-10-10 Thread Mathieu Clavel
Hi, For Java, We have increased the URLFetch maximum deadline from 10 seconds to 60 seconds. Will the new limit be usable from previous sdk version on appengine, or must there be a version migration ? Regards, Mathieu CLAVEL -- You received this message because you are subscribed to the

[appengine-java] HTTPS request with client auth = true i.e sending client certificate to server.

2011-10-10 Thread Navin Kaushik
Hi All, I am developing my app on google app engine, it needs to send a request on https to external web services which requires client certificate. In another words, I need to send client certificate using URL Fetch Java APIs. Does anybody knows how to achieve this ? -Thanks, Navin -- You

Re: [appengine-java] Re: Mobile subdomain in app engine

2011-10-10 Thread Matthew Jaggard
Hi Nischal, I'm afraid that this won't do what the user wanted - I'm sure he'd need access to the same datastore and memcache. Mat. On 10 October 2011 15:02, Nischal nischalshett...@gmail.com wrote: You don't really need to do anything different in order that a user who lands on

[appengine-java] Re: Automatically increment version number

2011-10-10 Thread Matthew Blain
Or you could simply use the -V flag in appcfg. (Recently added to Java.) On Oct 4, 10:31 am, Ronoaldo José de Lana Pereira rpere...@beneficiofacil.com.br wrote: Since you are using a shell script, you may want to try something smaller that don't require you to add Ant to your deploy proccess

[appengine-java] Unable to upload my application in GAP

2011-10-10 Thread Brito
Upload application to Google App engine. I used google app engine sdk. I got the error in command prompt enable jar spliting. My Application size is above 35Mb. I don't know how to solve the problem. Thanks advance. -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: Prerelease SDK 1.5.5 available for download!

2011-10-10 Thread Damian del Rivero Lagunes
We have released an experimental API that can write to Google Storage for Developers directly from App Engine. Where can I find this Google Storage experimental API inside this 1.5.5 release ? -- You received this message because you are subscribed to the Google Groups Google App Engine

[appengine-java] (Error code 203)

2011-10-10 Thread Andremoniy
I have a strange behaviour of my servlet. It throws error with following text: The process handling this request unexpectedly died. This is likely to cause a new process to be used for the next request to your application. What does it mean? -- You received this message because you are

[appengine-java] Calling external link on https from google app engine application which requires client authentication

2011-10-10 Thread Navin Kaushik
Hi, I am creating an application with Google app engine, my application calls external application on https which requires client authentication so I need to pass my certificate to external application. Is it supported in URL Fetch Java API where we can specify client certificate as well ?

[appengine-java] com.google.appengine.api.datastore.DatastoreFailureException: internal error.

2011-10-10 Thread Andremoniy
Sorry. What does it mean: internal error when trying to get data from Datastore? Uncaught exception from servlet javax.jdo.JDODataStoreException: Datastore Failure at org.datanucleus.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java: 304) at

Re: [appengine-java] Re: Mobile subdomain in app engine

2011-10-10 Thread Nischal
The datastore remains the same. It's the same app. The sub domain needs to be mapped to the same app, not a different one. -- 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

Re: [appengine-java] Re: Mobile subdomain in app engine

2011-10-10 Thread Nischal
I'm talking about this - http://code.google.com/appengine/docs/domain.html See the part 'More About Wildcard Subdomain Mapping' -- 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] Fwd: One-To-Many RElations Serialization

2011-10-10 Thread Bruno Sandivilli
-- Forwarded message -- From: Bruno Sandivilli bruno.sandivi...@gmail.com Date: 2011/10/10 Subject: Re: One-To-Many RElations Serialization To: google-web-tool...@googlegroups.com Thanks for the help from you guys! But, yes im using IsSEriazeble. I've changed my code to

[appengine-java] Re: Namespace not being set from google apps

2011-10-10 Thread Satish
It's working great so far. It has allowed me to put the core issue on hold and move on to other items. I will come back to it later and investigate it with a fresh frame of mind. Here is the code i am using under case GOOGLE_APPS_DOMAIN: if (NamespaceManager.getGoogleAppsNamespace().equals())

Re: [appengine-java] Re: 404 for app thats deployed successfully.

2011-10-10 Thread Manilal K M
On 10 October 2011 21:27, Manilal K M libreg...@gmail.com wrote: On 7 October 2011 16:33, Manilal K M libreg...@gmail.com wrote: I forgot to add all the configuration files in my earlier email: WEB-INF/web.xml: http://pastie.org/2654599 WEB-INF/spring/application-config.xml