Hi,

I have 2 cfm templates. Error_Exception.cfm and Error.cfm

Insdie the Application.cfm file, I refer the error_exception.cfm file like
this and it works fine. I get error messages as per the code in
error_exception.cfm
<cferror type="exception" template="error_exception.cfm" mailto="some email
addr" />

Inside both the files i.e. error_exception.cfm and error.cfm,I have this
code

Site: <cfif IsDefined("cgi.SERVER_NAME")>#cgi.SERVER_NAME#</cfif>
URL: <cfif (IsDefined("cgi.SERVER_NAME")) and
(IsDefined("cgi.SCRIPT_NAME"))>https://
#cgi.SERVER_NAME##cgi.SCRIPT_NAME#</cfif>

So if I have error in my code, i get message like this and I know its the
error_exception.cfm page which is serving the details

Site: www.sitename.com
URL: https://www.sitename.com/T_Deny.cfm


Recently, for some reason Error.cfm got into play even though I dont
reference it in Application.cfm and the mails I got were little different
because instead of *sitename*, it gave me ip address of the machine where
the site is hosted and url part also had ip addresss in it like shown below
: 1.1.1.1 is an example and ip sent in email to me is the actual ip of
machine.

Site: 1.1.1.1
URL: https://1.1.1.1/Home.cfm

My guess is that this has something to do with IIS because in IIS for this
website, I have home.cfm as default content page under Documents tab.

I will go ahead and delete error.cfm file as I dont really need it but I
want to know what is causing it to run? Is IIS responsible for this? Has
anyone seen something like this before?

One last thing, the error message from error.cfm comes with no errors as far
as code is concerned. It has to do with database shutdown etc. see below
----------------------------------------------------------------------------------

ERROR: Operation failed on the data source named "dsnname". Reason of
failure "java.sql.SQLException: Timed out trying to establish connection"
<br>The error occurred on line 7.

Error on C:\Inetpub\wwwroot\sitefolder\Home.cfm

----------------------------------------------------------------------------------

ERROR: Operation failed on the data source named "dsnname". Reason of
failure "java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Exception
generated during defered local transaction handling. See next exception via
SQLException.getNextException for details." <br>The error occurred on line
7.

Error on C:\Inetpub\wwwroot\sitefolder\Home.cfm
----------------------------------------------------------------------------------

Thanks,


-- 
<Ajas Mohammed />
http://ajashadi.blogspot.com
We cannot become what we need to be, remaining what we are.
No matter what, find a way. Because thats what winners do.
You can't improve what you don't measure.
Quality is never an accident; it is always the result of high intention,
sincere effort, intelligent direction and skillful execution; it represents
the wise choice of many alternatives.



-------------------------------------------------------------
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-------------------------------------------------------------

Reply via email to