Re: Parsing transitional HTML using xmlparse()

2010-12-20 Thread denstar

Railo has a function called htmlParse() that will "clean up" html into
xhtml, but I /think/ it's only a Railo deal.

You can use something like JTidy, or Jericho HTML parser, etc., etc.,
if you're uncertain of what the input will be, and just need valid
output.

If you *know* that it will only be elements X, Y and Z that need
cleaning, you could do it yourself as part of pre-processing.

:Den

-- 
In almost everything, experience is more valuable than precept.
Marcus Fabius Quintilian

On Mon, Dec 20, 2010 at 7:54 PM, Michael Grant wrote:
>
> I have the following code pseudo code as an example:
>
> 
>
> 
>
> 
> Some text here and br's that don't close. 
> 
>
> 
>
> 
>
> I would like to parse this with xmlParse so that I can use dot notation to
> traverse it as a struct. However when I use xmlParse I get an error because
> the img and br tags aren't closed. The doc type is transitional.
>
> What's the best way to accomplish this? I'm using cf8 developer edition on
> my home machine.
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340185
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Where Woes

2010-12-20 Thread Sean Corfield

On Mon, Dec 20, 2010 at 8:59 PM, Rob Voyle  wrote:
> Yes Why? the quotes
> I have other query's where it works fine without quotes.

If you have a numeric column then #var# will work. If you have a
varchar column, you need '#var#' because the SQL syntax requires a
'string'.

But I'd recommend you learn to use  because then you
won't have this problem - and you will also be protected from SQL
injection attacks, as well as possibly getting better performance out
of your code.

where programCode1 = 

You don't need to worry about the format of your values with 
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

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

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340184
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Where Woes

2010-12-20 Thread Rob Voyle

Hi Jerry and Greg

Thanks.
Yes Why? the quotes
I have other query's where it works fine without quotes.
Rob



On 20 Dec 2010 at 23:51, Jerry Johnson wrote:

> 
> you need to surround the program variable with single quotes, like
> so
> 
> where programCode1='#program#'
> 
> Please ask if you need an explanation of why.
> 
> Jerry Milo Johnson
> 
> On Mon, Dec 20, 2010 at 11:48 PM, Rob Voyle 
> wrote:
> 
> >
> > Hi Folks
> >
> > I have a mysql table that I am querying with CF
> >
> > One of the columns is programCode1
> >
> > I have a where statement:
> >
> > where programCode1=#program#
> >
> > that returns the error message:
> > Unknown column 'atmBaltimore41' in 'where clause'
> >
> > atmBaltimore41 is the value of #program#
> >
> > If I put the atmBaltimore41 as a string
> >
> > where programCode1="atmBaltimore41"
> >
> > it works fine, but I need to use the variable
> >
> > Any ideas?
> >
> > thanks
> >
> > Rob
> > Robert J. Voyle, Psy.D.
> > Director, Clergy Leadership Institute
> > For Coaching and Training in Appreciative Inquiry
> > Author: Restoring Hope: Appreciative Strategies
> > to Resolve Grief and Resentment
> > http://www.appreciativeway.com/
> > 503-647-2378 or 503-647-2382
> >
> >
> > 
> 
> 
> ~|
> Order the Adobe Coldfusion Anthology now!
> http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=
> houseoffusion
> Archive:
> http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:34
> 0182
> Subscription:
> http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
> Unsubscribe:
> http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340183
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Where Woes

2010-12-20 Thread Jerry Johnson

you need to surround the program variable with single quotes, like so

where programCode1='#program#'

Please ask if you need an explanation of why.

Jerry Milo Johnson

On Mon, Dec 20, 2010 at 11:48 PM, Rob Voyle  wrote:

>
> Hi Folks
>
> I have a mysql table that I am querying with CF
>
> One of the columns is programCode1
>
> I have a where statement:
>
> where programCode1=#program#
>
> that returns the error message:
> Unknown column 'atmBaltimore41' in 'where clause'
>
> atmBaltimore41 is the value of #program#
>
> If I put the atmBaltimore41 as a string
>
> where programCode1="atmBaltimore41"
>
> it works fine, but I need to use the variable
>
> Any ideas?
>
> thanks
>
> Rob
> Robert J. Voyle, Psy.D.
> Director, Clergy Leadership Institute
> For Coaching and Training in Appreciative Inquiry
> Author: Restoring Hope: Appreciative Strategies
> to Resolve Grief and Resentment
> http://www.appreciativeway.com/
> 503-647-2378 or 503-647-2382
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340182
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Where Woes

2010-12-20 Thread Greg Morphis

Wrap it in quotes and use  wrote:
>
> Hi Folks
>
> I have a mysql table that I am querying with CF
>
> One of the columns is programCode1
>
> I have a where statement:
>
> where programCode1=#program#
>
> that returns the error message:
> Unknown column 'atmBaltimore41' in 'where clause'
>
> atmBaltimore41 is the value of #program#
>
> If I put the atmBaltimore41 as a string
>
> where programCode1="atmBaltimore41"
>
> it works fine, but I need to use the variable
>
> Any ideas?
>
> thanks
>
> Rob
> Robert J. Voyle, Psy.D.
> Director, Clergy Leadership Institute
> For Coaching and Training in Appreciative Inquiry
> Author: Restoring Hope: Appreciative Strategies
> to Resolve Grief and Resentment
> http://www.appreciativeway.com/
> 503-647-2378 or 503-647-2382
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340181
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Where Woes

2010-12-20 Thread Rob Voyle

Hi Folks

I have a mysql table that I am querying with CF

One of the columns is programCode1

I have a where statement: 

where programCode1=#program# 

that returns the error message:
Unknown column 'atmBaltimore41' in 'where clause' 

atmBaltimore41 is the value of #program#

If I put the atmBaltimore41 as a string

where programCode1="atmBaltimore41"

it works fine, but I need to use the variable

Any ideas?

thanks

Rob
Robert J. Voyle, Psy.D.
Director, Clergy Leadership Institute
For Coaching and Training in Appreciative Inquiry
Author: Restoring Hope: Appreciative Strategies
 to Resolve Grief and Resentment
http://www.appreciativeway.com/
503-647-2378 or 503-647-2382
  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340180
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Parsing transitional HTML using xmlparse()

2010-12-20 Thread Michael Grant

I have the following code pseudo code as an example:






Some text here and br's that don't close. 






I would like to parse this with xmlParse so that I can use dot notation to
traverse it as a struct. However when I use xmlParse I get an error because
the img and br tags aren't closed. The doc type is transitional.

What's the best way to accomplish this? I'm using cf8 developer edition on
my home machine.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340179
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto Incrementing Seed vs CF UUID

2010-12-20 Thread Mike Chabot

Generally, unless you have a specific need to use UUIDs/GUIDs, such as in
replication scenarios, integers are the better choice. Kimberly Tripp has a
great presentation on this subject if you ever get a chance to take one of
her classes. She spends an hour detailing all the ways the use of GUIDs
negatively impact database performance.

If using UUIDs, let SQL Server generate the values for you. SQL Server has a
NEWSEQUENTIALID function that generates GUIDs in incrementing order, which
can significantly reduce the fragmentation in the database. The use of this
SQL Server 2005 feature can have a significant impact on the speed of large
databases, although integers will always be faster.

You could use both, having an integer as the main clustered PK, while
maintaining a GUID as an alternate primary key, with a non-clustered index,
in case you want to use that to look up a record.

Kimberly Tripp is an authority on this subject and has lot of information on
her Web site and in the PowerPoint slides from her classes. Her PowerPoint
slides might not be on her public Web site.

-Mike Chabot
http://www.linkedin.com/in/chabot

On Mon, Dec 20, 2010 at 12:34 PM, Brian Polackoff wrote:

>
> So, anyone have any thoughts on which are better... Using CF8 Ent, SQL 2k5
> Ent and an enterprise application with millions of rows in the table?
>
> Thanks for all your feedback,
>
> Brian
>


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340178
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Leading space added with CF9.0.1

2010-12-20 Thread Andrew Scott

Just a quick not as this is not a solution.



Doesn't need the hashes in anyway shape or form.



Is the correct way to do it.

Regards,
Andrew Scott
http://www.andyscott.id.au/





> -Original Message-
> From: Debbie Morris [mailto:deb_mor...@comcast.net]
> Sent: Tuesday, 21 December 2010 4:09 AM
> To: cf-talk
> Subject: Leading space added with CF9.0.1
> 
> 
> I'm in the process of building a new CF9.0.1 server to replace our existing
> 7.0.2 production server. I'm confused about the behavior I'm seeing when
> testing one section of the site.
> 
> There is a link that is generated to point to a PDF of a map. On the new
> server, the link is incorrectly generated with a space preceding the map
> number (11.00).
> /dept/assessment/mapping/pdfs/330/Map_330- 11.00.pdf
> 
> Original code to generate the link:
>  name="propinfo"> …  href="/dept/assessment/mapping/pdfs/#session.district#/Map_#session.di
> strict#-#propinfo.mapFormat(session.map)#.pdf"
> onclick="window.open(this.href); return false;">Map of Property
> 
> The mapFormat code from propInfo.cfc:
> 
>
>   
>  
>   
>  
>   
>
> 
> 
> 
> If I output the session.map value prior to the link, it shows "1100", which is
> correct. If I check the length of the variable, it says there are 4 
> characters.
> 
> If I change the code to apply the MapFormat function to the string prior to
> including it in the link, it works fine (no leading space in front of 11.00):
> 
>  href="/dept/assessment/mapping/pdfs/#session.district#/Map_#session.di
> strict#-#mapID#.pdf" onclick="window.open(this.href); return false;">Map
> of Property
> 
> I'm sure I'm overlooking something silly, but after looking at this for so 
> long,
> I'm still clueless. Why would the code work correctly on 7.0.2 but not 9.0.1?
> The code is exactly the same (FTP’d from production to test server). 
> The
> only thing that should be different (and potentially the problem) would be a
> more recent version of the JTOpen driver I have on the new server.
> 
> FWIW, the MapFormat function is used in several other places within this
> section of the site, but none of them have this issue.
> 
> ~~
> ~~~|
> Order the Adobe Coldfusion Anthology now!
> http://www.amazon.com/Adobe-Coldfusion-
> Anthology/dp/1430272155/?tag=houseoffusion
> Archive: http://www.houseoffusion.com/groups/cf-
> talk/message.cfm/messageid:340154
> Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
> Unsubscribe: http://www.houseoffusion.com/groups/cf-
> talk/unsubscribe.cfm


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340177
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: PDF printing issues

2010-12-20 Thread Mark A. Kruger

Tim,

There are many tips and tricks to optimizing your pdf generation. Most of
them boil down to removing or streamlining the external resources needed.
So, for example, if you use an exteneral CSS file, cfdocument has to...

-Resolve the URL to the css file
-"get" the CSS file via cfhttp 
-"render" the css into whatever is needed for pdf formatting using the
rendering engine
-Include the info in-line in the file.

Multiply that times all images and external resources needed to produce the
single file (unlike HTML everything must be "in" the file). If your PDF
takes, say 25 images - that is 25 CF Threads to call those images etc.

There are some ways around it and my blog has a lot of great documentation
on this subject.

http://www.coldfusionmuse.com

Do a search for "cfdocument" and you'll get 4 or 5 articles and some
tangential ones as well.

-Mark

Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
Skype: markakruger
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com



-Original Message-
From: Tim Do [mailto:t...@wng.com] 
Sent: Monday, December 20, 2010 2:05 PM
To: cf-talk
Subject: PDF printing issues


We're having a bit (HUGE) of a problem printing PDFs created by using
cfdocument.  We just updated our PDF generator to us CF instead of html2pdf.
We are having many users complain that it takes 20-30 minutes to print out
PDFs (20-25pgs).  The file size itself is about 1mb so file size isn't the
problem, although I did notice that the file size balloons up when in the
queue, but I read its normal since PDF is compressed.  It works on certain
printers but not others, same make/model printers as well.  We tried
updating printer drivers on them but it would work on some but not all.
Some of the printers are relatively new with newer drivers.

So my question is.. is this a printer driver issue or is this an issue w/
how the PDFs are generated??  Anybody else having problems printer larger
PDFs generated with cfdocument/cfpdf?

Thanks,
Tim






~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340176
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Leading space added with CF9.0.1

2010-12-20 Thread Debbie Morris

Thanks for all the help, Matt!

I'll have to take a look around to see where all of these functions are being 
used. Quite a few of them seem to be set to "remote"...


-Original Message-
From: Matt Quackenbush [mailto:quackfu...@gmail.com] 
Sent: Monday, December 20, 2010 2:34 PM
To: cf-talk
Subject: Re: Leading space added with CF9.0.1


Oh, as an aside, I noticed that you have access="remote" set on your
MapFormat function.  Unless you are directly exposing that CFC and method to
a web service or are hitting it directly via URL (e.g.
http://yoursite.com/your.cfc?method=MapFormat), you will want to set that to
"public" instead.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340175
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


PDF printing issues

2010-12-20 Thread Tim Do

We're having a bit (HUGE) of a problem printing PDFs created by using 
cfdocument.  We just updated our PDF generator to us CF instead of html2pdf.  
We are having many users complain that it takes 20-30 minutes to print out PDFs 
(20-25pgs).  The file size itself is about 1mb so file size isn't the problem, 
although I did notice that the file size balloons up when in the queue, but I 
read its normal since PDF is compressed.  It works on certain printers but not 
others, same make/model printers as well.  We tried updating printer drivers on 
them but it would work on some but not all.  Some of the printers are 
relatively new with newer drivers.

So my question is.. is this a printer driver issue or is this an issue w/ how 
the PDFs are generated??  Anybody else having problems printer larger PDFs 
generated with cfdocument/cfpdf?

Thanks,
Tim




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340174
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Russ Michaels

Which is exactly what I am trying to do here
http://www.cfmldeveloper.com/page.cfm/coldfusion-vs-railo-1, sadly I am not
getting much input from others so I am only able to update it base don my
own experiences, but as I migrate apps between Cf/Railo I do take note of
things I have to fix and I document them.

You will also find plenty of info/help on the Railo discussion list on this
topic as well as the WIKI. I expect you can also ask such questions on this
list also.



Russ
-Original Message-
From: Claude Schnéegans 
[mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans >When it comes to CFML programming the docs for Railo
is pretty much the same as ColdFusion.

"Pretty much", until you find something that works under CF and does not
under Railo.
Most of the time, it is only a detail, but it can cost you hours.

The least would be some good docs about what's in CF and is not in Railo,
and vice versa.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Leading space added with CF9.0.1

2010-12-20 Thread Matt Quackenbush

Oh, as an aside, I noticed that you have access="remote" set on your
MapFormat function.  Unless you are directly exposing that CFC and method to
a web service or are hitting it directly via URL (e.g.
http://yoursite.com/your.cfc?method=MapFormat), you will want to set that to
"public" instead.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340172
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Leading space added with CF9.0.1

2010-12-20 Thread Matt Quackenbush

As a general rule, you will always want output="false" on your tag-based
functions.  Pretty much the only exception to that is if you are truly
wanting to output from within that function.




#foo#


The issue is that CF generates whitespace in its processing of tags.  So, to
keep that from potentially popping up in your code, form the habit of always
setting output="false" (it defaults to true).  Then, on the rare occasion
that you need to output, simply change it for that particular function.

HTH


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340171
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto Incrementing Seed vs CF UUID

2010-12-20 Thread Phillip Vector

Of course I check the values and such when I need to. But for
something like a "I forgot my password" system, I'd rather give them a
"key" of a UUID then an integer.

On Mon, Dec 20, 2010 at 10:44 AM, Dave Watts  wrote:
>
>> If you are using it as an ID, I go with UUID. Makes it a little harder
>> to put into the URL to look up things they shouldn't.
>
> If your applications allow people to substitute values and see things
> they shouldn't see, you have bigger problems than integers vs UUIDs.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> http://training.figleaf.com/
>
> Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
> GSA Schedule, and provides the highest caliber vendor-authorized
> instruction at our training centers, online, or onsite.
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340170
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Leading space added with CF9.0.1

2010-12-20 Thread Debbie Morris

That actually does take care of the space issue. Thanks!

So what exactly does that attribute do? I read the docs but I'm still not clear.

I checked the other pages that use the MapFormat function and they all still 
seem to function correctly, so it seems I should be safe leaving it set to 
false?


-Original Message-
From: Matt Quackenbush [mailto:quackfu...@gmail.com] 
Sent: Monday, December 20, 2010 1:52 PM
To: cf-talk
Subject: Re: Leading space added with CF9.0.1


Since you say the extra whitespace disappears if you assign a variable
first, I don't think this is the solution to your problem, but for kicks and
grins, try setting output="false" on your MapFormat .


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340169
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Leading space added with CF9.0.1

2010-12-20 Thread Matt Quackenbush

Since you say the extra whitespace disappears if you assign a variable
first, I don't think this is the solution to your problem, but for kicks and
grins, try setting output="false" on your MapFormat .


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340168
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Exporting a Spreadsheet file

2010-12-20 Thread Rick Colman

This worked! TNX.

On 12/20/2010 10:46 AM, Ian Skinner wrote:
>On 12/20/2010 10:41 AM, Rick Colman wrote:
>> This works fine in IE, etc. :
>>
>> > value="buylist_job_#session.projectid#.xls">
> This is the way I usually see and use that tag.
>
> 
>
> NOTE the *filename=* part of the value parameter.
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340167
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Exporting a Spreadsheet file

2010-12-20 Thread Ian Skinner

  On 12/20/2010 10:41 AM, Rick Colman wrote:
> This works fine in IE, etc. :
>
>  value="buylist_job_#session.projectid#.xls">

This is the way I usually see and use that tag.



NOTE the *filename=* part of the value parameter.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340166
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto Incrementing Seed vs CF UUID

2010-12-20 Thread Dave Watts

> If you are using it as an ID, I go with UUID. Makes it a little harder
> to put into the URL to look up things they shouldn't.

If your applications allow people to substitute values and see things
they shouldn't see, you have bigger problems than integers vs UUIDs.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340165
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Exporting a Spreadsheet file

2010-12-20 Thread Rick Colman

This works fine in IE, etc. :



However, in Google Chrome, it writes a file with a .CFM extension 
instead of a .XLS extension,
causing problems for users.

Anyone else seen this problem? Is the a CF workaround?

Rick.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340164
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto Incrementing Seed vs CF UUID

2010-12-20 Thread Dave Watts

> So, anyone have any thoughts on which are better... Using CF8 Ent, SQL 2k5
> Ent and an enterprise application with millions of rows in the table?

Do you plan to use these records anywhere other than this database
server (replication, migration)? If so, use a UUID. But you might want
to let the database generate the UUID for you.

If none of these conditions apply, you're probably better off using an
identity column with an integer data type.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340163
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto Incrementing Seed vs CF UUID

2010-12-20 Thread Jason Fisher

Using UIDs makes it much easier to move data between servers or databases 
or even tables later, too, if you ever need to.  For instance, moving 
records from production down to staging, when there's been testing going on 
in staging ... may have 100 records with IDs between 105 and 204 in each 
database, and all the related child records are keyed off of them etc ... 
makes it very easy to move everything around when using UIDs.  In general, 
I just find the fact that the ID really is unique to *that* record very 
useful.



From: "Phillip Vector" 
Sent: Monday, December 20, 2010 12:58 PM
To: "cf-talk" 
Subject: Re: Auto Incrementing Seed vs CF UUID

If you are using it as an ID, I go with UUID. Makes it a little harder
to put into the URL to look up things they shouldn't.

On Mon, Dec 20, 2010 at 9:34 AM, Brian Polackoff  
wrote:
>
> So, anyone have any thoughts on which are better... Using CF8 Ent, SQL 
2k5
> Ent and an enterprise application with millions of rows in the table?
>
> Thanks for all your feedback,
>
> Brian
>
>
>
> 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340162
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto Incrementing Seed vs CF UUID

2010-12-20 Thread Phillip Vector

If you are using it as an ID, I go with UUID. Makes it a little harder
to put into the URL to look up things they shouldn't.

On Mon, Dec 20, 2010 at 9:34 AM, Brian Polackoff  wrote:
>
> So, anyone have any thoughts on which are better... Using CF8 Ent, SQL 2k5
> Ent and an enterprise application with millions of rows in the table?
>
> Thanks for all your feedback,
>
> Brian
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340161
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Auto Incrementing Seed vs CF UUID

2010-12-20 Thread John M Bliss

Auto Incrementing Seed - bigint (max 9,223,372,036,854,775,807 rows) or int
(max 2,147,483,647 rows)
CF UUID (max functionally infinite rows)

...so choose the smallest one of those that is large enough to be
future-proof for your table.

NOTE: when I use UUID, I don't use CF UUID.  Instead, I use SQL
Server's newid() which *should* almost always be faster.


On Mon, Dec 20, 2010 at 11:34 AM, Brian Polackoff wrote:

>
> So, anyone have any thoughts on which are better... Using CF8 Ent, SQL 2k5
> Ent and an enterprise application with millions of rows in the table?
>
> Thanks for all your feedback,
>
> Brian
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340160
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Sean Corfield

On Mon, Dec 20, 2010 at 7:20 AM,  <> wrote:

In Gmail, this post seems to be from an anonymous user...

> I hate those open source or free stuff.

...so I visited the HoF site and I see it's Claude Schneegans, in
which case the negativity makes perfect sense.

> The more undocumented free gadgets on the market, the more trouble for us 
> developers.

Yeah, down with choice. Choice bad :)

Yup, the Railo documentation could do with some improvement. Lots of
people are working on it and folks will see a big improvement soon
when the 3.2 release goes gold with a lot of new documentation - and
it should just keep getting better. Just bear in mind most of the
documentation is created by volunteers, fitting it in around their day
jobs. 3.2 will also see the Vivio installers become the official Railo
installers so folks who like simple "click-click-done" installers
should be happy (as an old hand *nix guy, I still think GUIs and
wizards are over-rated but what does this old fart know, eh? :)
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

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

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340159
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Auto Incrementing Seed vs CF UUID

2010-12-20 Thread Brian Polackoff

So, anyone have any thoughts on which are better... Using CF8 Ent, SQL 2k5
Ent and an enterprise application with millions of rows in the table?

Thanks for all your feedback,

Brian



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340158
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread James Holmes

http://www.getrailo.org/index.cfm/documentation/compatibility/cfml-compatibility/

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 21 December 2010 01:20,  <> wrote:
>
> The least would be some good docs about what's in CF and is not in Railo, and 
> vice versa.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340157
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread David McGraw

There are docs on the Railo site which details exactly what is and isn't
supported across the different platforms.

I use Railo, I find is a great alternative for most of my clients. - Then
again, we develop in multiple languages, so to me, it's just another
language to know the difference in syntax, like going form PHP to CF.

Regards,
David McGraw
Oyova Software, LLC

On Mon, Dec 20, 2010 at 12:20 PM, <> wrote:

>
>  >>When it comes to CFML programming the docs for Railo
> is pretty much the same as ColdFusion.
>
> "Pretty much", until you find something that works under CF and does not
> under Railo.
> Most of the time, it is only a detail, but it can cost you hours.
>
> The least would be some good docs about what's in CF and is not in Railo,
> and vice versa.
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340156
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Claude Schnéegans

 >>When it comes to CFML programming the docs for Railo
is pretty much the same as ColdFusion.

"Pretty much", until you find something that works under CF and does not under 
Railo.
Most of the time, it is only a detail, but it can cost you hours.

The least would be some good docs about what's in CF and is not in Railo, and 
vice versa.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340155
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Leading space added with CF9.0.1

2010-12-20 Thread Debbie Morris

I'm in the process of building a new CF9.0.1 server to replace our existing 
7.0.2 production server. I'm confused about the behavior I'm seeing when 
testing one section of the site.

There is a link that is generated to point to a PDF of a map. On the new 
server, the link is incorrectly generated with a space preceding the map number 
(11.00).
/dept/assessment/mapping/pdfs/330/Map_330- 11.00.pdf

Original code to generate the link:

…
Map of Property

The mapFormat code from propInfo.cfc:

   

   

   

   



If I output the session.map value prior to the link, it shows "1100", which is 
correct. If I check the length of the variable, it says there are 4 characters.

If I change the code to apply the MapFormat function to the string prior to 
including it in the link, it works fine (no leading space in front of 11.00):

Map of Property

I'm sure I'm overlooking something silly, but after looking at this for so 
long, I'm still clueless. Why would the code work correctly on 7.0.2 but not 
9.0.1? The code is exactly the same (FTP’d from production to test server). 
The only thing that should be different (and potentially the problem) would be 
a more recent version of the JTOpen driver I have on the new server. 

FWIW, the MapFormat function is used in several other places within this 
section of the site, but none of them have this issue.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Russ Michaels

Documentation for Railo is indeed poor, but they are aware and they are
working on it, it has been improving slowly and there is now a good
installer as well. But remember this is really only with regards with
installing and setup. When it comes to CFML programming the docs for Railo
is pretty much the same as ColdFusion.
This is however the main reason why I created www.cfmldeveloepr.com, so
people can try out and use ColdFusion and Railo the easy way, without having
to install or setup anything.

But it is horses for courses, if you want a commercial product with tons of
good docs then stick with CF, Railo is really aimed at a different market,
those who like open source and have the Java technical skills and knowledge
to use Tomcat or other Java sevlet containers or are willing to learn love
it, or those who simply don't have the money for CF or simply don't want to
pay for it and would go that extra mile for a free solution are giving it a
try.
Sadly the CF community has shown itself to be full of nasty vindictive,
abusive trolls who have nothing better to do than flame Railo and anyone who
uses it. Which is totally pointless and only serves to make them and the
ColdFusion community at large look pathetic and has already started to
divide the community which is a shame.
If you like open source then use it, if you don't then don't use it,
simples, but please don't try and paint it all with the same brush, some
open source products have amazing docs, better than many commercial
products. Even within the CF world take a look at the ColdBox framework,
incredible documentation.



Russ
-Original Message-
From: Claude Schnéegans 
[mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340153
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Matthew Lesko

> I tried to give a test to Railo some months ago.
> The lack of documentation made me give up after a few days.
> I finally upgraded to CF 9.
> Documentation is the most important thing for developers.
> For the same reason, I hate Mozilla.
> It may be many times better than Explorer, but their documentation is 
> a joke.
> Same for Railo.
> I hate those open source or free stuff.
> And when you complain about it, you usually get some answer like "Why 
> don't you contribute?"
> I use them not because I like them and I want to contribute, but 
> because some visitors use them and I need to have my product 
> compatible.
> 

This a ranting flame. That's why I'm doing this on stackoverflow, at least it 
has features to highlight useful answers and remove the inane. 
> The more undocumented free gadgets on the market, the more trouble for 
> us developers.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340152
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Matthew Lesko

> you may also find this comparison helpful.
> 
> http://www.cfmldeveloper.com/page.cfm/coldfusion-vs-railo-1
> 
> Russ
> 
> On Mon, Dec 20, 2010 at 11:26 AM, Matthew Lesko  
> wrote:
> 
Thanks I've added this to an answer on the site. Comments are just as 
interesting as the actual comparison. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340151
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Claude Schnéegans

 >>Open source, or free, does not automatically equal crappy documentation.

At least for the two examples I gave, YES!

 >>And what kind of docs are you looking for in your browser?

Mostly Javascript and CSS.
As far as HTML is concerned, there are not really differences.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Raymond Camden

Wow, this is incredible. You hate open source and free stuff?
Really? I've used plenty of commercial software with crappy
documentation. Open source, or free, does not automatically equal
crappy documentation. And what kind of docs are you looking for in
your browser?



On Mon, Dec 20, 2010 at 9:20 AM,  <> wrote:
>
> I tried to give a test to Railo some months ago.
> The lack of documentation made me give up after a few days.
> I finally upgraded to CF 9.
> Documentation is the most important thing for developers.
> For the same reason, I hate Mozilla.
> It may be many times better than Explorer, but their documentation is a joke.
> Same for Railo.
> I hate those open source or free stuff.
> And when you complain about it, you usually get some answer like "Why don't 
> you contribute?"
> I use them not because I like them and I want to contribute, but because some 
> visitors use them and I need to have my product compatible.
>
> The more undocumented free gadgets on the market, the more trouble for us 
> developers.




-- 
===
Raymond Camden, ColdFusion Jedi Master

Email    : r...@camdenfamily.com
Blog      : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with the community: http://www.coldfusionblogger

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: JRun 404 without index.cfm (Win2008 R2 / CF9)

2010-12-20 Thread Jeff Chastain

>Did you add index.cfm to the 'list' of default files in IIS?
>

Not quite that obvious Scott ;-)  Yeah, IIS has the index.cfm setup as the 
first default document and the 404 page I am getting is not the IIS page, thus 
my assumption that it is the JRun 404.  The layout is very basic, dark grey 
shades, etc. rather than the bright blue of IIS 7. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340148
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Claude Schnéegans

I tried to give a test to Railo some months ago.
The lack of documentation made me give up after a few days.
I finally upgraded to CF 9.
Documentation is the most important thing for developers.
For the same reason, I hate Mozilla.
It may be many times better than Explorer, but their documentation is a joke.
Same for Railo.
I hate those open source or free stuff.
And when you complain about it, you usually get some answer like "Why don't you 
contribute?"
I use them not because I like them and I want to contribute, but because some 
visitors use them and I need to have my product compatible.

The more undocumented free gadgets on the market, the more trouble for us 
developers.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340147
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: JRun 404 without index.cfm (Win2008 R2 / CF9)

2010-12-20 Thread Scott Stroz

Did you add index.cfm to the 'list' of default files in IIS?

On Mon, Dec 20, 2010 at 9:59 AM, Jeff Chastain
 wrote:
>
> I could use some help pointing out the obvious here.  I have a Win2008 R2 
> server that I have been working through the Adobe CF9 lock down guide on and 
> have setup ColdFusion in multi-server mode.
>
> For some reason, I cannot browse the CF admin or web sites without appending 
> /index.cfm to the url.  If I go to 
> https://127.0.0.1/CFIDE/administrator/index.cfm, everything works.  If I go 
> to https://127.0.0.1/CFIDE/administrator/, I get a JRun 404 error (not an IIS 
> 404).
>
> I have checked the web.xml file and the default index.cfm document is listed 
> there.  What am I missing here?
>
> Thanks
> -- Jeff
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340146
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


JRun 404 without index.cfm (Win2008 R2 / CF9)

2010-12-20 Thread Jeff Chastain

I could use some help pointing out the obvious here.  I have a Win2008 R2 
server that I have been working through the Adobe CF9 lock down guide on and 
have setup ColdFusion in multi-server mode.

For some reason, I cannot browse the CF admin or web sites without appending 
/index.cfm to the url.  If I go to 
https://127.0.0.1/CFIDE/administrator/index.cfm, everything works.  If I go to 
https://127.0.0.1/CFIDE/administrator/, I get a JRun 404 error (not an IIS 404).

I have checked the web.xml file and the default index.cfm document is listed 
there.  What am I missing here?

Thanks
-- Jeff 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340145
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: wrong serial for CF9 upgrade

2010-12-20 Thread cf-talk

Hi Dave, excellent idea !
That worked. Thanks !!

Uwe


>> With Windows, when I am tiping in the new CF9-serial,
>> the installation asks me for the old CF8/CFMX7 key and all
>> works fine. Under Linux this question doesn't show up.

> I believe that the license information is stored in a file called
> license.properties. You might be able to take your CF 9 license from
> your Windows machine, stop CF 9 on the Linux machine, back up your
> existing license.properties, and drop in the Windows file and restart
> CF 9 on Linux.

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

> Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
> GSA Schedule, and provides the highest caliber vendor-authorized
> instruction at our training centers, online, or onsite.

> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Russ Michaels

you may also find this comparison helpful.

http://www.cfmldeveloper.com/page.cfm/coldfusion-vs-railo-1

Russ

On Mon, Dec 20, 2010 at 11:26 AM, Matthew Lesko  wrote:

>
>
> http://stackoverflow.com/questions/4480205/what-notable-differences-are-there-between-railo-open-bluedragon-and-adobe-cold
>
> Posting here to in hopes list readers will post new, useful answers.
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340143
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


What Notable Differences are there between Railo, Open Bluedragon, and Adobe Coldfusion? [Stackoverflow.com]

2010-12-20 Thread Matthew Lesko

http://stackoverflow.com/questions/4480205/what-notable-differences-are-there-between-railo-open-bluedragon-and-adobe-cold

Posting here to in hopes list readers will post new, useful answers. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340142
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Merry Christmas cf-talk@houseoffusion.com

2010-12-20 Thread Blizzm

Hi cf-talk@houseoffusion.com have you got all your Christmas presents? Do you 
need Christmas money this Holiday season? Working from home has never been 
easier! http://bit.ly/hDg3R8


  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340141
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm