ColdFusion MX7 and Javascript

I have a .cfm file which includes a .js file and then calls a
newWin() function in the javascript file, as shown below :
<script language="JavaScript1.2">
<cfinclude
template="#request.sharedJSDir#/window_operation.js">
</script>
<a
href="javascript:newWin('D','<cfoutput>#request.http#/#request.daito_dir#</cfoutput>/inde x.cfm');"><img
src="<cfoutput>#request.sharedImageDir#</cfoutput>/main_menu/logo_daito.gif"
border="0"></a>
The newWin() function i the .js file is as below :
function newWin(a,b)
var win_name=a+"_appwin";
var path_x=b;
var i=newwin.length;
win_namearray
=win_name;
newwin=window.open(path_x,win_name,"left=0,top=0,width=1050,height=650,toolbar=no,location=no,st atus=yes,menubar=yes,scrollbars=no,resizable=yes");
newwin
.focus();
This code works with ColdFusion 5.0 and now I am trying to
get this to work with ColdFusion MX7. However, it gives an error on
page as below :
Line : 1
Char: 1
Error : Object expected
Code: 0
Could anyone help me to understand this issue?

idesdema wrote:
> I haven't tried the first reply yet but Dan... will it
not work?
Dan was talking about converting an entire query from
ColdFusion to some
type of equivalent JavaScript variable. But your example code
did not
show this.
If you are trying to get complex variables from ColdFusion to
JavaScript
such as arrays, structures or queries. You will want to
investigate the
<cfwddx...> tag.
<head>
<script type="text/javascript">
<cfwddx action="CFML2JS"
input="#myComplexVar#"
topLevelVariable="myJSvar">
</script>
But your original post did not show this.
idesdema wrote:
> var point = new GLatLng(#cf1#,#cf2#);
This shows basic simple values being output into a JS
function, which my
original post demonstrated.

Similar Messages

  • ColdFusion MX7 and db2 9.5 timeout issue

    Does anybody have a solution for this? I can connect to the db2 database via ibm managment tool with no problem using the same username/password, But get a timeout error when setting up a dsn for the database via cold fusion.
    cold Fusion MX 7
    DB2 9.5 on AIX
    any one and thanks in advance!

    Sounds strange - any special activities running at that time ? E.g. a backup ? Do you see that on all application servers ?
    How to you resolve this situation ?
    What does the db2diag.log show for that time frame ?
    Malte

  • Need Paths For Configuration Apache 2.2 And Coldfusion MX7

    Please provide the default configuration directory and also
    the directory and file name of the server binary for the drop down
    configuration list in Cold Fusion to configure Coldfusion MX7 to
    work with Apache 2.2. I need this immediately. I thank you in
    advance!!!!!

    Is this what you are looking for?
    http://www.adobe.com/go/8001e97
    Ken Ford
    Adobe Community Expert
    Fordwebs, LLC
    http://www.fordwebs.com
    "spinaweb" <[email protected]> wrote in
    message news:ervso2$n7c$[email protected]..
    > Please provide the default configuration directory and
    also the directory and
    > file name of the server binary for the drop down
    configuration list in Cold
    > Fusion to configure Coldfusion MX7 to work with Apache
    2.2. I need this
    > immediately. I thank you in advance!!!!!
    >

  • Closing the browser windows created by web.show_document and javascript

    From Forms I am issuing a http request using web.show_document and javascript:window.open(). The http request makes a remote procedure call to a coldfusion component on a JRun appserver. I want this rpc to fire in the background so that the current forms browser window remains as is.
    The logic is as follows
    l_rpcURL := 'http://....just a standard URL.....'; -- edited for this thread
    l_jsURL := 'javascript:window.open("' || l_rpcURL || '","","fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,status=no,resizable=no");self.close();';
    WEB.SHOW_DOCUMENT (l_jsURL,'_blank');
    The http request works fine but leaves a browser window behind. It's the one created by the javascript.window.open(). If I remove the self.close() from the javascript then I have two browser windows open, one from web.show_document and the other, as described previously, from the window.open().
    Any idea how I can force closure of the window opened by the window.open() ?
    Thanks

    Hi,
    did this occured afer installing service pack 2?
    A work around is The only solution that is to create a close.html file and calling this file in the code: Web.show_document('http://server:port/close.html','_self');
    <html>
    <body onload="closeit()">
    <script>
    window.close();
    </script>
    </body>
    </html>
    Monica

  • ColdFusion MX7 Error When Starting Apache2Triad

    I just installed the ColdFusion MX7 trial on my local
    machine. When I try to start the Apache2Triad (uses Apache 2.2.0)
    service it fails to start and the following error is written to the
    system log file:
    quote:
    The Apache service named Apache2Triad Apache 2 Service
    reported the following error:
    >>>httpd.exe: Syntax error on line 1116 of
    C:/apache2triad/conf/httpd.conf: Cannot load
    C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so into
    server: The specified procedure could not be found.
    The following was written to the Apache conf file by
    ColdFusion when installed:
    quote:
    # JRun Settings
    LoadModule jrun_module
    "C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so"
    <IfModule mod_jrun20.c>
    JRunConfig Verbose false
    JRunConfig Apialloc false
    JRunConfig Ssl false
    JRunConfig Ignoresuffixmap false
    JRunConfig Serverstore
    "C:/CFusionMX7/runtime/lib/wsconfig/1/jrunserver.store"
    JRunConfig Bootstrap 127.0.0.1:51011
    #JRunConfig Errorurl <optionally redirect to this URL on
    errors>
    #JRunConfig ProxyRetryInterval 600
    #JRunConfig ConnectTimeout 15
    #JRunConfig RecvTimeout 300
    #JRunConfig SendTimeout 15
    AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr
    .cfswf
    </IfModule>
    My Apache service starts with the following command line (in
    case this is important):
    quote:
    "C:\apache2triad\bin\httpd.exe" -n Apache2 -k runservice
    I posted this on the Apache2Triad forum and the response was:
    quote:
    this means that apache has problems with a library needed by
    that module , it can be anything , missing file , conflicting
    version
    So, is this an Apache problem or is this something similar to
    this post:
    CFMX
    7 installation problem

    I just installed the ColdFusion MX7 trial on my local
    machine. When I try to start the Apache2Triad (uses Apache 2.2.0)
    service it fails to start and the following error is written to the
    system log file:
    quote:
    The Apache service named Apache2Triad Apache 2 Service
    reported the following error:
    >>>httpd.exe: Syntax error on line 1116 of
    C:/apache2triad/conf/httpd.conf: Cannot load
    C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so into
    server: The specified procedure could not be found.
    The following was written to the Apache conf file by
    ColdFusion when installed:
    quote:
    # JRun Settings
    LoadModule jrun_module
    "C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so"
    <IfModule mod_jrun20.c>
    JRunConfig Verbose false
    JRunConfig Apialloc false
    JRunConfig Ssl false
    JRunConfig Ignoresuffixmap false
    JRunConfig Serverstore
    "C:/CFusionMX7/runtime/lib/wsconfig/1/jrunserver.store"
    JRunConfig Bootstrap 127.0.0.1:51011
    #JRunConfig Errorurl <optionally redirect to this URL on
    errors>
    #JRunConfig ProxyRetryInterval 600
    #JRunConfig ConnectTimeout 15
    #JRunConfig RecvTimeout 300
    #JRunConfig SendTimeout 15
    AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr
    .cfswf
    </IfModule>
    My Apache service starts with the following command line (in
    case this is important):
    quote:
    "C:\apache2triad\bin\httpd.exe" -n Apache2 -k runservice
    I posted this on the Apache2Triad forum and the response was:
    quote:
    this means that apache has problems with a library needed by
    that module , it can be anything , missing file , conflicting
    version
    So, is this an Apache problem or is this something similar to
    this post:
    CFMX
    7 installation problem

  • How to integrate java into coldfusion MX7

    I am beginner and taking training in coldfusion since 2
    months.I want to know how to integrate java into coldfusion
    MX7.

    You might take a look at this doc -
    http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm
    HTH,
    Anne Sandstrom
    Senior Technical Writer
    ColdFusion
    Adobe Systems, Inc.

  • How do you Configure Coldfusion MX7 Developer Version Step by Step to an Apache Server?

    Please provide exact steps as to how to Configure Coldfusion
    MX7 Developer Version Step by Step to an Apache Server Step by
    Step. I would be using the latest Apache Server download, which
    would be: apache_2.2.4-win32-x86-no_ssl.msi Please provide this
    answer ASAP.... Please also provide info on what folders to point
    the system to when configuring; in the version I provided it is
    rather hard to figure out what folders to use. Right now the way I
    did it does not work and I cannot see the administration page when
    the Apache Server is Running. Should the Apache Server be Running
    while installing? Also I noticed after the first install of Cold
    Fusion there is another step for full configuration where you have
    to go to the local host page for further configuration. What do you
    have to do there? I couldn't even get to that page because I
    couldn't access the admin page after I did the installation. Any
    help would be very welcome. Thanks in advance.

    This looks promising:
    http://www.sitepoint.com/article/install-coldfusion-mx-windows
    Ken Ford
    Adobe Community Expert
    Fordwebs, LLC
    http://www.fordwebs.com
    "spinaweb" <[email protected]> wrote in
    message
    news:eorrk3$m1g$[email protected]..
    > Please provide exact steps as to how to Configure
    Coldfusion MX7 Developer
    > Version Step by Step to an Apache Server Step by Step. I
    would be using
    > the
    > latest Apache Server download, which would be:
    > apache_2.2.4-win32-x86-no_ssl.msi Please provide this
    answer ASAP....
    > Please
    > also provide info on what folders to point the system to
    when configuring;
    > in
    > the version I provided it is rather hard to figure out
    what folders to
    > use.
    > Right now the way I did it does not work and I cannot
    see the
    > administration
    > page when the Apache Server is Running. Should the
    Apache Server be
    > Running
    > while installing? Also I noticed after the first install
    of Cold Fusion
    > there
    > is another step for full configuration where you have to
    go to the local
    > host
    > page for further configuration. What do you have to do
    there? I couldn't
    > even
    > get to that page because I couldn't access the admin
    page after I did the
    > installation. Any help would be very welcome. Thanks in
    advance.
    >
    >

  • ColdFusion MX7 on Windows Server 2008 R2 / IIS 7.5

    After configuration, have developed the ColdFusion MX7 installation to Windows Server 2008 R2 64 bits and System for the installation of Office 2000, but in running the following code segment, abnormal.
    code:
    <cftry>
        <cfobject type="COM" name="PPT"
    class="PowerPoint.Application" action="CREATE">
       <cfset variables.stLocalTemp=StructNew()>
       <cfset Pres = PPT.Presentations.Open
    ("abcd.ppt", true, False, False)> 
       <cfset resultjx=Pres.Close()>
       <cfset resultjx=PPT.Quit()>
       <cfset Pres = "">
       <cfset PPT = "">    
      <cfcatch>
        <cfoutput>Error in PPT2JPG CFC:
    #cfcatch.message# #cfcatch.detail#</cfoutput>
       </cfcatch> 
      </cftry>
    Exception:
    An exception occurred when executing a Com method. The cause of this
    exception was that: AutomationException: 0x80004005 - PowerPoint ??¨′
    ò?a′???t?£ in 'Microsoft PowerPoint 2000'.
    Who knows the cause of abnormal, do me a favor.

    Hi Peter,
    Please check if the IPv4 Address and Domain Restrictions feature can help you to achieve target. For more details,
    please refer to following article.
    FTP IPv4 Address and Domain Restrictions
    Page
    In addition, I agree with SenneVL. This issue seems to be more related to IIS configuration. As SenneVL suggested,
    you would post your question in IIS Forum. I believe we will get a better assistance there.
    Hope this helps.
    Best regards,
    Justin Gu

  • CFLAYOUTAREA and javascript and innerHTML

    Ok, this is a little complicated and it is not necessary limited to ColdFusion.
    (And seeing's how there are so few replies these days here, I'll cross post in various forums!)
    Here goes.
    I have a cflayout with several cflayoutareas, and nested cflayouts.  In some of them I have a photos tab.
    In those photo tabs, I call a custom tag that displays a gallery of photos, dislays the primary one and offers thumbnails.  Click on a thumbnail
    and a Javascript function (changeImage) uses htmlid.innerHTML=newpic.
    It works as expected.  Perfectly!
    EXCEPT WHEN more than one Photo tab has images in it!
    The javascript function seems to get confused which cflayout tab it is in?  Or which "instance" it is using?
    Also each "tab" has its own javascript function, so ... each redundant js function cancels each other out?
    So ... I went and ...
    - commented out the JS function in the custom tag. 
    - copied it to the shell of my web site so it's ALWAYS there for any photo custom tag to find; but only one of them.
    - added what I'll call an instance ... when I call the photo custom tag added a unique parameter I called window with an ID in it.  Changed the <span id="photo"> to <span id="#attributes.window#">
    and when calling the javascript added  a href="javascript:changeImage'#var1#', '#var2#', '#var3#', '#attributes.window#">
    - then in the shell added window to the () of the call
    - I then dump all the values ... in the js function.
    - all are ok, it gets the window value, the proper image name and does a window.innerHTML.newpic;  just fine.
    only there's no change onscreen.
    If you have followed thus far, THANKS! 
    How do I get the javascript to "find" the right cflayoutarea or is that even the problem?
    Thanks a million!

    Newsgroup_User wrote: The innerHTML
    property was originally created by Microsoft as a proprietary shortcut,
    but proved to be so useful, it was adopted by all other browsers. Although
    innerHTML is not currently part of the W3C specification, it has proved
    so useful that it now forms part of the draft specification for HTML5:
    http://dev.w3.org/html5/html4-differences/Overview.html#htmldocument-extensions
    Checking web pages and scripts against validators is a good
    habit to get into. However, web technology is still evolving, so it's also
    important to understand that the specifications change only at a
    glacial pace. Sometimes, it makes sense to adopt practices that don't
    follow the specs to the letter.
    I just received the following from the good people at jQuery.  I thought that I might share it with you. 
    Someone suggested:
    > ...what is wrong with just having:-
    > var todayEl = document.getElementById("today");
    > todayEl.innerHTML = formatDate(new Date);
    Another replied:  document.ElementById has a bug in ie6 and ie7 that will return an element with a name attribute of the same value.  Use $('#today') instead.
    todayEl.innerHTML = "something" can cause memory leaks if events are added to DOM objects inside of todayEl and then just written over
    instead of being removed first.  Use $('#today').html(formatDate(new Date)); instead if this could be a cause for concern.
    Perhaps someone would like to comment further.
    Roddy

  • ODBC service problem on ColdFusion MX7

    We just reinstalled ColdFusion MX7 on a Windows 2000 server.
    This machine used to have an old version ColdFusion MX 6 on it, but
    that has been uninstalled. There seem to be remenants from the
    uninstallation left on the machine, but the MX version does not
    appear in the add/remove programs list, or in the services list
    anymore.
    When attempting to use ODBC datasources, the following error
    is encountered:
    java.sql.SQLException: [Macromedia][SequeLink JDBC
    Driver][SequeLink Server]The specified data source is not defined.
    The root cause was that: java.sql.SQLException:
    [Macromedia][SequeLink JDBC Driver][SequeLink Server]The specified
    data source is not defined
    If I go to edit or verify a ODBC source in the administrator,
    the following error is returned:
    The ColdFusion MX 7 ODBC Server service is not running or has
    not been installed.
    I have tried using the SequeLink Setup
    CFServiceController.exe program to reinstall the ODBC services, but
    every time it installs "ColdFusion MX ODBC Agent" and "ColdFusion
    MX ODBC Server" it should be installing MX 7, not MX.
    When it installs the wrong version, the services will not
    start, instead they say the specified file cannot be found.
    Any ideas?

    Additional development, the server service is intermittently
    crashing, resulting in messages like this one:
    Server Error
    The server encountered an internal error and was unable to
    complete your request.
    Could not connect to JRun Server.

  • ColdFusion MX7

    The operating system is Windows 2008 R2 64, has been successfully installed the ColdFusion MX7, but in execute the following code when an exception occurs ( Office 2000 already installed in the system. ):
    Code:
      <cftry>
    <cfobject type="COM" name="PPT" class="PowerPoint.Application" action="CREATE">
    <cfset variables.stLocalTemp=StructNew()>
    <cfset Pres = PPT.Presentations.Open("abcd.ppt", true, False, False)> 
    <cfset resultjx=Pres.Close()>
    <cfset resultjx=PPT.Quit()>
    <cfset Pres = "">
    <cfset PPT = "">     
      <cfcatch>
    <cfoutput>Error in PPT2JPG CFC: #cfcatch.message# #cfcatch.detail#</cfoutput>
    </cfcatch> 
      </cftry>
    Exception:
    An exception occurred when executing a Com method. The cause of this exception was that: AutomationException: 0x80004005 - PowerPoint ??¨′ò?a′???t?£ in 'Microsoft PowerPoint 2000'.
    If anyone knows how to solve it, come back to me, thank you very much!

    See if any of these help:
    http://kb2.adobe.com/cps/228/228c3aaa.html
    http://www.forta.com/blog/index.cfm/2006/2/6/Connecting-ColdFusion-MX-7-To-64bit-IIS-6
    http://www.justskins.com/forums/cf-mx-7-windows-server-2003-and-64bit-36562.html
    Ken Ford
    Adobe Community Expert - Dreamweaver/ColdFusion
    Adobe Certified Expert - Dreamweaver CS4
    Adobe Certified Expert - ColdFusion 8
    Fordwebs, LLC
    http://www.fordwebs.com
    http://www.cfnoob.com

  • Coldfusion MX7 error with file upload

    Hi all,         I am using coldfusion mx7 server. While upload an excel file with(97-2003) format, I am getting the following error:  Unable to construct record instance, the following exception occured: null
    I am getting this error when I enters some data and save in my  desktop with the format(97-2003) and after using a cfx tag to dump the  uploaded data, I am getting this error. But if I just upload the  template only without entering any data it will shows/dump the column  names in template..
    Is there any way to upload the same excel file with MX7?
    Thanks in advance

    To answer your final question: yes of course it's possible to upload any file type with any version of CF.  One has no dependency on the other.
    As for the rest of it: without seeing some code, it's impossible to really:
    a) understand what you're asking;
    b) work out what might be causing the problem.
    Adam

  • Coldfusion broke and i can't fix it.

    ehllo all,
    I had the developers addition of coldfusion mx7 installed. I
    use windows xp running with apache 1.3 server and it was working
    just fine. Then I went and destroyed some key files on my server
    whops
    reinstalled the server but can't seam to get
    coldfusion working again i tried uninstalling it and installing it,
    about 12 times, but it doesn’t want to work for me. when i
    reinstall it dose not create the cfmx directory?
    Any help at all would be greatly appreciated
    karmapool

    adam thanks for the direction
    here is were it lead me...
    Coldfusion is not reinstalling at all. Apache is running fine
    with PHP and mySQL. Going through the install wizard it never makes
    it to the server configuration page (it just skips it?) there is an
    install log created and I took a closer look at it.
    Install Directory: C:\Documents and Settings\Owner\Local
    Settings\Temp\7433.tmp\
    Status: SUCCESSFUL
    Additional Notes: NOTE - Directory already existed
    There seams to be several files been left behind in the
    directory
    C:\Documents and Settings\Owner\Local Settings\Temp\
    • hsperfdata_Owner(folder)
    • persistent_state
    • 1416.tmp (folder)—always diff 4 nums—
    • .com.zerog.registry.xml
    • .cleanup.tmp(folder)
    • removefiles.txttemp
    strange thing at first I deleted the entire directory. It
    then moved where it was installing the files to C:\Temp\ I deleted
    this directory too. It then started installing the files into
    C:\Documents and Settings\Owner\ didn’t want to delete this
    directory because of other key files so I created another
    C:\Documents and Settings\Owner\Local Settings\Temp\ directory and
    it started installing them in there again
    another strange thing is some where along the line of going
    through the install wizard I did make it to the configure server
    page. Thought I had it but I had installed a version of apache that
    it didn’t like so I had to start over and never made it back
    final strange thing is a I tried coldfusion MX6 and the
    installer always says to pick another directory to unpack in wont
    even launch any more
    I think it maybe because my hard drive is almost full I am
    going to delete some things then defragment it
    Cheers,
    Karmapool

  • How to redirect on htttp to https with www redirect of coldfusion mx7?

    Hi any one help me  - How to redirect on htttp to https with www redirect of coldfusion mx7?

    I used below code. its working perfectly. thanks a lot. 
    <cfif (CGI.SERVER_NAME EQ "site.com") and (CGI.https NEQ "on")>
    <cfheader statuscode="301" statustext="Moved permanently">
    <cfheader name="Location" value="https://www.site.com#CGI.SCRIPT_NAME#">
    </cfif>
    <cfif (CGI.SERVER_NAME EQ "www.site.com") and (CGI.https NEQ "on")>
    <cfheader statuscode="301" statustext="Moved permanently">
    <cfheader name="Location" value="https://www.site.com#CGI.SCRIPT_NAME#">
    </cfif>
    <cfif CGI.SERVER_NAME EQ "site.com">
    <cfheader statuscode="301" statustext="Moved permanently">
    <cfheader name="Location" value="http://www.site.com#CGI.SCRIPT_NAME#">
    </cfif>

  • ColdFusion MX7 Reports Hang

    Please see the stack trace below from FusionReactor.  This just started two weeks ago, we had been running great for over three months with no issues like this.  In the past we had seen this once a month or so, but never spent much time on it because it was very infrequent.  Thanks in advance for your help.
    Thread Stack Trace
    Trace Time:   11:47:06.631 16-May-2013
    Request ID:   3273
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:35:37.258 16-May-2013
    Exec Time:    689373ms
    Memory Used:  (8%)41,056KB
    Memory Free:  463,839KB
    Thread ID:    jrpp-164
    Priority:     5
    Hashcode:     8928918
    "jrpp-164" prio=5 tid=0x039a75c0 nid=0x1ed0 waiting on condition
     at java.lang.Thread.sleep(Native Method)
     at coldfusion.runtime.report.Report.runReport(Report.java:323)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.740 16-May-2013
    Request ID:   3313
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:36:36.404 16-May-2013
    Exec Time:    630336ms
    Memory Used:  (9%)46,857KB
    Memory Free:  458,038KB
    Thread ID:    jrpp-143
    Priority:     5
    Hashcode:     6763345
    "jrpp-143" prio=5 tid=0x037c80b0 nid=0x1ce4 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3375
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:41:31.919 16-May-2013
    Exec Time:    334837ms
    Memory Used:  (8%)45,188KB
    Memory Free:  459,707KB
    Thread ID:    jrpp-203
    Priority:     5
    Hashcode:     11587838
    "jrpp-203" prio=5 tid=0x08faf5e8 nid=0x1d44 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3416
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:42:08.853 16-May-2013
    Exec Time:    297903ms
    Memory Used:  (8%)42,401KB
    Memory Free:  462,494KB
    Thread ID:    jrpp-241
    Priority:     5
    Hashcode:     3455229
    "jrpp-241" prio=5 tid=0x0381be88 nid=0x3ec in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3646
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:46:12.916 16-May-2013
    Exec Time:    53840ms
    Memory Used:  (9%)50,379KB
    Memory Free:  454,516KB
    Thread ID:    jrpp-172
    Priority:     5
    Hashcode:     31620022
    "jrpp-172" prio=5 tid=0x03a45a10 nid=0xf70 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3649
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:46:13.947 16-May-2013
    Exec Time:    52809ms
    Memory Used:  (9%)48,752KB
    Memory Free:  456,143KB
    Thread ID:    jrpp-236
    Priority:     5
    Hashcode:     6502586
    "jrpp-236" prio=5 tid=0x03a44760 nid=0x14f4 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3716
    Script Name:  https://ecm.wvdrs.org/ecm/case/case.cfm?form=actionComment&amp;CID=107559
    Started:      11:47:06.303 16-May-2013
    Exec Time:    453ms
    Memory Used:  (9%)45,923KB
    Memory Free:  458,972KB
    Thread ID:    jrpp-160
    Priority:     5
    Hashcode:     23728670
    "jrpp-160" prio=5 tid=0x039a4620 nid=0x19b0 runnable
     at java.net.SocketInputStream.socketRead0(Native Method)
     at java.net.SocketInputStream.read(Unknown Source)
     at macromedia.jdbc.sqlserver.SQLServerByteOrderedDataReader.readPacketIntoPrimaryBuffer(Unkn own Source)
     at macromedia.jdbc.sqlserver.SQLServerByteOrderedDataReader.receive(Unknown Source)
     at macromedia.jdbc.sqlserver.tds.TDSRequest.receive(Unknown Source)
     at macromedia.jdbc.sqlserver.tds.TDSExecuteRequest.submitRequest(Unknown Source)
     at macromedia.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
     at macromedia.jdbc.base.BaseStatement.commonExecute(Unknown Source)
     at macromedia.jdbc.base.BaseStatement.executeInternal(Unknown Source)
     at macromedia.jdbc.base.BaseStatement.execute(Unknown Source)
     - locked <0x10ae36c8> (a macromedia.jdbc.sqlserver.SQLServerConnection)
     at coldfusion.server.j2ee.sql.JRunStatement.execute(JRunStatement.java:212)
     at coldfusion.sql.Executive.executeQuery(Executive.java:705)
     at coldfusion.sql.Executive.executeQuery(Executive.java:638)
     at coldfusion.sql.Executive.executeQuery(Executive.java:599)
     at coldfusion.sql.SqlImpl.execute(SqlImpl.java:236)
     at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:498)
     at cfactionComment2ecfm627287827.runPage(D:\Inetpub\wwwroot\ecm\Case\actionComment.cfm:26)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfcase2ecfm50633854._factor20(D:\Inetpub\wwwroot\ecm\Case\case.cfm:715)
     at cfcase2ecfm50633854._factor21(D:\Inetpub\wwwroot\ecm\Case\case.cfm:242)
     at cfcase2ecfm50633854.runPage(D:\Inetpub\wwwroot\ecm\Case\case.cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    sunil106 wrote:
    > How can I backup coldfusion mx7 configuration and data
    sources?
    The datasources depends on the type, most databases have
    dedicated tools
    for backups. For CF configuration I do a nightly filesystem
    backup of
    all files with the following extensions:
    *.xml
    *.properties
    *.config
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

Maybe you are looking for

  • Check number not getting updated in vendor line items

    Hi I am giving check to vendor. Hence i am assigning manual checks in FCH5. Then i did FCHU. After i did FCHU, my check number got updated in assignment field in bank line item. But i am getting problem for vendor line item. My vendor line item is no

  • Color Alignment issue with HP LaserJet Pro CP1525nw

    Hi -  I am having trouble with my color alignment.  I have tried calibrating the machine several times and still have an issue.  Anyone know of a quick fix?  In a hurry to print properly!!!

  • Invalid content type for SOAP: TEXT/HTML; HTTP 500 Internal Server Error

    Hi, I have this error on a SOAP Receiver Channel: invalid content type for SOAP: TEXT/HTML; HTTP 500 Internal Server Error I've found several threads on SDN Forums about similar errors, but I did not find a solution for my problem yet. I checked this

  • Date woes

    I have a query that returns records when i do not use a where clause. I want to return records for a range of dates. I have used between and >= and <= but no records are returned. The dates are stored in an msacess table as long dates. I tried with s

  • AFP & 10.5: flakey!

    AFP used to work like a charm in 10.4... I've started to upgrade the different Macs in my work and home environments to 10.5 and I've had all sorts of problems with AFP. From what I've read here, the firewall seems to be one source of the problems (w