• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

CF10 Sites Produce 500 Error, CFAdmin Runs Fine

Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

(This is a partial repeat of a posting I added this morning to an old thread; reposting here in a new thread as I am not sure the old one will be seen by anyone)

Through fits and starts, we have CF10 running on CF10 Standard on a VPS with Windows 2012 64 bit and IIS 8.0.  I did install the IIS6 options too, as well as the ASAPI and ASP options.  CFAdmin was installed with the "all sites" option.   At this point, I can freely uninstall/re-install CF if need be as all sites are down anyway, unfortunately.

Every site gives me a 500 error but I CAN get the CF Administrator up and it runs and displays pages, updates, etc just fine. 

Another thread I found here in the forums concentrated on the Application pools. I checked the application pools and they all say 32bit=true, so for one site I went through and set them all to false, but that did not fix the problem. Was I supposed to recycle IIS or CF before I tried to render the page again?

For each site, there are 4 application pool listings, one for v2.0 (Classic), v2.0 (Integrated), v4.0 (Classic), and v4.0 (Integrated). 

All sites are showing the CFIDE and Jakarta virtual directories.  The .cfm and .cfc MIME's look like they are set correctly at the top level of all web sites. DNS has been checked and the sites can be pinged successfully.

I'm out of ideas.

Thank you for any help you can provide!

RLS

Views

2.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Hi

I've replied to the other forum : http://forums.adobe.com/thread/1283921?tstart=0

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Hi RLS,

Could you please check if you are able to get the website running from ColdFusion's internal port 8500. in case, that is disabled, please enable it by uncommenting --C:\ColdFusion10\cfusion\runtime\conf -- Server.xml

<!-- internal webserver start -->

    <Connector executor="tomcatThreadPool" maxThreads="50"

               port="8501" protocol="org.apache.coyote.http11.Http11Protocol"

               connectionTimeout="20000"

               redirectPort="8445" />

    <!-- internal webserver end -->

Please try to run your web applciation from web root of CF and compare the results

If this is a development enviornment you can enable the debugging mode to get the details on the error.

Thanks,

Anjaneai

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Anjaneai,

Before I started looking into your diagnostic approach, I visited vishu#13's approach. When I added a site by hand (versus my ISP's control panel approach), I have a working site.

The previous sites were all added by the control panel method when Open Blue Dragon was installed.  OBD has been removed from this server and CF10 Server Standard has taken its place.

Do you know of anything that OBD might have left laying around that could be causing this problem?

RLS

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

This is likely the culprit. Anyone know how to get rid of it? It won't simply go away when I hit the delete button.

opd isapi.jpg

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

I am not sure how to remove it. As the entry type is inherited, try to delete it from the server level or click on move tomcat up in the order (using View Ordered List).

As you configure CF with Webserver say IIS using Web Server Configuration tool, you can run as such tool for Open BD and remove the connector which might remove this.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Thank you.

When I view Ordered List, Tomcat is above OpenBD.

I see there are entries for this in the web.config files. Perhaps I can remove it from those?

RLS

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

If this is not production and there is no require for the OpenBD isapi_redirect dll then you can go ahead and take a backup of web.config and remove it. You can also check the ApplicationHost.config (C:\Windows\System32\inetsrv\config) for the OpenBD enteries.

It is always recommended to take a back up of all those files who you decide to update

Thanks

VJ

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

I was able to remove OpenBD from my listing by cutting this:

            <isapiFilters>

                <remove name="OpenBD" />

                <filter name="OpenBD" path="C:\openbd\connector\isapi_redirect-1.2.30.dll" preCondition="bitness64" />

            </isapiFilters>

from this file: C:\Windows\System32\inetsrv\config\applicationHost.config

and then I restarted IIS, but my problem persists. 😞

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Some web.config files had this, which I removed:

        <handlers accessPolicy="Read, Execute, Script">

            <add name="Coldfusion" path="*.cfm" verb="*" modules="IsapiModule" scriptProcessor="C:\openbd\connector\isapi_redirect-1.2.28.dll" resourceType="File" preCondition="bitness32" />

        </handlers>

or a variation like this:

        <handlers>

            <remove name="CFML" />

            <add name="CFML" path="*.cfm" verb="*" modules="IsapiModule" scriptProcessor="C:\openbd\connector\isapi_redirect-1.2.30.dll" resourceType="Unspecified" requireAccess="Execute" />

        </handlers>

