[appengine-java] can we use Web-services in Gooogle app engine

2010-08-23 Thread aptest1 actiprocess
Hi, We are planning to use web-services in Google app to communicate with SAP-system. 1.Is Google app engine supports the Web-services? 2.can we use web-services in Google app engine? Thanks in advance Chandrashaker Gattu -- You received this message because you are subscribed to the Google

[appengine-java] Re: Problem in sending out UTF-8 POST data (only in production, works fine in development)

2010-08-23 Thread Alok
The problem is resolved. We were trying to (1) read some POSTed data, (2) converting it and then (3) POSTing it again. setting the HttpServletRequest.setCharacterEncoding(UTF-8) before (1) solved the issue. But this brings us to two more questions. 1. Even when the setCharacterEncoding() was not

[appengine-java] HtmlUnit support on GAE for GWT crawlability

2010-08-23 Thread Matt H
Hello. I'm wanting to make my GWT app on App Engine crawlable by using HtmlUnit to serve up the page content to the Googlebot. Has anyone been able to successfully use HtmlUnit 2.8 on GAE? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java

[appengine-java] Error in deployment

2010-08-23 Thread Raghu
Hi I'm trying to deploy my sample db application in appspot. But it's failing with following log. Im using eclipse+java gae setup. Can I get some help please Unable to update: java.io.IOException: Error writing to server at

[appengine-java] Query on Many to Many Relation

2010-08-23 Thread Raghu
Hi All, I just want to reopen the existing challenge. I'm trying hard to think query on 2 tables with m-m relation. Tags{ List Key items; } Item{ List Key tags; } Please suggest me how to find all the items with given tag. is there any trick here. thanks raghu -- You received this message

[appengine-java] Problem with GData Authsub in App Engine (was working with previous SDKs)

2010-08-23 Thread leo
Hi, I´m facing a problem with GData Authsub authentication in App Engine. It was working before so I´m not sure if it´s because a change in GAE production code, similar to these issues: http://code.google.com/p/gdata-issues/issues/detail?id=2245

[appengine-java] Aplications always timeout on first access.

2010-08-23 Thread Rodrigo Teixo
Hello everybody. My aplication is throwing javax.servlet.UnavailableException: Initialization failed on first access... when the session is created. After that if I call it again. It creates normaly and speed goes good also. Can someone give me a tip on what must I doing wrong. Application Id:

[appengine-java] Is process time cumulative?

2010-08-23 Thread gpeev
I have been doing some test with my app and there is no way 40 seconds lapse since i click process but i always get this error. i am persisting a file - then on the next req i put the processing in the task queue. At this point the site locks up and the following is in the log. the actual time

[appengine-java] Problem integrating the App Engine with Eclipse

2010-08-23 Thread TacB0sS
Hey, I have tried to install the App Engine with both Eclipse 3.5 and 3.6, I've tried to download the EclipseEE + the plugins I wanted, which included the GWT 2.0.4 and the App Engine 1.3.6, from Yoxo's, but for some reason when I try to create a Google web project, I get an error in the project

[appengine-java] Re: Determine in runtime (Java) who deployed app

2010-08-23 Thread andrew
Our use case in general is: We plan to allow users to openly login (which creates their initial account) to our app using google account, google apps domain account or openid. We plan to allow some users to be given super-user permissions for the application instance. They in turn will be able to

Re: [appengine-java] Adobe air support in GAE

2010-08-23 Thread Ikai L (Google)
Yes, AIR is a client side technology. Communicate with your App Engine app via HTTP or XMPP. On Mon, Aug 23, 2010 at 3:54 AM, aptest1 actiprocess apte...@gmail.comwrote: HI, Is it possible to use adobe air in GAE. Thanks Mahesh -- You received this message because you are subscribed to

[appengine-java] NPE when deploying error handlers

2010-08-23 Thread Nacho Coloma
Just a heads-up. I am getting a NPE while trying to deploy this with 1.3.6: static-error-handlers handler file=/error/default.html/ handler file=/error/over_quota.html error-code=over_quota/ handler file=/error/dos_api_denial.html error-

[appengine-java] Re: NPE when deploying error handlers

2010-08-23 Thread Nacho Coloma
If works as expected. Sorry, it should say It works as expected. It's late :) -- 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

[appengine-java] GWT and GAE: Uploading Files to Blobstore

2010-08-23 Thread rapher
Hey Folks, i try to upload files using GWT and GAE (Blobstore). Adding data to the Datastore works fine already. When i click Upload/Submit it opens a new Browser Window and it tries to open http://xy.appspot.com/_ah/upload/saufdsgfdsfd98gdf89gfdgzfdg9fd78zf8f89fh3hhf938fj37f4 After a few

Re: [appengine-java] HtmlUnit support on GAE for GWT crawlability

2010-08-23 Thread Arthur Kalmenson
The Google bot can crawl Javascript based sites, why not follow their guidelines? http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-making-ajax-crawlable.html -- Arthur Kalmenson On Sat, Aug 21, 2010 at 9:46 PM, Matt H matt2...@gmail.com wrote: Hello. I'm wanting to make my

Re: [appengine-java] HtmlUnit support on GAE for GWT crawlability

2010-08-23 Thread Gal Dolber
Thats why he needs htmlunit 2010/8/23 Arthur Kalmenson arthur.k...@gmail.com The Google bot can crawl Javascript based sites, why not follow their guidelines? http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-making-ajax-crawlable.html -- Arthur Kalmenson On Sat, Aug 21,

Re: [appengine-java] HtmlUnit support on GAE for GWT crawlability

2010-08-23 Thread Christian Goudreau
We're actually working on that feature for Gwt-Platformhttp://www.gwtplatform.com . You can see the discussion about this here: http://code.google.com/p/gwt-platform/issues/detail?id=1 http://code.google.com/p/gwt-platform/issues/detail?id=1Cheers, On Mon, Aug 23, 2010 at 5:43 PM, Gal Dolber

[appengine-java] Re: Reusing GWT Localization on Server Side

2010-08-23 Thread Casey
It looks promising but open issue list indicates that it doesn't work with GAE. Thanks though. I'll apply the patch from the open issue and everything should be fine. On Aug 22, 1:54 pm, Uwe Maurer uwe.mau...@gmail.com wrote: Maybe this project can help

Re: [appengine-java] Problem integrating the App Engine with Eclipse

2010-08-23 Thread Hariharan Anantharaman
Hi, Check if you java jre path and app engine sdk path are correct in eclipse. ~hari On Aug 23, 2010 10:02 PM, TacB0sS nu.art.softw...@gmail.com wrote: Hey, I have tried to install the App Engine with both Eclipse 3.5 and 3.6, I've tried to download the EclipseEE + the plugins I wanted, which