Re: Has anyone else applied this patch yet???

2005-03-31 Thread Stephen Dupre
We're looking into this right now.

Thanks for bringing this to our attention.

Stephen Dupre
Macromedia QA

I sent Feedback on the kb article explaining the fix on MM's site
yesterday. No response. Any MM'ers reading this?? 

-Original Message-
From: Paul Vernon [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 4:53 PM
To: CF-Talk
Subject: RE: Has anyone else applied this patch yet???

Just as an update the following code also fails to work with the
patch...

cfheader statuscode=301 statustext=This page has been permanently
moved cfheader name=Location value=/ cfabort

cfheader statuscode=302 statustext=Temporarily moved cfheader
name=Location value=/ cfabort

So I would think that the CF patch isn't returning the headers correctly
when there is no data in the content part of the request response.

Paul

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200930
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Kevin Graeme
Uh oh. Time to talk to our server admins. We've got a lot of that too.

-Kevin 

 -Original Message-
 From: Dov Katz [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, March 29, 2005 6:23 PM
 To: CF-Talk
 Subject: Re: Has anyone else applied this patch yet???
 
 I Stand Corrected.   My install *DOES* have a problem with 
 CFLOCATION, however it seems that the problem exists only 
 when the file has nothing but a CFLOCATION in it...
 
 Example,  I have some legacy code which sits in FolderX on my 
 site, for the sole purpose of doing a CFLOCATION 
 url=../index.cfm?Fuseaction=FolderX
 
 This no longer works after the patch (didn't catch it since 
 its an obscure area of the site)   I am running MX6.1 + 
 w2K server with all the latest patches.
 
 I have CFLOCATIONS Peppered throughout other areas of the 
 site and it works just fine.  
 
 The following file (go.cfm) does not work:
 cflocation url=http://www.cnn.com;
 
 Neither does wrapping it in CFIF true/cfif in case 
 presence of other code impacted the situation.
 
 HOWEVER, adding content to the page prior to the cflocation 
 (obviously assuming you dont cfflush) *DOES* work.   The 
 below code works:  
 !--- go3.cfm ---
 TESTING
 cflocation url=http://www.cnn.com;
 
 
 Any ideas.  Can someone ask MM to fix and post?
 
 -D
  I applied to Dev, QA, and Production servers, all without incident.
 IIS5/W2K Servers
 
 Thanks for the input... However our two environments differ 
 enough to 
 make me think that you may not be affected by the issue I'm 
 experiencing anyway
 
  I installed the JRun updater which included this patch on 
 a dev box 
  today,
 no issues so far. Running a JRun cluster even too.
 
 Again, this looks like our environments are sufficiently 
 different for 
 the issue not to surface on your environment
 
 Just as a FYI.
 
 I've just applied the patch to a second server to make sure I wasn't 
 going totally mad and I got the same issues. Any page that has a 
 cflocation in fails to force the redirect and the client seems to 
 either sit on the page it was on or returns a 'Document 
 contains no data' error...
 
 Again I backed the patch out of the second server and 
 everything comes 
 back to life again...
 
 Other than the fact that the first server was Windows 2003 
 Standard and 
 the second server was Windows 2003 Web Server, it's worth 
 saying that 
 these two servers share and identical configuration and 
 security policy 
 etc. That is to say all registry settings are the same, all IIS 
 lockdown functions are the same.. Everything. To all intents and 
 purposes these boxes are identical and therefore there must be 
 something (a config setting) somewhere that is causing this 
 behaviour with the CFMX patch and IIS 6.
 
 Needless to say, its annoying that I cannot apply this patch as the 
 problems it is causing for me are far bigger than the 
 problems that it addresses
 But I am affected by the issues that it solves so I would 
 like to get 
 to the bottom of it...
 
 If anyone has any suggestions then I'd love to hear them...
 
 Paul
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200710
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Robertson-Ravo, Neil (RX)
So it sounds as if the fix is to:

1. Run the cf_root\bin\connectors\Remove_ALL_connectors.bat to completely
remove all existing IIS configurations. 

2. Run the cf_root\bin\connectors\IIS_connectors.bat to properly configure
all sites (existing and new).

(this will pick up the new Connector)



-Original Message-
From: Kevin Graeme [mailto:[EMAIL PROTECTED] 
Sent: 30 March 2005 16:40
To: CF-Talk
Subject: RE: Has anyone else applied this patch yet???

Uh oh. Time to talk to our server admins. We've got a lot of that too.

-Kevin 

 -Original Message-
 From: Dov Katz [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, March 29, 2005 6:23 PM
 To: CF-Talk
 Subject: Re: Has anyone else applied this patch yet???
 
 I Stand Corrected.   My install *DOES* have a problem with 
 CFLOCATION, however it seems that the problem exists only 
 when the file has nothing but a CFLOCATION in it...
 
 Example,  I have some legacy code which sits in FolderX on my 
 site, for the sole purpose of doing a CFLOCATION 
 url=../index.cfm?Fuseaction=FolderX
 
 This no longer works after the patch (didn't catch it since 
 its an obscure area of the site)   I am running MX6.1 + 
 w2K server with all the latest patches.
 
 I have CFLOCATIONS Peppered throughout other areas of the 
 site and it works just fine.  
 
 The following file (go.cfm) does not work:
 cflocation url=http://www.cnn.com;
 
 Neither does wrapping it in CFIF true/cfif in case 
 presence of other code impacted the situation.
 
 HOWEVER, adding content to the page prior to the cflocation 
 (obviously assuming you dont cfflush) *DOES* work.   The 
 below code works:  
 !--- go3.cfm ---
 TESTING
 cflocation url=http://www.cnn.com;
 
 
 Any ideas.  Can someone ask MM to fix and post?
 
 -D
  I applied to Dev, QA, and Production servers, all without incident.
 IIS5/W2K Servers
 
 Thanks for the input... However our two environments differ 
 enough to 
 make me think that you may not be affected by the issue I'm 
 experiencing anyway
 
  I installed the JRun updater which included this patch on 
 a dev box 
  today,
 no issues so far. Running a JRun cluster even too.
 
 Again, this looks like our environments are sufficiently 
 different for 
 the issue not to surface on your environment
 
 Just as a FYI.
 
 I've just applied the patch to a second server to make sure I wasn't 
 going totally mad and I got the same issues. Any page that has a 
 cflocation in fails to force the redirect and the client seems to 
 either sit on the page it was on or returns a 'Document 
 contains no data' error...
 
 Again I backed the patch out of the second server and 
 everything comes 
 back to life again...
 
 Other than the fact that the first server was Windows 2003 
 Standard and 
 the second server was Windows 2003 Web Server, it's worth 
 saying that 
 these two servers share and identical configuration and 
 security policy 
 etc. That is to say all registry settings are the same, all IIS 
 lockdown functions are the same.. Everything. To all intents and 
 purposes these boxes are identical and therefore there must be 
 something (a config setting) somewhere that is causing this 
 behaviour with the CFMX patch and IIS 6.
 
 Needless to say, its annoying that I cannot apply this patch as the 
 problems it is causing for me are far bigger than the 
 problems that it addresses
 But I am affected by the issues that it solves so I would 
 like to get 
 to the bottom of it...
 
 If anyone has any suggestions then I'd love to hear them...
 
 Paul
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200712
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Robertson-Ravo, Neil (RX)
Sounds as if the fix is to:

1. Run the cf_root\bin\connectors\Remove_ALL_connectors.bat to completely
remove all existing IIS configurations. 

2. Run the cf_root\bin\connectors\IIS_connectors.bat to properly configure
all sites (existing and new).

(This will pick up the new Connector)







-Original Message-
From: Kevin Graeme [mailto:[EMAIL PROTECTED] 
Sent: 30 March 2005 16:40
To: CF-Talk
Subject: RE: Has anyone else applied this patch yet???

Uh oh. Time to talk to our server admins. We've got a lot of that too.

-Kevin 
This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions.
Visit our website at http://www.reedexpo.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200713
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-30 Thread Chris Kief | Mindflood
That did not work for me as the new version of wsconfig.jar was still used
to generate the connectors. You would actually need to:

1. Run remove_all_coonectors.bat
2. Revert back to the previous version of wsconfig.jar
3. Run IIS_connectors.bat to reconfigure IIS.

Chris



On 3/30/05 7:42 AM, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:

 Sounds as if the fix is to:
 
 1. Run the cf_root\bin\connectors\Remove_ALL_connectors.bat to completely
 remove all existing IIS configurations.
 
 2. Run the cf_root\bin\connectors\IIS_connectors.bat to properly configure
 all sites (existing and new).
 
 (This will pick up the new Connector)
 
 
 
 
 
 
 
 -Original Message-
 From: Kevin Graeme [mailto:[EMAIL PROTECTED]
 Sent: 30 March 2005 16:40
 To: CF-Talk
 Subject: RE: Has anyone else applied this patch yet???
 
 Uh oh. Time to talk to our server admins. We've got a lot of that too.
 
 -Kevin 
 This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
 Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
 Registered in England, Number 678540.  It contains information which is
 confidential and may also be privileged.  It is for the exclusive use of the
 intended recipient(s).  If you are not the intended recipient(s) please note
 that any form of distribution, copying or use of this communication or the
 information in it is strictly prohibited and may be unlawful.  If you have
 received this communication in error please return it to the sender or call
 our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
 communication are not necessarily those expressed by Reed Exhibitions.
 Visit our website at http://www.reedexpo.com
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200737
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-30 Thread Douglas Knudsen
I just tested this behaviour, no issues on my setup.  Win2k, IIS5,
J2EE config of CF6.1 UPD.  Note I used the JRun updater, not the CF
patch.

D


On Wed, 30 Mar 2005 09:38:55 -0800, Chris Kief | Mindflood
[EMAIL PROTECTED] wrote:
 That did not work for me as the new version of wsconfig.jar was still used
 to generate the connectors. You would actually need to:
 
 1. Run remove_all_coonectors.bat
 2. Revert back to the previous version of wsconfig.jar
 3. Run IIS_connectors.bat to reconfigure IIS.
 
 Chris
 
 On 3/30/05 7:42 AM, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED] wrote:
 
  Sounds as if the fix is to:
 
  1. Run the cf_root\bin\connectors\Remove_ALL_connectors.bat to completely
  remove all existing IIS configurations.
 
  2. Run the cf_root\bin\connectors\IIS_connectors.bat to properly configure
  all sites (existing and new).
 
  (This will pick up the new Connector)
 
 
 
 
 
 
 
  -Original Message-
  From: Kevin Graeme [mailto:[EMAIL PROTECTED]
  Sent: 30 March 2005 16:40
  To: CF-Talk
  Subject: RE: Has anyone else applied this patch yet???
 
  Uh oh. Time to talk to our server admins. We've got a lot of that too.
 
  -Kevin
  This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
  Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
  Registered in England, Number 678540.  It contains information which is
  confidential and may also be privileged.  It is for the exclusive use of the
  intended recipient(s).  If you are not the intended recipient(s) please note
  that any form of distribution, copying or use of this communication or the
  information in it is strictly prohibited and may be unlawful.  If you have
  received this communication in error please return it to the sender or call
  our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
  communication are not necessarily those expressed by Reed Exhibitions.
  Visit our website at http://www.reedexpo.com
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200744
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Matt McDonald
We applied all of the patches today and confirm that the wsconfig.jar update
is the culprit.  Any pages that have cflocation but do not return any data
to the client will fail.
By simply putting !-- -- in the file with cflocation, it started working
again.  Not a real solution.  :-)   
After we removed that 1 update everything worked fine.  If it wasn't for
this thread/list we may have spent all day figuring out the problem.

This is a nasty nasty bug.  :-)



--
Matt McDonald
Chief Technology Officer
HomeRoute
Phone:  517-540- x553
Direct:  800-339-9248
Fax:  517-540-6992
E-Mail:  [EMAIL PROTECTED]
 
... helping you find your way home
www.homes101.net
www.relocate-america.com
--

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 1:04 PM
To: CF-Talk
Subject: Re: Has anyone else applied this patch yet???

I just tested this behaviour, no issues on my setup.  Win2k, IIS5,
J2EE config of CF6.1 UPD.  Note I used the JRun updater, not the CF
patch.

D


On Wed, 30 Mar 2005 09:38:55 -0800, Chris Kief | Mindflood
[EMAIL PROTECTED] wrote:
 That did not work for me as the new version of wsconfig.jar was still used
 to generate the connectors. You would actually need to:
 
 1. Run remove_all_coonectors.bat
 2. Revert back to the previous version of wsconfig.jar
 3. Run IIS_connectors.bat to reconfigure IIS.
 
 Chris
 
 On 3/30/05 7:42 AM, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED] wrote:
 
  Sounds as if the fix is to:
 
  1. Run the cf_root\bin\connectors\Remove_ALL_connectors.bat to
completely
  remove all existing IIS configurations.
 
  2. Run the cf_root\bin\connectors\IIS_connectors.bat to properly
configure
  all sites (existing and new).
 
  (This will pick up the new Connector)
 
 
 
 
 
 
 
  -Original Message-
  From: Kevin Graeme [mailto:[EMAIL PROTECTED]
  Sent: 30 March 2005 16:40
  To: CF-Talk
  Subject: RE: Has anyone else applied this patch yet???
 
  Uh oh. Time to talk to our server admins. We've got a lot of that too.
 
  -Kevin
  This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
  Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
  Registered in England, Number 678540.  It contains information which is
  confidential and may also be privileged.  It is for the exclusive use of
the
  intended recipient(s).  If you are not the intended recipient(s) please
note
  that any form of distribution, copying or use of this communication or
the
  information in it is strictly prohibited and may be unlawful.  If you
have
  received this communication in error please return it to the sender or
call
  our switchboard on +44 (0) 20 89107910.  The opinions expressed within
this
  communication are not necessarily those expressed by Reed Exhibitions.
  Visit our website at http://www.reedexpo.com
 
 
 
 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200819
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Katz, Dov B \(IT\)
That's because !-- -- is a HTML content and thus output...

Use three dashes and it's back to not working, I suspect.

-Dov 

-Original Message-
From: Matt McDonald [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 4:23 PM
To: CF-Talk
Subject: RE: Has anyone else applied this patch yet???

We applied all of the patches today and confirm that the wsconfig.jar
update is the culprit.  Any pages that have cflocation but do not return
any data to the client will fail.
By simply putting !-- -- in the file with cflocation, it started
working
again.  Not a real solution.  :-)   
After we removed that 1 update everything worked fine.  If it wasn't for
this thread/list we may have spent all day figuring out the problem.

This is a nasty nasty bug.  :-)



--
Matt McDonald
Chief Technology Officer
HomeRoute
Phone:  517-540- x553
Direct:  800-339-9248
Fax:  517-540-6992
E-Mail:  [EMAIL PROTECTED]
 
 helping you find your way home
www.homes101.net
www.relocate-america.com
--

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 30, 2005 1:04 PM
To: CF-Talk
Subject: Re: Has anyone else applied this patch yet???

I just tested this behaviour, no issues on my setup.  Win2k, IIS5, J2EE
config of CF6.1 UPD.  Note I used the JRun updater, not the CF patch.

D


On Wed, 30 Mar 2005 09:38:55 -0800, Chris Kief | Mindflood
[EMAIL PROTECTED] wrote:
 That did not work for me as the new version of wsconfig.jar was still 
 used to generate the connectors. You would actually need to:
 
 1. Run remove_all_coonectors.bat
 2. Revert back to the previous version of wsconfig.jar 3. Run 
 IIS_connectors.bat to reconfigure IIS.
 
 Chris
 
 On 3/30/05 7:42 AM, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED] wrote:
 
  Sounds as if the fix is to:
 
  1. Run the cf_root\bin\connectors\Remove_ALL_connectors.bat to
completely
  remove all existing IIS configurations.
 
  2. Run the cf_root\bin\connectors\IIS_connectors.bat to properly
configure
  all sites (existing and new).
 
  (This will pick up the new Connector)
 
 
 
 
 
 
 
  -Original Message-
  From: Kevin Graeme [mailto:[EMAIL PROTECTED]
  Sent: 30 March 2005 16:40
  To: CF-Talk
  Subject: RE: Has anyone else applied this patch yet???
 
  Uh oh. Time to talk to our server admins. We've got a lot of that
too.
 
  -Kevin
  This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, 
  Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed 
  Business, Registered in England, Number 678540.  It contains 
  information which is confidential and may also be privileged.  It is

  for the exclusive use of
the
  intended recipient(s).  If you are not the intended recipient(s) 
  please
note
  that any form of distribution, copying or use of this communication 
  or
the
  information in it is strictly prohibited and may be unlawful.  If 
  you
have
  received this communication in error please return it to the sender 
  or
call
  our switchboard on +44 (0) 20 89107910.  The opinions expressed 
  within
this
  communication are not necessarily those expressed by Reed
Exhibitions.
  Visit our website at http://www.reedexpo.com
 
 
 
 





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200823
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Matt McDonald
Yes sir, you are correct.  :-)

Macromedia should pull the update until they have it fixed (if they even
know about it).  :-)

 


--
Matt McDonald
Chief Technology Officer
HomeRoute
Phone:  517-540- x553
Direct:  800-339-9248
Fax:  517-540-6992
E-Mail:  [EMAIL PROTECTED]
 
... helping you find your way home
www.homes101.net
www.relocate-america.com
--

-Original Message-
From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 4:32 PM
To: CF-Talk
Subject: RE: Has anyone else applied this patch yet???

That's because !-- -- is a HTML content and thus output...

Use three dashes and it's back to not working, I suspect.

-Dov 

-Original Message-
From: Matt McDonald [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 4:23 PM
To: CF-Talk
Subject: RE: Has anyone else applied this patch yet???

We applied all of the patches today and confirm that the wsconfig.jar
update is the culprit.  Any pages that have cflocation but do not return
any data to the client will fail.
By simply putting !-- -- in the file with cflocation, it started
working
again.  Not a real solution.  :-)   
After we removed that 1 update everything worked fine.  If it wasn't for
this thread/list we may have spent all day figuring out the problem.

This is a nasty nasty bug.  :-)



