in reply to Re^2: Request returns "200 OK", reports internal server error.
in thread Request returns "200 OK", reports internal server error. [solved]

Well, the word "OK" in your error response is very suspicious. Try adding a warn to log the value of OK, and try making that sub return "OK()" to force the call to the imported sub.
  • Comment on Re^3: Request returns "200 OK", reports internal server error.

Replies are listed 'Best First'.
Re^4: Request returns "200 OK", reports internal server error.
by kyle (Abbot) on Sep 18, 2008 at 19:12 UTC

    I did this:

    $ find lib -type f -name \*.pm -print|xargs perl -pi.bak -e 's/return +OK/return OK()/'

    (That was pretty fun.)

    I'm still getting the same results. Thanks again for your suggestions.

    P. S. — I did this to put it all back:

    find lib -name \*.bak -print|perl -lne 'chomp;$f=$_;s/\.bak$//;print " +mv -v $f $_"'|sh