[appengine-java] Mail send from AppEngine application not received by any recipient from past few days

2012-02-20 Thread Gaurav Sharma
these two applications are facing this issue. I would appreciate if anyone can help or give any suggestion on this. Thanks, Gaurav Sharma -- 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] Java Application With MySql Database in App engine Datastore

2012-01-21 Thread gaurav
Hey I wanna to Know How can I Use Java Application with Mysql database in App Engine datastore ? Thnx in Advance .. :-) -- 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@go

[appengine-java] Unable to update app : failed in compling jsp

2011-07-28 Thread Gaurav
when i tired to deploy my application on GAE its shows me error failed to complie jsp pages .. what this error means i cann't understand when i am running locally its runs fine . its only happening when i am trying to deploy on GAE/j help me through this it is really getting me insane . i am using

[appengine-java] Deleting orphan blobs in blobstore

2011-03-18 Thread Gaurav
Hi, I deleted a large number of objects from the datastore that I din't required (around 7000 of them). Each of those objects had a blob associated with it, referenced by a String (blob key). As you might have guessed by now, I forgot to delete those blobs. Now I don't have any reference to them,

[appengine-java] Timeout while adding an auto increment column in task queue

2011-03-09 Thread Gaurav Sharma
Hi all I am using mysql instance of google app engine. I have to add an auto increment column to a table name actions. This table already contains around 2 lacs of records. When i alter this table i am getting following exceptions Exception :class java.sql.SQLException: Timed out. at com.google.a

[appengine-java] Appstat filter defined on /* url pattern not working with federated login

2010-11-12 Thread Gaurav Sharma
suggest as because of this I am confused how to use both openid filter & appstat filter simultaneously on /* pattern coz federated login is necessary for openid work. Any help or suggestion will be highly appreciated as even after a lot of googling I am not able to find the answer. Thanks, Gaura

[appengine-java] org.datanucleus.exceptions.ClassNotPersistableException

2010-08-31 Thread Gaurav Munjal
3:34 PM com.google.appengine.tools.development.LocalResourceFileServlet doGet WARNING: No file found for: /favicon.ico org.datanucleus.jdo.exceptions.ClassNotPersistenceCapableException: The class "The class "mpstme.projects.mgs.classes.Customer" is not persistable. This means that it either hasnt

[appengine-java] Struts 2 and Google App Engine

2010-06-09 Thread Gaurav Munjal
I clearly followed all the steps given on diff forums about Google App Engine and Struts 2 still I am getting this error when I am trying to run the application java.lang.NoClassDefFoundError: ognl/OgnlRuntime at com.login.OgnlListener.contextInitialized(OgnlListener.java:18) at org.m

[appengine-java] Getting an error while using Struts 2 with Google App Engine

2010-06-08 Thread Gaurav Munjal
com.google.apphosting.utils.jetty.JettyLogger Jun 8, 2010 10:31:06 AM com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml INFO: Successfully processed C:\Users\Gaurav Munjal\workspace\SampleStruts\war\WEB-INF/appengine-web.xml Jun 8, 2010 10:31:06 AM com.google.apphosting.utils.jetty.JettyLogger warn WARNING: fa

[appengine-java] Re: Delete all Datastore entries locally

2010-05-31 Thread Gaurav Munjal
Thanks a lot. On May 28, 4:57 pm, jnizet wrote: > http://code.google.com/intl/fr/appengine/docs/java/tools/devserver.ht... > > On 28 mai, 13:07, Gaurav Munjal wrote: > > > > > I have made some changes in the class file, whose objects were > > persisted... Now I nee

[appengine-java] Delete all Datastore entries locally

2010-05-28 Thread Gaurav Munjal
I have made some changes in the class file, whose objects were persisted... Now I need to empty the local datastore. Is there a way? -- 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-appeng

Re: [appengine-java] delete the entries in the datastore

2010-05-23 Thread Gaurav Munjal
ail 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. > -- Regards, Gaur

[appengine-java] problem with using session.getAttribute()

2009-11-04 Thread gaurav
in my application a servlet stores the user's details when she starts with the application as follows User user=new User(); HttpSession session=req.getSession(); user.setUser(userName); user.setRole("user"); session.setAttribute("user", user); RequestDispatcher rd=req.getRequestDispatcher("/HomeP

[appengine-java] Re: GAE Performance

2009-10-19 Thread Gaurav
GAE performs best for simultaneous read operations. So there could be virtually any no. of users reading at the same time, no issue. But when it comes to making updates performance degradation is significant. To get a better understanding of how gae performs under heavy load, I recommend this vide

[appengine-java] Re: cron job being executed even though it is not yet time

2009-10-19 Thread Gaurav
That is probably because you stay in a different timezone than the server's. On Oct 19, 8:43 am, victor wrote: > I have a cron job that has the following definition > --- > > Checks for Expired postings

[appengine-java] Re: Google Analytics tracking code on GAE

2009-10-19 Thread Gaurav
common... gae does not interfere with your jsp or servlet output. any javascript will work. i am using analytics code and a lot of other javascript. only explanation i can give is that you deployed to the wrong version, or something like that. On Oct 19, 9:56 am, Prashant wrote: > I am using GWT

[appengine-java] remote_api for java

2009-10-18 Thread Gaurav
I understand that the remote_api module is only available for python for now, but is it possible to use python's remote_api to manipulate datastore used by a java application? Since remote_api uses lowest level api and datastore is app independent this seems to be feasible. Has anyone tried this?

[appengine-java] Re: Page taking too long to process. Need advice.

2009-09-24 Thread Gaurav
why you're seeing these response times > > with the query. Are you doing anything else in your JSP besides displaying > > these names? > > > - Jason > > > On Sun, Sep 20, 2009 at 1:50 AM, Gaurav wrote: > > >> The JSP page I created is using

[appengine-java] Re: How to delete data?

2009-09-20 Thread Gaurav
I agree. I often find myself changing my Class structure just to be able to run efficiently on Datastore. It's not like that I mind optimizing my code. It's just that in the past in the past 3 days I have spent only 10% time in writing the program logic and 90% in wondering how to read and write e

[appengine-java] How to run Testcases for DataStore

2009-09-20 Thread Gaurav Garg
(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.google.appengine.tools.development.ApiProxyLocalImpl.makeSyncCall (ApiProxyLocalImpl.java:108) ... 22 more Kindly help. Regards, Gaurav

[appengine-java] Re: How to delete data?

2009-09-20 Thread Gaurav
Try this : Query query = pm.newQuery(YourThing.class); query.setRange(0,300); List< YourThing > results = (List< YourThing >) query.execute(); Iterator iter = results.iterator(); while(iter.hasNext()){ YourThing p = (YourThing)iter.next();

[appengine-java] Page taking too long to process. Need advice.

2009-09-20 Thread Gaurav
The JSP page I created is using too much of CPU and showing high latency. The page lists all the entities of type Person.class. (At present there are 43 entities in the datastore.) (Person is a root entity) Following is the method to return the list of all Person objects in the datastore :- pub

[appengine-java] Re: Problem with JDO - Attempt was made to manually set the id component of a Key primary key

2009-09-19 Thread Gaurav
Opps! got it. Key k = KeyFactory.createKey(Person.class.getSimpleName(), String.valueOf(fullName.hashCode())); instead of Key k = KeyFactory.createKey(Person.class.getSimpleName(), fullName.hashCode()); On Sep 19, 2:07 pm, Gaurav wrote: > I am facing the same Issue. > > Code:

[appengine-java] Re: Problem with JDO - Attempt was made to manually set the id component of a Key primary key

2009-09-19 Thread Gaurav
I am facing the same Issue. Code: p = new Person(fullName); Key k = KeyFactory.createKey(Person.class.getSimpleName(), fullName.hashCode()); p.setKey(k); Error: javax.jdo.JDOFatalUserException: Attempt was made to manually set the id component of a Key primary key. If you want to control the val