Re: Objects within an Embperl page

2002-04-07 Thread Earwig
I finally got ahold of the writer of Filesys::SmbClient, and discovered that it's a problem with libsmbclient and persistent connections. The Samba folks are working to make the library support them. Thanks, Lars On Sun, 7 Apr 2002, Gerald Richter wrote: > > > > I'm not mounting. Filesy

Re: Objects within an Embperl page

2002-04-07 Thread Gerald Richter
> > I'm not mounting. Filesys::SmbClient appears to make a fresh SMB > connection each time one of its methods (open, opendir, unlink, mkdir, > etc) is called. Running outside of Apache/Embperl, I have no problem with > it. But inside, it is somehow recalling the file descriptor and the fact

Re: Objects within an Embperl page

2002-03-26 Thread Earwig
On Tue, 26 Mar 2002, Andrew O'Brien wrote: > > [$if ($fd=0) $] Sorry, that's a typo, it is indeed ($fd!=0) in my page. Could that comparison affect it? The file descriptor not truly being closed would make some sense... when it sees a false success, it is always with the $fd value that was s

Re: Objects within an Embperl page

2002-03-25 Thread Andrew O'Brien
On Mon, Mar 25, 2002 at 11:51:32PM +, Earwig wrote: > On Tue, 26 Mar 2002, Andrew O'Brien wrote: [snip] > I'm not mounting. Filesys::SmbClient appears to make a fresh SMB > connection each time one of its methods (open, opendir, unlink, mkdir, > etc) is called. Running outside of Apache/

Re: Objects within an Embperl page

2002-03-25 Thread Earwig
On Tue, 26 Mar 2002, Andrew O'Brien wrote: > On Mon, Mar 25, 2002 at 10:15:00PM +, Earwig wrote: > > > Do objects from outisde modules normally leave residue in the web server > > process? Is this just a problem with this module? Is there some way I > > can make sure the object is dead a

Re: Objects within an Embperl page

2002-03-25 Thread Andrew O'Brien
On Mon, Mar 25, 2002 at 10:15:00PM +, Earwig wrote: > Do objects from outisde modules normally leave residue in the web server > process? Is this just a problem with this module? Is there some way I > can make sure the object is dead and gone by the end of the web page? Is there a reason