Quantcast
Channel: Adobe Community : Popular Discussions - ColdFusion Server Administration
Viewing all 78799 articles
Browse latest View live

Unstable session replication in a HA cluster (CF10)

$
0
0

Hi,

 

We have tried to create a HA cluster with requests being distributed round robin to N instances of coldfusion, we are NOT using sticky sessions as we are replication session state to all cf instances. What we are seing is that all is fine with low to moderate load, however under heavy load and at random times the replication fails and leads to things in session scope not working. This manifests in users not being able to login to our application (we store a token in session scope to store logged in status).

 

Again key point, under low to moderate load it all works fine, users are directed to random nodes in the cluster and their session is picked up fine as the session is distributed to all nodes,so pretty confident config is right.

 

Linux servers using CF10 with update 12 applied. Also running is fusion reactor 5.04 on all instances. Each instance has a 64GB heap, Java 7.0.15 (latest certified).

 

Firstly apache setup.

 

workers.properties


worker.list=balancer, jkstatus

worker.jkstatus.type=status

worker.balancer.type=lb

worker.balancer.balance_workers=cfusion_master,cfusion_slave2,cfusion_slave1

worker.balancer.method=R

worker.balancer.sticky_session=False

worker.balancer.ping_mode=A

worker.cfusion_master.type=ajp13

worker.cfusion_master.host=localhost

worker.cfusion_master.port=8012

worker.cfusion_master.max_reuse_connections=250

worker.cfusion_master.lbfactor=100

worker.cfusion_slave2.reference=worker.cfusion_master

worker.cfusion_slave2.port=8014

worker.cfusion_slave1.reference=worker.cfusion_master

worker.cfusion_slave1.port=8013

 

 

Now the server.xml from 2 nodes (as an example if I run a 2 node cluster)

 

One of the configs from a server in the cluster

 

<Server port="8007" shutdown="SHUTDOWN">

  <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on">

  </Listener>

  <Listener className="org.apache.catalina.core.JasperListener">

  </Listener>

  <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener">

  </Listener>

  <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener">

  </Listener>

  <GlobalNamingResources>

    <Resource description="User database that can be updated and saved" name="UserDatabase" pathname="conf/tomcat-users.xml" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" type="org.apache.catalina.UserDatabase" auth="Container">

    </Resource>

  </GlobalNamingResources>

  <Service name="Catalina">

    <Executor name="tomcatThreadPool" minSpareThreads="4" maxThreads="150" namePrefix="catalina-exec-">

    </Executor>

    <Connector port="8012" protocol="AJP/1.3" connectionTimeout="600000" redirectPort="8445" tomcatAuthentication="false">

    </Connector>

    <Engine jvmRoute="cfusion" name="Catalina" defaultHost="localhost">

      <Realm className="org.apache.catalina.realm.LockOutRealm">

        <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase">

        </Realm>

      </Realm>

      <Host name="localhost" autoDeploy="false" unpackWARs="true" appBase="webapps">

        <Valve pattern="%h %l %u %t &quot;%r&quot; %s %b" directory="logs" prefix="localhost_access_log." className="org.apache.catalina.valves.AccessLogValve" suffix=".txt" resolveHosts="false">

        </Valve>

      </Host>

      <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster" channelSendOptions="8">

        <Manager notifyListenersOnReplication="true" expireSessionsOnShutdown="false" className="org.apache.catalina.ha.session.DeltaManager">

        </Manager>

        <Channel className="org.apache.catalina.tribes.group.GroupChannel">

          <Membership port="45564" dropTime="3000" address="228.0.0.4" className="org.apache.catalina.tribes.membership.McastService" frequency="500">

          </Membership>

          <Receiver port="4001" autoBind="100" address="auto" selectorTimeout="5000" maxThreads="6" className="org.apache.catalina.tribes.transport.nio.NioReceiver">

          </Receiver>

          <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">

            <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender">

            </Transport>

          </Sender>

          <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector">

          </Interceptor>

          <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor">

          </Interceptor>

        </Channel>

        <Valve className="org.apache.catalina.ha.tcp.ReplicationValve" filter="">

        </Valve>

        <Valve className="org.apache.catalina.ha.session.JvmRouteBinderValve">

        </Valve>

        <ClusterListener className="org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener">

        </ClusterListener>

        <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener">

        </ClusterListener>

      </Cluster>

    </Engine>

    <Connector port="8499" protocol="org.apache.coyote.http11.Http11NioProtocol" connectionTimeout="20000" redirectPort="8443" executor="tomcatThreadPool">

    </Connector>

  </Service>

</Server>

 

Config from one of the other nodes

 

<Server port="8008" shutdown="SHUTDOWN">

  <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on">

  </Listener>

  <Listener className="org.apache.catalina.core.JasperListener">

  </Listener>

  <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener">

  </Listener>

  <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener">

  </Listener>

  <GlobalNamingResources>

    <Resource description="User database that can be updated and saved" name="UserDatabase" pathname="conf/tomcat-users.xml" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" type="org.apache.catalina.UserDatabase" auth="Container">

    </Resource>

  </GlobalNamingResources>

  <Service name="Catalina">

    <Executor name="tomcatThreadPool" minSpareThreads="4" maxThreads="150" namePrefix="catalina-exec-">

    </Executor>

    <Connector port="8013" protocol="AJP/1.3" connectionTimeout="600000" redirectPort="8446" tomcatAuthentication="false">

    </Connector>

    <Engine jvmRoute="cfusion" name="Catalina" defaultHost="localhost">

      <Realm className="org.apache.catalina.realm.LockOutRealm">

        <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase">

        </Realm>

      </Realm>

      <Host name="localhost" autoDeploy="false" unpackWARs="true" appBase="webapps">

        <Valve pattern="%h %l %u %t &quot;%r&quot; %s %b" directory="logs" prefix="localhost_access_log." className="org.apache.catalina.valves.AccessLogValve" suffix=".txt" resolveHosts="false">

        </Valve>

      </Host>

      <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster" channelSendOptions="8">

        <Manager notifyListenersOnReplication="true" expireSessionsOnShutdown="false" className="org.apache.catalina.ha.session.DeltaManager">

        </Manager>

        <Channel className="org.apache.catalina.tribes.group.GroupChannel">

          <Membership port="45564" dropTime="3000" address="228.0.0.4" className="org.apache.catalina.tribes.membership.McastService" frequency="500">

          </Membership>

          <Receiver port="4002" autoBind="100" address="auto" selectorTimeout="5000" maxThreads="6" className="org.apache.catalina.tribes.transport.nio.NioReceiver">

          </Receiver>

          <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">

            <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender">

            </Transport>

          </Sender>

          <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector">

          </Interceptor>

          <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor">

          </Interceptor>

        </Channel>

        <Valve className="org.apache.catalina.ha.tcp.ReplicationValve" filter="">

        </Valve>

        <Valve className="org.apache.catalina.ha.session.JvmRouteBinderValve">

        </Valve>

        <ClusterListener className="org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener">

        </ClusterListener>

        <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener">

        </ClusterListener>

      </Cluster>

    </Engine>

    <Connector port="8500" protocol="org.apache.coyote.http11.Http11NioProtocol" connectionTimeout="20000" redirectPort="8443" executor="tomcatThreadPool">

    </Connector>

  </Service>

</Server>

 

So what do i see in the logs?. Well sometimes I see exceptions like this

 

Mar 05, 2014 9:55:19 PM org.apache.catalina.ha.session.DeltaManager messageReceived