--
Matt McDonald
Chief Technology Officer
HomeRoute
Phone:  517-540- x553
Direct:  800-339-9248
Fax:  517-540-6992
E-Mail:  [EMAIL PROTECTED]
 
. helping you find your way home
www.homes101.net
www.relocate-america.com
--

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 30, 2005 1:04 PM
To: CF-Talk
Subject: Re: Has anyone else applied this patch yet???

I just tested this behaviour, no issues on my setup.  Win2k, IIS5, J2EE
config of CF6.1 UPD.  Note I used the JRun updater, not the CF patch.

D


On Wed, 30 Mar 2005 09:38:55 -0800, Chris Kief | Mindflood
[EMAIL PROTECTED] wrote:
 That did not work for me as the new version of wsconfig.jar was still 
 used to generate the connectors. You would actually need to:
 
 1. Run remove_all_coonectors.bat
 2. Revert back to the previous version of wsconfig.jar 3. Run 
 IIS_connectors.bat to reconfigure IIS.
 
 Chris
 
 On 3/30/05 7:42 AM, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED] wrote:
 
  Sounds as if the fix is to:
 
  1. Run the cf_root\bin\connectors\Remove_ALL_connectors.bat to
completely
  remove all existing IIS configurations.
 
  2. Run the cf_root\bin\connectors\IIS_connectors.bat to properly