but this did not exist in animalwarriorz.com, so my problem persists.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Is it a production server or a dev box? If it is dev box, remove the connector and just configure one of your existing (non-working) site with CF 10 and then test the behavior.

you can check the handlers that is there any handler for OpenBD in the handler mappings or not though I am not sure that it does add the handlers or not

Also, if you think that this Open BD is really pulling up your hair then you can take the backup of webroot (your websites)and then reconfigure IIS. This way it will remove the OpenBD as well but remove the CF 10 connector first before removing the connector.

Thanks

VJ

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

I am clinging to the hope that it's still just one little stupid thing and all will start working. The test site cemented that for me.

Could my server roles choices be part of therolesserver2012.jpg problem?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

You need not to Install Management tools with CF 10 however this might not be the issue here.

If it is not a production then set the log level to debug in the isapi_redirect.properties file present in the cfroot\config\wsconfig\1\ directory. However, before doing so rename the isapi_redirect.log in the same location as isapi_redirect.log_old so that there will be  new enteries in isapi_redirect.log when you access your website.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Wow, does that load up a log file!

Looking through it now to see if I can figure anything out.

RLS

[Fri Jan 10 12:41:23.073 2014] [8012:3980] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1036): Attempting to map URI '/animalwarriorz.com/test/tester.cfm' from 24 maps

