Thanks Andrés,

I've filed an 
issue<http://code.google.com/p/googleappengine/issues/detail?id=2658>for
this. There's a bug in the implementation of HttpServlet.doOptions
which
is preventing OPTIONS http requests from being fulfilled correctly. Most
people don't need to serve OPTIONS requests, so it's usually not a problem.
(You can, for example, just ignore the stacktrace in your logs). If you do
need to support OPTIONS, as a workaround, you can override it in your
HttpServlet subclass. For example:

protected void doOptions(HttpServletRequest req, HttpServletResponse resp) {
  // Set to whatever your servlet supports.
  resp.setHeader("Allow", "GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS");
}

2010/1/20 Andrés Cerezo <acerezoguil...@gmail.com>

> That is:
>
> #
>
> /net.brucecooper.mindmapgadget.MindMapGadget/login
> java.security.AccessControlException: access denied
> (java.lang.RuntimePermission accessDeclaredMembers)
>         at
> java.security.AccessControlContext.checkPermission(AccessControlContext.java:355)
>        at
> java.security.AccessController.checkPermission(AccessController.java:567)
>        at java.lang.SecurityManager.checkPermission(Unknown Source)
>        at
> com.google.apphosting.runtime.security.CustomSecurityManager.checkPermission(CustomSecurityManager.java:45)
>        at java.lang.SecurityManager.checkMemberAccess(Unknown Source)
>        at java.lang.Class.checkMemberAccess(Unknown Source)
>        at java.lang.Class.getDeclaredMethods(Unknown Source)
>        at
> javax.servlet.http.HttpServlet.getAllDeclaredMethods(HttpServlet.java:479)
>        at
> javax.servlet.http.HttpServlet.getAllDeclaredMethods(HttpServlet.java:478)
>        at
> javax.servlet.http.HttpServlet.getAllDeclaredMethods(HttpServlet.java:478)
>        at javax.servlet.http.HttpServlet.doOptions(HttpServlet.java:534)
>        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
>        at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
>        at
> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1093)
>        at
> com.google.apphosting.utils.servlet.ParseBlobUploadFilter.doFilter(ParseBlobUploadFilter.java:97)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
>        at
> com.google.apphosting.runtime.jetty.SaveSessionFilter.doFilter(SaveSessionFilter.java:35)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
>        at
> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
>        at
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:360)
>        at
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>        at
> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
>        at
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)
>        at
> org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
>        at
> com.google.apphosting.runtime.jetty.AppVersionHandlerMap.handle(AppVersionHandlerMap.java:238)
>        at
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
>        at org.mortbay.jetty.Server.handle(Server.java:313)
>        at
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:506)
>        at
> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:830)
>        at
> com.google.apphosting.runtime.jetty.RpcRequestParser.parseAvailable(RpcRequestParser.java:76)
>        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:381)
>        at
> com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceRequest(JettyServletEngineAdapter.java:135)
>        at
> com.google.apphosting.runtime.JavaRuntime.handleRequest(JavaRuntime.java:235)
>        at
> com.google.apphosting.base.RuntimePb$EvaluationRuntime$6.handleBlockingRequest(RuntimePb.java:5235)
>        at
> com.google.apphosting.base.RuntimePb$EvaluationRuntime$6.handleBlockingRequest(RuntimePb.java:5233)
>        at
> com.google.net.rpc.impl.BlockingApplicationHandler.handleRequest(BlockingApplicationHandler.java:24)
>        at
> com.google.net.rpc.impl.RpcUtil.runRpcInApplication(RpcUtil.java:363)
>        at com.google.net.rpc.impl.Server$2.run(Server.java:838)
>        at
> com.google.tracing.LocalTraceSpanRunnable.run(LocalTraceSpanRunnable.java:56)
>        at
> com.google.tracing.LocalTraceSpanBuilder.internalContinueSpan(LocalTraceSpanBuilder.java:536)
>        at com.google.net.rpc.impl.Server.startRpc(Server.java:793)
>        at com.google.net.rpc.impl.Server.processRequest(Server.java:368)
>        at
> com.google.net.rpc.impl.ServerConnection.messageReceived(ServerConnection.java:448)
>        at
> com.google.net.rpc.impl.RpcConnection.parseMessages(RpcConnection.java:319)
>        at
> com.google.net.rpc.impl.RpcConnection.dataReceived(RpcConnection.java:290)
>        at
> com.google.net.async.Connection.handleReadEvent(Connection.java:466)
>        at
> com.google.net.async.EventDispatcher.processNetworkEvents(EventDispatcher.java:759)
>        at
> com.google.net.async.EventDispatcher.internalLoop(EventDispatcher.java:205)
>        at
> com.google.net.async.EventDispatcher.loop(EventDispatcher.java:101)
>        at
> com.google.net.rpc.RpcService.runUntilServerShutdown(RpcService.java:251)
>        at
> com.google.apphosting.runtime.JavaRuntime$RpcRunnable.run(JavaRuntime.java:394)
>        at java.lang.Thread.run(Unknown Source)
>
> #
> C 01-19 10:30PM 57.445
>
> Uncaught exception from servlet
> java.security.AccessControlException: access denied
> (java.lang.RuntimePermission accessDeclaredMembers)
>         at
> java.security.AccessControlContext.checkPermission(AccessControlContext.java:355)
>        at
> java.security.AccessController.checkPermission(AccessController.java:567)
>        at java.lang.SecurityManager.checkPermission(Unknown Source)
>        at
> com.google.apphosting.runtime.security.CustomSecurityManager.checkPermission(CustomSecurityManager.java:45)
>        at java.lang.SecurityManager.checkMemberAccess(Unknown Source)
>        at java.lang.Class.checkMemberAccess(Unknown Source)
>        at java.lang.Class.getDeclaredMethods(Unknown Source)
>        at
> javax.servlet.http.HttpServlet.getAllDeclaredMethods(HttpServlet.java:479)
>        at
> javax.servlet.http.HttpServlet.getAllDeclaredMethods(HttpServlet.java:478)
>        at
> javax.servlet.http.HttpServlet.getAllDeclaredMethods(HttpServlet.java:478)
>        at javax.servlet.http.HttpServlet.doOptions(HttpServlet.java:534)
>        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
>        at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
>        at
> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1093)
>        at
> com.google.apphosting.utils.servlet.ParseBlobUploadFilter.doFilter(ParseBlobUploadFilter.java:97)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
>        at
> com.google.apphosting.runtime.jetty.SaveSessionFilter.doFilter(SaveSessionFilter.java:35)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
>        at
> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
>        at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
>        at
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:360)
>        at
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>        at
> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
>        at
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)
>        at
> org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
>        at
> com.google.apphosting.runtime.jetty.AppVersionHandlerMap.handle(AppVersionHandlerMap.java:238)
>        at
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
>        at org.mortbay.jetty.Server.handle(Server.java:313)
>        at
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:506)
>        at
> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:830)
>        at
> com.google.apphosting.runtime.jetty.RpcRequestParser.parseAvailable(RpcRequestParser.java:76)
>        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:381)
>        at
> com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceRequest(JettyServletEngineAdapter.java:135)
>        at
> com.google.apphosting.runtime.JavaRuntime.handleRequest(JavaRuntime.java:235)
>        at
> com.google.apphosting.base.RuntimePb$EvaluationRuntime$6.handleBlockingRequest(RuntimePb.java:5235)
>        at
> com.google.apphosting.base.RuntimePb$EvaluationRuntime$6.handleBlockingRequest(RuntimePb.java:5233)
>        at
> com.google.net.rpc.impl.BlockingApplicationHandler.handleRequest(BlockingApplicationHandler.java:24)
>        at
> com.google.net.rpc.impl.RpcUtil.runRpcInApplication(RpcUtil.java:363)
>        at com.google.net.rpc.impl.Server$2.run(Server.java:838)
>        at
> com.google.tracing.LocalTraceSpanRunnable.run(LocalTraceSpanRunnable.java:56)
>        at
> com.google.tracing.LocalTraceSpanBuilder.internalContinueSpan(LocalTraceSpanBuilder.java:536)
>        at com.google.net.rpc.impl.Server.startRpc(Server.java:793)
>        at com.google.net.rpc.impl.Server.processRequest(Server.java:368)
>        at
> com.google.net.rpc.impl.ServerConnection.messageReceived(ServerConnection.java:448)
>        at
> com.google.net.rpc.impl.RpcConnection.parseMessages(RpcConnection.java:319)
>        at
> com.google.net.rpc.impl.RpcConnection.dataReceived(RpcConnection.java:290)
>        at
> com.google.net.async.Connection.handleReadEvent(Connection.java:466)
>        at
> com.google.net.async.EventDispatcher.processNetworkEvents(EventDispatcher.java:759)
>        at
> com.google.net.async.EventDispatcher.internalLoop(EventDispatcher.java:205)
>        at
> com.google.net.async.EventDispatcher.loop(EventDispatcher.java:101)
>        at
> com.google.net.rpc.RpcService.runUntilServerShutdown(RpcService.java:251)
>        at
> com.google.apphosting.runtime.JavaRuntime$RpcRunnable.run(JavaRuntime.java:394)
>        at java.lang.Thread.run(Unknown Source)
>
>
>
> 2010/1/20 Don Schwarz <schwa...@google.com>:
> > Please post the full stack trace.
> >
> > 2010/1/19 Andrés Cerezo <acerezoguil...@gmail.com>
> >>
> >> I'm deploying my application in appengine but I have a problem:
> >>
> >> 1. In host mode all is ok.
> >> 2. However when I deploy my application a I get this error:
> >>
> >> java.security.AccessControlException: access denied
> >> (java.lang.RuntimePermission accessDeclaredMembers)
> >>
> >>
> >> Anyone can help me?
> >>
> >> Thanks.
> >>
> >> --
> >> 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 to
> >> google-appengine-java+unsubscr...@googlegroups.com<google-appengine-java%2bunsubscr...@googlegroups.com>
> .
> >> For more options, visit this group at
> >> http://groups.google.com/group/google-appengine-java?hl=en.
> >>
> >>
> >>
> >
> >
> > --
> > 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 to
> > google-appengine-java+unsubscr...@googlegroups.com<google-appengine-java%2bunsubscr...@googlegroups.com>
> .
> > For more options, visit this group at
> > http://groups.google.com/group/google-appengine-java?hl=en.
> >
> >
>
> --
> 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 to
> google-appengine-java+unsubscr...@googlegroups.com<google-appengine-java%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>
>
>
>
--
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 to google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to