Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^3: Getting error messages from IIS with PerlScript

by ikegami (Patriarch)
on Aug 09, 2005 at 14:58 UTC ( [id://482232]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Getting error messages from IIS with PerlScript
in thread Getting error messages from IIS with PerlScript

You said you wanted to log the errors, not send them to the client. I think the handlers are getting called, and you can log the errors from within them.

If you want to send the error to the client, you'll either need to do some fancy ASP stuff, or use eval BLOCK. For example,

eval { ... something_that_might_die(); ... }; if ($@) { # It died. # The error message is in $@ ... }

That won't catch division by zero, but it will catch just about everything else. To catch division by zero, check the denominator before dividing.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://482232]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-26 02:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found