SEVERE: Manager [localhost#/]: Unable to receive message through TCP channel

java.lang.IllegalStateException: removeAttribute: Session already invalidated

          at org.apache.catalina.ha.session.DeltaSession.removeAttribute(DeltaSession.java:617)

          at org.apache.catalina.ha.session.DeltaRequest.execute(DeltaRequest.java:171)

          at org.apache.catalina.ha.session.DeltaManager.handleSESSION_DELTA(DeltaManager.java:1347)

          at org.apache.catalina.ha.session.DeltaManager.messageReceived(DeltaManager.java:1293)

          at org.apache.catalina.ha.session.DeltaManager.messageDataReceived(DeltaManager.java:1014)

          at org.apache.catalina.ha.session.ClusterSessionListener.messageReceived(ClusterSessionListe ner.java:92)

          at org.apache.catalina.ha.tcp.SimpleTcpCluster.messageReceived(SimpleTcpCluster.java:897)

          at org.apache.catalina.ha.tcp.SimpleTcpCluster.messageReceived(SimpleTcpCluster.java:878)

          at org.apache.catalina.tribes.group.GroupChannel.messageReceived(GroupChannel.java:278)

          at org.apache.catalina.tribes.group.ChannelInterceptorBase.messageReceived(ChannelIntercepto rBase.java:84)

          at org.apache.catalina.tribes.group.interceptors.TcpFailureDetector.messageReceived(TcpFailu reDetector.java:113)

          at org.apache.catalina.tribes.group.ChannelInterceptorBase.messageReceived(ChannelIntercepto rBase.java:84)

          at org.apache.catalina.tribes.group.ChannelInterceptorBase.messageReceived(ChannelIntercepto rBase.java:84)

          at org.apache.catalina.tribes.group.ChannelCoordinator.messageReceived(ChannelCoordinator.ja va:253)

          at org.apache.catalina.tribes.transport.ReceiverBase.messageDataReceived(ReceiverBase.java:2 87)

          at org.apache.catalina.tribes.transport.nio.NioReplicationTask.drainChannel(NioReplicationTa sk.java:212)

          at org.apache.catalina.tribes.transport.nio.NioReplicationTask.run(NioReplicationTask.java:1 01)

          at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

          at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

          at java.lang.Thread.run(Thread.java:722)

 

I'm unsure why this happens as tribes uses certified mesaging so it should have resent right?, in any case I believe I can change it so messages are not sent asynchronously, should sort this out.

 

I see (good) messages like this

 

Mar 05, 2014 9:42:19 PM org.apache.catalina.ha.session.DeltaManager startInternal

INFO: Register manager localhost#/ to cluster element Engine with name Catalina

Mar 05, 2014 9:42:19 PM org.apache.catalina.ha.session.DeltaManager startInternal

INFO: Starting clustering manager at localhost#/

Mar 05, 2014 9:42:19 PM org.apache.catalina.ha.session.DeltaManager getAllClusterSessions

INFO: Manager [localhost#/], requesting session state from org.apache.catalina.tribes.membership.MemberImpl[tcp://{192, 168, 128, 50}:4001,{192, 168, 128, 50},4001, alive=68824148, securePort=-1, UDP Port=-1, id={123 126 89 39 96 -59 69 8 -113 79 51 122 25 108 -11 -110 }, payload={}, command={}, domain={}, ]. This operation will timeout if no session state has been received within 60 seconds.

Mar 05, 2014 9:42:20 PM org.apache.catalina.ha.session.DeltaManager waitForSendAllSessions

INFO: Manager [localhost#/]; session state send at 3/5/14 9:42 PM received in 929 ms.

Mar 05, 2014 9:42:20 PM org.apache.catalina.ha.session.JvmRouteBinderValve startInternal

INFO: JvmRouteBinderValve started

 

So session state dies appear to be flying around the cluster, I do nightly restarts of some of the nodes due to another issue I have with an ever growing heap (separate issue), interestingly I also see nodes leave and join the cluster, again this is good (shows the multicast is working, and also that replication should be working).

 

Mar 05, 2014 2:30:16 AM org.apache.catalina.tribes.group.interceptors.TcpFailureDetector memberDisappeared

INFO: Verification complete. Member disappeared[org.apache.catalina.tribes.membership.MemberImpl[tcp://{192, 168, 128, 50}:4001,{192, 168, 128, 50},4001, alive=18629101, securePort=-1, UDP Port=-1, id={-2 65 10 -79 53 -75 76 52 -99 63 -90 -120 34 -89 -14 100 }, payload={}, command={66 65 66 89 45 65 76 69 88 ...(9)}, domain={}, ]]

Mar 05, 2014 2:30:16 AM org.apache.catalina.ha.tcp.SimpleTcpCluster memberDisappeared

INFO: Received member disappeared:org.apache.catalina.tribes.membership.MemberImpl[tcp://{192, 168, 128, 50}:4001,{192, 168, 128, 50},4001, alive=18629101, securePort=-1, UDP Port=-1, id={-2 65 10 -79 53 -75 76 52 -99 63 -90 -120 34 -89 -14 100 }, payload={}, command={66 65 66 89 45 65 76 69 88 ...(9)}, domain={}, ]

Mar 05, 2014 2:35:16 AM org.apache.catalina.ha.tcp.SimpleTcpCluster memberAdded

INFO: Replication member added:org.apache.catalina.tribes.membership.MemberImpl[tcp://{192, 168, 128, 50}:4001,{192, 168, 128, 50},4001, alive=1083, securePort=-1, UDP Port=-1, id={123 126 89 39 96 -59 69 8 -113 79 51 122 25 108 -11 -110 }, payload={}, command={}, domain={}, ]

 

So stuck now on how to proceed, to establish why at random times the replication fails, leading to cluster collapse. Could it be the size of the session?, I have a few CFCs stuffed into session scope, but perhaps when the load is high there is too many?. Things fail even with a cluster of 2 on one server, initially I had a 8 node cluster on 2 separate machines but when it failed it rolled it back to a cluster of 2 instances on the one server to see if that was stable (its not 100% which is what I need).

 

Any advice, points gratefully received.


Disabling CFEXECUTE without CF Administrator

$
0
0

I haven't touched ColdFusion in probably close to 5 years and I'm totally lost on how to manage the application server.  I have a friend who's server is getting hacked quite viciously right now.  They have uploaded a shell using a ColdFusion administrator exploit.  They have nicely hidden the shell, so I'm unable to locate it.  Previously I would search for all instances of CFEXECUTE in *.cfm pages and I would find it quickly and remove it.  I would like to disable CFEXECUTE all together, but the hackers have mangled the ColdFusion Administrator to the point that when I go to the security tab, I am redirected out of the Administrator all together.

 

Is there a configuration setting in an XML file perhaps that I can adjust to disable CFEXECUTE or is the setting in the ColdFusion Administrator the only option?

 

Thank you for any assistance anyone can offer.

Server Error - Macromedia application server(s) are unreachable

$
0
0
For my test environment, I've got a ColdFusion 8 instance running on Windows 2003 Server. Everything was fine until I rebooted the server. Then I started getting an error message:

quote:

Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request.


My first thought was an application mapping error or something happened to the .cfm mappings. Everything checked out fine though. So I looked in the wsconfig log files and saw this.

quote:

2008-06-04 16:54:58 jrISAPI[ 760:1048] could not initialize proxy for 127.0.0.1:51800
2008-06-04 16:54:58 jrISAPI[ 760:1048] Couldn't initialize from remote server, JRun server(s) probably down.


Something was definitely running on port 51800 though since I could telnet to it. No clue why it couldn't initialize. Any ideas?

Thanks.

Steve

No access to CF administrator after installation

$
0
0

CF9 has been installed on  Windows server 2008.

Successfull.

 

I can see CF9 files on disk C:\ColdFusion9

 

I have the CFIDE structure installed on disk D:\wwwroot\CFIDE

 

And when launching :

http://127.0.0.1/CFIDE/administrator/index.cfm

can't find the file

I tried the Sever IP adress :

http://85.14.138.81/CFIDE/administrator/index.cfm

same, can't find the file.

 

Can someone help/explain where could be the problem ?

It seems to be a problem of  IP pointing ?

 

Thanks for any help.

I do not have the hand on the IP.

Pierre.

How does one disable the built-in web server?

$
0
0

In my case an Adobe tech enabled the built-in web server for some sort of testing and left it enabled.  I would like to once again disable it to limit the attack surface as I can see it is getting some hits by an internal vulnerability scanner on our network.

 

Where is the config file and specific setting to disable only the built-in web server?

 

The undesirable change made to the built-in web server is referenced in this forum entry:  http://forums.adobe.com/message/4388179

CF10 - Random Access Denied errors (java.io.FilePermission)

$
0
0

I've been having an error that is randomly plaguing me.  For some reason, I get the following error message:

 

The web site you are accessing has experienced an unexpected error.

Please contact the website administrator.

The following information is meant for the website developer for debugging purpose!

Error Occurred While Processing Request j

Security: The requested template has been denied

access to C:/ColdFusion10/cfusionl/wwwroot/CFIDE.

The following is the internal exception message: access denied (java.io.FilePermission c:/coldfusion10/cfusionl/wwwroot/CFIDE read)

Resources:

. Enable Robust Exception Information to provide greater detail about the source

of errors, In the Administrator, click Debugging & Logging > Debug Output

Settings, and select the Robust Exception Information option.

. check the coldFusion documentation to verify that you are using the correct

syntax.

. search the Knowledge Base to find a solution to your problem.

 

Screenshot:

error.png

 

Whenever I get this error, if I just refresh, it will return the page as expected.  It only seems to happen if the site has been idle for some time.  If I refresh it 100 times in a row afterwards, it loads every time without a problem.

 

Here is the code from the file:

<cfquery name="COLUMNTEST" datasource="myds">

    SELECT table_name

    FROM user_tables

</cfquery>

 

<cfdump var="#COLUMNTEST#">

 

This is on Windows Server 2008 R2, ColdFusion 10 Update 7.  The application is inside a Security Sandbox.  I originally thought that I might need to add that path to the security sandbox of the application for it to work but it doesn't make any sense why a refresh of the page would then magically make it work.

The CFIDE directory in IIS is actually just a virtual directory pointing to portions of the /CFIDE directory such as /CFIDE/scripts and /CFIDE/classes.

 

Any ideas?

"CFADMIN","There was an error while verifying the token. Either the session timed out or un-authenti

$
0
0

Folks - I am truly stumped on this one and need help.  I am training a new co-worker on our CF 9.0.2 EE environment and wanted to have him run some of our scheduled tasks.  I had him log into the production website with the admin id and password (single password only using the 'generic' cfadmin id) without incident.

He navigated to the scheduled tasks without incident and clicked on the 'Run Scheduled Task' button, and up popped a message to log back into CF administrator.  Never, never have I seen this happen before.  I verified, and no one else was logged into the CF Administrator at the time.

 

The application log contained the following warning message: "CFADMIN","There was an error while verifying the token. Either the session timed out or un-authenticated access is suspected."

 

I've googled, Yahooed, and every other thing in between and can only fin references to CF10 and single account sessions.  We verified again that he was the only on using the CF administrator.  (I know this because I am the only other one that knows the admin password).  We are both in the same administrative security group for the server (Windows 2003 R2) have the same security to the database - read-only (MS SQL Server 2005), but none of that should matter since we are going through IE and using the IWAM or IUSER permissions.  Didn't seem to matter if Windows Integrated Authentication was check or not within IE options either.

 

I tried implementing separate user name and password security - but got the same error message.

Any ideas are most appreciated.

 

Libby

Symbolic Links do not work for Application.cfm in CF10

$
0
0

I have a Web, that use a symbolic link for centralized code.

The Application.cfm, stored in the original web-root, will not read from code

in the linked directory.

Thank you for your assistance.


403 Error on ISAPI_redirect.dll IIS IsapiModule

$
0
0

We recently installed and configured a CF10 server on a 08 r2 box. After following the Adobe recommended setup (custom accounts for each of the services - iis, cf) in the lockdown guide and a reboot, cfm pages are no longer properly handled (redirected).

 

 

The web server trace identifies this as the root problem:

144. CALL_ISAPI_EXTENSION

DllName[home_dir]\config\wsconfig\1\isapi_redirect.dll

 

Warning

145. -MODULE_SET_RESPONSE_ERROR_STATUS 

ModuleNameIsapiModule
Notification128
HttpStatus403
HttpReasonForbidden
HttpSubStatus0
ErrorCode0
ConfigExceptionInfo
NotificationEXECUTE_REQUEST_HANDLER
ErrorCodeThe operation completed successfully. (0x0)

 

User from tokenNT AUTHORITY\IUSR

 

We've already made sure that exe rights are provided for the IUSR (as well as cf and iis) to both that .dll as well as the entire folder.

We have also tried changing the handler mapping (invoke only if req is mapped to file/folder) as well as it's access config (none, script, exec).

 

The only time we get a different error mesage is when we disable the *.cfm mapping - which rightly so yields a 500 or a 404 error message.

 

By not processing .cfm page correctly the cf admin is not accessible either.

Any ideas on this would be appreciated.

 

 

p.s. there is no subcode (substatus) to the 403.

CF 11, IIS 8 slowdowns

$
0
0

Hello all-

 

I've got a brand-new CF 11 install running on Windows Server 2012 R2 and IIS 8.

 

The server runs great...most of the time.  But there are many times when you hit a page and it sits...and sits...maybe for 10 seconds or so, then it spits the page out.  Then I'll hit 10 pages in a row that are delivered instantly, then we wait again.

 

Additionally, while using CF Builder 3, I have problems where the program won't accept any text input for a few seconds.  I'm typing along and everything is jim dandy, then it freezes for 5 seconds or so...then I can type again.

 

I feel like these problems are related- it's just like the server freezes up for a bit.

 

Last thing- when I go onto the site the first time in the morning, I *always* need to wait about 10 seconds for the first page to load.  That is the most consistent problem.

 

Any ideas on what can be causing this slowdown?

 

Thanks- Karl

503 errors after ~3 months w/ CF10

$
0
0

Server is not responding about every other day now. The service states that it's running. Restarting fixes it temporarily.

 

My first thought was that this was a client variables issue, since the 90 day purge causes people a lot of problems. But I've confirmed that the codebase doesn't reference "clientmanagement". I moved client variable storage to a database anyway (nothing is getting populated there), and turned global updates off. It still hangs after doing this.

 

There's not much in the logs (there are no hs*.log files, and no exceptions in the regular CF logs), and so far Fusion Reactor has not pointed to any smoking guns. About the only thing I can find is in the isapi_redirect.log file (ColdFusion10/config/wsconfig/1/):

 

[Wed Jul 23 18:44:05.215 2014] [13144:10964] [info] ajp_process_callback::jk_ajp_common.c (2066): current reuse count is 118 of max reuse connection 250 and total endpoint count 500

[Wed Jul 23 18:44:05.217 2014] [13144:6856] [info] ajp_process_callback::jk_ajp_common.c (2066): current reuse count is 119 of max reuse connection 250 and total endpoint count 500

[Wed Jul 23 19:48:52.294 2014] [13144:6344] [info] jk_open_socket::jk_connect.c (626): connect to 127.0.0.1:8012 failed (errno=61)

[Wed Jul 23 19:48:52.295 2014] [13144:6344] [info] ajp_connect_to_endpoint::jk_ajp_common.c (1047): Failed opening socket to (127.0.0.1:8012) (errno=61)

[Wed Jul 23 19:48:52.299 2014] [13144:6344] [error] ajp_send_request::jk_ajp_common.c (1669): (cfusion) connecting to backend failed. Tomcat is probably not started or is listening on the wrong port (errno=61)

[Wed Jul 23 19:48:52.301 2014] [13144:6344] [info] ajp_service::jk_ajp_common.c (2692): (cfusion) sending request to tomcat failed (recoverable), because of error during request sending (attempt=1)

[Wed Jul 23 19:48:53.402 2014] [13144:6344] [info] jk_open_socket::jk_connect.c (626): connect to 127.0.0.1:8012 failed (errno=61)

[Wed Jul 23 19:48:53.406 2014] [13144:6344] [info] ajp_connect_to_endpoint::jk_ajp_common.c (1047): Failed opening socket to (127.0.0.1:8012) (errno=61)

 

This leads me to believe the problem may be either with the IIS Connector, or with Tomcat itself, but I'm not sure where to go from here, if that's the case. We ran all the CF10 updates through update 12, and didn't initially redo the IIS Connector through wsconfig.exe, and restart IIS, but did about a month or so ago.

 

We also adjusted the JVM settings a bit:

-XX:MaxPermSize=192m --> 256m


and set the min and max JVM heap size to 2048 (from 1024). We have 6GB of RAM on the dedicated server.


Here's the JVM memory usage from the hour of the crash (green dots at the bottom indicate the server restart)

Capture.PNG

 

The ramp up without any garbage collection is the same thing we saw the last time the server crashed as well. I have the Fusion Analytics logs from the latest crash, if anybody would like to see a specific chart.

 

Any suggestions would be greatly appreciated. Thanks.

CF11 IIS JSON POST request hangs indefinitely but cfml runs

$
0
0

Issue Description

 

Simply put when we make a request to any .cfm page with content-type of application/json and json in the request body the cfml will run (tested with cflog) but the browser/testing tool will indefinitely hang. If you leave the request body empty though the request will work normally.

 

Setup

 

Windows Server 2008R2 - IIS 7.5

Coldfusion 11 (still no patches!)

Postman/Fiddler for testing

 

Debugging

 

So I know that the request makes it to coldfusion by using cflog.

 

I then put the isapi_redirect connector into debug mode to see if anything useful appeared in the logs (will add below) and when the request gets through to coldfusion it looks like the html for the page is returned, but for some reason it looks like its looking up the index.cfm and index.html (which is odd) and there is also a difference the the last few lines of the two requests - i dont really know enough at this level to make heads or tails of it.

 

On the IIS side of things if you look at the worker processes for the connection pool all POST application/json requests are just queued up and for ever getting longer - which cant be good. Also in the windows event viewer under WAS there are some errors about 'pools exceeding time limits' with codes 5013 and 5138 which seem a bit generic and may just be IIS finally deciding that said requests now need to be killed.

 

We have replicated the issue on three clones of the same install and two other separate installs, tried updating the connector to 1.2.4 and had a go at the BonCode connector on riaforge to no joy.

 

ISAPI_Redirect connector log

<!--- BAD REQUEST BELOW --->

 

[Wed Sep 10 15:22:32.545 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2184): Filter started

[Wed Sep 10 15:22:32.545 2014] [2912:1016] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1131): Attempting to map URI '/10.10.10.37/index.cfm' from 30 maps

[Wed Sep 10 15:22:32.545 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (958): Found a wildchar match '/*.cfm=cfusion'

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2266): check if [/index.cfm] points to the web-inf directory

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2283): [/index.cfm] is a servlet url - should redirect to cfusion

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2321): fowarding escaped URI [/index.cfm]

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2394): forwarding to : /jakarta/isapi_redirect.dll

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2396): forward URI   : TOMCATURI000000006A6B0000:/index.cfm

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2399): forward query : TOMCATQUERY000000006A6B0000:screwyRequest

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2401): forward worker: TOMCATWORKER000000006A6B0000:cfusion

