I'm getting this stack trace and I've really no idea what is causing it to crash. The logs give me nothing to go on.
I now need to rollback my code to try and figure out what I changed that caused this. I'm an ass because I had a ton of changes since the last commit. I'm really hating not seeing what is going on in the server.
The only reason I'm posting this here is that perhaps you can add some more NPE checks and log messages in the server object code.
Here's a peek from the Variables window in Eclipse
I now need to rollback my code to try and figure out what I changed that caused this. I'm an ass because I had a ton of changes since the last commit. I'm really hating not seeing what is going on in the server.
The only reason I'm posting this here is that perhaps you can add some more NPE checks and log messages in the server object code.
Code:
=== 2011-02-13 22:43:07,417 [22-2] WARN RequestContext - dsRequest.execute() failed: java.lang.NullPointerException at com.isomorphic.rpc.ServerObject.<init>(ServerObject.java:88) at com.isomorphic.rpc.ServerObject.<init>(ServerObject.java:70) at com.isomorphic.datasource.DataSourceDMI.execute(DataSourceDMI.java:416) at com.isomorphic.datasource.DataSourceDMI.execute(DataSourceDMI.java:64) at com.isomorphic.datasource.DSRequest.execute(DSRequest.java:1454) at com.isomorphic.servlet.IDACall.handleDSRequest(IDACall.java:173) at com.isomorphic.servlet.IDACall.processRPCTransaction(IDACall.java:130) at com.isomorphic.servlet.IDACall.processRequest(IDACall.java:95) at com.isomorphic.servlet.IDACall.doPost(IDACall.java:54) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at com.isomorphic.servlet.BaseServlet.service(BaseServlet.java:152) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
Here's a peek from the Variables window in Eclipse
Code:
serverObject (id=118) context RequestContext (id=119) cachingEnabled true clientContextHeaderSent false compression null contentType null jsTrans JSTranslater (id=124) log Logger (id=126) out null pathInfo null request ISCHttpServletRequest (id=128) requestPath "/myproject/sc/IDACall" (id=130) response ServeBlobFilter$ResponseWrapper (id=132) servletContext AppEngineWebAppContext$AppEngineServletContext (id=137) servletPath "/myproject/sc/IDACall" (id=139) session null contextString "Default serverObject for DataSource userAccount_DataSource" (id=121) factoryOptionalArgs null lookupStyle null method null serverObjectClass null serverObjectConfig null serverObjectInstance null
Comment