I have an GAE + Java + Spring app, with very simple controller:

@RequestMapping(value = ['/_warmup', '/_ah/warmup'])
@ResponseBody
String warmup() {
    return 'OK'
}

It just return string, and when i call this url from a browser I get it without a problem.

Btw, when it deployed on GAE, and when it called by gae, i see following exception in logs:

java.lang.IllegalStateException: WRITER
    at org.mortbay.jetty.Response.getOutputStream(Response.java:594)
    at javax.servlet.ServletResponseWrapper.getOutputStream(ServletResponseWrapper.java:102)
    at org.springframework.http.server.ServletServerHttpResponse.getBody(ServletServerHttpResponse.java:64)
    at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:99)
    at org.springframework.http.converter.StringHttpMessageConverter.writeInternal(StringHttpMessageConverter.java:1)
    at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:181)
    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter$ServletHandlerMethodInvoker.writeWithMessageConverters(AnnotationMethodHandlerAdapter.java:975)
    at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter$ServletHandlerMethodInvoker.handleResponseBody(AnnotationMethodHandlerAdapter.java:933)

As I see, I uses same message converter, but always got illegal state of Jetty. Anybody had same issue?

PS when i'm trying to open this url from browser, on production server, it works too. This happens only when this url is called by GAE (cron or warmup request)

link|improve this question

52% accept rate
Is that a public String warmup() declaration? Is there some other error occuring that is writing to the output? – Fly Dec 15 '11 at 4:40
Yes, it's public, and don't see any other errors in output for this requests – Igor Artamonov Dec 15 '11 at 4:45
Are you deploying it with Jetty outside of GAE when you say it works without a problem? – Fly Dec 15 '11 at 4:53
Yes. It's working fine in dev environment (stndard java sdk 1.5.1, that based on jetty). And it's works even on production when i'm calling it from browser – Igor Artamonov Dec 15 '11 at 5:15
Doesnt this exception throw when the response is already committed? Perhaps somewhere else in your app the response is being committed. Check filters, interceptors, AOP, etc. – Steven Dec 15 '11 at 5:16
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.