[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2403): worker index  : TOMCATWORKERIDX000000006A6B0000:28

[Wed Sep 10 15:22:32.639 2014] [2912:1016] [debug] wc_maintain::jk_worker.c (338): Maintaining worker cfusion

[Wed Sep 10 15:22:32.639 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3516): Reading extension header HTTP_TOMCATWORKER000000006A6B0000: cfusion

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3517): Reading extension header HTTP_TOMCATWORKERIDX000000006A6B0000: 28

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3518): Reading extension header HTTP_TOMCATURI000000006A6B0000: /index.cfm

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3519): Reading extension header HTTP_TOMCATQUERY000000006A6B0000: screwyRequest

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3702): Applying service extensions

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Cache-Control : no-cache

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Connection : keep-alive

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Content-Length : 129

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Content-Type : application/json

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept : */*

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Encoding : gzip,deflate

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Language : en-GB,en-US;q=0.8,en;q=0.6

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Cookie : JSESSIONID=F723FD3DEB37888D2015BE10B01868C7.cfusion

[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Host : 10.10.10.37

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header User-Agent : Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.103 Safari/537.36

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Origin : chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header DNT : 1

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3973): Service protocol=HTTP/1.1 method=POST host=10.10.10.11 addr=10.10.10.11 name=10.10.10.37 port=80 auth= user= uri=/index.cfm

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3985): Service request headers=12 attributes=0 chunked=no content-length=129 available=129

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] wc_get_worker_for_name::jk_worker.c (115): found a worker cfusion

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] HttpExtensionProc::jk_isapi_plugin.c (2582): got a worker for name cfusion

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_get_endpoint::jk_ajp_common.c (3287): acquired connection pool slot=2 after 0 retries

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (668): ajp marshaling done

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_service::jk_ajp_common.c (2569): processing cfusion with 2 retries

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_send_request::jk_ajp_common.c (1673): (cfusion) all endpoints are disconnected.

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] jk_open_socket::jk_connect.c (485): socket TCP_NODELAY set to On

[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] jk_open_socket::jk_connect.c (609): trying to connect socket 748 to 127.0.0.1:8014

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] jk_open_socket::jk_connect.c (635): socket 748 [127.0.0.1:49430 -> 127.0.0.1:8014] connected

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=619 max=65536

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000    12 34 02 67 02 04 00 08 48 54 54 50 2F 31 2E 31  - .4.g....HTTP/1.1

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010    00 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 0B  - .../index.cfm...

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020    31 30 2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30  - 10.10.10.11...10

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0030    2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30 2E 31  - .10.10.11...10.1

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0040    30 2E 31 30 2E 33 37 00 00 50 00 00 0C 00 0D 43  - 0.10.37..P.....C

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0050    61 63 68 65 2D 43 6F 6E 74 72 6F 6C 00 00 08 6E  - ache-Control...n

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0060    6F 2D 63 61 63 68 65 00 A0 06 00 0A 6B 65 65 70  - o-cache.....keep

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0070    2D 61 6C 69 76 65 00 A0 08 00 03 31 32 39 00 A0  - -alive.....129..

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0080    07 00 10 61 70 70 6C 69 63 61 74 69 6F 6E 2F 6A  - ...application/j

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0090    73 6F 6E 00 A0 01 00 03 2A 2F 2A 00 00 0F 41 63  - son.....*/*...Ac

