// for queries we have more than one td element to collapse/expand
var expand = "open";
dump = function( obj ) {
var out = "" ;
if ( typeof obj == "object" ) {
for ( key in obj ) {
if ( typeof obj[key] != "function" ) out += key + ': ' + obj[key] + '
' ;
}
}
}
cfdump_toggleRow = function(source) {
//target is the right cell
if(document.all) target = source.parentElement.cells[1];
else {
var element = null;
var vLen = source.parentNode.childNodes.length;
for(var i=vLen-1;i>0;i--){
if(source.parentNode.childNodes[i].nodeType == 1){
element = source.parentNode.childNodes[i];
break;
}
}
if(element == null)
target = source.parentNode.lastChild;
else
target = element;
}
//target = source.parentNode.lastChild ;
cfdump_toggleTarget( target, cfdump_toggleSource( source ) ) ;
}
cfdump_toggleXmlDoc = function(source) {
var caption = source.innerHTML.split( ' [' ) ;
// toggle source (header)
if ( source.style.fontStyle == 'italic' ) {
// closed -> short
source.style.fontStyle = 'normal' ;
source.innerHTML = caption[0] + ' [short version]' ;
source.title = 'click to maximize' ;
switchLongToState = 'closed' ;
switchShortToState = 'open' ;
} else if ( source.innerHTML.indexOf('[short version]') != -1 ) {
// short -> full
source.innerHTML = caption[0] + ' [long version]' ;
source.title = 'click to collapse' ;
switchLongToState = 'open' ;
switchShortToState = 'closed' ;
} else {
// full -> closed
source.style.fontStyle = 'italic' ;
source.title = 'click to expand' ;
source.innerHTML = caption[0] ;
switchLongToState = 'closed' ;
switchShortToState = 'closed' ;
}
// Toggle the target (everething below the header row).
// First two rows are XMLComment and XMLRoot - they are part
// of the long dump, the rest are direct children - part of the
// short dump
if(document.all) {
var table = source.parentElement.parentElement ;
for ( var i = 1; i < table.rows.length; i++ ) {
target = table.rows[i] ;
if ( i < 3 ) cfdump_toggleTarget( target, switchLongToState ) ;
else cfdump_toggleTarget( target, switchShortToState ) ;
}
}
else {
var table = source.parentNode.parentNode ;
var row = 1;
for ( var i = 1; i < table.childNodes.length; i++ ) {
target = table.childNodes[i] ;
if( target.style ) {
if ( row < 3 ) {
cfdump_toggleTarget( target, switchLongToState ) ;
} else {
cfdump_toggleTarget( target, switchShortToState ) ;
}
row++;
}
}
}
}
cfdump_toggleTable = function(source) {
var switchToState = cfdump_toggleSource( source ) ;
if(document.all) {
var table = source.parentElement.parentElement ;
for ( var i = 1; i < table.rows.length; i++ ) {
target = table.rows[i] ;
cfdump_toggleTarget( target, switchToState ) ;
}
}
else {
var table = source.parentNode.parentNode ;
for ( var i = 1; i < table.childNodes.length; i++ ) {
target = table.childNodes[i] ;
if(target.style) {
cfdump_toggleTarget( target, switchToState ) ;
}
}
}
}
cfdump_toggleSource = function( source ) {
if ( source.style.fontStyle == 'italic' || source.style.fontStyle == null) {
source.style.fontStyle = 'normal' ;
source.title = 'click to collapse' ;
return 'open' ;
} else {
source.style.fontStyle = 'italic' ;
source.title = 'click to expand' ;
return 'closed' ;
}
}
cfdump_toggleTarget = function( target, switchToState ) {
if ( switchToState == 'open' ) target.style.display = '' ;
else target.style.display = 'none' ;
}
// collapse all td elements for queries
cfdump_toggleRow_qry = function(source) {
expand = (source.title == "click to collapse") ? "closed" : "open";
if(document.all) {
var nbrChildren = source.parentElement.cells.length;
if(nbrChildren > 1){
for(i=nbrChildren-1;i>0;i--){
target = source.parentElement.cells[i];
cfdump_toggleTarget( target,expand ) ;
cfdump_toggleSource_qry(source);
}
}
else {
//target is the right cell
target = source.parentElement.cells[1];
cfdump_toggleTarget( target, cfdump_toggleSource( source ) ) ;
}
}
else{
var target = null;
var vLen = source.parentNode.childNodes.length;
for(var i=vLen-1;i>1;i--){
if(source.parentNode.childNodes[i].nodeType == 1){
target = source.parentNode.childNodes[i];
cfdump_toggleTarget( target,expand );
cfdump_toggleSource_qry(source);
}
}
if(target == null){
//target is the last cell
target = source.parentNode.lastChild;
cfdump_toggleTarget( target, cfdump_toggleSource( source ) ) ;
}
}
}
cfdump_toggleSource_qry = function(source) {
if(expand == "closed"){
source.title = "click to expand";
source.style.fontStyle = "italic";
}
else{
source.title = "click to collapse";
source.style.fontStyle = "normal";
}
}
| struct |
| Cause |
| struct |
| Detail |
[empty string]
|
| ErrNumber |
0
|
| Message |
Element ElfIDen is undefined in a CFML structure referenced as part of an expression.
|
| Resolvedname |
[empty string]
|
| StackTrace |
coldfusion.runtime.UndefinedElementException: Element ElfIDen is undefined in a CFML structure referenced as part of an expression.
at coldfusion.runtime.CfJspPage.ArrayGetAt(CfJspPage.java:970)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:981)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:976)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:795)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:779)
at cfBanner_Elfsight2ecfm1575162365.runPage(D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm:2)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:446)
at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2795)
at cfindex2ecfm1081743136.runPage(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm:12)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:446)
at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2795)
at cfApplication2ecfc353664851$funcONREQUEST.runFunction(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc:256)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)
at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405)
at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:655)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:444)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:414)
at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:108)
at coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:300)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:426)
at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:112)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94)
at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
at coldfusion.CfmServlet.service(CfmServlet.java:219)
at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:218)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:466)
at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:197)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:316)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
|
| Suppressed |
|
| TagContext |
| array
|
| 1 |
| struct |
| COLUMN |
0
|
| ID |
??
|
| LINE |
2
|
| RAW_TRACE |
at cfBanner_Elfsight2ecfm1575162365.runPage(D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm:2)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm
|
| TYPE |
CFML
|
|
| 2 |
| struct |
| COLUMN |
0
|
| ID |
CFINCLUDE
|
| LINE |
12
|
| RAW_TRACE |
at cfindex2ecfm1081743136.runPage(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm:12)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm
|
| TYPE |
CFML
|
|
| 3 |
| struct |
| COLUMN |
0
|
| ID |
CFINCLUDE
|
| LINE |
256
|
| RAW_TRACE |
at cfApplication2ecfc353664851$funcONREQUEST.runFunction(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc:256)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc
|
| TYPE |
CFML
|
|
|
| Type |
Expression
|
| element |
ElfIDen
|
| objectType |
object of java.lang.Class
|
| Class Name |
java.lang.Class |
| Methods |
| Method
|
Return Type
|
| asSubclass(java.lang.Class) |
java.lang.Class |
| cast(java.lang.Object) |
java.lang.Object |
| desiredAssertionStatus() |
boolean |
| forName(java.lang.String) |
java.lang.Class |
| forName(java.lang.String, boolean, java.lang.ClassLoader) |
java.lang.Class |
| getAnnotatedInterfaces() |
java.lang.reflect.AnnotatedType[] |
| getAnnotatedSuperclass() |
java.lang.reflect.AnnotatedType |
| getAnnotation(java.lang.Class) |
java.lang.annotation.Annotation |
| getAnnotations() |
java.lang.annotation.Annotation[] |
| getAnnotationsByType(java.lang.Class) |
java.lang.annotation.Annotation[] |
| getCanonicalName() |
java.lang.String |
| getClassLoader() |
java.lang.ClassLoader |
| getClasses() |
java.lang.Class[] |
| getComponentType() |
java.lang.Class |
| getConstructor(java.lang.Class[]) |
java.lang.reflect.Constructor |
| getConstructors() |
java.lang.reflect.Constructor[] |
| getDeclaredAnnotation(java.lang.Class) |
java.lang.annotation.Annotation |
| getDeclaredAnnotations() |
java.lang.annotation.Annotation[] |
| getDeclaredAnnotationsByType(java.lang.Class) |
java.lang.annotation.Annotation[] |
| getDeclaredClasses() |
java.lang.Class[] |
| getDeclaredConstructor(java.lang.Class[]) |
java.lang.reflect.Constructor |
| getDeclaredConstructors() |
java.lang.reflect.Constructor[] |
| getDeclaredField(java.lang.String) |
java.lang.reflect.Field |
| getDeclaredFields() |
java.lang.reflect.Field[] |
| getDeclaredMethod(java.lang.String, java.lang.Class[]) |
java.lang.reflect.Method |
| getDeclaredMethods() |
java.lang.reflect.Method[] |
| getDeclaringClass() |
java.lang.Class |
| getEnclosingClass() |
java.lang.Class |
| getEnclosingConstructor() |
java.lang.reflect.Constructor |
| getEnclosingMethod() |
java.lang.reflect.Method |
| getEnumConstants() |
java.lang.Object[] |
| getField(java.lang.String) |
java.lang.reflect.Field |
| getFields() |
java.lang.reflect.Field[] |
| getGenericInterfaces() |
java.lang.reflect.Type[] |
| getGenericSuperclass() |
java.lang.reflect.Type |
| getInterfaces() |
java.lang.Class[] |
| getMethod(java.lang.String, java.lang.Class[]) |
java.lang.reflect.Method |
| getMethods() |
java.lang.reflect.Method[] |
| getModifiers() |
int |
| getName() |
java.lang.String |
| getPackage() |
java.lang.Package |
| getProtectionDomain() |
java.security.ProtectionDomain |
| getResource(java.lang.String) |
java.net.URL |
| getResourceAsStream(java.lang.String) |
java.io.InputStream |
| getSigners() |
java.lang.Object[] |
| getSimpleName() |
java.lang.String |
| getSuperclass() |
java.lang.Class |
| getTypeName() |
java.lang.String |
| getTypeParameters() |
java.lang.reflect.TypeVariable[] |
| isAnnotation() |
boolean |
| isAnnotationPresent(java.lang.Class) |
boolean |
| isAnonymousClass() |
boolean |
| isArray() |
boolean |
| isAssignableFrom(java.lang.Class) |
boolean |
| isEnum() |
boolean |
| isInstance(java.lang.Object) |
boolean |
| isInterface() |
boolean |
| isLocalClass() |
boolean |
| isMemberClass() |
boolean |
| isPrimitive() |
boolean |
| isSynthetic() |
boolean |
| newInstance() |
java.lang.Object |
| toGenericString() |
java.lang.String |
| toString() |
java.lang.String |
|
|
|
| Detail |
An exception occurred while invoking an event handler method from Application.cfc. The method name is: onRequest.
|
| Message |
Event handler exception.
|
| RootCause |
| struct |
| Detail |
[empty string]
|
| ErrNumber |
0
|
| Message |
Element ElfIDen is undefined in a CFML structure referenced as part of an expression.
|
| Resolvedname |
[empty string]
|
| StackTrace |
coldfusion.runtime.UndefinedElementException: Element ElfIDen is undefined in a CFML structure referenced as part of an expression.
at coldfusion.runtime.CfJspPage.ArrayGetAt(CfJspPage.java:970)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:981)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:976)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:795)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:779)
at cfBanner_Elfsight2ecfm1575162365.runPage(D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm:2)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:446)
at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2795)
at cfindex2ecfm1081743136.runPage(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm:12)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:446)
at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2795)
at cfApplication2ecfc353664851$funcONREQUEST.runFunction(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc:256)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)
at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405)
at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:655)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:444)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:414)
at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:108)
at coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:300)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:426)
at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:112)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94)
at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
at coldfusion.CfmServlet.service(CfmServlet.java:219)
at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:218)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:466)
at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:197)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:316)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
|
| Suppressed |
|
| TagContext |
| array
|
| 1 |
| struct |
| COLUMN |
0
|
| ID |
??
|
| LINE |
2
|
| RAW_TRACE |
at cfBanner_Elfsight2ecfm1575162365.runPage(D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm:2)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm
|
| TYPE |
CFML
|
|
| 2 |
| struct |
| COLUMN |
0
|
| ID |
CFINCLUDE
|
| LINE |
12
|
| RAW_TRACE |
at cfindex2ecfm1081743136.runPage(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm:12)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm
|
| TYPE |
CFML
|
|
| 3 |
| struct |
| COLUMN |
0
|
| ID |
CFINCLUDE
|
| LINE |
256
|
| RAW_TRACE |
at cfApplication2ecfc353664851$funcONREQUEST.runFunction(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc:256)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc
|
| TYPE |
CFML
|
|
|
| Type |
Expression
|
| element |
ElfIDen
|
| objectType |
object of java.lang.Class
|
| Class Name |
java.lang.Class |
| Methods |
| Method
|
Return Type
|
| asSubclass(java.lang.Class) |
java.lang.Class |
| cast(java.lang.Object) |
java.lang.Object |
| desiredAssertionStatus() |
boolean |
| forName(java.lang.String) |
java.lang.Class |
| forName(java.lang.String, boolean, java.lang.ClassLoader) |
java.lang.Class |
| getAnnotatedInterfaces() |
java.lang.reflect.AnnotatedType[] |
| getAnnotatedSuperclass() |
java.lang.reflect.AnnotatedType |
| getAnnotation(java.lang.Class) |
java.lang.annotation.Annotation |
| getAnnotations() |
java.lang.annotation.Annotation[] |
| getAnnotationsByType(java.lang.Class) |
java.lang.annotation.Annotation[] |
| getCanonicalName() |
java.lang.String |
| getClassLoader() |
java.lang.ClassLoader |
| getClasses() |
java.lang.Class[] |
| getComponentType() |
java.lang.Class |
| getConstructor(java.lang.Class[]) |
java.lang.reflect.Constructor |
| getConstructors() |
java.lang.reflect.Constructor[] |
| getDeclaredAnnotation(java.lang.Class) |
java.lang.annotation.Annotation |
| getDeclaredAnnotations() |
java.lang.annotation.Annotation[] |
| getDeclaredAnnotationsByType(java.lang.Class) |
java.lang.annotation.Annotation[] |
| getDeclaredClasses() |
java.lang.Class[] |
| getDeclaredConstructor(java.lang.Class[]) |
java.lang.reflect.Constructor |
| getDeclaredConstructors() |
java.lang.reflect.Constructor[] |
| getDeclaredField(java.lang.String) |
java.lang.reflect.Field |
| getDeclaredFields() |
java.lang.reflect.Field[] |
| getDeclaredMethod(java.lang.String, java.lang.Class[]) |
java.lang.reflect.Method |
| getDeclaredMethods() |
java.lang.reflect.Method[] |
| getDeclaringClass() |
java.lang.Class |
| getEnclosingClass() |
java.lang.Class |
| getEnclosingConstructor() |
java.lang.reflect.Constructor |
| getEnclosingMethod() |
java.lang.reflect.Method |
| getEnumConstants() |
java.lang.Object[] |
| getField(java.lang.String) |
java.lang.reflect.Field |
| getFields() |
java.lang.reflect.Field[] |
| getGenericInterfaces() |
java.lang.reflect.Type[] |
| getGenericSuperclass() |
java.lang.reflect.Type |
| getInterfaces() |
java.lang.Class[] |
| getMethod(java.lang.String, java.lang.Class[]) |
java.lang.reflect.Method |
| getMethods() |
java.lang.reflect.Method[] |
| getModifiers() |
int |
| getName() |
java.lang.String |
| getPackage() |
java.lang.Package |
| getProtectionDomain() |
java.security.ProtectionDomain |
| getResource(java.lang.String) |
java.net.URL |
| getResourceAsStream(java.lang.String) |
java.io.InputStream |
| getSigners() |
java.lang.Object[] |
| getSimpleName() |
java.lang.String |
| getSuperclass() |
java.lang.Class |
| getTypeName() |
java.lang.String |
| getTypeParameters() |
java.lang.reflect.TypeVariable[] |
| isAnnotation() |
boolean |
| isAnnotationPresent(java.lang.Class) |
boolean |
| isAnonymousClass() |
boolean |
| isArray() |
boolean |
| isAssignableFrom(java.lang.Class) |
boolean |
| isEnum() |
boolean |
| isInstance(java.lang.Object) |
boolean |
| isInterface() |
boolean |
| isLocalClass() |
boolean |
| isMemberClass() |
boolean |
| isPrimitive() |
boolean |
| isSynthetic() |
boolean |
| newInstance() |
java.lang.Object |
| toGenericString() |
java.lang.String |
| toString() |
java.lang.String |
|
|
|
| StackTrace |
coldfusion.runtime.EventHandlerException: Event handler exception.
at coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:308)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:426)
at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:112)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94)
at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
at coldfusion.CfmServlet.service(CfmServlet.java:219)
at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:218)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:110)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:506)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:169)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:962)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:466)
at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:197)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:637)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:316)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
Caused by: coldfusion.runtime.UndefinedElementException: Element ElfIDen is undefined in a CFML structure referenced as part of an expression.
at coldfusion.runtime.CfJspPage.ArrayGetAt(CfJspPage.java:970)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:981)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:976)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:795)
at coldfusion.runtime.CfJspPage._arrayGetAt(CfJspPage.java:779)
at cfBanner_Elfsight2ecfm1575162365.runPage(D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm:2)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:446)
at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2795)
at cfindex2ecfm1081743136.runPage(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm:12)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:446)
at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2795)
at cfApplication2ecfc353664851$funcONREQUEST.runFunction(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc:256)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:472)
at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:405)
at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:368)
at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:55)
at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:321)
at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:220)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:655)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:444)
at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:414)
at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:108)
at coldfusion.runtime.AppEventInvoker.onRequest(AppEventInvoker.java:300)
... 34 more
|
| Suppressed |
|
| TagContext |
| array
|
| 1 |
| struct |
| COLUMN |
0
|
| ID |
??
|
| LINE |
2
|
| RAW_TRACE |
at cfBanner_Elfsight2ecfm1575162365.runPage(D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm:2)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Shared\GCresponsiveV1\modules\banner\Banner_Elfsight.cfm
|
| TYPE |
CFML
|
|
| 2 |
| struct |
| COLUMN |
0
|
| ID |
CFINCLUDE
|
| LINE |
12
|
| RAW_TRACE |
at cfindex2ecfm1081743136.runPage(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm:12)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\index.cfm
|
| TYPE |
CFML
|
|
| 3 |
| struct |
| COLUMN |
0
|
| ID |
CFINCLUDE
|
| LINE |
256
|
| RAW_TRACE |
at cfApplication2ecfc353664851$funcONREQUEST.runFunction(D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc:256)
|
| TEMPLATE |
D:\inetpub\wwwroot\GiantChair\Publishers\i_Namur\Application.cfc
|
| TYPE |
CFML
|
|
|
| Type |
Expression
|
| name |
onRequest
|