Web Error
Hi,
Our web application shows the string ERROR when Oracle is not available.
Is there any way to execute a rule that falls if the string ERROR is found in a web?
Regards,
Francesc
Our web application shows the string ERROR when Oracle is not available.
Is there any way to execute a rule that falls if the string ERROR is found in a web?
Regards,
Francesc
This discussion has been closed.
Comments
In this case I would create in my webapp a clause that prints a string when database connection is OK. When not, then the hidden string (in html code as comment) is not printed and this could trigger the alert.
Pseudo code:
if Database fails then
print <-- database failed -->
else
print <-- database ok -->
Francesc