| pMe | (Object) Reference to the PmaWeb object where the event rises. |
|---|---|
| pEvent | (Object) Reference to an object describing detailed information about the specific event.
pEvent.ErrorType - (Long) [for reading] Error type.
1 - Authentication error. The name and/or password is incorrect. This error will manifest as HTTP error 403 (forbidden).
Caution! HTTP error 403 also occurs in other situations where the user is correctly logged in, but does not have permission for the given page. pEvent.HostAddr - (String) [for reading] Network address of the client computer - of the web browser.
|
if (1 == pEvent.ErrorType)
{
Pm.Debug("Name=" + pEvent.HostName);
Pm.Debug("Password=" + pEvent.HostPwd);
}