Re: templating system opinions (axkit?)

2003-07-21 Thread Daisuke Maki
Anyone on this list use AxKit? I'm curious how it pans out. I used it for http://www.nikki-site.com (sorry, Japanese-only site). This site uses exactly 4 pure-mod_perl handlers, and everything else eventually goes through AxKit (excuse the site design, as far as development goes that is a

Does Indexes work with mod_perl?

2003-03-19 Thread Daisuke Maki
Hi, I'm having a hard time making mod_perl(1.27) enabled Apache treat requests to directories so that the directory listing is shown (like the default behavior when there is not DirectoryIndex file). I pretty much just threw away all of my mod_perl specific configuration from my httpd.conf, and

Re: SOAP and web services

2002-05-02 Thread Daisuke Maki
Stable enough? you'll have to ask someone else, but I think it should work well enough. I've been using SOAP::Lite + Apache for a bunch of my newer projects with moderate load, and so far I've had no problems... ;) --d

Any known gotchas with sending cookies?

2002-04-29 Thread Daisuke Maki
I'm really lost with this... I'm trying to set a session cookie from PerlAccessHandler. I'm basically doing (simplified code): my $cookie_jar = Apache::Cookie-fetch my $session_id = $cookie_jar-{ session }-value; if( !session_active( $session_id ) ) { my $session_obj =

Re: Any known gotchas with sending cookies?

2002-04-29 Thread Daisuke Maki
HOME }/cookies.txt", autosave = 1 }); my $req = HTTP::Request-new( GET = 'http://foobar.com' ); my $res = $ua-request( $req ); print $res-as_string; print $ua-cookie_jar-as_string, "\n"; --d Daisuke Maki wrote: I'm really lost with this... I'm trying to set a session cookie from Pe