[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00a0    63 65 70 74 2D 45 6E 63 6F 64 69 6E 67 00 00 0C  - cept-Encoding...

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00b0    67 7A 69 70 2C 64 65 66 6C 61 74 65 00 00 0F 41  - gzip,deflate...A

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00c0    63 63 65 70 74 2D 4C 61 6E 67 75 61 67 65 00 00  - ccept-Language..

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00d0    1A 65 6E 2D 47 42 2C 65 6E 2D 55 53 3B 71 3D 30  - .en-GB,en-US;q=0

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00e0    2E 38 2C 65 6E 3B 71 3D 30 2E 36 00 A0 09 00 33  - .8,en;q=0.6....3

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00f0    4A 53 45 53 53 49 4F 4E 49 44 3D 46 37 32 33 46  - JSESSIONID=F723F

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0100    44 33 44 45 42 33 37 38 38 38 44 32 30 31 35 42  - D3DEB37888D2015B

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0110    45 31 30 42 30 31 38 36 38 43 37 2E 63 66 75 73  - E10B01868C7.cfus

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0120    69 6F 6E 00 A0 0B 00 0B 31 30 2E 31 30 2E 31 30  - ion.....10.10.10

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0130    2E 33 37 00 A0 0E 00 72 4D 6F 7A 69 6C 6C 61 2F  - .37....rMozilla/

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0140    35 2E 30 20 28 57 69 6E 64 6F 77 73 20 4E 54 20  - 5.0.(Windows.NT.

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0150    36 2E 31 3B 20 57 69 6E 36 34 3B 20 78 36 34 29  - 6.1;.Win64;.x64)

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0160    20 41 70 70 6C 65 57 65 62 4B 69 74 2F 35 33 37  - .AppleWebKit/537

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0170    2E 33 36 20 28 4B 48 54 4D 4C 2C 20 6C 69 6B 65  - .36.(KHTML,.like

[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0180    20 47 65 63 6B 6F 29 20 43 68 72 6F 6D 65 2F 33  - .Gecko).Chrome/3

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0190    37 2E 30 2E 32 30 36 32 2E 31 30 33 20 53 61 66  - 7.0.2062.103.Saf

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01a0    61 72 69 2F 35 33 37 2E 33 36 00 00 06 4F 72 69  - ari/537.36...Ori

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01b0    67 69 6E 00 00 33 63 68 72 6F 6D 65 2D 65 78 74  - gin..3chrome-ext

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01c0    65 6E 73 69 6F 6E 3A 2F 2F 66 64 6D 6D 67 69 6C  - ension://fdmmgil

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01d0    67 6E 70 6A 69 67 64 6F 6A 6F 6A 70 6A 6F 6F 6F  - gnpjigdojojpjooo

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01e0    69 64 6B 6D 63 6F 6D 63 6D 00 00 03 44 4E 54 00  - idkmcomcm...DNT.

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01f0    00 01 31 00 03 00 00 00 04 00 00 00 0E 00 11 4D  - ..1............M

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0200    69 63 72 6F 73 6F 66 74 2D 49 49 53 2F 37 2E 35  - icrosoft-IIS/7.5

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0210    00 0F 00 07 43 47 49 2F 31 2E 31 00 10 00 00 00  - ....CGI/1.1.....

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0220    11 00 00 00 05 00 0D 73 63 72 65 77 79 52 65 71  - .......screwyReq

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0230    75 65 73 74 00 0A 00 0F 41 4A 50 5F 52 45 4D 4F  - uest....AJP_REMO

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0240    54 45 5F 50 4F 52 54 00 00 05 31 31 38 37 32 00  - TE_PORT...11872.

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0250    0A 00 10 4A 4B 5F 4C 42 5F 41 43 54 49 56 41 54  - ...JK_LB_ACTIVAT

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0260    49 4F 4E 00 00 03 41 43 54 00 FF 00 00 00 00 00  - ION...ACT.......

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_send_request::jk_ajp_common.c (1733): (cfusion) request body to send 129 - request body to resend 0

[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    0F 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 00  - .../index.cfm...

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.cfm) = C:\inetpub\wwwroot\index.cfm

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000    12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C  - .4...C:\inetpub\

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010    77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 63 66  - wwwroot\index.cf

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020    6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - m...............

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    0F 00 0A 2F 69 6E 64 65 78 2E 68 74 6D 00 00 00  - .../index.htm...

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.htm) = C:\inetpub\wwwroot\index.htm

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000    12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C  - .4...C:\inetpub\

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010    77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 68 74  - wwwroot\index.ht

[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020    6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - m...............

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=165 max=65536

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    04 00 C8 00 02 4F 4B 00 00 04 00 0D 43 61 63 68  - .....OK.....Cach

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010    65 2D 43 6F 6E 74 72 6F 6C 00 00 2E 6E 6F 2D 63  - e-Control...no-c

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020    61 63 68 65 2C 20 6E 6F 2D 73 74 6F 72 65 2C 20  - ache,.no-store,.

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030    6D 75 73 74 2D 72 65 76 61 6C 69 64 61 74 65 2C  - must-revalidate,

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040    20 6D 61 78 2D 61 67 65 3D 30 00 00 06 50 72 61  - .max-age=0...Pra

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050    67 6D 61 00 00 08 6E 6F 2D 63 61 63 68 65 00 00  - gma...no-cache..

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060    07 45 78 70 69 72 65 73 00 00 1D 54 68 75 2C 20  - .Expires...Thu,.

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070    30 31 20 4A 61 6E 20 31 39 37 30 20 30 30 3A 30  - 01.Jan.1970.00:0

[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080    30 3A 30 30 20 47 4D 54 00 A0 01 00 17 74 65 78  - 0:00.GMT.....tex

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090    74 2F 68 74 6D 6C 3B 63 68 61 72 73 65 74 3D 55  - t/html;charset=U

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0    54 46 2D 38 00 00 00 00 00 00 00 00 00 00 00 00  - TF-8............

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (723): status = 200

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (730): Number of headers is = 4

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[0] [Cache-Control] = [no-cache, no-store, must-revalidate, max-age=0]

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[1] [Pragma] = [no-cache]

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[2] [Expires] = [Thu, 01 Jan 1970 00:00:00 GMT]

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[3] [Content-Type] = [text/html;charset=UTF-8]

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] start_response::jk_isapi_plugin.c (1128): Starting response for URI '/index.cfm' (protocol HTTP/1.1)

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] start_response::jk_isapi_plugin.c (1237): Not using Keep-Alive

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] start_response::jk_isapi_plugin.c (1272): headers String 'Cache-Control: no-cache, no-store, must-revalidate, max-age=0

 

