Archive for October, 2003

Oct 27 2003

Another XML Tutorial Site

Published by Chris McAvoy under Blog

ZVON.org – ZVON

No responses yet

Oct 27 2003

XPath Quickie

Published by Chris McAvoy under Blog

Simon Willison: Using XPath to mine XHTML

Another Python guy discovers XPath. It seems pretty cool.

No responses yet

Oct 22 2003

Forking Perl

Published by Chris McAvoy under Blog

I wrote a nice little XMLRPC web service at work. The problem is, it blocks on a single client. If request A is being processed, request B won’t be until A is done. I know that I either need to fork or thread, but I’m not sure which way to go, and I’m a little confused by both methods. I found this article, which helps a bit:

perl.com: Embedding Web Servers [Sep. 18, 2002]
Also, there’s the perldoc on IPC.

Forking Perl.

No responses yet