Re: json library

2009-02-22 Thread Matthew Rushton
On Sun, Feb 22, 2009 at 4:10 AM, Paul Querna c...@force-elite.com wrote: i'm somewhat involved with libjsox: http://code.google.com/p/libjsox/ Matthew Rushton wrote: Does anyone have any experience with using any of the C JSON libraries to encode json in responses? It looks like

Re: uri encoding/decoding

2009-02-21 Thread Matthew Rushton
. -Matt --- On Sat, 2/21/09, Nick Kew n...@webthing.com wrote: From: Nick Kew n...@webthing.com Subject: Re: uri encoding/decoding To: dev@httpd.apache.org Date: Saturday, February 21, 2009, 4:30 PM On Sat, 21 Feb 2009 13:48:10 +0200 Graham Leggett minf...@sharp.fm wrote: Matthew Rushton wrote

json library

2009-02-21 Thread Matthew Rushton
Does anyone have any experience with using any of the C JSON libraries to encode json in responses? It looks like there are several options, I just wanted to know what people are using if anything? Thanks! -Matt

uri encoding/decoding

2009-02-20 Thread Matthew Rushton
Hi,   Anyone know of any uri query string encoding/decoding functions that exist to module writers. I'm about to write my own which should be simple enough just didn't want to reinvent the wheel. I couldn't find any that existed. Thanks! -Matt

random number generation

2009-02-04 Thread Matthew Rushton
Hi,   I'm writing an apache module and need to generate a random number to handle a request. The random numbers must be unique across requests and thus across forks. My problem is coming up with a way to seed the random numbers in an efficient way. I imagine I'll need to use some combination of

mod_dbd issues

2009-01-01 Thread Matthew Rushton
Hi,   I'm trying to use mod_dbd for a Linux module with a Postgres backend and am running into a bunch of issues. It seems easy enough but all my queries are failing becasue I'm not getting back a valid db handle either. Here's my httpd.conf: LoadModule dbd_module modules/mod_dbd.so DBDriver

Re: mod_dbd issues

2009-01-01 Thread Matthew Rushton
, 1/1/09, Ruediger Pluem rpl...@apache.org wrote: From: Ruediger Pluem rpl...@apache.org Subject: Re: mod_dbd issues To: dev@httpd.apache.org Date: Thursday, January 1, 2009, 4:13 PM On 01/01/2009 05:50 PM, Matthew Rushton wrote: Hi, I'm trying to use mod_dbd for a Linux module