- ws_write call to ap_rflush
Calling ap_rflush() at the end of ws_write() in mod_jk.c is causing meproblems when doing downloads from the server to a client.Performance degradation and, less importantly, memory usage, are the problems.During calls to ap_rwrite() in ws_write, a brigade is created andused to move data. When d...
- Where should I store my static content in a clustered environment
Hi,lets start with describing my current task where I would appreciate anyadvice from you.I have to construct a clustered system (with lots of webservers) thathas few dynamic pages but a lot of static ones, whereby all resourceshave to be protected by security-constraints of a webapp (so letting...
- Using readInt to load in matrix values
Hello, I am trying to load in a large matrix from a text file to use as parameters for my application. I have been using readInt to read in the numbers one-by-one, but it doesn't seem to read them in correctly, causing me to wonder whether there is a problem with the data type in the file (it...
- XML-RPC vs SOAP vs Custom
SOAP is an overkill for my needs. So currently we're looking at writing our own custom XML transfer using servlets/URLconnection etc..Could anyone who has some experience of using XML-RPC comment on its ability to validate types within the XML instance ? We're looking at sending:integers...
- Simple threaded app breaks on openStream method
jmail@hursttechnical.com wrote:> is = url.openStream(); //throws an IOException> } catch (IOException ioe) {> System.out.println(TID + ": the url openstream call failed:" +> ioe);The text of the exception tells you what the problem was. As you haven'ttold *us*, I guess you&...