jfrux / ccpd-platform

the current code powering ccpd.uc.edu
MIT License
0 stars 0 forks source link

malformed Fuseaction You specified a malformed Fuseaction of undefined. A fully qualified Fuseaction must be in the form [Circuit].[Fuseaction]. <br>The error occurred on line 449. #30

Open jfrux opened 11 years ago

jfrux commented 11 years ago

A fully qualified Fuseaction must be in the form [Circuit].[Fuseaction].
The error occurred on line 449.

BugLog has received a new bug report on the last 1 hour

Bug Report URL: http://bugs.swodev.com/hq/index.cfm?event=entry&entryID=5534http://u68407.sendgrid.org/wf/click?upn=uvIQ1WqTidUNjXuccfr6hHbOcgBM1Px-2FTiA4lyVduS3xxmHA22GLCqCJKSsMQ57Y7n3vAmJahheSAJigLlacWEW5zkfphbZQZzHaJW9v-2BsE-3D_yxPsDyarXjRk23PDzjEhwoK03OPySxmvh3wr7JULgBsunLWsuTo3q4NFifhtRzvwQKlG1dbPSkGZD6VeqrTazAL1pPqUv-2Bu4ZoJq-2BzrtEz1l6FiUdnWQQl3YKmzejFoiec9qXOTNU9lPmmUaKEHWL3mVidPNsxQArz6dw-2BBt7Ek-3D


Message: malformed Fuseaction You specified a malformed Fuseaction of undefined. A fully qualified Fuseaction must be in the form [Circuit].[Fuseaction]. The error occurred on line 449. Date/Time: 03/07/13 2:11 PM Application: CCPD_ADMIN_PRODUCTION_f32f23f Host: CCPD-WEB1 Severity: ERROR Template Path: C:\sites\ccpd-platform\admin\index.cfm Exception Message: Exception Detail:


HTML Report: Exception Summary Application: CCPD_ADMIN_PRODUCTION_f32f23f Host: CCPD-WEB1 Server Date/Time: Mar 7, 2013 2:11 PM Message: Detail: Script Name (CGI): /admin/index.cfm User Agent: Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0 Query String: Coldfusion ID: [SESSION] CFID = 602406; CFTOKEN = 47513441 JSessionID=CCPD_ADMIN_PRODUCTION_F32F23F_602406_47513441 [CLIENT] CFID = 602406; CFTOKEN = 47513441 [COOKIES] CFID = 602406; CFTOKEN = 47513441 [J2EE SESSION] JSessionID = Element JSESSIONID is undefined in SESSION. Exception Info // 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 AUSER struct ID 14887 NAME Mary Gallo

DETAILS struct Browser Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0 DateTime {ts '2013-03-07 14:11:54'} Diagnostics malformed Fuseaction You specified a malformed Fuseaction of undefined. A fully qualified Fuseaction must be in the form [Circuit].[Fuseaction].
The error occurred on line 449. GeneratedContent HTTPReferer http://ccpd.uc.edu/admin/event/main.welcome Mailto rountrjf@ucmail.uc.edumailto:rountrjf@ucmail.uc.edu Message malformed Fuseaction QueryString [empty string] RemoteAddress 10.168.1.58 RootCause struct Detail You specified a malformed Fuseaction of undefined. A fully qualified Fuseaction must be in the form [Circuit].[Fuseaction]. ErrorCode [empty string] ExtendedInfo [empty string] Message malformed Fuseaction StackTrace coldfusion.runtime.CustomException: malformed Fuseaction at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:124) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2661) at cffuseboxApplication2ecfc502487752$funcCOMPILEREQUEST.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\fuseboxApplication.cfc:449) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:418) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:360) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:324) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:59) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:277) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:192) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:448) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:308) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2272) at cfApplication2ecfc1084462288$funcONREQUESTSTART.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\Application.cfc:206) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:418) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:324) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:59) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:277) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:192) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:448) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:308) at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:74) at coldfusion.runtime.AppEventInvoker.onRequestStart(AppEventInvoker.java:221) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:264) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.CfmServlet.service(CfmServlet.java:175) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at jrun.servlet.FilterChain.service(FilterChain.java:101) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543) at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320) at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66) TagContext array 1 struct COLUMN 0 ID CFTHROW LINE 449 RAW_TRACE at cffuseboxApplication2ecfc502487752$funcCOMPILEREQUEST.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\fuseboxApplication.cfc:449) TEMPLATE C:\sites\ccpd-platform\admin_core\fusebox5\fuseboxApplication.cfc TYPE CFML

2 struct COLUMN 0 ID CF_TEMPLATEPROXY LINE 206 RAW_TRACE at cfApplication2ecfc1084462288$funcONREQUESTSTART.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\Application.cfc:206) TEMPLATE C:\sites\ccpd-platform\admin_core\fusebox5\Application.cfc TYPE CFML

Type fusebox.malformedFuseaction code [empty string]

StackTrace coldfusion.runtime.CustomException: malformed Fuseaction at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:124) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2661) at cffuseboxApplication2ecfc502487752$funcCOMPILEREQUEST.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\fuseboxApplication.cfc:449) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:418) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:360) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:324) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:59) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:277) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:192) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:448) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:308) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2272) at cfApplication2ecfc1084462288$funcONREQUESTSTART.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\Application.cfc:206) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:418) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:324) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:59) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:277) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:192) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:448) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:308) at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:74) at coldfusion.runtime.AppEventInvoker.onRequestStart(AppEventInvoker.java:221) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:264) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.CfmServlet.service(CfmServlet.java:175) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at jrun.servlet.FilterChain.service(FilterChain.java:101) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543) at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320) at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66) TagContext array 1 struct COLUMN 0 ID CFTHROW LINE 449 RAW_TRACE at cffuseboxApplication2ecfc502487752$funcCOMPILEREQUEST.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\fuseboxApplication.cfc:449) TEMPLATE C:\sites\ccpd-platform\admin_core\fusebox5\fuseboxApplication.cfc TYPE CFML

2 struct COLUMN 0 ID CF_TEMPLATEPROXY LINE 206 RAW_TRACE at cfApplication2ecfc1084462288$funcONREQUESTSTART.runFunction(C:\sites\ccpd-platform\admin_core\fusebox5\Application.cfc:206) TEMPLATE C:\sites\ccpd-platform\admin_core\fusebox5\Application.cfc TYPE CFML

Template /admin/index.cfm Type coldfusion.runtime.CfErrorWrapper

Additional Info


\ This email has been sent automatically from the BugLog server at http://bugs.swodev.com/http://u68407.sendgrid.org/wf/click?upn=uvIQ1WqTidUNjXuccfr6hFGDido8xaN29PScvYVH5P0-3D_yxPsDyarXjRk23PDzjEhwoK03OPySxmvh3wr7JULgBsunLWsuTo3q4NFifhtRzvwYLkz455FM9rXiiKG1AlgYxfzMtg2tYwDMIQVJixbjGThx37zlfywPbz1ED85JNuCbrIDXzdzEnnqca7aw0FtF-2BHNCwrWRkcNPpp40Ttp9wc-3D To disable automatic notifications log into the bugLog server and disable the corresponding rule.