configure
  all sites (existing and new).
 
  (This will pick up the new Connector)
 
 
 
 
 
 
 
  -Original Message-
  From: Kevin Graeme [mailto:[EMAIL PROTECTED]
  Sent: 30 March 2005 16:40
  To: CF-Talk
  Subject: RE: Has anyone else applied this patch yet???
 
  Uh oh. Time to talk to our server admins. We've got a lot of that
too.
 
  -Kevin
  This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, 
  Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed 
  Business, Registered in England, Number 678540.  It contains 
  information which is confidential and may also be privileged.  It is

  for the exclusive use of
the
  intended recipient(s).  If you are not the intended recipient(s) 
  please
note
  that any form of distribution, copying or use of this communication 
  or
the
  information in it is strictly prohibited and may be unlawful.  If 
  you
have
  received this communication in error please return it to the sender 
  or
call
  our switchboard on +44 (0) 20 89107910.  The opinions expressed 
  within
this
  communication are not necessarily those expressed by Reed
Exhibitions.
  Visit our website at http://www.reedexpo.com
 
 
 
 







~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Paul Vernon
 We applied all of the patches today and confirm that the 
 wsconfig.jar update is the culprit.

Hooray! A confirmation... And I thought I was going insane Thanks for
the post now all we need is a patch for the patch! :)

