Re: segfault with mod_perl, Oraperl, XML::Parser

2001-08-03 Thread Matt Sergeant
On 03 Aug 2001 10:26:37 -0700, Scott Kister wrote: > Thanks everyone for their help, I tried all the suggestions with no > luck, and I definitely configured Apache without expat. I finally > ended up parsing the XML in perl instead of using Expat. Since I > already had handlers, it was quite easy,

Re: segfault with mod_perl, Oraperl, XML::Parser

2001-08-03 Thread Scott Kister
Thanks everyone for their help, I tried all the suggestions with no luck, and I definitely configured Apache without expat. I finally ended up parsing the XML in perl instead of using Expat. Since I already had handlers, it was quite easy, although still needs better validation and error handling.

Re: segfault with mod_perl, Oraperl, XML::Parser

2001-08-01 Thread Tim Bunce
On Mon, Jul 30, 2001 at 03:30:48PM -0400, Philip Mak wrote: > On Mon, 30 Jul 2001, Scott Kister wrote: > > > uselargefiles=define > > Have you tried turning off "uselargefiles"? > > I might be off track here, but recently I tried to install mod_perl on > Solaris 5.8. It kept segfaulting until I

Re: segfault with mod_perl, Oraperl, XML::Parser

2001-07-30 Thread Philip Mak
On Mon, 30 Jul 2001, Scott Kister wrote: > uselargefiles=define Have you tried turning off "uselargefiles"? I might be off track here, but recently I tried to install mod_perl on Solaris 5.8. It kept segfaulting until I turned off "uselargefiles" and binary compatibility with 5.00503. You could

Re: segfault with mod_perl, Oraperl, XML::Parser

2001-07-30 Thread Scott Kister
I've been looking into this some more without much progress. Is anyone on this list successfully using modperl, DBD::Oracle, and XML::Parser on Solaris 2.8 x86? Are there any known symbol conflicts with Oracle's libclntsh.so and Expat? Any good alternative perl XML Parsers to Expat? Thanks, Scot

segfault with mod_perl, Oraperl, XML::Parser

2001-07-22 Thread Scott Kister
This program core dumps when run under mod_perl on Solaris 2.8 x86. #!./perl use Oraperl; use XML::Parser; my $parser = new XML::Parser; $parser->parsestring(''); # fails with valid xml here as well It runs fine on Linux and Sparc Solaris. It also works fine from the command line, or if I remo