On Sat, Aug 17, 2002 at 01:52:33PM -0500, Pascal wrote: > I believe the blank pages correspond to the below error: > > Aug 17, 2002 12:52:19 PM (freenet.client.http.FproxyServlet, > FThread-409): Unexpected Exception in FproxyServlet.doGet -- > java.lang.NullPointerException > java.lang.NullPointerException > at > freenet.client.metadata.DocumentCommand.<init>(DocumentCommand.java:69) > at > freenet.client.metadata.DocumentCommand.<init>(DocumentCommand.java:63)
This is the same thing that was causing the insert bug in fproxy. When people pass (Metadata)null to the DocumentCommand constructor, this is a very predictable result, since the constructor ends up calling null.someMethod(). The question is this - *why* are people creating DocumentCommand objects with null arguments? Is there a serious issue related to creating new legitimate Metadata object to pass? -- David Allen http://opop.nols.com/ _______________________________________________ devl mailing list devl at freenetproject.org http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/devl