Paul


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200832
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Paul Vernon
Just as an update the following code also fails to work with the patch...

cfheader statuscode=301 statustext=This page has been permanently
moved
cfheader name=Location value=/
cfabort

cfheader statuscode=302 statustext=Temporarily moved
cfheader name=Location value=/
cfabort

So I would think that the CF patch isn't returning the headers correctly
when there is no data in the content part of the request response.

Paul


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200834
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-30 Thread Douglas Knudsen
This is interesting.  All of you are using the CFMX patches, correct? 
Not the JRun updater?


D


On Wed, 30 Mar 2005 22:48:00 +0100, Paul Vernon
[EMAIL PROTECTED] wrote:
  We applied all of the patches today and confirm that the
  wsconfig.jar update is the culprit.
 
 Hooray! A confirmation... And I thought I was going insane Thanks for
 the post now all we need is a patch for the patch! :)
 
 Paul
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200836
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Katz, Dov B \(IT\)
I am 

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 4:54 PM
To: CF-Talk
Subject: Re: Has anyone else applied this patch yet???

This is interesting.  All of you are using the CFMX patches, correct? 
Not the JRun updater?


D


On Wed, 30 Mar 2005 22:48:00 +0100, Paul Vernon
[EMAIL PROTECTED] wrote:
  We applied all of the patches today and confirm that the 
  wsconfig.jar update is the culprit.
 
 Hooray! A confirmation... And I thought I was going insane Thanks 
 for the post now all we need is a patch for the patch! :)
 
 Paul
 
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200838
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Katz, Dov B \(IT\)
I sent Feedback on the kb article explaining the fix on MM's site
yesterday. No response. Any MM'ers reading this?? 

