[appengine-java] Re: app engine server availability

2012-01-27 Thread Chris
Having the same issue. On Jan 27, 8:49 am, John Goche johngoch...@googlemail.com wrote: Hello, Has anyone been experiencing availability problems when deploying to app engine? Here is what I am getting: Verifying availability:     Will check again in 1 seconds.     Will check again in 2

[appengine-java] Re: Which java framework to use?

2011-11-20 Thread Chris
My suggestion: For datastore access use Objectify: http://code.google.com/p/objectify-appengine/ For your MVC framework go with AJAX/Javascript/HTML5 and use Backbone.js: http://documentcloud.github.com/backbone/ We've used Tapestry5 on App Engine before but without lazy loading and serious

[appengine-java] Re: Updating Eclipse

2011-11-15 Thread Chris
My guess is the app engine team has been busy with moving out of preview. I filed an issue #6334: http://code.google.com/p/googleappengine/issues/detail?id=6334thanks=6334ts=1321362902 Anyone reading this should star this issue. On Nov 14, 6:35 pm, jon stevens latch...@gmail.com wrote: Yea,

[appengine-java] Re: Updating Eclipse

2011-11-15 Thread Chris
Filed an issue (#6334): http://code.google.com/p/googleappengine/issues/detail?id=6334sort=-idcolspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log We need to star it to get it fixed... On Nov 14, 6:35 pm, jon stevens latch...@gmail.com wrote: Yea, that

[appengine-java] Re: SOAP-Samples and the Development Server

2011-09-28 Thread chris
I solved the problem by changing the port number in the client projects launch configuration properties (Server-Settings). Now the SOAP-Server port number is (default) and the Client port number ist 8889. -- You received this message because you are subscribed to the Google Groups

[appengine-java] SOAP-Samples and the Development Server

2011-09-27 Thread chris
Is it possible to run the soap-samples from within the development server? I changed the soap address location in the wsdl filt to soap:address location=http://localhost:/codelabex5part1/ but it doesn't work... -- You received this message because you are subscribed to the Google Groups

Re: [appengine-java] Axis2 soap client implementation doesn't work

2011-07-15 Thread Chris Merrill
When I was researching WS clients for GAE, I found that Axis attempts to open network sockets directly, rather than using HttpUrlConnection. That was a while ago, perhaps a work-around has been found. The AccessControlException you are getting could be a result of that. Chris On 7/14/2011 4

[appengine-java] Re: looking for speakers for talks on App Engines

2011-04-05 Thread Chris Westin
bump On Mar 25, 7:54 am, Chris Westin cwes...@yahoo.com wrote: Hello, I organize the speakers for the SF Bay Area Large-Scale Production Engineering Meetup (http://www.meetup.com/SF-Bay-Area-Large-Scale- Production-Engineering/). For our event on the evening of Thursday April 21st, I'm

[appengine-java] Need some help with GWT / GAE and serialization - I'm missing something

2011-03-25 Thread Chris Moore
I have an app that uses GWT and GAE. I recently looked at it after not having done anything with it for a long time. Since the App Engine SDK and the GWT SDK had new versions since the last time I looked at it I upgraded to the latest: GAE 1.4.2 and GWT 2.2.0. I'm able to run the app

[appengine-java] looking for speakers for talks on App Engines

2011-03-25 Thread Chris Westin
, the Yahoo! Application Platform, AWS Elastic Beanstalk, or others I haven't listed, please message medirectly at cwestin (at) yahoo (dot) com. Thanks! Chris Westin -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: 1.4.2: Can't make https call from dev server

2011-03-17 Thread Chris Wren
If you are seeing this problem: http://permalink.gmane.org/gmane.comp.systems.google-appengine.jre/18014 This is fixed in 1.4.2 - 2011-02-16, look closely at the Location of the App Engine SDK under Preferences - Google - App Engine and make sure you don't have v201102111811. Chris On Feb 15

[appengine-java] Re: JSP compiling fails after upgrade from 1.3.8 to 1.4.0

2010-12-15 Thread Chris Keller
Note that the previous post only applies to my local development environment. I just tried using the new version of the SDK on the production server, and it has no problems. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Re: JDO update only happens if Entity is 'accessed' before makePersistent

2010-09-30 Thread Chris
with it? - Chris On Sep 30, 4:56 am, Hariharan Anantharaman hariharan.ananthara...@gmail.com wrote: Strange. I remember reading that JDO does lazy loading. That means unless you access the same, the object data is not physically loaded. But isn't set enabled means accessing the object? ~hari

[appengine-java] Execute CSS files as JSP

2010-09-29 Thread Chris Wilson
Hello, I need to dynamically generate CSS files and would like to do it with JSP. I know that there are various existing solutions to do this with servlets mapped to the .css extension and forwarding to JSPs to generate the content and that would technically work. However, I would like to

[appengine-java] JDO update only happens if Entity is 'accessed' before makePersistent

2010-09-29 Thread Chris
Hello. I have a strange issue where I occasionally fail to update the Account object in this method. If I call the isEnabled() method (which returns true or false) before I call makePersistent, the update always happens. But if I don't 'access' the account object before makePersistent(), the

[appengine-java] Re: Urgent: Getting only Server Error (500) since ~12:30 am (September 28th)

2010-09-28 Thread Chris (Google Employee)
Hello, Just wanted to let you know that we are aware of the problem and are working as fast as we can to address this issue that cropped up overnight. We think were close to getting it resolved, so we'll be sending periodic updates to let folks know where things stand. Thanks, -Chris On Sep

[appengine-java] Re: Urgent: Getting only Server Error (500) since ~12:30 am (September 28th)

2010-09-28 Thread Chris (Google Employee)
Yes Guillaume, We're looking into that, as well as some of the recent outages such as Farmigo (that seems to be back up now). We're still investigating these occasional request aborted issues though. -Chris On Sep 28, 11:06 am, Guillaume Laforge glafo...@gmail.com wrote: I'm seeing some

[appengine-java] Re: JSF2 f:ajax does not work for me... Any Ideas Why?

2010-09-24 Thread Chris (Google Employee)
=jsf.ajax.request(this,event, {render:'foo'});return false;/ This was taken from: http://andyschwartz.wordpress.com/2009/07/31/whats-new-in-jsf-2/#ajax-declarative Also, is this the only JSF2 tag that you've encountered that does't appear to be working in App Engine? -Chris On Sep 24, 8:31 am, Daniel

[appengine-java] Re: Need help choosing a frontend framework for a GAEj app, GWT seems like overkill

2010-09-09 Thread Chris (Google Employee)
full use of a myriad of front end technologies/ frameworks for UI creation ranging from HTML5/JS/CSS to flash etc. JQuery is especially popular for a variety of Web app usages, so if that works for you, I'd definitely continue trying it out. Hope this helps, -Chris On Sep 9, 10:43 am, tempy fay

[appengine-java] Re: Does JSF Session Bean are supported ?

2010-09-02 Thread Chris (Google Employee)
this helps, -Chris On Sep 2, 2:00 pm, hadf hadrien.for...@gmail.com wrote: I'm a newbie in JSF and AppEngine technology. I've created a simple form which redirect to a summary page that displays the form data. The trouble is that form data is lost during redirect as if session beans were

[appengine-java] Re: Applets in GAE

2010-09-02 Thread Chris (Google Employee)
server using standard Java networking. You could create a test servlet on the server to listen for your applet. Hope this helps, -Chris On Sep 2, 1:43 pm, GuruK guruko...@gmail.com wrote: Does anyone have a good tutorial on how to use applets in gae? Also, would it be possible to use the applet

[appengine-java] Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.

2010-03-16 Thread Chris
this problem or understand what is going on? Thanks much, Chris -- 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 group, send email

[appengine-java] Re: Error while deploying GWT application on google app engine.

2010-01-07 Thread Chris (Google Employee)
looks like, you can always just create a new project using the Eclipse plugin, and generate a new app with both GWT and GAE checkboxes checked. You could then compare and contrast between the two. Hope that helps, -Chris (Google) On Jan 7, 1:49 am, reena libranre...@gmail.com wrote: Hi all, I

[appengine-java] Re: Web based application in java.

2010-01-07 Thread Chris (Google Employee)
/appengine/docs/java/gettingstarted/introduction.html Hope this helps, -Chris On Jan 5, 1:22 am, yadav au.su...@gmail.com wrote: Hi..   I am trying to develop a small application in java on google apps.it is mainly depends on data base.my question is how to create entities and how to retrieve

[appengine-java] Re: One To Many. JDO. Error while save data.

2010-01-07 Thread Chris (Google Employee)
the exact servlet code into the page via a scriptlet and work backwards from there. Hope this helps.. -Chris (Google) On Jan 3, 2:50 am, webus webus...@gmail.com wrote: Hi to all! I have problem. I have JDO objects: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class

[appengine-java] Re: Session problem

2010-01-07 Thread Chris (Google Employee)
the serialization error because of this. In any case, I would definitely make sure you can actually serialize the object that you're saving. -Chris On Jan 5, 7:41 am, avdhesh avdhesh.ya...@gmail.com wrote: I got following exception wehn i deploy a application to google apps engineEverything works

[appengine-java] Creating an app with Fusion tables an Visualization

2009-12-30 Thread Chris
Hi App Engine community I am wanting to get some advice on an app I am looking to create. Basically the app is going to show analytics (google visualizations) to an authenticated user. These are the components that I am looking to employ. -send structured data from an external source into a

[appengine-java] Class Cast Exception: can't figure out what's wrong.

2009-12-22 Thread Chris
information which the exception would give me about what's wrong, but it seems to be masked by the ClassCastException. Anyone seen this before and may be able to point me in the right direction as to what may be wrong? Thanks, -Chris -- You received this message because you are subscribed

Re: [appengine-java] Class Cast Exception: can't figure out what's wrong.

2009-12-22 Thread chris mysen
Looks like it was a temp error from not having billing set up. Not a very good error for figuring that out, though... - chris On Dec 22, 2009 12:24 PM, Chris ccmy...@gmail.com wrote: Hi All, I was trying to play around with the blobstore API and am getting the following exception from the java

[appengine-java] 5000 row query

2009-11-27 Thread chris
getting the rows is causing some issues. I don't want the high cpu utilization to cause the requests to timeout. Does anyone know of anything i could try? Regards Chris -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] I have deleted all indexes but can not add any new ones?

2009-10-26 Thread Chris
Hi, I have removed all indexes for an app but now when I come to add a new one it says I am over ym quota. What can I do to resolve this? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine

[appengine-java] Simplest web framework + ORM for GAE/J?

2009-09-07 Thread Chris
What's the simplest web framework + ORM combination that works well on GAE/J? --~--~-~--~~~---~--~~ 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