[Fri Jan 10 12:41:23.075 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.077 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.080 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.081 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.084 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.085 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.088 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.090 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.093 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.094 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.096 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.098 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.100 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.104 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.106 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.109 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.111 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.113 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.116 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.118 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (850): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'

[Fri Jan 10 12:41:23.121 2014] [8012:3980] [debug] find_match::jk_uri_worker_map.c (863): Found a wildchar match '/*.cfm=cfusion'

[Fri Jan 10 12:41:23.122 2014] [8012:3980] [debug] HttpFilterProc::jk_isapi_plugin.c (1989): check if [/test/tester.cfm] points to the web-inf directory

[Fri Jan 10 12:41:23.125 2014] [8012:3980] [debug] HttpFilterProc::jk_isapi_plugin.c (2005): [/test/tester.cfm] is a servlet url - should redirect to cfusion

[Fri Jan 10 12:41:23.127 2014] [8012:3980] [debug] HttpFilterProc::jk_isapi_plugin.c (2045): fowarding escaped URI [/test/tester.cfm]

[Fri Jan 10 12:41:23.129 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3045): Reading extension header HTTP_TOMCATWORKER000000006A6B0000: cfusion

[Fri Jan 10 12:41:23.132 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3046): Reading extension header HTTP_TOMCATWORKERIDX000000006A6B0000: 19

[Fri Jan 10 12:41:23.134 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3047): Reading extension header HTTP_TOMCATURI000000006A6B0000: /test/tester.cfm

[Fri Jan 10 12:41:23.135 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3048): Reading extension header HTTP_TOMCATQUERY000000006A6B0000: (null)

[Fri Jan 10 12:41:23.138 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3125): Applying service extensions

[Fri Jan 10 12:41:23.140 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header Cache-Control : max-age=0

[Fri Jan 10 12:41:23.143 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header Connection : keep-alive

[Fri Jan 10 12:41:23.145 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header Content-Length : 0

[Fri Jan 10 12:41:23.146 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header Accept : text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8

[Fri Jan 10 12:41:23.147 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header Accept-Encoding : gzip,deflate,sdch

[Fri Jan 10 12:41:23.147 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header Accept-Language : en-US,en;q=0.8

[Fri Jan 10 12:41:23.148 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header Host : animalwarriorz.com

[Fri Jan 10 12:41:23.150 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3360): Forwarding request header User-Agent : Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36

[Fri Jan 10 12:41:23.151 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3395): Service protocol=HTTP/1.1 method=GET host=24.118.175.234 addr=24.118.175.234 name=animalwarriorz.com port=80 auth= user= uri=/test/tester.cfm

[Fri Jan 10 12:41:23.154 2014] [8012:3980] [debug] init_ws_service::jk_isapi_plugin.c (3407): Service request headers=8 attributes=0 chunked=no content-length=0 available=0

[Fri Jan 10 12:41:23.156 2014] [8012:3980] [debug] wc_get_worker_for_name::jk_worker.c (116): found a worker cfusion

[Fri Jan 10 12:41:23.158 2014] [8012:3980] [debug] HttpExtensionProc::jk_isapi_plugin.c (2239): got a worker for name cfusion

[Fri Jan 10 12:41:23.160 2014] [8012:3980] [debug] ajp_get_endpoint::jk_ajp_common.c (3186): acquired connection pool slot=0 after 0 retries

[Fri Jan 10 12:41:23.164 2014] [8012:3980] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (665): ajp marshaling done

[Fri Jan 10 12:41:23.167 2014] [8012:3980] [debug] ajp_service::jk_ajp_common.c (2462): processing cfusion with 2 retries

[Fri Jan 10 12:41:23.169 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): sending to ajp13 pos=4 len=523 max=65536

[Fri Jan 10 12:41:23.169 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0000    12 34 02 07 02 02 00 08 48 54 54 50 2F 31 2E 31  - .4......HTTP/1.1

[Fri Jan 10 12:41:23.171 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0010    00 00 10 2F 74 65 73 74 2F 74 65 73 74 65 72 2E  - .../test/tester.

[Fri Jan 10 12:41:23.172 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0020    63 66 6D 00 00 0E 32 34 2E 31 31 38 2E 31 37 35  - cfm...24.118.175

[Fri Jan 10 12:41:23.173 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0030    2E 32 33 34 00 00 0E 32 34 2E 31 31 38 2E 31 37  - .234...24.118.17

[Fri Jan 10 12:41:23.175 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0040    35 2E 32 33 34 00 00 12 61 6E 69 6D 61 6C 77 61  - 5.234...animalwa

[Fri Jan 10 12:41:23.177 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0050    72 72 69 6F 72 7A 2E 63 6F 6D 00 00 50 00 00 08  - rriorz.com..P...

[Fri Jan 10 12:41:23.179 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0060    00 0D 43 61 63 68 65 2D 43 6F 6E 74 72 6F 6C 00  - ..Cache-Control.

[Fri Jan 10 12:41:23.181 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0070    00 09 6D 61 78 2D 61 67 65 3D 30 00 A0 06 00 0A  - ..max-age=0.....

[Fri Jan 10 12:41:23.184 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0080    6B 65 65 70 2D 61 6C 69 76 65 00 A0 08 00 01 30  - keep-alive.....0

[Fri Jan 10 12:41:23.185 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0090    00 A0 01 00 4A 74 65 78 74 2F 68 74 6D 6C 2C 61  - ....Jtext/html,a

[Fri Jan 10 12:41:23.187 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 00a0    70 70 6C 69 63 61 74 69 6F 6E 2F 78 68 74 6D 6C  - pplication/xhtml

[Fri Jan 10 12:41:23.190 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 00b0    2B 78 6D 6C 2C 61 70 70 6C 69 63 61 74 69 6F 6E  - +xml,application

[Fri Jan 10 12:41:23.192 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 00c0    2F 78 6D 6C 3B 71 3D 30 2E 39 2C 69 6D 61 67 65  - /xml;q=0.9,image

[Fri Jan 10 12:41:23.195 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 00d0    2F 77 65 62 70 2C 2A 2F 2A 3B 71 3D 30 2E 38 00  - /webp,*/*;q=0.8.

[Fri Jan 10 12:41:23.197 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 00e0    00 0F 41 63 63 65 70 74 2D 45 6E 63 6F 64 69 6E  - ..Accept-Encodin

[Fri Jan 10 12:41:23.199 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 00f0    67 00 00 11 67 7A 69 70 2C 64 65 66 6C 61 74 65  - g...gzip,deflate

[Fri Jan 10 12:41:23.202 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0100    2C 73 64 63 68 00 00 0F 41 63 63 65 70 74 2D 4C  - ,sdch...Accept-L

[Fri Jan 10 12:41:23.203 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0110    61 6E 67 75 61 67 65 00 00 0E 65 6E 2D 55 53 2C  - anguage...en-US,

[Fri Jan 10 12:41:23.206 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0120    65 6E 3B 71 3D 30 2E 38 00 A0 0B 00 12 61 6E 69  - en;q=0.8.....ani

[Fri Jan 10 12:41:23.209 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0130    6D 61 6C 77 61 72 72 69 6F 72 7A 2E 63 6F 6D 00  - malwarriorz.com.

[Fri Jan 10 12:41:23.211 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0140    A0 0E 00 6C 4D 6F 7A 69 6C 6C 61 2F 35 2E 30 20  - ...lMozilla/5.0.

[Fri Jan 10 12:41:23.213 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0150    28 57 69 6E 64 6F 77 73 20 4E 54 20 36 2E 31 3B  - (Windows.NT.6.1;

[Fri Jan 10 12:41:23.216 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0160    20 57 4F 57 36 34 29 20 41 70 70 6C 65 57 65 62  - .WOW64).AppleWeb

[Fri Jan 10 12:41:23.217 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0170    4B 69 74 2F 35 33 37 2E 33 36 20 28 4B 48 54 4D  - Kit/537.36.(KHTM

[Fri Jan 10 12:41:23.218 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0180    4C 2C 20 6C 69 6B 65 20 47 65 63 6B 6F 29 20 43  - L,.like.Gecko).C

[Fri Jan 10 12:41:23.220 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0190    68 72 6F 6D 65 2F 33 31 2E 30 2E 31 36 35 30 2E  - hrome/31.0.1650.

[Fri Jan 10 12:41:23.222 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 01a0    36 33 20 53 61 66 61 72 69 2F 35 33 37 2E 33 36  - 63.Safari/537.36

[Fri Jan 10 12:41:23.225 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 01b0    00 03 00 00 00 04 00 00 00 0E 00 11 4D 69 63 72  - ............Micr

[Fri Jan 10 12:41:23.227 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 01c0    6F 73 6F 66 74 2D 49 49 53 2F 38 2E 30 00 0F 00  - osoft-IIS/8.0...

[Fri Jan 10 12:41:23.229 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 01d0    07 43 47 49 2F 31 2E 31 00 0A 00 0F 41 4A 50 5F  - .CGI/1.1....AJP_

[Fri Jan 10 12:41:23.230 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 01e0    52 45 4D 4F 54 45 5F 50 4F 52 54 00 00 05 35 34  - REMOTE_PORT...54

[Fri Jan 10 12:41:23.231 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 01f0    31 32 30 00 0A 00 10 4A 4B 5F 4C 42 5F 41 43 54  - 120....JK_LB_ACT

[Fri Jan 10 12:41:23.232 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0200    49 56 41 54 49 4F 4E 00 FF FF FF 00 00 00 00 00  - IVATION.........

[Fri Jan 10 12:41:23.239 2014] [8012:3980] [debug] ajp_send_request::jk_ajp_common.c (1692): (cfusion) Statistics about invalid connections: connect check (0), cping (0), send (0)

[Fri Jan 10 12:41:23.242 2014] [8012:3980] [debug] ajp_send_request::jk_ajp_common.c (1703): (cfusion) request body to send 0 - request body to resend 0

[Fri Jan 10 12:41:23.245 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): received from ajp13 pos=0 len=20 max=65536

[Fri Jan 10 12:41:23.247 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0000    0F 00 10 2F 74 65 73 74 2F 74 65 73 74 65 72 2E  - .../test/tester.

[Fri Jan 10 12:41:23.250 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0010    63 66 6D 00 00 00 00 00 00 00 00 00 00 00 00 00  - cfm.............

[Fri Jan 10 12:41:23.252 2014] [8012:3980] [debug] ajp_process_callback::jk_ajp_common.c (1860): Getting real path

[Fri Jan 10 12:41:23.254 2014] [8012:3980] [debug] getRealPath::jk_isapi_plugin.c (3450): getRealPath(/test/tester.cfm) = C:\WebsitePanel\Portal\test\tester.cfm

[Fri Jan 10 12:41:23.256 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): sending to ajp13 pos=4 len=43 max=44

[Fri Jan 10 12:41:23.257 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0000    12 34 00 27 26 43 3A 5C 57 65 62 73 69 74 65 50  - .4.'&C:\WebsiteP

[Fri Jan 10 12:41:23.260 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0010    61 6E 65 6C 5C 50 6F 72 74 61 6C 5C 74 65 73 74  - anel\Portal\test

[Fri Jan 10 12:41:23.263 2014] [8012:3980] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1214): 0020    5C 74 65 73 74 65 72 2E 63 66 6D 00 00 00 00 00  - \tester.cfm.....

[Fri Jan 10 12:41:23.277 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): received from ajp13 pos=0 len=45 max=65536

[Fri Jan 10 12:41:23.280 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0000    04 01 94 00 09 4E 6F 74 20 46 6F 75 6E 64 00 00  - .....Not.Found..

[Fri Jan 10 12:41:23.283 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0010    01 A0 01 00 17 74 65 78 74 2F 68 74 6D 6C 3B 63  - .....text/html;c

[Fri Jan 10 12:41:23.283 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0020    68 61 72 73 65 74 3D 55 54 46 2D 38 00 00 00 00  - harset=UTF-8....

[Fri Jan 10 12:41:23.286 2014] [8012:3980] [debug] ajp_unmarshal_response::jk_ajp_common.c (720): status = 404

[Fri Jan 10 12:41:23.288 2014] [8012:3980] [debug] ajp_unmarshal_response::jk_ajp_common.c (727): Number of headers is = 1

[Fri Jan 10 12:41:23.289 2014] [8012:3980] [debug] ajp_unmarshal_response::jk_ajp_common.c (783): Header[0] [Content-Type] = [text/html;charset=UTF-8]

[Fri Jan 10 12:41:23.291 2014] [8012:3980] [debug] start_response::jk_isapi_plugin.c (997): Starting response for URI '/test/tester.cfm' (protocol HTTP/1.1)

[Fri Jan 10 12:41:23.292 2014] [8012:3980] [debug] start_response::jk_isapi_plugin.c (1106): Not using Keep-Alive

[Fri Jan 10 12:41:23.293 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): received from ajp13 pos=0 len=4 max=65536

[Fri Jan 10 12:41:23.294 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0000    03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................

[Fri Jan 10 12:41:23.396 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): received from ajp13 pos=0 len=7544 max=65536

[Fri Jan 10 12:41:23.399 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0000    03 1D 74 3C 21 2D 2D 20 22 20 2D 2D 2D 3E 3C 2F  - ..t<!--.".---></

[Fri Jan 10 12:41:23.401 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0010    54 44 3E 3C 2F 54 44 3E 3C 2F 54 44 3E 3C 2F 54  - TD></TD></TD></T

[Fri Jan 10 12:41:23.405 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0020    48 3E 3C 2F 54 48 3E 3C 2F 54 48 3E 3C 2F 54 52  - H></TH></TH></TR

[Fri Jan 10 12:41:23.409 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0030    3E 3C 2F 54 52 3E 3C 2F 54 52 3E 3C 2F 54 41 42  - ></TR></TR></TAB

[Fri Jan 10 12:41:23.418 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0040    4C 45 3E 3C 2F 54 41 42 4C 45 3E 3C 2F 54 41 42  - LE></TABLE></TAB

[Fri Jan 10 12:41:23.419 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0050    4C 45 3E 3C 2F 41 3E 3C 2F 41 42 42 52 45 56 3E  - LE></A></ABBREV>

[Fri Jan 10 12:41:23.420 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0060    3C 2F 41 43 52 4F 4E 59 4D 3E 3C 2F 41 44 44 52  - </ACRONYM></ADDR

[Fri Jan 10 12:41:23.423 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0070    45 53 53 3E 3C 2F 41 50 50 4C 45 54 3E 3C 2F 41  - ESS></APPLET></A

[Fri Jan 10 12:41:23.425 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0080    55 3E 3C 2F 42 3E 3C 2F 42 41 4E 4E 45 52 3E 3C  - U></B></BANNER><

[Fri Jan 10 12:41:23.427 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0090    2F 42 49 47 3E 3C 2F 42 4C 49 4E 4B 3E 3C 2F 42  - /BIG></BLINK></B

[Fri Jan 10 12:41:23.429 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 00a0    4C 4F 43 4B 51 55 4F 54 45 3E 3C 2F 42 51 3E 3C  - LOCKQUOTE></BQ><

[Fri Jan 10 12:41:23.432 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 00b0    2F 43 41 50 54 49 4F 4E 3E 3C 2F 43 45 4E 54 45  - /CAPTION></CENTE

[Fri Jan 10 12:41:23.435 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 00c0    52 3E 3C 2F 43 49 54 45 3E 3C 2F 43 4F 44 45 3E  - R></CITE></CODE>

[Fri Jan 10 12:41:23.438 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 00d0    3C 2F 43 4F 4D 4D 45 4E 54 3E 3C 2F 44 45 4C 3E  - </COMMENT></DEL>

[Fri Jan 10 12:41:23.440 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 00e0    3C 2F 44 46 4E 3E 3C 2F 44 49 52 3E 3C 2F 44 49  - </DFN></DIR></DI

[Fri Jan 10 12:41:23.444 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 00f0    56 3E 3C 2F 44 4C 3E 3C 2F 45 4D 3E 3C 2F 46 49  - V></DL></EM></FI

[Fri Jan 10 12:41:23.447 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0100    47 3E 3C 2F 46 4E 3E 3C 2F 46 4F 4E 54 3E 3C 2F  - G></FN></FONT></

[Fri Jan 10 12:41:23.450 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0110    46 4F 52 4D 3E 3C 2F 46 52 41 4D 45 3E 3C 2F 46  - FORM></FRAME></F

[Fri Jan 10 12:41:23.454 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0120    52 41 4D 45 53 45 54 3E 3C 2F 48 31 3E 3C 2F 48  - RAMESET></H1></H

[Fri Jan 10 12:41:23.455 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0130    32 3E 3C 2F 48 33 3E 3C 2F 48 34 3E 3C 2F 48 35  - 2></H3></H4></H5

[Fri Jan 10 12:41:23.458 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0140    3E 3C 2F 48 36 3E 3C 2F 48 45 41 44 3E 3C 2F 49  - ></H6></HEAD></I

[Fri Jan 10 12:41:23.461 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0150    3E 3C 2F 49 4E 53 3E 3C 2F 4B 42 44 3E 3C 2F 4C  - ></INS></KBD></L

[Fri Jan 10 12:41:23.463 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0160    49 53 54 49 4E 47 3E 3C 2F 4D 41 50 3E 3C 2F 4D  - ISTING></MAP></M

[Fri Jan 10 12:41:23.464 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0170    41 52 51 55 45 45 3E 3C 2F 4D 45 4E 55 3E 3C 2F  - ARQUEE></MENU></

[Fri Jan 10 12:41:23.469 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0180    4D 55 4C 54 49 43 4F 4C 3E 3C 2F 4E 4F 42 52 3E  - MULTICOL></NOBR>

[Fri Jan 10 12:41:23.469 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0190    3C 2F 4E 4F 46 52 41 4D 45 53 3E 3C 2F 4E 4F 53  - </NOFRAMES></NOS

[Fri Jan 10 12:41:23.472 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 01a0    43 52 49 50 54 3E 3C 2F 4E 4F 54 45 3E 3C 2F 4F  - CRIPT></NOTE></O

[Fri Jan 10 12:41:23.474 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 01b0    4C 3E 3C 2F 50 3E 3C 2F 50 41 52 41 4D 3E 3C 2F  - L></P></PARAM></

[Fri Jan 10 12:41:23.478 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 01c0    50 45 52 53 4F 4E 3E 3C 2F 50 4C 41 49 4E 54 45  - PERSON></PLAINTE

[Fri Jan 10 12:41:23.481 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 01d0    58 54 3E 3C 2F 50 52 45 3E 3C 2F 51 3E 3C 2F 53  - XT></PRE></Q></S

[Fri Jan 10 12:41:23.484 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 01e0    3E 3C 2F 53 41 4D 50 3E 3C 2F 53 43 52 49 50 54  - ></SAMP></SCRIPT

[Fri Jan 10 12:41:23.486 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 01f0    3E 3C 2F 53 45 4C 45 43 54 3E 3C 2F 53 4D 41 4C  - ></SELECT></SMAL

[Fri Jan 10 12:41:23.489 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0200    4C 3E 3C 2F 53 54 52 49 4B 45 3E 3C 2F 53 54 52  - L></STRIKE></STR

[Fri Jan 10 12:41:23.490 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0210    4F 4E 47 3E 3C 2F 53 55 42 3E 3C 2F 53 55 50 3E  - ONG></SUB></SUP>

[Fri Jan 10 12:41:23.491 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0220    3C 2F 54 41 42 4C 45 3E 3C 2F 54 44 3E 3C 2F 54  - </TABLE></TD></T

[Fri Jan 10 12:41:23.497 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0230    45 58 54 41 52 45 41 3E 3C 2F 54 48 3E 3C 2F 54  - EXTAREA></TH></T

[Fri Jan 10 12:41:23.501 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0240    49 54 4C 45 3E 3C 2F 54 52 3E 3C 2F 54 54 3E 3C  - ITLE></TR></TT><

[Fri Jan 10 12:41:23.502 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0250    2F 55 3E 3C 2F 55 4C 3E 3C 2F 56 41 52 3E 3C 2F  - /U></UL></VAR></

[Fri Jan 10 12:41:23.504 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0260    57 42 52 3E 3C 2F 58 4D 50 3E 0D 0A 0D 0A 20 20  - WBR></XMP>......

[Fri Jan 10 12:41:23.506 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0270    20 20 3C 66 6F 6E 74 20 66 61 63 65 3D 22 61 72  - ..<font.face="ar

[Fri Jan 10 12:41:23.508 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0280    69 61 6C 22 3E 3C 2F 66 6F 6E 74 3E 0D 0A 0D 0A  - ial"></font>....

[Fri Jan 10 12:41:23.511 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0290    20 20 20 20 0D 0A 0D 0A 20 20 20 20 09 3C 68 74  - .............<ht

[Fri Jan 10 12:41:23.514 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 02a0    6D 6C 3E 0D 0A 20 20 20 20 09 09 3C 68 65 61 64  - ml>........<head

[Fri Jan 10 12:41:23.514 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 02b0    3E 0D 0A 20 20 20 20 09 09 09 3C 74 69 74 6C 65  - >.........<title

[Fri Jan 10 12:41:23.516 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 02c0    3E 45 72 72 6F 72 20 4F 63 63 75 72 72 65 64 20  - >Error.Occurred.

[Fri Jan 10 12:41:23.517 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 02d0    57 68 69 6C 65 20 50 72 6F 63 65 73 73 69 6E 67  - While.Processing

[Fri Jan 10 12:41:23.518 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 02e0    20 52 65 71 75 65 73 74 3C 2F 74 69 74 6C 65 3E  - .Request</title>

[Fri Jan 10 12:41:23.519 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 02f0    0D 0A 0D 0A 0D 0A 20 20 20 20 3C 73 63 72 69 70  - ..........<scrip

[Fri Jan 10 12:41:23.520 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0300    74 20 6C 61 6E 67 75 61 67 65 3D 22 4A 61 76 61  - t.language="Java

[Fri Jan 10 12:41:23.523 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0310    53 63 72 69 70 74 22 3E 0D 0A 20 20 20 20 66 75  - Script">......fu

[Fri Jan 10 12:41:23.524 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0320    6E 63 74 69 6F 6E 20 73 68 6F 77 48 69 64 65 28  - nction.showHide(

[Fri Jan 10 12:41:23.525 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0330    74 61 72 67 65 74 4E 61 6D 65 29 20 7B 0D 0A 20  - targetName).{...

[Fri Jan 10 12:41:23.526 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0340    20 20 20 20 20 20 20 69 66 28 20 64 6F 63 75 6D  - .......if(.docum

[Fri Jan 10 12:41:23.526 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0350    65 6E 74 2E 67 65 74 45 6C 65 6D 65 6E 74 42 79  - ent.getElementBy

[Fri Jan 10 12:41:23.527 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0360    49 64 20 29 20 7B 20 2F 2F 20 4E 53 36 2B 0D 0A  - Id.).{.//.NS6+..

[Fri Jan 10 12:41:23.528 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0370    20 20 20 20 20 20 20 20 20 20 20 20 74 61 72 67  - ............targ

[Fri Jan 10 12:41:23.530 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0380    65 74 20 3D 20 64 6F 63 75 6D 65 6E 74 2E 67 65  - et.=.document.ge

[Fri Jan 10 12:41:23.531 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0390    74 45 6C 65 6D 65 6E 74 42 79 49 64 28 74 61 72  - tElementById(tar

[Fri Jan 10 12:41:23.532 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 03a0    67 65 74 4E 61 6D 65 29 3B 0D 0A 20 20 20 20 20  - getName);.......

[Fri Jan 10 12:41:23.534 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 03b0    20 20 20 7D 20 65 6C 73 65 20 69 66 28 20 64 6F  - ...}.else.if(.do

[Fri Jan 10 12:41:23.535 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 03c0    63 75 6D 65 6E 74 2E 61 6C 6C 20 29 20 7B 20 2F  - cument.all.).{./

[Fri Jan 10 12:41:23.536 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 03d0    2F 20 49 45 34 2B 0D 0A 20 20 20 20 20 20 20 20  - /.IE4+..........

[Fri Jan 10 12:41:23.537 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 03e0    20 20 20 20 74 61 72 67 65 74 20 3D 20 64 6F 63  - ....target.=.doc

[Fri Jan 10 12:41:23.537 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 03f0    75 6D 65 6E 74 2E 61 6C 6C 5B 74 61 72 67 65 74  - ument.all[target

[Fri Jan 10 12:41:23.538 2014] [8012:3980] [debug] isapi_write_client::jk_isapi_plugin.c (1250): Writing 7540 bytes of data to client

[Fri Jan 10 12:41:23.539 2014] [8012:3980] [debug] isapi_write_client::jk_isapi_plugin.c (1251): IIS7 flush enabled 1

[Fri Jan 10 12:41:23.540 2014] [8012:3980] [debug] isapi_write_client::jk_isapi_plugin.c (1268): Wrote 7540 bytes of data successfully

[Fri Jan 10 12:41:23.541 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): received from ajp13 pos=0 len=4 max=65536

[Fri Jan 10 12:41:23.543 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0000    03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................

[Fri Jan 10 12:41:23.543 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): received from ajp13 pos=0 len=2 max=65536

[Fri Jan 10 12:41:23.545 2014] [8012:3980] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1400): 0000    05 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................

[Fri Jan 10 12:41:23.546 2014] [8012:3980] [debug] ajp_process_callback::jk_ajp_common.c (2021): AJP13 protocol: Reuse is OK, and current reuse count is 2

[Fri Jan 10 12:41:23.547 2014] [8012:3980] [debug] HttpExtensionProc::jk_isapi_plugin.c (2262): service() returned OK

[Fri Jan 10 12:41:23.547 2014] [8012:3980] [debug] ajp_reset_endpoint::jk_ajp_common.c (825): (cfusion) resetting endpoint with socket 1528

[Fri Jan 10 12:41:23.548 2014] [8012:3980] [debug] ajp_done::jk_ajp_common.c (3103): recycling connection pool slot=0 for worker cfusion

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

This strikes me as odd.  In the log, I found this line:

[Fri Jan 10 12:41:23.254 2014] [8012:3980] [debug] getRealPath::jk_isapi_plugin.c (3450): getRealPath(/test/tester.cfm) = C:\WebsitePanel\Portal\test\tester.cfm

But that's not the real path to the file.  The real path is C:\HostingSpaces\rls\animalwarriorz.com\wwwroot\www\test

Oh, btw, I dropped and re-added that site just to see if that would fix it. It did not, and now I get 404 Fle or directory not found.

Why would it appear to be looking in the wrong place?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Just for fun, I copied my files into that directory, and they served up just fine.

What would do this redirection?  If I can stop that redirection, I think I might be good to go.

RLS

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Not sure about redirection. That is something set up within IIS. Check the web.config for the same

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

That was a false alarm, sorry. I misspelled the name of the website when I re-added it.

Re-adding it, though, allows it to work.

Trying hard to figure out why the ones I added manually are working, but the ones that are in there now are not. If I could find that one (or more) setting that is keeping these others from running, I could get it done. Otherwise, I have to drop/add a couple dozen sites.  Might be faster to do that, I guess...

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

I believe I have the answer.

The old application pools were mismatched.

I created new application pools for each site, chagned basic settings to use this new pool, and voila. Sites working.

Thanks for your help!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

That sounds great You can change the log level to info now in the isapi_redirect.properties

Another thing whenever you access your application and page takes too much time to load or page gives you some standard error like 500, first of all check the application pool of the application/website whether it is running. As Application pool is responsible for providing resources for your application. Also, whenever new website starts working and old are not, just change the app pool of old site to the new app pool and if you try the same at your end now that will also work.

Have a great day ahead

Thanks
VJ

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

thanks again for all your help!

RLS

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

LATEST

You are welcome

Please mark this post as correct so that it would be helpful for other  Adobe ColdFusion users

Thanks

VJ

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation