RE: CF does not offer to set up Apache connectors

2007-08-22 Thread Brad Wood
Thanks.  That worked great.

I'm Sooo excited to play with 8!

~Brad

-Original Message-
From: Andy Allan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 12:56 AM
To: CF-Talk
Subject: Re: CF does not offer to set up Apache connectors

Just install with the built in server, and then run the Web Server
Config tool afterwards.

The CF installer doesn't pick up Apache if you start it's installation
procedure AFTER starting the CF installation process. In that
situation, just quit the CF install and rerun.

Andy

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286791
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: error with ColdFusion 8 ODBC Agent

2007-08-22 Thread Hareni Venkatramanan
Hi Matthew,

Sometimes, it might happen that the ODBC services Coldfusion8 ODBC Agent
and Coldfusion 8 ODBC Server do not get installed properly for new J2EE
deployment and in services property the path keeps pointing to an old
deployment directory and hence they do not start up. 

What you can do is, remove the existing ODBC services using
remove-odbcservices.cfm having the script given below:

cfscript


createObject(component,cfide.adminapi.administrator).login(admin);

myObj =
createObject(component,cfide.adminapi.datasource);

writeOutput(Removing ODBC Services...br);

returnValue = myObj.removeODBCservice();

writeOutput(ODBC Services removed);

/cfscript



And then, install the ODBC services using install-odbcservices.cfm
having the script given below:

cfscript


createObject(component,cfide.adminapi.administrator).login(admin);

myObj =
createObject(component,cfide.adminapi.datasource);

writeOutput(Installing ODBC Services...br);

returnValue = myObj.installODBCservice();

writeOutput(ODBC Services installed);

/cfscript

Then, try starting ColdFusion ODBC Server service.

Thanks,
Hareni

-Original Message-
From: Matthew Smith [mailto:[EMAIL PROTECTED] 
Sent: 22 August 2007 01:25
To: CF-Talk
Subject: error with ColdFusion 8 ODBC Agent

I am trying to add a datasource to my new install of CF8 developer
edition.  When I went to do so in cf admin, the admin said The
ColdFusion ODBC Server service is not running or has not been
installed.  So I figured the service wasn't set to automatic and went
into services to start it up.  When I tried to start the service, I got
this error:
Could not start the ColdFusion 8 Odbc Server service on Local computer.
Error 3 The system cannot find the path specified.
 
I did a clean install of windows and CF 8.
 





~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286792
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Unit Testing Code Coverage

2007-08-22 Thread Dinner
That wikipedia ROCKS!

Seems like the most plausible way to get that kind of
coverage is through Test Driven Design, and I mean
the kind where you sorta define the thing you're trying
to build in the empty space of the tests, or whatever.

Automated might get buffer-overflow type stuff, but I
think you could easily spend 90% more time writing
tests than actually writing code, if that makes sense,
if you haven't built it that way (TDD) from the bottom.

Seems sorta like it's a random guess type deal. =]

Thanks for the knowledge/descriptions, lovely stuff!
__
If trouble(t) halts, it must be because halt(t, t) returned false,
but that would mean that trouble(t) should not have halted.


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286793
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Unit Testing Code Coverage

2007-08-22 Thread Sean Corfield
On 8/21/07, Dinner [EMAIL PROTECTED] wrote:
 That wikipedia ROCKS!

Don't believe everything you read on wikipedia - it's descriptions of
some design patterns are pitiful, for example.

 Seems like the most plausible way to get that kind of
 coverage is through Test Driven Design

The point of code coverage is *measurability*. By definition, you get
better coverage by having better tests but that's irrelevant to the
process of figuring out the *amount* of coverage.
-- 
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286794
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFIF Pissing me off

2007-08-22 Thread Jayesh Viradiya
Hi Bruce,

I don't see any issue with CFIF. I have used your code to test it and it
works find on IE and Firefox both. Check out the below code by executing
in browser.

Thanks  Regards,
Jayesh Viradiya
Adobe CF Team


cfparam name=GetScheduleInfoRet.Shift default=

form name=frm

input type=text name=input value=
input type=submit name=enter L / B in textbox and press this button
and see the select box chage accordingly value=enter L / B in textbox
and press this button and see the select box chage accordinglyBR

cfset GetScheduleInfoRet.Shift = #input#

!---Here goes your code , BRUCE
select name=Shift
cfif (GetScheduleInfoRet.Shift) IS B
option value=B
selected=selectedBreakfast/option

option value=LLunch/option

cfelseif (GetScheduleInfoRet.Shift) IS L

option value=BBreakfast/option

option value=L
selected=selectedLunch/option

cfelse

 option value=BBreakfast/option

 option value=LLunch/option

/cfif

/select

/form



-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 21, 2007 10:13 PM
To: CF-Talk
Subject: CFIF Pissing me off

Morning all.

I have this select list:

 

select name=Shift

cfif (GetScheduleInfoRet.Shift) IS B

option value=B
selected=selectedBreakfast/option

option value=LLunch/option

cfelseif (GetScheduleInfoRet.Shift) IS L

option value=BBreakfast/option

option value=L
selected=selectedLunch/option

cfelse

 option value=BBreakfast/option

 option value=LLunch/option

/cfif

/select

 

So when I open the form, the elseif portion kicks in because the item in
the
database is L (and I added identifying letters at the end of each
option).
However, breakfast is the option that I am seeing selected, not Lunch.
Not
sure why this is happening. Any ideas? This is a very basic deal that I
have
done with success in the past but today it does not want to cooperate. 

 

Using CF8, Server 2003.

 

Bruce

 

 

 





~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286795
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Service

2007-08-22 Thread vishnu prasad
HI tripura 

Mail me offline at [EMAIL PROTECTED] i can forward you the presentations / 
resource i have for coldfusion.


 Hello Vishnuprasad
 
 
 I am new to cold fusion and I am not knowing from where I should start 
 and how to learn and how to use java files in coldfusion..
 can yo suggest me best link or best book or anything else 
 
 
  Subject: Coldfusion Service From: [EMAIL PROTECTED] 
 To: cf-talk@houseoffusion.com Date: Tue, 21 Aug 2007 03:24:38 -0500 
  Hi All  I need an help  we have done 2 project in coldfusion so 
 far , I told about the getting more coldfusion project in our company. 
 But they are asking me for some presentation or Fact that should tell 
 Coldfusion will be better than .Net or Java or PHP wrt Cost / 
 Implemenation / Time taken to complete / Learning time / Training cost 
 etc..  Can anyone help me on this   If you have any presentaion or 
 document which will be used to sell or promote coldfusion service   
 Thanks and regards Vishnuprasad 


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286796
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Service

2007-08-22 Thread srinivas ganta
Hi Vishnu,

the following link may help you to give presentation

http://easywebbers.blogspot.com/2006/01/finally-difference-between-php-asp-and.html

Thanks

On 8/22/07, vishnu prasad [EMAIL PROTECTED] wrote:

 HI tripura

 Mail me offline at [EMAIL PROTECTED] i can forward you the
 presentations / resource i have for coldfusion.


  Hello Vishnuprasad

 
  I am new to cold fusion and I am not knowing from where I should start
  and how to learn and how to use java files in coldfusion..
  can yo suggest me best link or best book or anything else

 
   Subject: Coldfusion Service From: [EMAIL PROTECTED]
  To: cf-talk@houseoffusion.com Date: Tue, 21 Aug 2007 03:24:38 -0500
   Hi All  I need an help  we have done 2 project in coldfusion so
  far , I told about the getting more coldfusion project in our company.
  But they are asking me for some presentation or Fact that should tell
  Coldfusion will be better than .Net or Java or PHP wrt Cost /
  Implemenation / Time taken to complete / Learning time / Training cost
  etc..  Can anyone help me on this   If you have any presentaion or
  document which will be used to sell or promote coldfusion service  
  Thanks and regards Vishnuprasad


 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286797
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Coldfusion Service

2007-08-22 Thread Adrian Wagner
Very often, stock ColdFusion has just one way to solve a problem, and
this greatly reduces your control over the solution you make.

?

-Original Message-
From: srinivas ganta [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 22 August 2007 4:54 PM
To: CF-Talk
Subject: Re: Coldfusion Service

Hi Vishnu,

the following link may help you to give presentation

http://easywebbers.blogspot.com/2006/01/finally-difference-between-php-a
sp-and.html

Thanks

On 8/22/07, vishnu prasad [EMAIL PROTECTED] wrote:

 HI tripura

 Mail me offline at [EMAIL PROTECTED] i can forward you the 
 presentations / resource i have for coldfusion.


  Hello Vishnuprasad

 
  I am new to cold fusion and I am not knowing from where I should 
  start and how to learn and how to use java files in coldfusion..
  can yo suggest me best link or best book or anything else

 
   Subject: Coldfusion Service From: 
   [EMAIL PROTECTED]
  To: cf-talk@houseoffusion.com Date: Tue, 21 Aug 2007 03:24:38 
  -0500
   Hi All  I need an help  we have done 2 project in coldfusion 
   so
  far , I told about the getting more coldfusion project in our
company.
  But they are asking me for some presentation or Fact that should 
  tell Coldfusion will be better than .Net or Java or PHP wrt Cost / 
  Implemenation / Time taken to complete / Learning time / Training 
  cost etc..  Can anyone help me on this   If you have any 
  presentaion or document which will be used to sell or promote 
  coldfusion service   Thanks and regards Vishnuprasad


 



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286798
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Unit Testing Code Coverage

2007-08-22 Thread Dinner
On 8/22/07, Sean Corfield wrote:

 On 8/21/07, Dinner [EMAIL PROTECTED] wrote:
  That wikipedia ROCKS!

 Don't believe everything you read on wikipedia - it's descriptions of
 some design patterns are pitiful, for example.


Fo sho- Did you see the page on Dada Art? ;-)
Do you ever edit those patterns entries?

 Seems like the most plausible way to get that kind of
  coverage is through Test Driven Design

 The point of code coverage is *measurability*. By definition, you get
 better coverage by having better tests but that's irrelevant to the
 process of figuring out the *amount* of coverage.


I could see how one could say I tested for X but it's the out of X
bit that seems like it could go on for ever.  Thus, the percentage
bit- how do you know how much you've done if you don't really
know how much you have to do?  I've tested for X is honest.

Some of the coverage tests are easy, others, don't look so easy..

I get the idea, and it's fine, I just like how it's sorta impossible.
Not like impossible-impossible- we did send peeps 2 da moon!


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286799
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


embed SQL Server Report?

2007-08-22 Thread Johnny Le
Hi,

Is it possible to embed SQL Server 2005 Reports in a cfml page? I found this 
page but it is in .NET and I don't know if it can be translated into cfml.  
Please let me know if you have a way to do it.
http://msdn.microsoft.com/msdnmag/issues/04/08/SQLServerReportingServices/default.aspx
Thank you.

Johnny 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286800
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Purging Registry.

2007-08-22 Thread Dave Watts
 do I have to stop coldfusion server first when running 
 regedit from command line ? 

Yes, you should do that.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286801
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: lt;CFExchangeMail action=quot;getattachmentsquot;gt; - MSX error code 501

2007-08-22 Thread Hemant Khandelwal
I checked with Ram, and we suspect that you are using Exchange 2007. 
getAttachments with 'attachmentPath' attribute would not work on Exchange 2007.

Hemant 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286802
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Digests not working for me

2007-08-22 Thread Hemant Khandelwal
I have the same problem and today i subscribed using single page. I will check 
later in the day for digest. 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286803
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFDocument Zoomed Images NOT Solved with hotfix

2007-08-22 Thread Rupesh Kumar
Have you followed all the steps specified with the hotfix? In our testing we no 
longer see the image zoom or cropping issue. Could you please verify that once 
more? Can you also let me know if there are any other hotfix installed on your 
CF? 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286804
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFDocument Zoomed Images NOT Solved with hotfix

2007-08-22 Thread Rupesh Kumar
Have you followed all the steps specified with the hotfix? In our testing we no 
longer see the image zoom or cropping issue. Could you please verify that once 
more? Can you also let me know if there are any other hotfix installed on your 
CF? 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286806
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Unit Testing Code Coverage

2007-08-22 Thread Jochem van Dieten
Dinner wrote:
 On 8/22/07, Sean Corfield wrote:
 
 The point of code coverage is *measurability*. By definition, you get
 better coverage by having better tests but that's irrelevant to the
 process of figuring out the *amount* of coverage.
 
 I could see how one could say I tested for X but it's the out of X
 bit that seems like it could go on for ever.  Thus, the percentage
 bit- how do you know how much you've done if you don't really
 know how much you have to do?

You know how much you have to do: every line.

Jochem

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286805
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: amp;lt;CFExchangeMail action=amp;quot;getattachmentsamp;quot;amp;gt; - MSX error code 501

2007-08-22 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Actually, we are using Exchange 2000.  Working on upgrading to Exchange 2005 at 
some point soon.

thanks
Reed

 I checked with Ram, and we suspect that you are using Exchange 2007. 
 getAttachments with 'attachmentPath' attribute would not work on 
 Exchange 2007.
 
 Hemant 


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286807
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: choosing a CF ecommerce solution...

2007-08-22 Thread Jason Fill
I would seriously take a look at the SiteDirector package from QuillDesign 
(http://quilldesign.com).  I am a little bias here since that is the only 
package I have used, but you will get huge bang for your buck.  Since you said 
you need more than one store, you can get a 5 store lic for $1495, which is 
very reasonable.

The great thing about SiteDirector is the fact that is COMPLETELY open source.  
You can change anything you want about it.  The features that come built in are 
second to none as far as I am concerned as well 
(http://www.quilldesign.com/sitedirector/features.cfm).

If you have any specific questions I can try to answer them for you about SD, 
but that package obviously gets my nod ;)



Good evening group.  I have a question about CF ecommerce packages.  I am
looking for the following features:
  a.. multiple stores on the same hosting account
  b.. store owners have their own domain names
  c.. store owners can administer their own stores, including managing
inventory and UI themes
  d.. content management component allowing store owners to create static
pages, such as contact, about us, FAQs, etc
  e.. some source code available for customization
Separate license fees for each store is fine, but of course I would like to
keep the investment low if possible.  I have done some research on
AbleCommerce and it seems like a good option.  I am also looking at
SiteDirector's? Coldfusion shopping cart, but I don't know much about it
yet.  I am specifically looking at CF solutions because my wife knows
ColdFusion, and we may want to customize the apps at a later time.  If
anyone has comments on the packages I mentioned, or any other packages for
that matter, I would appreciate it.

Thanks in advance for your help.


Foundry Designs Inc.
Professional Website Design and Online Marketing

Mike Stocke
[EMAIL PROTECTED]
248.787.1306



We are never too busy for a referral! 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286808
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Restrict Document Action Access

2007-08-22 Thread C. Hatton Humphrey
I could have sworn that I saw this topic come up before but can't find
any relevant threads so I'll post it again -

We have a client that needs to create a secure area where they are
going to post documents.  These are currently in MS Word format.  The
client wants the user to be able to access the documents and print
them but not be able to download them or email them.

We're trying to get clarification but my thought pattern is to have
the files stored as HTML in the database (use Word to Save As HTML)
and then deliver the content using CFDocument with a FlashPaper
type... to the best of my knowledge (and it's not that good in this
area) FP is printable but cannot be saved... it can be selected and
copied out but since the content has to be printable that's the only
way that I can think of delivering the content to fit their bill.

Unless someone else has any ideas?

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286809
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: SQL Color Coding

2007-08-22 Thread Billy Cox
Nice job Brad. All it needs now is a sound track and a way to claim my free
iPod.

What application have you found for it?


-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 20, 2007 5:15 PM
To: CF-Talk
Subject: SQL Color Coding


Ok, so a couple months ago I asked the list
(http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:52544)
if anyone knew of any functions to color code a string of SQL for display.

I got crickets back, so I finally got around to trying my hand at it.  I
figured to be fair; I would post it here in case:

1) Anyone wanted the same functionality

2) Anyone wanted to shred my code 

 

I will say it doesn't perform too badly with a decent sized piece of code,
but when I pasted in a stored proc which was over 1800 lines of code, it
took a few seconds to crank through it.

I initially debated whether or not I should do a series of regex
replacements, or iterate over each token in the string and deal with them
one at a time.  I chose the latter mostly because I am not very good at
regular expressions, but I would like to attempt the former approach for a
speed comparison.

 

http://www.bradwood.com/sql_color_coding/

 

Please check it out and offer me some constructive criticism.  (I'm already
sorry I asked)

 

Thanks.


~Brad

 

P.S.  The closest thing I was able to find on the 'net was
http://jspwiki.org/wiki/ColorCodePlugin_page, but it is all in Java which
mostly just confused me.  :-)





~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286810
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 403 forbidden with Apache and cf8

2007-08-22 Thread Matthew Smith
There are no entries in either log.

Here's the whole access log:

127.0.0.1 - - [21/Aug/2007:17:29:09 -0500] GET / HTTP/1.1 200 44
127.0.0.1 - - [21/Aug/2007:17:32:56 -0500] GET / HTTP/1.1 200 2395

The error log is much longer, but nothing about not finding a file.

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 12:19 AM
To: CF-Talk
Subject: SPAM-LOW: Re: 403 forbidden with Apache and cf8

Check the apache access/error logs to see which file location is being
requested and triggering the 404.

On 8/22/07, James Holmes [EMAIL PROTECTED] wrote:
 This indicates that the file locations aren't right - since the
 permissions on C:\Inetpub\wwwroot were correct and you were previously
 denying access outside that folder. Now you're allowing access outside
 the folder, it can access whichever folder it's trying to look in and
 it can't find the files (hence the 404, since they are in
 C:\Inetpub\wwwroot and it's looking somewhere else).

 Check the rest of your httpd.conf for any other file paths etc - if
 you get really stuck, send me the whole file by email and I'll check
 for anything obvious.



-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286812
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Restrict Document Action Access

2007-08-22 Thread Peterson, Chris
I believe you can format those in Adobe Acrobat format with
restrictions, you may want to look into that.  The newer versions have
print / save restrictions as well as other cool stufff.


Chris Peterson
Gainey IT
Adobe Certified Advanced Coldfusion Developer

-Original Message-
From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 10:09 AM
To: CF-Talk
Subject: Restrict Document Action Access

I could have sworn that I saw this topic come up before but can't find
any relevant threads so I'll post it again -

We have a client that needs to create a secure area where they are going
to post documents.  These are currently in MS Word format.  The client
wants the user to be able to access the documents and print them but not
be able to download them or email them.

We're trying to get clarification but my thought pattern is to have the
files stored as HTML in the database (use Word to Save As HTML) and then
deliver the content using CFDocument with a FlashPaper type... to the
best of my knowledge (and it's not that good in this
area) FP is printable but cannot be saved... it can be selected and
copied out but since the content has to be printable that's the only way
that I can think of delivering the content to fit their bill.

Unless someone else has any ideas?



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286811
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Byte Me
First off, I am not a security expert, but I will launce a web site 
(eventually) and I have started looking into how to secure my web site and 
data; I can’t afford to be sued because a thief got someone’s personal 
information from my database….I have comments and questions. In searching the 
internet with respect to application security, more or less specific to 
Coldfusion, I did not see any qualification of the conversations/information. 
For example, the info I read may have been about how encrypting your data is a 
good thing, but there was no follow through, encrypting it where, on the server 
or on the client (to me, this is a flag that there is a lack of understanding). 
From what I have read, there does not seem to be a whole lot of understanding, 
for instance if you use the Coldfusion encrypt function, you just transmitted 
all your data in CLEAR TEXT over the internet to the server where the data will 
be encrypted, encrypting your data with CF encrypt function should only be used 
AFTER you have transmitted your data, SECURELY, over the internet. I also have 
read that hashing your data (for data integrity and password protection) is a 
good thing, create a hash, send the hash and the data, do another hash and 
compare the hashes. Great idea, but you just sent all your data, once again, in 
CLEAR TEXT, the hash function is executed on the CF server and you had to pass 
your text (across the internet) to the function. I just didn’t see people 
differentiating between the client and server with respect to conversations 
about security. I did a search in Google with the term “client side 
encryption”, there where less than one thousand hits, I did a search with the 
term “encryption”, almost 43 million hits, sounds like a disconnect to me. 
So here is my question, how is security done on the client prior to 
transmission, is JavaScript the main way? I will use an SSL certificate, but I 
also want to further encrypt the data and make a hash of it, before sending it 
to the server. What is the best way to accomplish this? By the way, I have both 
of the Coldfusion 7 (blue books), the only thing I found with regards to what I 
have been talking about was a small note which said: “The encryption 
functions are useful for encrypting strings only after Coldfusion has processed 
them”, page 147 second book. For something that is so important, shouldn’t 
there have been huge banners along with bells and whistles making this clear, 
not just one tiny sentence amongst 2000 pages?

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286813
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Digests not working for me

2007-08-22 Thread James Wolfe
I have not received any CF-Talk emails since 7/28. I have resubscribed on both 
pages at least a dozen times. I have unsubscribed and then resubscribed, all to 
no avail.

My mail server is not blocking the mail. I get spam at the address so i know 
its working. I have subscribed to the hourly digest option

 The mass-list editing tool is working and you can edit all of your 
 subscriptions from a single page:
 http://www.houseoffusion.com/signin/lists.cfm
 
 This is in addition to the standard subscription page that exists in 
 each list archive section. For example, the CF-Talk subscription 
 option page is located here:
 http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
 
 As for getting digests, my test digest subscription is working 
 properly so the issue may be with your subscription or the mail 
 delivery. Some people who subscribe to digest have their digests 
 blocked by their mail server due to size or content.
 
 Anyone else stop getting their digests and unable to get anything 
 other
 than 'immediate' (one message at a time)?
 
 Also, now I get this when I try to update my subscriptions:
 
 I'm sorry but an error has occured with the template you are
 requesting. A message has been sent to the site administrator and he
 will deal with it.
 
 George 


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286814
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


stupid maintenance agreement question...

2007-08-22 Thread DURETTE, STEVEN J (ATTASIAIT)
Hi all,
 
We just renewed a maintenance agreement with Adobe for ColdFusion in
March through Software House International (SHI).  We have to go through
them for all software/maint agreements/etc as per our company policy.
Any how, we haven't gotten anything from Adobe about our new key for
CF8.  When I called SHI to get the new key or have them find out why we
haven't received anything, they told me I had to contact Adobe.  
 
Any idea who I need to contact?  I have my SHI invoice with Invoice
number, date, item number, but I think this is all SHI information any
idea what I need to provide to adobe to get my upgrade info?
 
Thanks,
Steve
 
 
  Steve Durette
586-466-7654
[EMAIL PROTECTED] 
 
 


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286815
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: stupid maintenance agreement question...

2007-08-22 Thread Howell, Craig H Civ WRALC/ITMS
I'm dealing with the same situation.  Adobe has the absolute worst
customer service.  

I work for the Federal Government.  Someone in the business office may
order our software.  This gets their name associated with our software
in Adobe's records.  We reorgthey leaveetc.  Now Adobe tells me
they can't tell me who the contact is.  I have to figure it out myself.
Adobe might as well tell me I'm SOL.  

OKnone of that helps you.  Hopefully they will respond better to
you.  The number for support is: 1 (800) 833-6687 from 6:00am-8:00pm
PST, 7 days a week.  They will have you complete a form and fax it to
them.  The URL for the form is:
http://www.adobe.com/aboutadobe/openoptions/pdfs/freeupgradeform_na.pdf

Hope this helps.

-Original Message-
From: DURETTE, STEVEN J (ATTASIAIT) [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 10:27 AM
To: CF-Talk
Subject: stupid maintenance agreement question...

Hi all,
 
We just renewed a maintenance agreement with Adobe for ColdFusion in
March through Software House International (SHI).  We have to go through
them for all software/maint agreements/etc as per our company policy.
Any how, we haven't gotten anything from Adobe about our new key for
CF8.  When I called SHI to get the new key or have them find out why we
haven't received anything, they told me I had to contact Adobe.  
 
Any idea who I need to contact?  I have my SHI invoice with Invoice
number, date, item number, but I think this is all SHI information any
idea what I need to provide to adobe to get my upgrade info?
 
Thanks,
Steve
 
 
  Steve Durette
586-466-7654
[EMAIL PROTECTED] 
 
 




~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286816
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: choosing a CF ecommerce solution...

2007-08-22 Thread Mary Jo Sminkey
Separate license fees for each store is fine, but of course I would like to
keep the investment low if possible.  I have done some research on
AbleCommerce and it seems like a good option.  I am also looking at
SiteDirector's? Coldfusion shopping cart, but I don't know much about it
yet.  I am specifically looking at CF solutions because my wife knows
ColdFusion, and we may want to customize the apps at a later time.  If
anyone has comments on the packages I mentioned, or any other packages for
that matter, I would appreciate it.

I'm not quite sure from your post if you are looking for software that can run 
multiple stores from one installation...to my knowledge AC is the only 
ColdFusion package that does this out-of-the-box but it's not truly a CF 
software anymore, and you'd have to be pretty good at Java to customize it. If 
you just want a package that is able to run multiple instances on one server, 
well, most ecommerce software can do that, each copy runs as its own instance, 
off its own database copy. Of course, any open course software can be 
customized, if you have the time and money, to do a mall-type application. I 
did this with my software for a client a couple years ago. It's a bit of a pain 
but certainly possible. 

Feel free to drop by and check out CFWebstore. It's typically one of the 
highest ranked ecommerce products at the Adobe Exchange, Hotscripts, etc. We've 
got a large user community that is very active, and a new version that I just 
released several weeks ago that has tons of new and really advanced features 
most stores don't offer. I offer a reseller license that allows you to purchase 
all licenses and upgrades at half price. 


Mary Jo Sminkey
Author of CFWebstore, ColdFusion E-commerce software
http://www.cfwebstore.com



~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286817
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SQL Color Coding

2007-08-22 Thread Brad Wood
Thanks Billy.  I'll make you a sound track, but you're on your own for
the iPod.

My application is a simple DB server monitor (for MS SQL 2005) which
shows me all of the running processes, who is running them, how long
they have been running, a progress bar showing completion (for backups),
a button to kill the process, and the option of viewing the statement
being ran (select), the block of code (select * from table), or the
entire text (create procedure ps_test etc..) with the SQL color-coded to
be easy to read.  It also shows you the CPU time used by the process,
and the change in CPU since the last refresh so you can see which one is
causing the spike in your perf monitor.
Additionally, it highlights spids which are blocking another spid, and
nests the blocked ones under the parent so you can visually see who is
holding up your app.
If it is a job which is running, it pulls the job name (as opposed to
that annoying binary representation of the guid which is the job_id.

I tied it in with the SeeFusion XML API to extract the corresponding web
server request if applicable (via spid), what web server the user is on,
the URL being hit, the clients IP, and in our internal application, the
actual name of the user performing the request. (based on IP)

Anyway, I'll post the code if any one out there wants it and is using MS
SQL Server 2005 and SeeFusion.   Or just MS SQL 2005 I guess.

~Brad


-Original Message-
From: Billy Cox [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 9:12 AM
To: CF-Talk
Subject: RE: SQL Color Coding

Nice job Brad. All it needs now is a sound track and a way to claim my
free
iPod.

What application have you found for it?

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286819
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: stupid maintenance agreement question...

2007-08-22 Thread Brad Wood
Do you know your login to the Adobe site?

In our case, they E-mailed the coupon code for the upgrade to the E-mail
address which was registered in our account as the contact information.
The employee who had ordered CF no longer worked here, but luckily we
new the login and changed the address before they sent it.

~Brad


~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286823
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Re: 403 forbidden with Apache and cf8

2007-08-22 Thread Brad Wood
Can you paste in the last few lines from the error log?

-Original Message-
From: Matthew Smith [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 9:14 AM
To: CF-Talk
Subject: Re: 403 forbidden with Apache and cf8

There are no entries in either log.

Here's the whole access log:

127.0.0.1 - - [21/Aug/2007:17:29:09 -0500] GET / HTTP/1.1 200 44
127.0.0.1 - - [21/Aug/2007:17:32:56 -0500] GET / HTTP/1.1 200 2395

The error log is much longer, but nothing about not finding a file.

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286821
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: stupid maintenance agreement question...

2007-08-22 Thread Dawson, Michael
It's possible that, since you have proof of purchase, that Adobe will
honor that invoice.  After contacting Adobe's sales support, you should
also go back to SHI and work your way up the reporting structure.

By contacting Adobe, you will have doubled your chances of getting what
you need.

M!ke 

-Original Message-
From: DURETTE, STEVEN J (ATTASIAIT) [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 9:27 AM
To: CF-Talk
Subject: stupid maintenance agreement question...

Hi all,
 
We just renewed a maintenance agreement with Adobe for ColdFusion in
March through Software House International (SHI).  We have to go through
them for all software/maint agreements/etc as per our company policy.
Any how, we haven't gotten anything from Adobe about our new key for
CF8.  When I called SHI to get the new key or have them find out why we
haven't received anything, they told me I had to contact Adobe.  
 
Any idea who I need to contact?  I have my SHI invoice with Invoice
number, date, item number, but I think this is all SHI information any
idea what I need to provide to adobe to get my upgrade info?
 
Thanks,
Steve
 
 
  Steve Durette
586-466-7654
[EMAIL PROTECTED] 
 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286818
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: stupid maintenance agreement question...

2007-08-22 Thread Andy Allan
Here in the UK, certainly from past experience, you would receive your
maintenance updates from whoever you purchased it from.

I've not yet had to deal with Adobe for this, but from folks I know
who have, it's been nothing short of a nightmare.

One story I heard was that even though my contact had a maintenance
pack, it was invalid because ColdFusion isn't part of CS3. Go figure.

Andy

On 22/08/07, Howell, Craig H Civ WRALC/ITMS [EMAIL PROTECTED] wrote:
 I'm dealing with the same situation.  Adobe has the absolute worst
 customer service.

 I work for the Federal Government.  Someone in the business office may
 order our software.  This gets their name associated with our software
 in Adobe's records.  We reorgthey leaveetc.  Now Adobe tells me
 they can't tell me who the contact is.  I have to figure it out myself.
 Adobe might as well tell me I'm SOL.

 OKnone of that helps you.  Hopefully they will respond better to
 you.  The number for support is: 1 (800) 833-6687 from 6:00am-8:00pm
 PST, 7 days a week.  They will have you complete a form and fax it to
 them.  The URL for the form is:
 http://www.adobe.com/aboutadobe/openoptions/pdfs/freeupgradeform_na.pdf

 Hope this helps.

 -Original Message-
 From: DURETTE, STEVEN J (ATTASIAIT) [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 10:27 AM
 To: CF-Talk
 Subject: stupid maintenance agreement question...

 Hi all,

 We just renewed a maintenance agreement with Adobe for ColdFusion in
 March through Software House International (SHI).  We have to go through
 them for all software/maint agreements/etc as per our company policy.
 Any how, we haven't gotten anything from Adobe about our new key for
 CF8.  When I called SHI to get the new key or have them find out why we
 haven't received anything, they told me I had to contact Adobe.

 Any idea who I need to contact?  I have my SHI invoice with Invoice
 number, date, item number, but I think this is all SHI information any
 idea what I need to provide to adobe to get my upgrade info?

 Thanks,
 Steve


   Steve Durette
 586-466-7654
 [EMAIL PROTECTED]






 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286822
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFIF Pissing me off

2007-08-22 Thread Loathe
HTML is an xml subset.

 -Original Message-
 From: Claude Schneegans [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 10:53 AM
 To: CF-Talk
 Subject: Re: CFIF Pissing me off
 
  is selected=selected so bad?
 
 Bad, I don't know, but for the least, useless and stupid.
 
  why rile against a movement towards XML standards?
 
 Because HTML is HTML, XML is XML.
 If one needs to use XML, fine, but so far, all browsers are able to
 read
 HTML,
 so I don't see why I should bother make my HTML look like XML when I
 don't need.
 
 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.
 
 
 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286826
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIF Pissing me off

2007-08-22 Thread Aaron Rouse
I do XHTML compliant code because I am finding more and more places are
making it part of their requirements when I do work on a project for them.
I just find it easier to do all the time than just selectively when it is
needed.  It is not like it takes much, if any, more effort to do it over not
doing it.

On 8/22/07, Claude Schneegans [EMAIL PROTECTED] wrote:

 is selected=selected so bad?

 Bad, I don't know, but for the least, useless and stupid.

 why rile against a movement towards XML standards?

 Because HTML is HTML, XML is XML.
 If one needs to use XML, fine, but so far, all browsers are able to read
 HTML,
 so I don't see why I should bother make my HTML look like XML when I
 don't need.

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286825
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Re: 403 forbidden with Apache and cf8

2007-08-22 Thread James Holmes
Can you also confirm exactly what address and port you are using to
access ColdFusion and the files in the wwwroot folder?

On 8/22/07, Brad Wood [EMAIL PROTECTED] wrote:
 Can you paste in the last few lines from the error log?

 -Original Message-
 From: Matthew Smith [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 9:14 AM
 To: CF-Talk
 Subject: Re: 403 forbidden with Apache and cf8

 There are no entries in either log.

 Here's the whole access log:

 127.0.0.1 - - [21/Aug/2007:17:29:09 -0500] GET / HTTP/1.1 200 44
 127.0.0.1 - - [21/Aug/2007:17:32:56 -0500] GET / HTTP/1.1 200 2395

 The error log is much longer, but nothing about not finding a file.

 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286824
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFIF Pissing me off

2007-08-22 Thread Claude Schneegans
 is selected=selected so bad?

Bad, I don't know, but for the least, useless and stupid.

 why rile against a movement towards XML standards?

Because HTML is HTML, XML is XML.
If one needs to use XML, fine, but so far, all browsers are able to read 
HTML,
so I don't see why I should bother make my HTML look like XML when I 
don't need.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286820
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: 403 forbidden with Apache and cf8

2007-08-22 Thread Matthew Smith
Here you go:
Warning: DocumentRoot [C:/www/docs/dummy-host.localhost] does not exist
Warning: DocumentRoot [C:/www/docs/dummy-host2.localhost] does not exist
[Tue Aug 21 21:01:17 2007] [notice] jrApache[init]  JRun 4.0 (Build
108487) Apache 2.2 module - Jun 21 2007 14:43:39
[Tue Aug 21 21:01:17 2007] [notice] jrApache[init]  JRun 4.0 (Build
108487) Apache 2.2 module - Jun 21 2007 14:43:39
[Tue Aug 21 21:01:17 2007] [notice] Child 6052: Child process is running
[Tue Aug 21 21:01:18 2007] [notice] Child 6052: Acquired the start
mutex.
[Tue Aug 21 21:01:18 2007] [notice] Child 6052: Starting 250 worker
threads.
[Tue Aug 21 21:01:18 2007] [notice] Child 4880: Released the start mutex
[Tue Aug 21 21:01:19 2007] [notice] Child 4880: Waiting for 250 worker
threads to exit.
[Tue Aug 21 21:01:19 2007] [notice] Child 6052: Starting thread to
listen on port 80.
[Tue Aug 21 21:01:20 2007] [notice] Child 4880: All worker threads have
exited.
[Tue Aug 21 21:01:20 2007] [notice] Child 4880: Child process is exiting
[Tue Aug 21 21:07:49 2007] [notice] jrApache[init]  JRun 4.0 (Build
108487) Apache 2.2 module - Jun 21 2007 14:43:39
[Tue Aug 21 21:07:49 2007] [notice] jrApache[init]  JRun 4.0 (Build
108487) Apache 2.2 module - Jun 21 2007 14:43:39
[Tue Aug 21 21:07:49 2007] [notice] Apache/2.2.4 (Win32) JRun/4.0
configured -- resuming normal operations
[Tue Aug 21 21:07:49 2007] [notice] Server built: Jan  9 2007 23:17:20
[Tue Aug 21 21:07:50 2007] [notice] Parent: Created child process 472
Warning: DocumentRoot [C:/www/docs/dummy-host.localhost] does not exist
Warning: DocumentRoot [C:/www/docs/dummy-host2.localhost] does not exist
[Tue Aug 21 21:07:51 2007] [notice] jrApache[init]  JRun 4.0 (Build
108487) Apache 2.2 module - Jun 21 2007 14:43:39
[Tue Aug 21 21:07:51 2007] [notice] jrApache[init]  JRun 4.0 (Build
108487) Apache 2.2 module - Jun 21 2007 14:43:39
[Tue Aug 21 21:07:51 2007] [notice] Child 472: Child process is running
[Tue Aug 21 21:07:51 2007] [notice] Child 472: Acquired the start mutex.
[Tue Aug 21 21:07:51 2007] [notice] Child 472: Starting 250 worker
threads.
[Tue Aug 21 21:07:51 2007] [notice] Child 472: Starting thread to listen
on port 80.

-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 9:54 AM
To: CF-Talk
Subject: SPAM-LOW: RE: Re: 403 forbidden with Apache and cf8

Can you paste in the last few lines from the error log?

-Original Message-
From: Matthew Smith [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 9:14 AM
To: CF-Talk
Subject: Re: 403 forbidden with Apache and cf8

There are no entries in either log.

Here's the whole access log:

127.0.0.1 - - [21/Aug/2007:17:29:09 -0500] GET / HTTP/1.1 200 44
127.0.0.1 - - [21/Aug/2007:17:32:56 -0500] GET / HTTP/1.1 200 2395

The error log is much longer, but nothing about not finding a file.



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286827
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFIF Pissing me off

2007-08-22 Thread Dominic Watson

 is selected=selected so bad?

 Bad, I don't know, but for the least, useless and stupid.

Useless if you don't want your HTML as XML granted, clearly essential if you
do. Stupid? Yes, the people who created XML are clearly below average IQ.

  why rile against a movement towards XML standards?

 Because HTML is HTML, XML is XML.
 If one needs to use XML, fine, but so far, all browsers are able to read
 HTML,
 so I don't see why I should bother make my HTML look like XML when I
 don't need.

It is not about making HTML 'look' like XML, it is about making it XML
which, you are correct, you do not have to do. But there are situations
where producing valid XHTML is clearly beneficial, like when there is a need
to convert it to other formats as well as display it in a browser. I have
had to do this, and with HTML it is a royal pain in the arse. To me, it is a
no brainer.


On 22/08/07, Claude Schneegans [EMAIL PROTECTED] wrote:

 is selected=selected so bad?

 Bad, I don't know, but for the least, useless and stupid.

 why rile against a movement towards XML standards?

 Because HTML is HTML, XML is XML.
 If one needs to use XML, fine, but so far, all browsers are able to read
 HTML,
 so I don't see why I should bother make my HTML look like XML when I
 don't need.

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286828
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFIF Pissing me off

2007-08-22 Thread owner
with strict xhtml standards...selected does have a value of selected. 
According to the standard, ever attribute has a value.

Eric
  Original Message 
 Subject: Re: CFIF Pissing me off
 From: Claude Schneegans [EMAIL PROTECTED]
 Date: Tue, August 21, 2007 9:53 am
 To: CF-Talk cf-talk@houseoffusion.com

 The problem is not with CFIF but with your HTML.
 The SELECTED attribute in a SELECT takes no value:
 option value=B selected

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286830
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: multiple sites with cf 8 and iis

2007-08-22 Thread owner
there isn't a centralized way of doing so without using a dns server
that I am aware of.  I just use a local DNS server.  Then you set up
your dev machine to use the local dns as a primary dns and the real dns
as a secondary dns.

Eric
  Original Message 
 Subject: RE: multiple sites with cf 8 and iis
 From: Adrian Lynch [EMAIL PROTECTED]
 Date: Mon, August 20, 2007 11:12 pm
 To: CF-Talk cf-talk@houseoffusion.com

 On my machine it's in C:\WINDOWS\system32\drivers\etc.

 And talking of the hosts file. Does anyone have any ideas about setting up a
 hosts file like system for a LAN without running a DNS server?

 I'd like a centralised way of defining IP/address mappings that's as simple
 as the hosts file.

 This will be for a handful of windows machines.

 Cheers.

 Adrian

 -Original Message-
 From: Matthew Smith
 Sent: 21 August 2007 05:16
 To: CF-Talk
 Subject: RE: multiple sites with cf 8 and iis


 Where is etc/hosts?  Thanks for the help.

 -Original Message-
 From: James Holmes
 Sent: Monday, August 20, 2007 10:37 PM
 To: CF-Talk
 Subject: Re: multiple sites with cf 8 and iis

 Set up entries in etc/hosts so you don't need to swap anything - make
 the IIS sites respond to the relevant host names.

 On 8/21/07, Matthew Smith [EMAIL PROTECTED] wrote:
  I just did a clean install of my development machine.  In the past, I
 used coldfusion's built in web server, but had a problem configuring it
 to use a different folder for it's root.
 
  This time around I think I'll give IIS a try.  I have five sites I am
 responsible for.  I would like to be able to switch between them in as
 few steps as possible.  Do I need to create a virtual directory for each
 one?  How would I switch between sites for http://localhost/ shows the
 proper site?  Or can I just change the mapping for / to the current
 site's folder?  If so, where should I locate the folder for each site?
 Do I set up a different site in IIS for each site?  If so, would I have
 to manually apply coldfusion to each site?
 
  I'm not really sure what I need to do so any help would be
 appreciated.  Thanks!


 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286829
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Re: 403 forbidden with Apache and cf8

2007-08-22 Thread Matthew Smith
Here's the urls I'm trying to access:

http://localhost/
http://127.0.0.1/

Default port, I guess.

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 10:03 AM
To: CF-Talk
Subject: SPAM-LOW: Re: Re: 403 forbidden with Apache and cf8

Can you also confirm exactly what address and port you are using to
access ColdFusion and the files in the wwwroot folder?

On 8/22/07, Brad Wood [EMAIL PROTECTED] wrote:
 Can you paste in the last few lines from the error log?

 -Original Message-
 From: Matthew Smith [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 9:14 AM
 To: CF-Talk
 Subject: Re: 403 forbidden with Apache and cf8

 There are no entries in either log.

 Here's the whole access log:

 127.0.0.1 - - [21/Aug/2007:17:29:09 -0500] GET / HTTP/1.1 200 44
 127.0.0.1 - - [21/Aug/2007:17:32:56 -0500] GET / HTTP/1.1 200 2395

 The error log is much longer, but nothing about not finding a file.

 



~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286831
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Justin Scott
 you use the Coldfusion encrypt function, you just transmitted 
 all your data in CLEAR TEXT over the internet to the server 
 where the data will be encrypted, encrypting your data with 
 CF encrypt function should only be used AFTER you have 
 transmitted your data, SECURELY, over the internet.

Correct, that is why you would purchase and install an SSL certificate
on your web server.  That secures the connection between the client and
the server so it's not sent as clear text over the network.  Then you
would encrypt the data before storing it somewhere.

 question, how is security done on the client prior to 
 transmission, is JavaScript the main way? I will use an
 SSL certificate, but I also want to further encrypt the

Frankly, that's what SSL is for.  In all my years of development I have
never been in a situation where SSL wasn't good enough to secure the
data going between the browser and the server.  Many of the ecommerce
gateways run by payment processors just have you send a plain-text XML
package over an HTTPS connection these days.

What kind of information are you so anxious about protecting?


-Justin Scott

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286832
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: 403 forbidden with Apache and cf8

2007-08-22 Thread Brad Wood
Are you using virtual hosts?

C:/www/docs/dummy-host.localhost does not exist appears to be your
problem.

When you first install Apache, the httpd.conf file has dummy document
roots set up that you have to replace with the actual sites.

Also, keep in mind, if the host typed in does not match any virtual
hosts, the first one is defaulted to.

If you are going to have more than one site in a different web root, you
must define your Directory permissions for it, or apply allow from
all to /

~Brad

-Original Message-
From: Matthew Smith [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 10:21 AM
To: CF-Talk
Subject: Re: 403 forbidden with Apache and cf8

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286834
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: 403 forbidden with Apache and cf8

2007-08-22 Thread James Holmes
Ah. You have two vhosts configured in the file included with

Include conf/extra/httpd-vhosts.conf

that don't point to real sites.

On 8/22/07, Matthew Smith [EMAIL PROTECTED] wrote:
 Here you go:
 Warning: DocumentRoot [C:/www/docs/dummy-host.localhost] does not exist
 Warning: DocumentRoot [C:/www/docs/dummy-host2.localhost] does not exist
 [Tue Aug 21 21:01:17 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:01:17 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:01:17 2007] [notice] Child 6052: Child process is running
 [Tue Aug 21 21:01:18 2007] [notice] Child 6052: Acquired the start
 mutex.
 [Tue Aug 21 21:01:18 2007] [notice] Child 6052: Starting 250 worker
 threads.
 [Tue Aug 21 21:01:18 2007] [notice] Child 4880: Released the start mutex
 [Tue Aug 21 21:01:19 2007] [notice] Child 4880: Waiting for 250 worker
 threads to exit.
 [Tue Aug 21 21:01:19 2007] [notice] Child 6052: Starting thread to
 listen on port 80.
 [Tue Aug 21 21:01:20 2007] [notice] Child 4880: All worker threads have
 exited.
 [Tue Aug 21 21:01:20 2007] [notice] Child 4880: Child process is exiting
 [Tue Aug 21 21:07:49 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:49 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:49 2007] [notice] Apache/2.2.4 (Win32) JRun/4.0
 configured -- resuming normal operations
 [Tue Aug 21 21:07:49 2007] [notice] Server built: Jan  9 2007 23:17:20
 [Tue Aug 21 21:07:50 2007] [notice] Parent: Created child process 472
 Warning: DocumentRoot [C:/www/docs/dummy-host.localhost] does not exist
 Warning: DocumentRoot [C:/www/docs/dummy-host2.localhost] does not exist
 [Tue Aug 21 21:07:51 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:51 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Child process is running
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Acquired the start mutex.
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Starting 250 worker
 threads.
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Starting thread to listen
 on port 80.

 -Original Message-
 From: Brad Wood [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 9:54 AM
 To: CF-Talk
 Subject: SPAM-LOW: RE: Re: 403 forbidden with Apache and cf8

 Can you paste in the last few lines from the error log?

 -Original Message-
 From: Matthew Smith [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 9:14 AM
 To: CF-Talk
 Subject: Re: 403 forbidden with Apache and cf8

 There are no entries in either log.

 Here's the whole access log:

 127.0.0.1 - - [21/Aug/2007:17:29:09 -0500] GET / HTTP/1.1 200 44
 127.0.0.1 - - [21/Aug/2007:17:32:56 -0500] GET / HTTP/1.1 200 2395

 The error log is much longer, but nothing about not finding a file.



 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286833
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIF Pissing me off

2007-08-22 Thread Claude Schneegans
 HTML is an xml subset.

Absolutely not.

Both HTML and XML are norms compliant to SGML and, with an adequat DTD, 
XML can be used to englobe HTML,
but HTML was introduced prior to XML, and so far, HTML is THE standard 
for the web, XML is not.

And even so, why use a superset when a subset is enough?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286835
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFIF Pissing me off

2007-08-22 Thread Claude Schneegans
 I am finding more and more places are
making it part of their requirements when I do work on a project for them.

Now, this is a good reason, even if customers don't even know why they 
want id XHTML compliant ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286836
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIF Pissing me off

2007-08-22 Thread Aaron Rouse
They know why(or at least why enough), the state is telling them it has to
be along with some other requirements.  Well at least the clients in the
medical and education fields.

On 8/22/07, Claude Schneegans [EMAIL PROTECTED] wrote:

 I am finding more and more places are
 making it part of their requirements when I do work on a project for them.

 Now, this is a good reason, even if customers don't even know why they
 want id XHTML compliant ;-)

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286837
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFIF Pissing me off

2007-08-22 Thread Loathe
You're right, and my explanation was over simplified obviously.

XHTML is the new standard.  Do you really think that's up for debate, as
more and more governments around the world require it, and legislation comes
into play, and in dealing with accessibility and indexing and SEO and blah
blah blah.


 -Original Message-
 From: Claude Schneegans [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 12:14 PM
 To: CF-Talk
 Subject: Re: CFIF Pissing me off
 
  HTML is an xml subset.
 
 Absolutely not.
 
 Both HTML and XML are norms compliant to SGML and, with an adequat DTD,
 XML can be used to englobe HTML,
 but HTML was introduced prior to XML, and so far, HTML is THE standard
 for the web, XML is not.
 
 And even so, why use a superset when a subset is enough?
 
 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.
 
 
 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286838
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: multiple sites with cf 8 and iis

2007-08-22 Thread Larry Wald
There is a tool called easyIIS that will enabel you to host multiple websites 
on a Windows XP machine

 Set up entries in etc/hosts so you don't need to swap anything - make
 the IIS sites respond to the relevant host names.
 
 On 8/21/07, Matthew Smith [EMAIL PROTECTED] wrote:
  I just did a clean install of my development machine.  In the past, 
 I used coldfusion's built in web server, but had a problem configuring 
 it to use a different folder for it's root.
 
  This time around I think I'll give IIS a try.  I have five sites I 
 am responsible for.  I would like to be able to switch between them in 
 as few steps as possible.  Do I need to create a virtual directory for 
 each one?  How would I switch between sites for http://localhost/ 
 shows the proper site?  Or can I just change the mapping for / to the 
 current site's folder?  If so, where should I locate the folder for 
 each site?  Do I set up a different site in IIS for each site?  If so, 
 would I have to manually apply coldfusion to each site?
 
  I'm not really sure what I need to do so any help would be 
 appreciated.  Thanks!
 
 
 -- 
 mxAjax / CFAjax docs and other useful articles:
 http://www.bifrost.com.
au/blog/ 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286839
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: multiple sites with cf 8 and iis

2007-08-22 Thread Larry Wald
There is a tool called EasIIS that will allow you to host multipe websites on 
an XP box

 Set up entries in etc/hosts so you don't need to swap anything - make
 the IIS sites respond to the relevant host names.
 
 On 8/21/07, Matthew Smith [EMAIL PROTECTED] wrote:
  I just did a clean install of my development machine.  In the past, 
 I used coldfusion's built in web server, but had a problem configuring 
 it to use a different folder for it's root.
 
  This time around I think I'll give IIS a try.  I have five sites I 
 am responsible for.  I would like to be able to switch between them in 
 as few steps as possible.  Do I need to create a virtual directory for 
 each one?  How would I switch between sites for http://localhost/ 
 shows the proper site?  Or can I just change the mapping for / to the 
 current site's folder?  If so, where should I locate the folder for 
 each site?  Do I set up a different site in IIS for each site?  If so, 
 would I have to manually apply coldfusion to each site?
 
  I'm not really sure what I need to do so any help would be 
 appreciated.  Thanks!
 
 
 -- 
 mxAjax / CFAjax docs and other useful articles:
 http://www.bifrost.com.
au/blog/ 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286842
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFIF Pissing me off

2007-08-22 Thread Dave Watts
  is selected=selected so bad?
 
 Bad, I don't know, but for the least, useless and stupid.

It's neither useless nor stupid. Boolean attributes in HTML aren't
consistent with how HTML attributes are written - as name-value pairs.
Consistency has an obvious value.

 If one needs to use XML, fine, but so far, all browsers are 
 able to read HTML, so I don't see why I should bother make my 
 HTML look like XML when I don't need.

XHTML provides several advantages over HTML, such as a clearer separation
between formatting and content.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286843
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFMBB 1.23 Released

2007-08-22 Thread Rick Root
I've just made CFMBB 1.23 available.

In addition to bundling the latest versions of imagecfc, cffm, and
cfopenchat... here are a few enhancements added to 1.23:

- improved look of subscription notification messages
- added subjectPrefix setting option (prepends to all message subjects
sent via cfmail)
- Added mail server setting (allows you to specify username/password
too, if necessary)
- fixed a bunch of bugs, both reported and unreported (version 1.22
was laden with bugs!)

Version 1.23 is available for download and via Subversion.

http://svn.riaforge.org/cfmbb

http://www.cfmbb.org/index.cfm?pf=download

-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286840
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Mail Queue

2007-08-22 Thread James Smith
Is there any way to have mail sent with CFMAIL jump the queue?  A couple
of times a week we send large mail outs to several thousand customers and
this takes almost no time to get into the spool folder but a couple of hours
to get from there to the mail server.  If during this time someone places an
order their order confirmation email ends up in the spool folder behind
several thousand other emails. Is there a way to queue jump these mails so
they get sent first?

--
Jay

No virus found in this outgoing message.
Checked by AVG Free Edition. 
Version: 7.5.484 / Virus Database: 269.12.1/965 - Release Date: 21/08/2007
16:02
 


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286841
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Uncatchable error

2007-08-22 Thread Nicholas Vacek
I'm bumping this question, since there were almost no responses last 
time I posted.


Here's the error message that I get:

The filename, directory name, or volume label syntax is incorrect. The
specific sequence of files included or processed is:
[some filepath that doesn't exist, often containing javascript code in 
the url, for example:]
C:\Inetpub\webroot\folder\subfolder\javascript:MM_openBrWindow(\file.cfm


Other information:

We have a 404 handler for this site, setup in IIS. The problem is that 
IIS doesn't catch the 404, but rather hands it off to ColdFusion. 
ColdFusion gets a request for a page that has invalid characters in it, 
and bombs. So users get a grey-screen of death.

Any ideas how to plug this hole, so that this error is elegantly handled?


P.S. I tried this trick (typing invalid characters into the url) on 
other companies' sites, who also use CF. Many of them also bomb out, 
like my site. But it appears that some of them are able to catch this 
error elegantly. How do they do it?

Nicholas Vacek
Vivid Image - Programmer
320-587-8974 ext. 111
[EMAIL PROTECTED]
http://www.vimm.com

Nicholas Vacek wrote:
 Tom,
 
 Thank you for your reply. We do have a 404 handler set up for this site. 
 We've actually got a couple of them:
 
 IIS 404 handler -- handles all non .cfm 404 errors.
 ColdFusion Missing Template Handler -- handles CF 404's
 
 The problem is that the Missing Template Handler isn't catching this.
 
 
 Nicholas Vacek
 Vivid Image - Programmer
 320-587-8974 ext. 111
 [EMAIL PROTECTED]
 http://www.vimm.com
 
 Tom Chiverton wrote:
 On Wednesday 01 Aug 2007, [EMAIL PROTECTED] wrote:
 The filename, directory name, or volume label syntax is incorrect. The
 specific sequence of files included or processed is:
 C:\Inetpub\webroot\folder\subfolder\javascript:MM_openBrWindow(\file.cfm

 There are lots of ways/variations, of what can be typed into the url,
 that will duplicate this error. The weird thing is that ColdFusion can't
 seem to catch it.
 Configure your web server's 404 handler.

 
 
 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286845
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Dave Watts
 First off, I am not a security expert ... For example, the info 
 I read may have been about how encrypting your data is a good 
 thing, but there was no follow through, encrypting it where, on 
 the server or on the client (to me, this is a flag that there is 
 a lack of understanding).

I submit that this lack of understanding is largely yours, as encryption and
secure handling of data are settled questions for the most part.

 I will use an SSL certificate, but I also want to further
 encrypt the data and make a hash ! of it, before sending 
 it to the server.

Why?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286844
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 403 forbidden with Apache and cf8

2007-08-22 Thread Matthew Smith
That got it.  Thank you SO much for the help.

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 10:44 AM
To: CF-Talk
Subject: SPAM-LOW: Re: 403 forbidden with Apache and cf8

Ah. You have two vhosts configured in the file included with

Include conf/extra/httpd-vhosts.conf

that don't point to real sites.

On 8/22/07, Matthew Smith [EMAIL PROTECTED] wrote:
 Here you go:
 Warning: DocumentRoot [C:/www/docs/dummy-host.localhost] does not
exist
 Warning: DocumentRoot [C:/www/docs/dummy-host2.localhost] does not
exist
 [Tue Aug 21 21:01:17 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:01:17 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:01:17 2007] [notice] Child 6052: Child process is
running
 [Tue Aug 21 21:01:18 2007] [notice] Child 6052: Acquired the start
 mutex.
 [Tue Aug 21 21:01:18 2007] [notice] Child 6052: Starting 250 worker
 threads.
 [Tue Aug 21 21:01:18 2007] [notice] Child 4880: Released the start
mutex
 [Tue Aug 21 21:01:19 2007] [notice] Child 4880: Waiting for 250 worker
 threads to exit.
 [Tue Aug 21 21:01:19 2007] [notice] Child 6052: Starting thread to
 listen on port 80.
 [Tue Aug 21 21:01:20 2007] [notice] Child 4880: All worker threads
have
 exited.
 [Tue Aug 21 21:01:20 2007] [notice] Child 4880: Child process is
exiting
 [Tue Aug 21 21:07:49 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:49 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:49 2007] [notice] Apache/2.2.4 (Win32) JRun/4.0
 configured -- resuming normal operations
 [Tue Aug 21 21:07:49 2007] [notice] Server built: Jan  9 2007 23:17:20
 [Tue Aug 21 21:07:50 2007] [notice] Parent: Created child process 472
 Warning: DocumentRoot [C:/www/docs/dummy-host.localhost] does not
exist
 Warning: DocumentRoot [C:/www/docs/dummy-host2.localhost] does not
exist
 [Tue Aug 21 21:07:51 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:51 2007] [notice] jrApache[init]  JRun 4.0 (Build
 108487) Apache 2.2 module - Jun 21 2007 14:43:39
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Child process is
running
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Acquired the start
mutex.
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Starting 250 worker
 threads.
 [Tue Aug 21 21:07:51 2007] [notice] Child 472: Starting thread to
listen
 on port 80.

 -Original Message-
 From: Brad Wood [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 9:54 AM
 To: CF-Talk
 Subject: SPAM-LOW: RE: Re: 403 forbidden with Apache and cf8

 Can you paste in the last few lines from the error log?

 -Original Message-
 From: Matthew Smith [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, August 22, 2007 9:14 AM
 To: CF-Talk
 Subject: Re: 403 forbidden with Apache and cf8

 There are no entries in either log.

 Here's the whole access log:

 127.0.0.1 - - [21/Aug/2007:17:29:09 -0500] GET / HTTP/1.1 200 44
 127.0.0.1 - - [21/Aug/2007:17:32:56 -0500] GET / HTTP/1.1 200 2395

 The error log is much longer, but nothing about not finding a file.



 



~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286846
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Rick Root
On 8/22/07, Dave Watts [EMAIL PROTECTED] wrote:

  I will use an SSL certificate, but I also want to further
  encrypt the data and make a hash ! of it, before sending
  it to the server.

 Why?

Damn that's a good question.  Couldn't have asked it better myself.

Rick

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286847
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Mail Queue

2007-08-22 Thread Justin Scott
 Is there any way to have mail sent with CFMAIL jump the
 queue?

To my knowledge there is not, but someone else may have a trick up their
sleeve.  Usually in these cases, where I know there are going to be
thousands of e-mails going out at once, I bypass the ColdFusion queue
entirely by writing MSG files directly to an external SMTP spooler.
This prevents normal e-mail from getting stuck behind the larger
mailing.  If you're on a Windows server and have decent access, you can
use the IIS SMTP service pickup folder.  MUCH faster than sending them
through the ColdFusion spooler, though does require additional setup on
the server.


-Justin Scott

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286848
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


ISAPI ReWrite and Jrun

2007-08-22 Thread Chad McCue
I have installed ISAPI ReWrite and need to figure out how to give it a
higher priortiy than the JRun connector. Can anyone give me step by step
instructions on how to do this?


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286849
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Mail Queue

2007-08-22 Thread Cutter (CFRelated)
Or you just schedule your mass mailer process during the beginning of 
your off-peak time frame (like 2AM) so that the possibility of conflict 
is very minimal.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Justin Scott wrote:
 Is there any way to have mail sent with CFMAIL jump the
 queue?
 
 To my knowledge there is not, but someone else may have a trick up their
 sleeve.  Usually in these cases, where I know there are going to be
 thousands of e-mails going out at once, I bypass the ColdFusion queue
 entirely by writing MSG files directly to an external SMTP spooler.
 This prevents normal e-mail from getting stuck behind the larger
 mailing.  If you're on a Windows server and have decent access, you can
 use the IIS SMTP service pickup folder.  MUCH faster than sending them
 through the ColdFusion spooler, though does require additional setup on
 the server.
 
 
 -Justin Scott
 
 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286850
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Bandwidth checking using javascript?

2007-08-22 Thread Andy Matthews
Does anyone know of a tool that can be used to test bandwidth? Open source
is preferred. Pure JS or jQuery is also preferred.
 
I need to be able to specify a threshold for low and hi bandwidth with
this tool. Anyone have one or know of one?
 

 
Andy Matthews
Senior ColdFusion Developer

Office:  877.707.5467 x747
Direct:  615.627.9747
Fax:  615.467.6249
[EMAIL PROTECTED]
www.dealerskins.com http://www.dealerskins.com/ 
 


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286852
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ISAPI ReWrite and Jrun

2007-08-22 Thread Rick Root
On 8/22/07, Chad McCue [EMAIL PROTECTED] wrote:
 I have installed ISAPI ReWrite and need to figure out how to give it a
 higher priortiy than the JRun connector. Can anyone give me step by step
 instructions on how to do this?

If it had a lower priority than the JRun connector, it wouldn't work
at all for coldfusion.

I use Helicon's ISAPI Rewrite quite happily with coldfusion and have
never had to do anything with its priority

Rick

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286851
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: ISAPI ReWrite and Jrun

2007-08-22 Thread Chad McCue
That is the issue, we installed it and set up the ini file and it is not
working for us. It seems like it isn't running at all.

Did you have to do anything specific while installing it? 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 22, 2007 1:53 PM
To: CF-Talk
Subject: Re: ISAPI ReWrite and Jrun

On 8/22/07, Chad McCue [EMAIL PROTECTED] wrote:
 I have installed ISAPI ReWrite and need to figure out how to give it a

 higher priortiy than the JRun connector. Can anyone give me step by 
 step instructions on how to do this?

If it had a lower priority than the JRun connector, it wouldn't work at
all for coldfusion.

I use Helicon's ISAPI Rewrite quite happily with coldfusion and have
never had to do anything with its priority

Rick



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286854
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Mail Queue

2007-08-22 Thread Justin Scott
 Or you just schedule your mass mailer process during the
 beginning of your off-peak time frame (like 2AM) so that
 the possibility of conflict is very minimal.

What if you have order notifications that need to get to the customer
quickly, even at 2AM?  What about on-demand mass mailers where the
client wants their message to get to their 75,000 customers right now
damnit! ... you have to get more creative than that.


-Justin Scott

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286853
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Still having POST converted to GET errors

2007-08-22 Thread Claude Schneegans
Hi,

I think this subject have been discussed here before.
I dont think this is a problem related to CF, but it is still quite 
annoying.

Sometimes, may be once every 500 times, I have a template called with 
method=GET
although the only way to call it is from a FORM METHOD=post tag.

I'm still trying to trace this error, (of course eliminating smart ass 
robots invoking any address with default GET method.

In my form, I have this JS code executed on submit:
  if (form.action.indexOf(method) == -1)
form.action += (form.action.indexOf(?)  0 ?  : ?) + 
method= + form.method;
What it does is add a parameter in the url containing what method the 
browser thought it should use when submitting the request.
This allows me to compare with the HTTP servers log (I have IIS 5 under 
Windows)
And here is an example:
207.35.163.94, -, 21/08/2007, 11:51:14, W3SVC32, SVRPHST0502, 
192.170.102.1, 94, 496, 431, 200, 0, GET, /collConfirme.cfm, method=post,

method=post is the url parameter set by my function, and GET is what 
the server says the type of the request was.

So there is definitely something which is changing the request from POST 
to GET, somewhere in between the browser and the HTTP server, but who?, 
what? when? why?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286855
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Mail Queue

2007-08-22 Thread Paul Vernon
  Or you just schedule your mass mailer process during the
  beginning of your off-peak time frame (like 2AM) so that
  the possibility of conflict is very minimal.
 
 What if you have order notifications that need to get to the customer
 quickly, even at 2AM?  What about on-demand mass mailers where the
 client wants their message to get to their 75,000 customers right now
 damnit! ... you have to get more creative than that.


Just tell the CFMAIL tag that you want to prioritize to point at a different
SMTP server reserved for high priority mails and DONT SPOOL the content...

Paul




~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286856
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Mail Queue

2007-08-22 Thread Phillip M. Vector
1. If you have a client who is demanding instant emails sent to their 
75,000 customers (I question if they even want it) right then, ask him 
how many people will be up late at night and be reading their emails at 
2am (or later).

2. Have you considered getting 2 mail servers? One dedicated to orders 
and one for mass mailings and non-priority emails? If that is to 
expensive, ask your client to foot the bill and see how critical it is 
for mail to be delivered RIGHT NOW.

3. Just a note on diplomacy, you have to get more creative than that. 
when I first read it sounded a tad like you were yelling at the free 
advise you were given. Surely I am mistaken, but first impressions and 
all that. :)

Justin Scott wrote:
 Or you just schedule your mass mailer process during the
 beginning of your off-peak time frame (like 2AM) so that
 the possibility of conflict is very minimal.
 
 What if you have order notifications that need to get to the customer
 quickly, even at 2AM?  What about on-demand mass mailers where the
 client wants their message to get to their 75,000 customers right now
 damnit! ... you have to get more creative than that.
 
 
 -Justin Scott
 
 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286858
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Mail Queue

2007-08-22 Thread Cutter (CFRelated)
Sorry, our sites are far more localized, so we have that sort of 
flexibility. Guess it depends on the industry and market spread.

My suggestion, then, would be to use one of the dozens of mass mailer 
houses to submit the mass mailer (a better option for your mail server 
too), and focus your CF server's efforts towards handling your normal 
site business traffic.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Justin Scott wrote:
 Or you just schedule your mass mailer process during the
 beginning of your off-peak time frame (like 2AM) so that
 the possibility of conflict is very minimal.
 
 What if you have order notifications that need to get to the customer
 quickly, even at 2AM?  What about on-demand mass mailers where the
 client wants their message to get to their 75,000 customers right now
 damnit! ... you have to get more creative than that.
 
 
 -Justin Scott
 
 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286857
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ISAPI ReWrite and Jrun

2007-08-22 Thread Matthew Small
Go into the IIS manager, right-click on the Web Sites folder 
propertiesISAPI Filters.  Move up or down.  Be sure that there's a green arrow 
next it, ensuring that it's up and running.  It it has a red arrow pointing 
down, there's a problem with the filter.

- Matt Small





I have installed ISAPI ReWrite and need to figure out how to give it a
higher priortiy than the JRun connector. Can anyone give me step by step
instructions on how to do this?



~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286859
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Still having POST converted to GET errors

2007-08-22 Thread Ian Skinner
I talked about smart-ass robots, have you considered smart-ass humans?  
Are you capturing data that shows it is YOUR form that submitted the 
request to this action page?  Could it be somebody creating their own 
version of the form and submitting it for some reason or another?

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286860
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Byte Me
 First off, I am not a security expert ... For example, the info 
 I read may have been about how encrypting your data is a good 
 thing, but there was no follow through, encrypting it where, on 
 the server or on the client (to me, this is a flag that there is 
 a lack of understanding).

I submit that this lack of understanding is largely yours, as encryption and
secure handling of data are settled questions for the most part.

 I will use an SSL certificate, but I also want to further
 encrypt the data and make a hash ! of it, before sending 
 it to the server.

Why?
I submit that this lack of understanding is largely yours, as encryption and
secure handling of data are settled questions for the most part.

You are correct, that is why I am asking questions, but I am confused, does SSL 
do a hash of the data, transmit it, then do another hash of the data, and 
notify you if the data was changed while in transit?


Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information! 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286861
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIF Pissing me off

2007-08-22 Thread Dominic Watson

 XHTML provides several advantages over HTML, such as a clearer separation
 between formatting and content.


Add to that portability!

This argument reminds of a news article I read yesterday on a Jamaican who
proudly defied the evacuation of his town, due to the incoming hurricane,
with something like: You'll find me at 6.00pm this evening drinking rum in
the bar.


On 22/08/07, Dave Watts [EMAIL PROTECTED] wrote:

   is selected=selected so bad?
 
  Bad, I don't know, but for the least, useless and stupid.

 It's neither useless nor stupid. Boolean attributes in HTML aren't
 consistent with how HTML attributes are written - as name-value pairs.
 Consistency has an obvious value.

  If one needs to use XML, fine, but so far, all browsers are
  able to read HTML, so I don't see why I should bother make my
  HTML look like XML when I don't need.

 XHTML provides several advantages over HTML, such as a clearer separation
 between formatting and content.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!


 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286862
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Byte Me

  I will use an SSL certificate, but I also want to further
  encrypt the data and make a hash ! of it, before sending
  it to the server.

 Why?

Damn that's a good question.  Couldn't have asked it better myself.

Rick


Does the SSL certificate generate a hash of the data on the client, then 
generate another hash on the server and notify me if the data was tampered 
with? 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286863
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Mail Queue

2007-08-22 Thread Justin Scott
 3. Just a note on diplomacy, you have to get more creative 
 than that. when I first read it sounded a tad like you were
 yelling at the free advise you were given. Surely I am
 mistaken, but first impressions and all that. :)

Hi Phillip, I think you missed the beginning of the thread.  I responded
to Jay's original question about queue prioritization, then Steve Blades
responded to my message with the just schedule it in the middle of the
night solution (which works for his setup).  I was simply pointing out
situations in which that would not work or be an option.  I've been
through the how do I get a zillion messages delivered right now road
many times before (we have multiple e-mail servers, dedicated spoolers,
the whole works).

In any case, different solutions for different situations.


-Justin Scott

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286866
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF 7 - What JVMs are supported

2007-08-22 Thread Bosky, Dave
Which JVM's does CF7 support? 

Thanks,
Dave

**
HTC Disclaimer:  The information contained in this message may be privileged 
and confidential and protected from disclosure. If the reader of this message 
is not the intended recipient, or an employee or agent responsible for 
delivering this message to the intended recipient, you are hereby notified that 
any dissemination, distribution or copying of this communication is strictly 
prohibited.  If you have received this communication in error, please notify us 
immediately by replying to the message and deleting it from your computer.  
Thank you.
**


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286864
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF 7 - What JVMs are supported

2007-08-22 Thread Andy Allan
Officially...
http://www.adobe.com/products/coldfusion/coldfusion7/pdfs/cfmx7_systemsupportmatrix.pdf

On 22/08/07, Bosky, Dave [EMAIL PROTECTED] wrote:
 Which JVM's does CF7 support?

 Thanks,
 Dave

 **
 HTC Disclaimer:  The information contained in this message may be privileged 
 and confidential and protected from disclosure. If the reader of this message 
 is not the intended recipient, or an employee or agent responsible for 
 delivering this message to the intended recipient, you are hereby notified 
 that any dissemination, distribution or copying of this communication is 
 strictly prohibited.  If you have received this communication in error, 
 please notify us immediately by replying to the message and deleting it from 
 your computer.  Thank you.
 **


 

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286867
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF 7 - What JVMs are supported

2007-08-22 Thread Jim McAtee
Is there a similar support matrix published for CF8?


- Original Message - 
From: Andy Allan [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, August 22, 2007 1:05 PM
Subject: Re: CF 7 - What JVMs are supported


 Officially...
 http://www.adobe.com/products/coldfusion/coldfusion7/pdfs/cfmx7_systemsupportmatrix.pdf

 On 22/08/07, Bosky, Dave [EMAIL PROTECTED] wrote:
 Which JVM's does CF7 support?


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286868
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT: Microsoft IIS 6 FTP

2007-08-22 Thread Jim McAtee
I'm setting up a new Win2k3 server with CF8, moving from Win2k/CF5.  I 
thought I'd give Microsoft's IIS FTP server a try, having used mostly FTP 
Serv-U in the past.

All I can say is: Is this FTP server even marginally usable in the real 
world?

First thing I run into is that apparently by _design_ virtual FTP 
directories created in IIS are not listed in directory listings, making 
them invisible to FTP clients.  Huh???

Are there workarounds to make IIS FTP usable?



~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286865
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Bryan Stevenson
 Does the SSL certificate generate a hash of the data on the client, then 
 generate another hash on the server and notify me if the data was tampered 
 with?

Noit encrypts it so if someone catches it mid-transmission they would still 
have to decrypt it...which would take a bloody long time without a Cray II 
supercomputer ;-) ...and of course decrypts it once received.

A hash cannot be undone...one-way only

You're confusing hash validationstop using Bit Torrent ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments. 



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286870
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Microsoft IIS 6 FTP

2007-08-22 Thread Justin Scott
 I'm setting up a new Win2k3 server with CF8, moving from
 Win2k/CF5.  I thought I'd give Microsoft's IIS FTP server
 a try, having used mostly FTP Serv-U in the past.

We have been consolidating our Windows FTP Servers into a single Serv-U
system here.  Serv-U, in my experience, is far more flexible.

 First thing I run into is that apparently by _design_ virtual
 FTP directories created in IIS are not listed in directory 
 listings, making them invisible to FTP clients.  Huh???

For a virtual folder to show up to the user in a directory listing, an
actual folder with the same name has to exist on the server.  The
virtual part only kicks in when they try to CD to that folder.  This
is one of many weird quirks you will run into.  You're not in Kansas
anymore...


-Justin Scott

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286869
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Justin Scott
 You are correct, that is why I am asking questions, but I
 am confused, does SSL do a hash of the data, transmit it,
 then do another hash of the data, and notify you if the
 data was changed while in transit?

Hashing is part of what SSL does, yes.  If the hash portions don't
match, the HTTPS server will handle that on its own.  If the data makes
it to ColdFusion through an SSL connection, you can be sure it is the
same as it was when transmitted.  See:
http://en.wikipedia.org/wiki/Transport_Layer_Security.


-Justin Scott

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286874
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF 7 - What JVMs are supported

2007-08-22 Thread Andy Allan
C'mon ... it's in plain view on the Adobe site folks...

http://www.adobe.com/products/coldfusion/pdfs/cf8_systemsupportmatrix.pdf

Andy

On 22/08/07, Jim McAtee [EMAIL PROTECTED] wrote:
 Is there a similar support matrix published for CF8?


 - Original Message -
 From: Andy Allan [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Wednesday, August 22, 2007 1:05 PM
 Subject: Re: CF 7 - What JVMs are supported


  Officially...
  http://www.adobe.com/products/coldfusion/coldfusion7/pdfs/cfmx7_systemsupportmatrix.pdf
 
  On 22/08/07, Bosky, Dave [EMAIL PROTECTED] wrote:
  Which JVM's does CF7 support?


 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286873
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Still having POST converted to GET errors

2007-08-22 Thread Claude Schneegans
 have you considered smart-ass humans?

According to the IP address, the human is the administrator of the CMS 
used by my customer himself.
Beleive me, they have other things to do than trying to horse around in 
their own system they have paid for.

 Are you capturing data that shows it is YOUR form that submitted the
request to this action page?

Sure, since the JS code in my form sets the parameter method=post.

   Could it be somebody creating their own
version of the form and submitting it for some reason or another?

Nope, by the way, I set IIS to trace request in the log ONLY for pages 
inside the administration modules.
And again, my customers barely know the difference between a computer 
and a toaster, so I doubt
they ever try to create their own version of the form.

~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286871
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Still having POST converted to GET errors

2007-08-22 Thread Claude Schneegans
 have you considered smart-ass humans?

According to the IP address, the human is the administrator of the CMS 
used by my customer himself.
Beleive me, they have other things to do than trying to horse around in 
their own system they have paid for.

 Are you capturing data that shows it is YOUR form that submitted the
request to this action page?

Sure, since the JS code in my form sets the parameter method=post.

   Could it be somebody creating their own
version of the form and submitting it for some reason or another?

Nope, by the way, I set IIS to trace request in the log ONLY for pages 
inside the administration modules.
And again, my customers barely know the difference between a computer 
and a toaster, so I doubt
they ever try to create their own version of the form.

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286872
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Microsoft IIS 6 FTP

2007-08-22 Thread Jim McAtee
Thanks.  Is there still a mailing list or user forum for Serv-U somewhere?



- Original Message - 
From: Justin Scott [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, August 22, 2007 1:12 PM
Subject: RE: Microsoft IIS 6 FTP


 I'm setting up a new Win2k3 server with CF8, moving from
 Win2k/CF5.  I thought I'd give Microsoft's IIS FTP server
 a try, having used mostly FTP Serv-U in the past.
 
 We have been consolidating our Windows FTP Servers into a single Serv-U
 system here.  Serv-U, in my experience, is far more flexible.
 
 First thing I run into is that apparently by _design_ virtual
 FTP directories created in IIS are not listed in directory 
 listings, making them invisible to FTP clients.  Huh???
 
 For a virtual folder to show up to the user in a directory listing, an
 actual folder with the same name has to exist on the server.  The
 virtual part only kicks in when they try to CD to that folder.  This
 is one of many weird quirks you will run into.  You're not in Kansas
 anymore...


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286875
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Microsoft IIS 6 FTP

2007-08-22 Thread Justin Scott
 Thanks.  Is there still a mailing list or user forum for 
 Serv-U somewhere?

I don't think the publisher maintains a list for it, and I haven't seen
any others dedicated to it, but if you find one, please let me know.


-Justin Scott

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286877
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Microsoft IIS 6 FTP

2007-08-22 Thread Rick Root
On 8/22/07, Jim McAtee [EMAIL PROTECTED] wrote:

 All I can say is: Is this FTP server even marginally usable in the real
 world?

No.

 First thing I run into is that apparently by _design_ virtual FTP
 directories created in IIS are not listed in directory listings, making
 them invisible to FTP clients.  Huh???

Believe it or not, I think  Filezilla Server - which is what we use in
my office - also does that.

-- 
Rick Root
Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at
www.opensourcecf.com

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286878
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ISAPI ReWrite and Jrun

2007-08-22 Thread Rick Root
On 8/22/07, Matthew Small [EMAIL PROTECTED] wrote:
 Go into the IIS manager, right-click on the Web Sites folder 
 propertiesISAPI Filters.  Move up or down.  Be sure that there's a green 
 arrow next it, ensuring that it's up and running.  It it has a red arrow 
 pointing down, there's a problem with the filter.

Neat, I never had to do that, but it's certainly useful to know :)

Rick

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286876
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Mail Queue

2007-08-22 Thread Jochem van Dieten
James Smith wrote:
 Is there any way to have mail sent with CFMAIL jump the queue?  A couple
 of times a week we send large mail outs to several thousand customers and
 this takes almost no time to get into the spool folder but a couple of hours
 to get from there to the mail server.  If during this time someone places an
 order their order confirmation email ends up in the spool folder behind
 several thousand other emails. Is there a way to queue jump these mails so
 they get sent first?

Have you tried the spoolenable attribute?

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286879
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Still having POST converted to GET errors

2007-08-22 Thread Jochem van Dieten
Claude Schneegans wrote:
 In my form, I have this JS code executed on submit:
   if (form.action.indexOf(method) == -1)
 form.action += (form.action.indexOf(?)  0 ?  : ?) + 
 method= + form.method;
 What it does is add a parameter in the url containing what method the 
 browser thought it should use when submitting the request.
 This allows me to compare with the HTTP servers log (I have IIS 5 under 
 Windows)
 And here is an example:
 207.35.163.94, -, 21/08/2007, 11:51:14, W3SVC32, SVRPHST0502, 
 192.170.102.1, 94, 496, 431, 200, 0, GET, /collConfirme.cfm, method=post,
 
 method=post is the url parameter set by my function, and GET is what 
 the server says the type of the request was.
 
 So there is definitely something which is changing the request from POST 
 to GET, somewhere in between the browser and the HTTP server, but who?, 
 what? when? why?

Most browsers change the method from POST to GET when they are 
redirected with a 302 redirect. Are you doing redirects? Are those 
redirects with a 302 or a 307 statuscode?

Jochem

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286880
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Mail Queue

2007-08-22 Thread J.J. Merrick
I think if you specify the spoolenable=false inside the cfmail that
technically jumps the spool and sends it directly to the mailserver.

I would also suggest using 2 mailservers, 1 for mass email and 1 for
immediate things.

J.J.

On 8/22/07, James Smith [EMAIL PROTECTED] wrote:
 Is there any way to have mail sent with CFMAIL jump the queue?  A couple
 of times a week we send large mail outs to several thousand customers and
 this takes almost no time to get into the spool folder but a couple of hours
 to get from there to the mail server.  If during this time someone places an
 order their order confirmation email ends up in the spool folder behind
 several thousand other emails. Is there a way to queue jump these mails so
 they get sent first?

 --
 Jay

 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.5.484 / Virus Database: 269.12.1/965 - Release Date: 21/08/2007
 16:02



 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286881
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Still having POST converted to GET errors

2007-08-22 Thread Claude Schneegans
 Are you doing redirects?

Nope. Not at this point anyway.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286882
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bandwidth checking using javascript?

2007-08-22 Thread Jochem van Dieten
Andy Matthews wrote:
 Does anyone know of a tool that can be used to test bandwidth? Open source
 is preferred. Pure JS or jQuery is also preferred.
  
 I need to be able to specify a threshold for low and hi bandwidth with
 this tool. Anyone have one or know of one?

Check the source of 
http://web.archive.org/web/20031203095808/speedtest.cistron.nl/newspeed/newspeed.html

Jochem

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286883
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Byte Me
 Does the SSL certificate generate a hash of the data on the client, then 
 generate another hash on the server and notify me if the data was tampered 
 with?

Noit encrypts it so if someone catches it mid-transmission they would 
still 
have to decrypt it...which would take a bloody long time without a Cray II 
supercomputer ;-) ...and of course decrypts it once received.

A hash cannot be undone...one-way only

You're confusing hash validationstop using Bit Torrent ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.

Thanks for the info. I realize that a hash is one way, it can be used for data 
integrity checks and hiding a password in a DB. I took an on-line application 
security course from a DOD web site about a week ago and I was trying to figure 
out how to actually apply what they explained. Basically what I understood was 
there are five security checks that should be performed with concern to web 
application security: 1. Identification and Authentication, 2. Access Control, 
3. Data confidentiality, 4.Data Integrity and 5. Nonrepudiation. I started 
looking into data integrity, because according to the course, SSL is used for 
confidentiality, not Data Integrity, and one should never be used as a 
substitute for the other. And as I started digging, I discovered that the CF 
hash and encrypt functions are great, but they cannot be used because they 
execute on the server, they can be used for storing the data, once the data has 
arrived, I know. I now realize that if I want to follow good security practice 
I need to come up with a way to hash the data on the web site before it is 
transmitted so I can check the hash when it gets to the server, to ensure the 
integrity of the data. I guess I also need to get a better understanding of 
SSL, maybe some modes of SSL will do that, and I just need to make sure I 
purchase a certificate that does hash checking along with encryption.

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286884
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfmx 8 feature question

2007-08-22 Thread Steve Dworman
thanks everyone for the responses.  this is excellent news! 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286885
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SECURITY: ENCRYPTION AND HASHING

2007-08-22 Thread Matt Robertson
Its not a failure of the industry experts to understand the problem.  Its
the failure to have a problem in the first place, honestly.  I think that,
while you are clearly working hard to wrap your arms around the subject...
you aren't there yet.

What you want to do is inherently insecure... use client-side code to
enforce a component of security?  How would you protect the client-side code
from being hacked and manipulated to ill effect?  What scenario will you be
covering, since the transmission off the screen is fully covered by the
https protocol and a certificate?  The only threat left is someone looking
over the hapless user's shoulder and writing down their input, and in your
capacity as developer you cannot protect against this type of threat.

And client-side code is inherently open and available to the ... client.
Open for inspection and giving clues to the server side tools in use;
providing insight to the thoughtful hacker as to how they go about their
next step in their attack against you.

So if the client desktop is its own problem outside your control, and the
transmission has a globally-accepted, universal solution in place, that only
leaves the server side, and there you do indeed have quite a lot of wiggle
room with respect to doing it badly versus doing it well.

Just for starters, if you are hashing something (like a password) I would
say you have made a mistake right there if its a simple hash.  Use a salted
hash always.  I know cfencrypt/cfdecrypt has made great strides in CF7, but
I'm not sure if it is really industrial-strength?  I'll leave that question
to others.  I rely on 3rd-party tools that give me RSA asymmetric-key
encryption of selectable strength, personally.

 SSL is used for confidentiality, not Data Integrity

That is incorrect.  Read tha Wikipedia article that was linked a few posts
back in this thread.

While you need to exercise care and perform due diligence, some of this is a
lot simpler than you are making it out to be.  Worry about the server side.
The rest is effectively out of your hands due to the nature of the medium.


-- 
[EMAIL PROTECTED]
Janitor, The Robertson Team
mysecretbase.com


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286886
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: DoD CAC authentication

2007-08-22 Thread Bruce, Rodney S Mr CTR USA AMC
Mike

Very basic:


When you go into IIS(what we use) and make the selection to
accept/require certificates.


You will then get the CGI.Cert_subject variable filled in
([empty string]  when not accepting client certs).
We broke this out into for variables we use: Cert_name,
Cert_number, Cert_type,Cert_CACType

cfset Cert_Name = ListGetAt(CGI.Cert_subject,
ListContainsNoCase(CGI.Cert_subject, CN=))
cfset Cert_Number = ListLast(Cert_Name, .)
cfset Cert_Name = ListDeleteAt(ListDeleteAt(Cert_Name,
ListLen(Cert_Name,.),.),1,=)
cfset Cert_Type =
ListDeleteAt(ListGetAt(ListDeleteAt(ListDeleteAt(CGI.Cert_subject,ListCo
ntainsNoCase(CGI.Cert_subject,OU=)),ListContainsNoCase(CGI.Cert_subjec
t,OU=)),ListContainsNoCase(CGI.Cert_subject, OU=)),1,=)
cfset Cert_CACType = ListGetAt(CGI.Cert_Issuer,
ListContainsNoCase(CGI.Cert_Issuer, CN=))


Gets something like:

Cert_name =  USERLASTNAME.USERFIRSTNAME.MI   (MILLER.MIKE.X)
Cert_Number = 1234567891  (10 digit number)  called DOD EDI
Person Identifier.
Cert_type =  CN=DOD CLASS 3 EMAIL CA-9, CN=DOD CLASS 3 CA-10
etc
Cert_CACType =  USA, CONTRACTOR   (USA is Govt Civ,  Contractor
is just that).


Really all you need to map the CAC is the DOD EDI, the rest is
for info and cross checking.


Once we activated the certs, the user just had to log in once
with password, this mapped their CAC to their account.
For new users, they were given a temp password valid for 1 log
in, to map their CAC to their account.

Probly easier ways to get the information, but that's our way.


Does any of this help?
Rodney   



-Original Message-
From: Mike Miller [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 30, 2007 2:05 PM
To: CF-Talk
Subject: DoD CAC authentication

I'm thinking of using CAC to provide a means of authenitcating users to
a role controlled application. 

I've found little to cover this on the web over basic IIS accept client
certs and wonder if anyone in community has worked on something
similar.

Best,
Michael Miller



~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286887
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Complex query for experts?

2007-08-22 Thread Mike | NZSolutions Ltd
Well I think it is !!

Ok, my client wishes to know the following information...

Which customers have ordered more than one clothing item (of a particular
category) in a single order.

Eg. joe bloggs ordered 3 jerseys on 3/4/07.

The relevant tables and columns are...

CREATE TABLE [dbo].[categories] (
[cat_id] [int] IDENTITY (1, 1) NOT FOR REPLICATION  NOT NULL 
)

CREATE TABLE [dbo].[products] (
[product_id] [int] IDENTITY (1, 1) NOT FOR REPLICATION  NOT NULL 
)

CREATE TABLE [dbo].[orders] (
[order_id] [int] IDENTITY (1, 1) NOT FOR REPLICATION  NOT NULL ,
[dCreated] [datetime] NULL ,
[customer_id] [int] NULL  
)

CREATE TABLE [dbo].[orders_products] (
[order_products_id] [int] IDENTITY (1, 1) NOT FOR REPLICATION  NOT
NULL ,
[order_id] [int] NOT NULL ,
[product_id] [int] NOT NULL ,
[product_code] [varchar] (50) COLLATE Latin1_General_CI_AS NULL ,
[product_title] [varchar] (64) COLLATE Latin1_General_CI_AS NOT NULL
,
[product_quantity] [int] NOT NULL 
)

(note: some orders have the same item in 2 different rows eg. product_id = 1
/ product_quantity = 2 and product_id = 1 / product_quantity = 1)

CREATE TABLE [dbo].[address_book] (
[customer_id] [int] IDENTITY (1, 1) NOT FOR REPLICATION  NOT NULL ,
[customer_fname] [varchar] (32) COLLATE Latin1_General_CI_AS NULL ,
[customer_lname] [varchar] (32) COLLATE Latin1_General_CI_AS NULL
)

Any pointers on how I should go about this would really be appreciated.

Cheers
mike



~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286888
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFChart and XML styling

2007-08-22 Thread Tom McNeer
Hi,

Has anyone ever successfully formatted a Flash CFChart by placing an XML
string in the style attribute?

The docs (CF7) say that the style attribute may be filled by either a path
to an XML file or by an XML string. Using a file path works fine. But I now
need to write some of the XML styling information dynamically (to allow for
locales). When I create an XML string and place it in a variable, then
output the variables in the style attribute, I get a system could not find
the file specified error.

For testing, the XML string I'm creating is read from a valid XML file. If I
point the style attribute directly to the file, everything's fine. But when
I read the file into a variable, then output it with XMLFormat, the error is
created.

Anyone have any tips? If I output the variable to the screen, the string
appears to still contain perfectly valid XML.

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286889
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Purging Registry.

2007-08-22 Thread NUGROHO NOTO
Thanks Dave. 

- I stop application server and executive server. 
- Run REG DELETE HKLM\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Clients /va /f
- took only 1sec  It says... Completed successfully.
- But it seems my registry is still there... (I cannot expand clients...took 
sooo long)

- I cannot also use REGEDIT (If I expand clients.. just HANG...)

- Ask my hosting company to clean those registry for me (www.cfxhosting.com)
  NO action taken (already 2 days)

Hmm somebody has a killer application to clean this registry ? 
I had tried clientVarPurger.zip from Adobe... but it does not work.
Any Idea please..

Thanks. 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286890
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


  1   2   >