[appengine-java] Iframe does not allow thrid party cookies in IE7 and IE9

2011-05-23 Thread thangavel s
Hi buddies, I have to use google doc viewer in iframe,but here problem is IE7 and IE9 are don't allow third party cookies in iframe, because of default browser setting . i tried p3p like as follows response.addHeader("P3P","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OU

[appengine-java] appengine support display tag in struts framework

2010-09-10 Thread thangavel s
hi, can i know how to use display tag in struts framework. example:<%@ taglib prefix="display" uri="http://displaytag.sf.net"; %> -- 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-app

[appengine-java] pdf

2010-11-18 Thread thangavel s
hi, how to use OCR in pdf and way to convert pdf to image conversion.any viewer for pdf show in browser for rotate. -- 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...@googl

Re: [appengine-java] Unable to compare dates

2011-01-09 Thread thangavel s
Hi, try like below Map params = new HashMap(); params.put("firstdate", fromdate); params.put("enddate", todate); params.put("id", pocId ); Query q = pm1.newQuery(SupplierInvoice.class, " pocId ==id && startDate>=:firstdate && endDate<=:enddate"); On Tue, Dec 28, 2

Re: [appengine-java] Unable to compare dates

2011-01-09 Thread thangavel s
HI, try like below Map params = new HashMap(); params.put("firstdate", fromdate); params.put("enddate", todate); params.put("id", pocId ); Query q = pm1.newQuery(PocVacationSchedule.class, " pocId ==id && startDate>=:firstdate && endDate<=:enddate"); > > > > > > > > On Tue, Dec 28, 2010 at 10

[appengine-java] gvfs

2011-01-17 Thread thangavel s
Hi, explain GVFS with example .how to implement in application. -- 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 e

Re: [appengine-java] Filtering more than 3 parameters in JDOQL

2011-01-17 Thread thangavel s
There's another function executeWithMap on the query object that you can use. On Sat, Jan 15, 2011 at 9:44 PM, Stephen Johnson wrote: > There's another function executeWithArray on the query object that you can > use. > > Sent from my iPhone > > On Jan 15, 2011, at 5:08 AM, Vik wrote: > > Hie >

Re: [appengine-java] 500 Internal Server Error while uploading index definitions

2011-01-17 Thread thangavel s
try it another version On Sat, Jan 15, 2011 at 12:33 PM, JongPil Jung wrote: > Hi.. > > When I try to deploy my app to GAE, following error occurred. > > Uploading index definitions. > > java.io.IOException: Error posting to URL: > https://appengine.google.com/api/datastore/index/add?app_id=algu

Re: [appengine-java] Can't add data to the datastore

2011-01-17 Thread thangavel s
ypu have to use like follows: @Persistent @GeneratedValue(strategy = GenerationType.IDENTITY) @Persistent private Long id; @Persistent private String title; @Persistent private String author; @Persistent private int copyrightYear; @Persistent private Date authorBirthdate; On

Re: [appengine-java] return an empty result from jdo query,any help?

2011-01-19 Thread thangavel s
hi, try follows public List getAll() { PersistenceManager pm = PMF.get(). getPersistenceManager(); Query q=pm.newQuery(DesignElement.class); q.setRange(0,20); List) DE=(List)q.execute(); return DE; } On Thu, Jan 20, 2011 at 9:19 AM, Yuber Núñez

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

2011-03-10 Thread thangavel s
Hi buddy, can you help how to integrate mysql in google appengine. thanks.. On Thu, Mar 10, 2011 at 12:29 AM, Gaurav Sharma wrote: > 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 c

Re: [appengine-java] Server error when deleting a version

2011-04-08 Thread thangavel s
check it out it could not default version 2011/3/12 Ronoaldo José de Lana Pereira > I'm facing the same issue with my app, when deleting a specific version. > Any updates? > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine for Java" group

Re: [appengine-java] JSP error output using dev_appserver (appengine's development server)

2011-04-08 Thread thangavel s
may be you use jre instead of jdk On Mon, Mar 14, 2011 at 3:29 AM, Luca Matteis wrote: > When my JSP pages fail for some reason I can't find where the > development server puts the error output information. Most web-servers > just return a formatted HTML page showing the cause of the JSP error >