-Original Message-
From: Paul Vernon [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 4:53 PM
To: CF-Talk
Subject: RE: Has anyone else applied this patch yet???

Just as an update the following code also fails to work with the
patch...

cfheader statuscode=301 statustext=This page has been permanently
moved cfheader name=Location value=/ cfabort

cfheader statuscode=302 statustext=Temporarily moved cfheader
name=Location value=/ cfabort

So I would think that the CF patch isn't returning the headers correctly
when there is no data in the content part of the request response.

Paul




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200840
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Paul Vernon
 This is interesting.  All of you are using the CFMX patches, correct? 
 Not the JRun updater?

Yes, CFMX updater 1 was applied when it shipped and all the other patches
have been applied as and when they came out... Only this particular patch
has caused me any issues...

Paul


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200843
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Matt McDonald
We used the CFMX patches as well as the JRUN Patch
(http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=f7736ad).

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 4:54 PM
To: CF-Talk
Subject: Re: Has anyone else applied this patch yet???

This is interesting.  All of you are using the CFMX patches, correct? 
Not the JRun updater?


D


On Wed, 30 Mar 2005 22:48:00 +0100, Paul Vernon
[EMAIL PROTECTED] wrote:
  We applied all of the patches today and confirm that the
  wsconfig.jar update is the culprit.
 
 Hooray! A confirmation... And I thought I was going insane Thanks for
 the post now all we need is a patch for the patch! :)
 
 Paul
 
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200844
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-30 Thread Douglas Knudsen
ah, I applied  JRun 4 updater 5
http://www.macromedia.com/support/jrun/updaters.html

I just tried to reproduce this issue and cannot on our dev server.  I
did verify the jrun.dll is new also.   This updater adresses the SSL
issue in IIS as well as other things.
http://www.macromedia.com/support/documentation/en/jrun/4/releasenotes_4_updater5.html


 Looks like its an issue with the CFMX patch then, eh?


DK

On Wed, 30 Mar 2005 17:06:25 -0500, Matt McDonald [EMAIL PROTECTED] wrote:
 We used the CFMX patches as well as the JRUN Patch
 (http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=f7736ad).
 
 -Original Message-
 From: Douglas Knudsen [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 30, 2005 4:54 PM
 To: CF-Talk
 Subject: Re: Has anyone else applied this patch yet???
 
 This is interesting.  All of you are using the CFMX patches, correct?
 Not the JRun updater?
 
 D
 
 On Wed, 30 Mar 2005 22:48:00 +0100, Paul Vernon
 [EMAIL PROTECTED] wrote:
   We applied all of the patches today and confirm that the
   wsconfig.jar update is the culprit.
 
  Hooray! A confirmation... And I thought I was going insane Thanks for
  the post now all we need is a patch for the patch! :)
 
  Paul
 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200846
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-30 Thread Paul Vernon
 Looks like its an issue with the CFMX patch then, eh? 

Indeed..

Paul


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200851
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Has anyone else applied this patch yet???

2005-03-29 Thread Paul Vernon
 I applied to Dev, QA, and Production servers, all without incident.
IIS5/W2K Servers

Thanks for the input... However our two environments differ enough to make
me think that you may not be affected by the issue I'm experiencing anyway

 I installed the JRun updater which included this patch on a dev box today,
no issues so far. Running a JRun cluster even too.

Again, this looks like our environments are sufficiently different for the
issue not to surface on your environment

Just as a FYI.

I've just applied the patch to a second server to make sure I wasn't going
totally mad and I got the same issues. Any page that has a cflocation in
fails to force the redirect and the client seems to either sit on the page
it was on or returns a 'Document contains no data' error...

Again I backed the patch out of the second server and everything comes back
to life again... 

Other than the fact that the first server was Windows 2003 Standard and the
second server was Windows 2003 Web Server, it's worth saying that these two
servers share and identical configuration and security policy etc. That is
to say all registry settings are the same, all IIS lockdown functions are
the same.. Everything. To all intents and purposes these boxes are identical
and therefore there must be something (a config setting) somewhere that is
causing this behaviour with the CFMX patch and IIS 6.

Needless to say, its annoying that I cannot apply this patch as the problems
it is causing for me are far bigger than the problems that it addresses
But I am affected by the issues that it solves so I would like to get to the
bottom of it...

If anyone has any suggestions then I'd love to hear them...

Paul



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200546
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-29 Thread Dov Katz
I Stand Corrected.   My install *DOES* have a problem with CFLOCATION, however 
it seems that the problem exists only when the file has nothing but a 
CFLOCATION in it...

Example,  I have some legacy code which sits in FolderX on my site, for the 
sole purpose of doing a CFLOCATION url=../index.cfm?Fuseaction=FolderX

This no longer works after the patch (didn't catch it since its an obscure area 
of the site)   I am running MX6.1 + w2K server with all the latest patches.

I have CFLOCATIONS Peppered throughout other areas of the site and it works 
just fine.  

The following file (go.cfm) does not work:
cflocation url=http://www.cnn.com;

Neither does wrapping it in CFIF true/cfif in case presence of other code 
impacted the situation.

HOWEVER, adding content to the page prior to the cflocation (obviously assuming 
you dont cfflush) *DOES* work.   The below code works:  
!--- go3.cfm ---
TESTING
cflocation url=http://www.cnn.com;


Any ideas.  Can someone ask MM to fix and post?

-D
 I applied to Dev, QA, and Production servers, all without incident.
IIS5/W2K Servers

Thanks for the input... However our two environments differ enough to make
me think that you may not be affected by the issue I'm experiencing anyway

 I installed the JRun updater which included this patch on a dev box today,
no issues so far. Running a JRun cluster even too.

Again, this looks like our environments are sufficiently different for the
issue not to surface on your environment

Just as a FYI.

I've just applied the patch to a second server to make sure I wasn't going
totally mad and I got the same issues. Any page that has a cflocation in
fails to force the redirect and the client seems to either sit on the page
it was on or returns a 'Document contains no data' error...

Again I backed the patch out of the second server and everything comes back
to life again... 

Other than the fact that the first server was Windows 2003 Standard and the
second server was Windows 2003 Web Server, it's worth saying that these two
servers share and identical configuration and security policy etc. That is
to say all registry settings are the same, all IIS lockdown functions are
the same.. Everything. To all intents and purposes these boxes are identical
and therefore there must be something (a config setting) somewhere that is
causing this behaviour with the CFMX patch and IIS 6.

Needless to say, its annoying that I cannot apply this patch as the problems
it is causing for me are far bigger than the problems that it addresses
But I am affected by the issues that it solves so I would like to get to the
bottom of it...

If anyone has any suggestions then I'd love to hear them...

Paul

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200603
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-29 Thread Chris Kief | Mindflood
I'm seeing the same problems here. Had to remove this patch.

Chris



On 3/28/05 5:04 PM, Paul Vernon [EMAIL PROTECTED] wrote:

 With regards to the following patch, has anyone applied it yet...
 
 ColdFusion MX 6.1 Updater: Hot Fix to upgrade web server connectors
 http://www.macromedia.com/go/238944b1
 
 I applied it earlier today and since then I have had my database connections
 go down TWICE, and ALL my cflocation's throughout all of the sites on the
 server concerned returned a 'Document contains no data' or 'Page cannot be
 displayed' error.
 
 I just backed out the patch be renaming the wsconfig.jar and re-compiling
 the old one using the command line instructions in the technote and lo and
 behold, all the cflocations are now working again and my databases seem to
 be totally solid again.
 
 This was applied to a fully patched CFMX 6.1 install running on W2k3 IIS 6.0
 fully patched.
 
 Any info or reproductions of this would be most appreciated.
 
 Paul
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200606
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-29 Thread Dov Katz
OK . The server was bombing out. Rolled it back. 


 I Stand Corrected.   My install *DOES* have a problem with CFLOCATION, 
 however it seems that the problem exists only when the file has 
 nothing but a CFLOCATION in it...
 
 Example,  I have some legacy code which sits in FolderX on my site, 
 for the sole purpose of doing a CFLOCATION url=../index.
 cfm?Fuseaction=FolderX
 
 This no longer works after the patch (didn't catch it since its an 
 obscure area of the site)   I am running MX6.1 + w2K server with 
 all the latest patches.
 
 I have CFLOCATIONS Peppered throughout other areas of the site and it 
 works just fine.  
 
 The following file (go.cfm) does not work:
 cflocation url=http://www.cnn.com;
 
 Neither does wrapping it in CFIF true/cfif in case presence of 
 other code impacted the situation.
 
 HOWEVER, adding content to the page prior to the cflocation (obviously 
 assuming you dont cfflush) *DOES* work.   The below code works:  
 !--- go3.cfm ---
 TESTING
 cflocation url=http://www.cnn.com;
 
 
 Any ideas.  Can someone ask MM to fix and post?
 
 -D
  I applied to Dev, QA, and Production servers, all without incident.
 
 IIS5/W2K Servers
 
 Thanks for the input... However our two environments differ enough to 
 make
 me think that you may not be affected by the issue I'm experiencing 
 anyway
 
  I installed the JRun updater which included this patch on a dev box 
 today,
 no issues so far. Running a JRun cluster even too.
 
 Again, this looks like our environments are sufficiently different 
 for the
 issue not to surface on your environment
 
 Just as a FYI.
 
 I've just applied the patch to a second server to make sure I wasn't 
 going
 totally mad and I got the same issues. Any page that has a cflocation 
 in
 fails to force the redirect and the client seems to either sit on the 
 page
 it was on or returns a 'Document contains no data' error...
 
 Again I backed the patch out of the second server and everything 
 comes back
 to life again... 
 
 Other than the fact that the first server was Windows 2003 Standard 
 and the
 second server was Windows 2003 Web Server, it's worth saying that 
 these two
 servers share and identical configuration and security policy etc. 
 That is
 to say all registry settings are the same, all IIS lockdown functions 
 are
 the same.. Everything. To all intents and purposes these boxes are 
 identical
 and therefore there must be something (a config setting) somewhere 
 that is
 causing this behaviour with the CFMX patch and IIS 6.
 
 Needless to say, its annoying that I cannot apply this patch as the 
 problems
 it is causing for me are far bigger than the problems that it 
 addresses
 But I am affected by the issues that it solves so I would like to get 
 to the
 bottom of it...
 
 If anyone has any suggestions then I'd love to hear them...
 
Paul

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200615
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-29 Thread Abinidi Web Services
Why did you have to use the patch to start with? I havent had a need to yet...
Just wondering

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200630
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-28 Thread Douglas Knudsen
I installed the JRun updater which included this patch on a dev box
today, no issues so far.Running a JRun cluster even too.

D


On Tue, 29 Mar 2005 02:04:52 +0100, Paul Vernon
[EMAIL PROTECTED] wrote:
 With regards to the following patch, has anyone applied it yet...
 
 ColdFusion MX 6.1 Updater: Hot Fix to upgrade web server connectors
 http://www.macromedia.com/go/238944b1
 
 I applied it earlier today and since then I have had my database connections
 go down TWICE, and ALL my cflocation's throughout all of the sites on the
 server concerned returned a 'Document contains no data' or 'Page cannot be
 displayed' error.
 
 I just backed out the patch be renaming the wsconfig.jar and re-compiling
 the old one using the command line instructions in the technote and lo and
 behold, all the cflocations are now working again and my databases seem to
 be totally solid again.
 
 This was applied to a fully patched CFMX 6.1 install running on W2k3 IIS 6.0
 fully patched.
 
 Any info or reproductions of this would be most appreciated.
 
 Paul
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200345
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Has anyone else applied this patch yet???

2005-03-28 Thread Dov Katz
I applied to Dev, QA, and Production servers, all without incident. IIS5/W2K 
Servers

-Dbk

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200347
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54