Pragma: no-cache

 

Expires: Thu, 01 Jan 1970 00:00:00 GMT

 

Content-Type: text/html;charset=UTF-8

 

 

 

'

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=7958 max=65536

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    03 1F 12 3C 70 3E 68 65 6C 6C 6F 3C 2F 70 3E 0D  - ...<p>hello</p>.

[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010    0A 0D 0A 3C 73 74 79 6C 65 3E 0D 0A 0D 0A 0A 09  - ...<style>......

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020    74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64  - table.cfdump_wdd

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030    78 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - x,..table.cfdump

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040    5F 78 6D 6C 2C 0A 09 74 61 62 6C 65 2E 63 66 64  - _xml,..table.cfd

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050    75 6D 70 5F 73 74 72 75 63 74 2C 0A 09 74 61 62  - ump_struct,..tab

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060    6C 65 2E 63 66 64 75 6D 70 5F 76 61 72 75 6E 64  - le.cfdump_varund

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070    65 66 69 6E 65 64 2C 0A 09 74 61 62 6C 65 2E 63  - efined,..table.c

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080    66 64 75 6D 70 5F 61 72 72 61 79 2C 0A 09 74 61  - fdump_array,..ta

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090    62 6C 65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79  - ble.cfdump_query

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0    2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F  - ,..table.cfdump_

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00b0    63 66 63 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75  - cfc,..table.cfdu

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00c0    6D 70 5F 6F 62 6A 65 63 74 2C 0A 09 74 61 62 6C  - mp_object,..tabl

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00d0    65 2E 63 66 64 75 6D 70 5F 62 69 6E 61 72 79 2C  - e.cfdump_binary,

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00e0    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75  - ..table.cfdump_u

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00f0    64 66 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D  - df,..table.cfdum

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0100    70 5F 75 64 66 62 6F 64 79 2C 0A 09 74 61 62 6C  - p_udfbody,..tabl

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0110    65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75  - e.cfdump_udfargu

[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0120    6D 65 6E 74 73 20 7B 0A 09 09 66 6F 6E 74 2D 73  - ments.{...font-s

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0130    69 7A 65 3A 20 78 78 2D 73 6D 61 6C 6C 3B 0A 09  - ize:.xx-small;..

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0140    09 66 6F 6E 74 2D 66 61 6D 69 6C 79 3A 20 76 65  - .font-family:.ve

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0150    72 64 61 6E 61 2C 20 61 72 69 61 6C 2C 20 68 65  - rdana,.arial,.he

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0160    6C 76 65 74 69 63 61 2C 20 73 61 6E 73 2D 73 65  - lvetica,.sans-se

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0170    72 69 66 3B 0A 09 09 63 65 6C 6C 2D 73 70 61 63  - rif;...cell-spac

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0180    69 6E 67 3A 20 32 70 78 3B 0A 09 7D 0A 0A 09 74  - ing:.2px;..}...t

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0190    61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64 78  - able.cfdump_wddx

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01a0    20 74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75  - .th,..table.cfdu

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01b0    6D 70 5F 78 6D 6C 20 74 68 2C 0A 09 74 61 62 6C  - mp_xml.th,..tabl

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01c0    65 2E 63 66 64 75 6D 70 5F 73 74 72 75 63 74 20  - e.cfdump_struct.

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01d0    74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D  - th,..table.cfdum

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01e0    70 5F 76 61 72 75 6E 64 65 66 69 6E 65 64 20 74  - p_varundefined.t

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01f0    68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - h,..table.cfdump

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0200    5F 61 72 72 61 79 20 74 68 2C 0A 09 74 61 62 6C  - _array.th,..tabl

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0210    65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79 20 74  - e.cfdump_query.t

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0220    68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - h,..table.cfdump

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0230    5F 63 66 63 20 74 68 2C 0A 09 74 61 62 6C 65 2E  - _cfc.th,..table.

[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0240    63 66 64 75 6D 70 5F 6F 62 6A 65 63 74 20 74 68  - cfdump_object.th

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0250    2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F  - ,..table.cfdump_

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0260    62 69 6E 61 72 79 20 74 68 2C 0A 09 74 61 62 6C  - binary.th,..tabl

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0270    65 2E 63 66 64 75 6D 70 5F 75 64 66 20 74 68 2C  - e.cfdump_udf.th,

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0280    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75  - ..table.cfdump_u

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0290    64 66 62 6F 64 79 20 74 68 2C 0A 09 74 61 62 6C  - dfbody.th,..tabl

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02a0    65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75  - e.cfdump_udfargu

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02b0    6D 65 6E 74 73 20 74 68 20 7B 0A 09 09 74 65 78  - ments.th.{...tex

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02c0    74 2D 61 6C 69 67 6E 3A 20 6C 65 66 74 3B 0A 09  - t-align:.left;..

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02d0    09 63 6F 6C 6F 72 3A 20 77 68 69 74 65 3B 0A 09  - .color:.white;..

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02e0    09 70 61 64 64 69 6E 67 3A 20 35 70 78 3B 0A 09  - .padding:.5px;..

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02f0    7D 0A 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - }...table.cfdump

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0300    5F 77 64 64 78 20 74 64 2C 0A 09 74 61 62 6C 65  - _wddx.td,..table

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0310    2E 63 66 64 75 6D 70 5F 78 6D 6C 20 74 64 2C 0A  - .cfdump_xml.td,.

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0320    09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 73 74  - .table.cfdump_st

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0330    72 75 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E  - ruct.td,..table.

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0340    63 66 64 75 6D 70 5F 76 61 72 75 6E 64 65 66 69  - cfdump_varundefi

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0350    6E 65 64 20 20 74 64 2C 0A 09 74 61 62 6C 65 2E  - ned..td,..table.

[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0360    63 66 64 75 6D 70 5F 61 72 72 61 79 20 74 64 2C  - cfdump_array.td,

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0370    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 71  - ..table.cfdump_q

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0380    75 65 72 79 20 74 64 2C 0A 09 74 61 62 6C 65 2E  - uery.td,..table.

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0390    63 66 64 75 6D 70 5F 63 66 63 20 74 64 2C 0A 09  - cfdump_cfc.td,..

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03a0    74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 6F 62 6A  - table.cfdump_obj

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03b0    65 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63  - ect.td,..table.c

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03c0    66 64 75 6D 70 5F 62 69 6E 61 72 79 20 74 64 2C  - fdump_binary.td,

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03d0    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75  - ..table.cfdump_u

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03e0    64 66 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63 66  - df.td,..table.cf

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03f0    64 75 6D 70 5F 75 64 66 62 6F 64 79 20 74 64 2C  - dump_udfbody.td,

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1391): Writing 7954 bytes of data to client

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1392): IIS7 flush enabled 0

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1393): writeclient write_length value 7954

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1413): Wrote 7954 bytes of data successfully

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=4 max=65536

[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................

 

<!--- GOOD REQUEST BELOW --->

 

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] handle_notify_event::jk_isapi_plugin.c (2184): Filter started

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] uri_worker_map_update::jk_uri_worker_map.c (1265): File C:\ColdFusion11\config\wsconfig\1\uriworkermap.properties is not modified

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1131): Attempting to map URI '/10.10.10.37/' from 30 maps

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.as=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.as=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] handle_notify_event::jk_isapi_plugin.c (2409): [/] is not a servlet url

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] wc_maintain::jk_worker.c (338): Maintaining worker cfusion

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3516): Reading extension header HTTP_TOMCATWORKER000000006A6B0000: (null)

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3517): Reading extension header HTTP_TOMCATWORKERIDX000000006A6B0000: -1

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3518): Reading extension header HTTP_TOMCATURI000000006A6B0000: (null)

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3519): Reading extension header HTTP_TOMCATQUERY000000006A6B0000: (null)

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3524): No URI header value provided. Defaulting to old behaviour

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3588): query_string value:

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1131): Attempting to map URI '/index.cfm' from 30 maps

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (958): Found a wildchar match '/*.cfm=cfusion'

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3702): Applying service extensions

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Cache-Control : no-cache

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Connection : keep-alive

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Pragma : no-cache

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Content-Length : 0

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept : text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Encoding : gzip, deflate

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Language : en-gb,en;q=0.5

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Host : 10.10.10.37

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header User-Agent : Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header DNT : 1

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3973): Service protocol=HTTP/1.1 method=GET host=10.10.10.11 addr=10.10.10.11 name=10.10.10.37 port=80 auth= user= uri=/index.cfm

[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3985): Service request headers=10 attributes=0 chunked=no content-length=0 available=0

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] wc_get_worker_for_name::jk_worker.c (115): found a worker cfusion

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] HttpExtensionProc::jk_isapi_plugin.c (2582): got a worker for name cfusion

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_get_endpoint::jk_ajp_common.c (3287): acquired connection pool slot=3 after 0 retries

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (668): ajp marshaling done

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_service::jk_ajp_common.c (2569): processing cfusion with 2 retries

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_send_request::jk_ajp_common.c (1673): (cfusion) all endpoints are disconnected.

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] jk_open_socket::jk_connect.c (485): socket TCP_NODELAY set to On

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] jk_open_socket::jk_connect.c (609): trying to connect socket 772 to 127.0.0.1:8014

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] jk_open_socket::jk_connect.c (635): socket 772 [127.0.0.1:49436 -> 127.0.0.1:8014] connected

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=494 max=65536

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000    12 34 01 EA 02 02 00 08 48 54 54 50 2F 31 2E 31  - .4......HTTP/1.1

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010    00 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 0B  - .../index.cfm...

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020    31 30 2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30  - 10.10.10.11...10

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0030    2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30 2E 31  - .10.10.11...10.1

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0040    30 2E 31 30 2E 33 37 00 00 50 00 00 0A 00 0D 43  - 0.10.37..P.....C

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0050    61 63 68 65 2D 43 6F 6E 74 72 6F 6C 00 00 08 6E  - ache-Control...n

[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0060    6F 2D 63 61 63 68 65 00 A0 06 00 0A 6B 65 65 70  - o-cache.....keep

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0070    2D 61 6C 69 76 65 00 A0 0C 00 08 6E 6F 2D 63 61  - -alive.....no-ca

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0080    63 68 65 00 A0 08 00 01 30 00 A0 01 00 3F 74 65  - che.....0....?te

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0090    78 74 2F 68 74 6D 6C 2C 61 70 70 6C 69 63 61 74  - xt/html,applicat

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00a0    69 6F 6E 2F 78 68 74 6D 6C 2B 78 6D 6C 2C 61 70  - ion/xhtml+xml,ap

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00b0    70 6C 69 63 61 74 69 6F 6E 2F 78 6D 6C 3B 71 3D  - plication/xml;q=

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00c0    30 2E 39 2C 2A 2F 2A 3B 71 3D 30 2E 38 00 00 0F  - 0.9,*/*;q=0.8...

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00d0    41 63 63 65 70 74 2D 45 6E 63 6F 64 69 6E 67 00  - Accept-Encoding.

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00e0    00 0D 67 7A 69 70 2C 20 64 65 66 6C 61 74 65 00  - ..gzip,.deflate.

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00f0    00 0F 41 63 63 65 70 74 2D 4C 61 6E 67 75 61 67  - ..Accept-Languag

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0100    65 00 00 0E 65 6E 2D 67 62 2C 65 6E 3B 71 3D 30  - e...en-gb,en;q=0

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0110    2E 35 00 A0 0B 00 0B 31 30 2E 31 30 2E 31 30 2E  - .5.....10.10.10.

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0120    33 37 00 A0 0E 00 48 4D 6F 7A 69 6C 6C 61 2F 35  - 37....HMozilla/5

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0130    2E 30 20 28 57 69 6E 64 6F 77 73 20 4E 54 20 36  - .0.(Windows.NT.6

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0140    2E 31 3B 20 57 4F 57 36 34 3B 20 72 76 3A 33 31  - .1;.WOW64;.rv:31

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0150    2E 30 29 20 47 65 63 6B 6F 2F 32 30 31 30 30 31  - .0).Gecko/201001

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0160    30 31 20 46 69 72 65 66 6F 78 2F 33 31 2E 30 00  - 01.Firefox/31.0.

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0170    00 03 44 4E 54 00 00 01 31 00 03 00 00 00 04 00  - ..DNT...1.......

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0180    00 00 0E 00 11 4D 69 63 72 6F 73 6F 66 74 2D 49  - .....Microsoft-I

[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0190    49 53 2F 37 2E 35 00 0F 00 07 43 47 49 2F 31 2E  - IS/7.5....CGI/1.

[Wed Sep 10 15:42:22.267 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01a0    31 00 10 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00  - 1..../index.cfm.

[Wed Sep 10 15:42:22.267 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01b0    11 00 00 00 05 00 00 00 0A 00 0F 41 4A 50 5F 52  - ...........AJP_R

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01c0    45 4D 4F 54 45 5F 50 4F 52 54 00 00 05 31 32 33  - EMOTE_PORT...123

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01d0    38 33 00 0A 00 10 4A 4B 5F 4C 42 5F 41 43 54 49  - 83....JK_LB_ACTI

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01e0    56 41 54 49 4F 4E 00 00 03 41 43 54 00 FF 00 00  - VATION...ACT....

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_send_request::jk_ajp_common.c (1733): (cfusion) request body to send 0 - request body to resend 0

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    0F 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 00  - .../index.cfm...

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.cfm) = C:\inetpub\wwwroot\index.cfm

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000    12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C  - .4...C:\inetpub\

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010    77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 63 66  - wwwroot\index.cf

[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020    6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - m...............

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    0F 00 0A 2F 69 6E 64 65 78 2E 68 74 6D 00 00 00  - .../index.htm...

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.htm) = C:\inetpub\wwwroot\index.htm

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000    12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C  - .4...C:\inetpub\

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010    77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 68 74  - wwwroot\index.ht

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020    6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - m...............

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=239 max=65536

[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    04 00 C8 00 02 4F 4B 00 00 05 A0 07 00 45 4A 53  - .....OK......EJS

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010    45 53 53 49 4F 4E 49 44 3D 38 33 41 34 37 46 38  - ESSIONID=83A47F8

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020    35 38 43 41 41 39 45 35 45 31 38 46 41 44 46 33  - 58CAA9E5E18FADF3

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030    38 31 43 31 36 46 43 35 44 2E 63 66 75 73 69 6F  - 81C16FC5D.cfusio

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040    6E 3B 20 50 61 74 68 3D 2F 3B 20 48 74 74 70 4F  - n;.Path=/;.HttpO

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050    6E 6C 79 00 00 0D 43 61 63 68 65 2D 43 6F 6E 74  - nly...Cache-Cont

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060    72 6F 6C 00 00 2E 6E 6F 2D 63 61 63 68 65 2C 20  - rol...no-cache,.

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070    6E 6F 2D 73 74 6F 72 65 2C 20 6D 75 73 74 2D 72  - no-store,.must-r

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080    65 76 61 6C 69 64 61 74 65 2C 20 6D 61 78 2D 61  - evalidate,.max-a

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090    67 65 3D 30 00 00 06 50 72 61 67 6D 61 00 00 08  - ge=0...Pragma...

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0    6E 6F 2D 63 61 63 68 65 00 00 07 45 78 70 69 72  - no-cache...Expir

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00b0    65 73 00 00 1D 54 68 75 2C 20 30 31 20 4A 61 6E  - es...Thu,.01.Jan

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00c0    20 31 39 37 30 20 30 30 3A 30 30 3A 30 30 20 47  - .1970.00:00:00.G

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00d0    4D 54 00 A0 01 00 17 74 65 78 74 2F 68 74 6D 6C  - MT.....text/html

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00e0    3B 63 68 61 72 73 65 74 3D 55 54 46 2D 38 00 00  - ;charset=UTF-8..

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (723): status = 200

[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (730): Number of headers is = 5

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[0] [Set-Cookie] = [JSESSIONID=83A47F858CAA9E5E18FADF381C16FC5D.cfusion; Path=/; HttpOnly]

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[1] [Cache-Control] = [no-cache, no-store, must-revalidate, max-age=0]

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[2] [Pragma] = [no-cache]

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[3] [Expires] = [Thu, 01 Jan 1970 00:00:00 GMT]

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[4] [Content-Type] = [text/html;charset=UTF-8]

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] start_response::jk_isapi_plugin.c (1128): Starting response for URI '/index.cfm' (protocol HTTP/1.1)

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] start_response::jk_isapi_plugin.c (1237): Not using Keep-Alive

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] start_response::jk_isapi_plugin.c (1272): headers String 'Set-Cookie: JSESSIONID=83A47F858CAA9E5E18FADF381C16FC5D.cfusion; Path=/; HttpOnly

 

Cache-Control: no-cache, no-store, must-revalidate, max-age=0

 

Pragma: no-cache

 

Expires: Thu, 01 Jan 1970 00:00:00 GMT

 

Content-Type: text/html;charset=UTF-8

 

 

 

'

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=7958 max=65536

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    03 1F 12 3C 70 3E 68 65 6C 6C 6F 3C 2F 70 3E 0D  - ...<p>hello</p>.

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010    0A 0D 0A 3C 73 74 79 6C 65 3E 0D 0A 0D 0A 0A 09  - ...<style>......

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020    74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64  - table.cfdump_wdd

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030    78 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - x,..table.cfdump

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040    5F 78 6D 6C 2C 0A 09 74 61 62 6C 65 2E 63 66 64  - _xml,..table.cfd

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050    75 6D 70 5F 73 74 72 75 63 74 2C 0A 09 74 61 62  - ump_struct,..tab

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060    6C 65 2E 63 66 64 75 6D 70 5F 76 61 72 75 6E 64  - le.cfdump_varund

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070    65 66 69 6E 65 64 2C 0A 09 74 61 62 6C 65 2E 63  - efined,..table.c

[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080    66 64 75 6D 70 5F 61 72 72 61 79 2C 0A 09 74 61  - fdump_array,..ta

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090    62 6C 65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79  - ble.cfdump_query

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0    2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F  - ,..table.cfdump_

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00b0    63 66 63 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75  - cfc,..table.cfdu

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00c0    6D 70 5F 6F 62 6A 65 63 74 2C 0A 09 74 61 62 6C  - mp_object,..tabl

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00d0    65 2E 63 66 64 75 6D 70 5F 62 69 6E 61 72 79 2C  - e.cfdump_binary,

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00e0    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75  - ..table.cfdump_u

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00f0    64 66 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D  - df,..table.cfdum

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0100    70 5F 75 64 66 62 6F 64 79 2C 0A 09 74 61 62 6C  - p_udfbody,..tabl

[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0110    65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75  - e.cfdump_udfargu

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0120    6D 65 6E 74 73 20 7B 0A 09 09 66 6F 6E 74 2D 73  - ments.{...font-s

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0130    69 7A 65 3A 20 78 78 2D 73 6D 61 6C 6C 3B 0A 09  - ize:.xx-small;..

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0140    09 66 6F 6E 74 2D 66 61 6D 69 6C 79 3A 20 76 65  - .font-family:.ve

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0150    72 64 61 6E 61 2C 20 61 72 69 61 6C 2C 20 68 65  - rdana,.arial,.he

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0160    6C 76 65 74 69 63 61 2C 20 73 61 6E 73 2D 73 65  - lvetica,.sans-se

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0170    72 69 66 3B 0A 09 09 63 65 6C 6C 2D 73 70 61 63  - rif;...cell-spac

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0180    69 6E 67 3A 20 32 70 78 3B 0A 09 7D 0A 0A 09 74  - ing:.2px;..}...t

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0190    61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64 78  - able.cfdump_wddx

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01a0    20 74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75  - .th,..table.cfdu

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01b0    6D 70 5F 78 6D 6C 20 74 68 2C 0A 09 74 61 62 6C  - mp_xml.th,..tabl

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01c0    65 2E 63 66 64 75 6D 70 5F 73 74 72 75 63 74 20  - e.cfdump_struct.

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01d0    74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D  - th,..table.cfdum

[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01e0    70 5F 76 61 72 75 6E 64 65 66 69 6E 65 64 20 74  - p_varundefined.t

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01f0    68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - h,..table.cfdump

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0200    5F 61 72 72 61 79 20 74 68 2C 0A 09 74 61 62 6C  - _array.th,..tabl

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0210    65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79 20 74  - e.cfdump_query.t

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0220    68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - h,..table.cfdump

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0230    5F 63 66 63 20 74 68 2C 0A 09 74 61 62 6C 65 2E  - _cfc.th,..table.

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0240    63 66 64 75 6D 70 5F 6F 62 6A 65 63 74 20 74 68  - cfdump_object.th

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0250    2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F  - ,..table.cfdump_

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0260    62 69 6E 61 72 79 20 74 68 2C 0A 09 74 61 62 6C  - binary.th,..tabl

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0270    65 2E 63 66 64 75 6D 70 5F 75 64 66 20 74 68 2C  - e.cfdump_udf.th,

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0280    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75  - ..table.cfdump_u

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0290    64 66 62 6F 64 79 20 74 68 2C 0A 09 74 61 62 6C  - dfbody.th,..tabl

[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02a0    65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75  - e.cfdump_udfargu

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02b0    6D 65 6E 74 73 20 74 68 20 7B 0A 09 09 74 65 78  - ments.th.{...tex

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02c0    74 2D 61 6C 69 67 6E 3A 20 6C 65 66 74 3B 0A 09  - t-align:.left;..

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02d0    09 63 6F 6C 6F 72 3A 20 77 68 69 74 65 3B 0A 09  - .color:.white;..

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02e0    09 70 61 64 64 69 6E 67 3A 20 35 70 78 3B 0A 09  - .padding:.5px;..

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02f0    7D 0A 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70  - }...table.cfdump

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0300    5F 77 64 64 78 20 74 64 2C 0A 09 74 61 62 6C 65  - _wddx.td,..table

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0310    2E 63 66 64 75 6D 70 5F 78 6D 6C 20 74 64 2C 0A  - .cfdump_xml.td,.

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0320    09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 73 74  - .table.cfdump_st

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0330    72 75 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E  - ruct.td,..table.

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0340    63 66 64 75 6D 70 5F 76 61 72 75 6E 64 65 66 69  - cfdump_varundefi

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0350    6E 65 64 20 20 74 64 2C 0A 09 74 61 62 6C 65 2E  - ned..td,..table.

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0360    63 66 64 75 6D 70 5F 61 72 72 61 79 20 74 64 2C  - cfdump_array.td,

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0370    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 71  - ..table.cfdump_q

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0380    75 65 72 79 20 74 64 2C 0A 09 74 61 62 6C 65 2E  - uery.td,..table.

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0390    63 66 64 75 6D 70 5F 63 66 63 20 74 64 2C 0A 09  - cfdump_cfc.td,..

[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03a0    74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 6F 62 6A  - table.cfdump_obj

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03b0    65 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63  - ect.td,..table.c

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03c0    66 64 75 6D 70 5F 62 69 6E 61 72 79 20 74 64 2C  - fdump_binary.td,

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03d0    0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75  - ..table.cfdump_u

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03e0    64 66 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63 66  - df.td,..table.cf

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03f0    64 75 6D 70 5F 75 64 66 62 6F 64 79 20 74 64 2C  - dump_udfbody.td,

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1391): Writing 7954 bytes of data to client

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1392): IIS7 flush enabled 0

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1393): writeclient write_length value 7954

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1413): Wrote 7954 bytes of data successfully

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=4 max=65536

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=2 max=65536

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000    05 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [info] ajp_process_callback::jk_ajp_common.c (2101): current reuse count is 2 of max reuse connection 250 and total endpoint count 250

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_process_callback::jk_ajp_common.c (2105): AJP13 protocol: Reuse is OK, and current reuse count is 2

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] iis_done::jk_isapi_plugin.c (1700): Finally done with writing.

[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] HttpExtensionProc::jk_isapi_plugin.c (2602): service() returned OK

[Wed Sep 10 15:42:22.470 2014] [2912:2664] [debug] ajp_reset_endpoint::jk_ajp_common.c (828): (cfusion) resetting endpoint with socket 772

[Wed Sep 10 15:42:22.470 2014] [2912:2664] [debug] ajp_done::jk_ajp_common.c (3218): recycling connection pool for worker cfusion and socket 772

Are collection files supposed to be 'read only'?

$
0
0

Hello, everyone,

 

Are the files that comprise a collection supposed to be set to 'read only'?

 

C:\ColdFusion10\cfusion\collections is indicating 'read only' for it and all sub-folders/files.

 

Optimizing a collection does not update anything (not even the date last modified) unless I use "purge".

 

I have code that, whenever a user submits a question, will insert the question into a database, query the database for ALL questions, then run a CFINDEX action="refresh" based upon that query (which does, indeed, include the new question.)  But the collection never sees the new question.

 

Thoughts/ideas?

 

V/r,

 

^_^

Errors trigger 200 response in logs

$
0
0

Hi, all,

 

We've got IDA's who are testing our work by attempting to SQL-inject harmless code into our project(s).

 

Because of the way we have both DEV and PRODUCTION set up, whenever their attempts cause an error, all they see is a generic error message that comes with a 200 response.  This is going into the webserver log as 200.

 

In order to see what happened, the IDA's have to pull the PCAP data and manually scan that, looking for the events.

 

Is there a way to trigger something other than 200 responses, so all they have to do is look at the webserver logs?

 

(Yeah.. I know..  a dev actually trying to make an IDA's job a little easier????  Has Hell frozen over??)

 

V/r,

 

^_^

Issue with CF11 running on Ubuntu Server 14 (CLI only, no GUI)

$
0
0

Hello, all,

I have a weird issue with the dev network that I'm trying to set up in my home. I have an Ubuntu Server 14 (Trusty Tahr) running Apache2 and ColdFusion Server 11. When I first got CF Server installed, it worked great. I added the PHP module to Apache and it works great. I'm not sure what happened, or when it happened, but I created a "index.cfm" file and placed it in the /var/www/html/rrp folder. The code for it looks like this:

<!DOCTYPE html><html><head><title>This is a test</title></head><body>This is a test</body></html>

When I look at the page via browser (IE11), I get a big blank nothing. If I do a "View Source", the code I see looks like:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><METAhttp-equiv="Content-Type"content="text/html; charset=utf-8"></HEAD><BODY></BODY></HTML>

I cannot figure out what is going on. Any help greatly appreciated.

 

V/r,

 

^_^


How to reset cached wsdls in CF11?

$
0
0

In CF 9 you could go into the Admin and remove wsdl's.  It seems the only way to clear wsdl cache is to restart the coldfusion instance.  is there a better way?

Permission denied for creating Java object: coldfusion.server.SystemInfo

$
0
0
I am getting this ColdFusion error when I try to access the administrator for a new ColdFusion 8 Enterprise instance. It is the 3rd one I have created and the other two, which I created months ago, do not generate this error when I access their admin.

The Instance Manager shows the instance as running and Windows services shows the J2EE Application Server for the instance as running.

The error:

Permission denied for creating Java object: coldfusion.server.SystemInfo.
Access to Java objects in the ColdFusion package has been disabled by the administrator.

CF8 Install Problems on a Windows Dedicated VPS

$
0
0
Hello,

I have a dedicated VPS running Windows Server 2003 that I am using to run CF8 on. However, I can't access the CF administrators page. When you click on Administrator under the Adobe folder in the start menu, the browser opens and acts as though it is bringing the page up and then it goes to a download window like you are downloading a program. Finally, the browser window returns the message "Service Unavailable". I have tried to get the company who I lease my VPS server from to help me, but they said this is a CF8 issue and they can't help me. The best they could do is tell me to try accessing coldfusion through my VPS IP address with :8500 in front of it. That still does nothing. Under Windows services, I verified that the CF8 application server is running. I just don't know what to do now. I would appreciate any help with this matter.

Coldfusion MX 7 ODBC Server Errors

$
0
0
Coldfusion application is timing out when attempting to render a ‘cfm’ page. To correct the application, the Coldfusion servers (CFMX7 Application Service, CFMX7 ODBC Agent Service, CFMX7 ODBC Server Agent, and CFMX7 Search Server Service) are stopped and restarted. On some occasions, the problem seems to correct itself without intervention from a server administration.

This incident has been reoccurring sporadically since March of 2007 with no root cause identified. Event log recorded the below error after the reported time of application outage and before the restarting of the services:

Event Type: Error
Event source: ColdFusion MX 7 ODBC Server
Event Category: None
Event ID: 0

Description:
The description fo Event ID ( 0 ) in Source ( ColdFusion MX 7 ODBC Server ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: ColdFusion MX 7 ODBC Server@LOCALHOST, ErrorCode=3001, ErrorMessage=socsrv.swsoc.9182.Internal error memory allocation failed., ClientHost=127.0.0.1,Session=25.

Other Event errors found:

ErrorCode=3059, ErrorMessage=The specified data source is not defined., Session=76
ErrorCode=3004, ErrorMessage=sched.swschd.1756.Internal error, an unexpected exception was detected.
ErrorCode=3005, ErrorMessage=socsrv.swsoc.9272.Tnternal error, fatal server error detected, Session=27

Our original assumption was that CF was failing when making the call to DB2 but after implementing cftry/cfcatch around a DB2 query that gets executed every 5 minutes, we discovered that the call to DB2 is work as expected (no error encountered). We now believe the CF is unable to handle the dataset returned by the query. Also, we are monitoring the health of all the services running on the server but all services appears to being running without noticeable issues.

Our plans are to upgrade to MX8, later this year but would like to address this problem now to prevent any future interruption to our customers. Do anyony have any ideas why this is happening?

BankRat


Other Info:
Server Platform: Windows 2003
Client’s Platform: Windows XP and Windows 2000
Application: Macromedia Coldfusion MX 7
Last upgrade: Coldfusion-70-updater2-win.exe
Database Driver: ODBC

The requested template has been denied access to cfcontent

$
0
0
. I am researching the Sandbox Security setting. sandbox security was enabled and some CF Tags (cfregistry, cfschedule, cfftp, cfcontent, and cfdirectory) were disabled. The ColdFusion Administrator console did not come up anymore. I am getting the following error:

03/12 07:08:43 Error [web-0] - access denied (coldfusion.tagext.GenericTagPermission cfcontent) The specific sequence of files included or processed is: /opt/jrun4/servers/cfusion/cfusion-ear/cfusion-war/CFIDE/administrator/index.cfm, line: 29

I have installed coldfusion mx as multi-server configuration on jrun4.
Viewing all 78799 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>