CFHEADER

2007-11-19 Thread Naveen Krishnamurthy
Hi,

I am using the following code to open / download text files

cfheader name=Content-Length value=FILEFIZE
cfheader name=Content-Type value=application/octet-stream
cfheader name=Content-Disposition value=attachment;filename=FILENAME
cfheader name=Content-Location value=#URLEncodedFormat(FILENAME)#
cfcontent type=application/octet-stream file=#ExpandPath(FILENAME)#

But the file name in the open dialog box is always status.txt in IE6.

It works fine in IE7 and FIREFOX.

Please Help.

Naveen 

~|
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:293574
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Converting simple Java code to CF

2007-11-19 Thread Jide Aliu
 ie. without the must not be abstract or interface part.  Or perhaps 
 I'm confusing it with a legitimate must not be abstract ... 
 exception ;-)

Hi guys, you were right Janet, FileInputStream is concrete. The reason why it 
was throwing the error is because the File I was accessing had null slides. 
Your first suggestion below was spot on. 

!--- Create the objects and initialize ---
cfset fis = CreateObject(java, java.io.FileInputStream)
cfset pres1 = CreateObject(java, com.aspose.slides.Presentation).init(   
 fis.init(c:\test\destination.ppt)) 
cfset pres2 = CreateObject(java, com.aspose.slides.Presentation).init( 
 fis.init(c:\test\destination.ppt)) 
cfset Slide = pres1.getSlideByPosition(javacast(int, 5))

It was definitely a dab in the dark.




~|
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:293575
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Verity, does it work?

2007-11-19 Thread Matt Barfoot
Hello Jonathan,
I had a problem with Verity and a certain set of PDFs on MX7. I've
experimented hard, but with no resolution. I lot of people who use Mac's and
cf favour apache lucene. There are quite a few examples out of using cf with
lucene.  I downloaded them code and followed the getting started and it's
all pretty transparent and works well. I intend to compare the CF8
implementation alongside Lucene to under the complexity and likely results
for my application. Hopefully I will do this soon. Not sure how much help
this is to you, but you might want to give lucene a go.

My approach to scheduled jobs would be have the job write a log file. I do
this and write out execution times, records counts etc and then use cfmail
to mail me the result. If anything fails I can then pin-point exactly where
the failure occurred. Quite often I might find I have to alter timeout
settings in CFADMIN to stop scripts from abandoning. Bear in mind that the
process of logging may add significantly to execution times depending on how
much you log.

Thanks,
Matt



-Original Message-
From: Jonathan Gingerich [mailto:[EMAIL PROTECTED] 
Sent: 17 November 2007 01:09
To: CF-Talk
Subject: Re: Verity, does it work?

Thanks for the pointer about the STATUS attribute.  A little googling and I
find out it's described on a ColdFusion 8 man page, and says it was
introducted in MX 7.  So far so good.  Hopefully it will make things a
little less opaque.

I am aware of the table of formats Verity is said to read.  I'm wondering if
it is up to date (than say the cfindex man page;-)

I take a collection and index it using the Administrator against a single
directory with two .html files and a .doc file.  No matter how I play around
with the extensions, I either get the 2 .html files indexed, or none of
them.  The .doc file is from 2000 and I believe it is Word 95, so it should
work, although I suppose there could be some reformatting or something along
the line...

As for the scheduled jobs, they are within a mail tag that works fine if I
dummy the cfindex calls.  From some other threads here I suspect our
collections are simply too large.  I saw 10,000 being passed around as a
limit.

JG 



~|
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:293576
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Session expiration time?

2007-11-19 Thread George Linderman
Hey guys,


I've developed a web application that uses application.cfc for authentication. 
The code is really just what is in the CF8 Dev Guide...and there's no code that 
says how long until the session expxires. How do I increase the session 
expiration time? I mean, my users get logged out in about 20 minutes or 
so...when I'd like it to be 5 hours. How do I change this in the 
application.cfc?


Thanks,
George C. Linderman 

~|
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:293577
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Session expiration time?

2007-11-19 Thread Dominic Watson
Check out this page in the CFMX 7 docs:

http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0692.htm

The variables you need to set in application.cfc are:

cfset sessionManagement = true
cfset sessionTimeout = CreateTimeSpan(0,5,0,0) !--- this will set it to 5
hours ---

Dominic

On 19/11/2007, George Linderman [EMAIL PROTECTED] wrote:

 Hey guys,


 I've developed a web application that uses application.cfc for
 authentication. The code is really just what is in the CF8 Dev Guide...and
 there's no code that says how long until the session expxires. How do I
 increase the session expiration time? I mean, my users get logged out in
 about 20 minutes or so...when I'd like it to be 5 hours. How do I change
 this in the application.cfc?


 Thanks,
 George C. Linderman

 

~|
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:293578
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problems with submit

2007-11-19 Thread Paul Smith
Thanks Rick,

That info is really appreciated, I will check it out.

Regards

Paul


Hi, Paul...

I'm not a Javascript person either, but jQuery, of
www.jQuery.com makes Javascript functionality accessible
to those of us who are JS Challenged.

There's a plug-in for just what you're trying to do...blockUI.
Check it out here:  http://jquery.com/plugins/project/blockUI
There's documentation, demos, etc.

There's a great support list, too, [EMAIL PROTECTED],
that will help you every step of the way.

Check it out... I don't work for jQuery...actually no one does...
it's all volunteers and the jQuery is free to all.

Rick



 

~|
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:293579
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Mik Muller
Been using Viux for a while. Top-end VPS is a pretty good deal at 125 + 20 
before add-ons.

http://hosting.viux.com/services/virtual/virtual-extreme-windows.asp

Dedicated starts at 245 + 20.

Mik


At 10:34 PM 11/18/2007, John Blayter wrote:
I am looking for a good VPS or Dedicated CF host. My budget is about $200 a 
month max. I have been having some serious issues with AHP hosting and I need 
to switch while I still can.

Thanks for the recommendations!

- John 



Michael Muller
Admin, MontagueMA.net Website
work (413) 863-0030
cell (413) 320-5336
skype: michaelBmuller
http://www.MontagueMA.net

Eschew Obfuscation




~|
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:293580
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Verity, does it work?

2007-11-19 Thread Raymond Camden
As just a side note, and forgive me for tooting my own horn, but if
you are interested in using Lucene with CF, you may want to check out
my Seeker project. It is a CF/Lucene implementation.

http://seeker.riaforge.org.


On Nov 19, 2007 5:27 AM, Matt Barfoot [EMAIL PROTECTED] wrote:
 Hello Jonathan,
 I had a problem with Verity and a certain set of PDFs on MX7. I've
 experimented hard, but with no resolution. I lot of people who use Mac's and
 cf favour apache lucene. There are quite a few examples out of using cf with
 lucene.  I downloaded them code and followed the getting started and it's
 all pretty transparent and works well. I intend to compare the CF8
 implementation alongside Lucene to under the complexity and likely results
 for my application. Hopefully I will do this soon. Not sure how much help
 this is to you, but you might want to give lucene a go.



-- 
===
Raymond Camden, Camden Media

Email: [EMAIL PROTECTED]
Blog  : www.coldfusionjedi.com
AOL IM : cfjedimaster

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

~|
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:293581
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Will Tomlinson
I'm a 4 yr CrystalTech customer, but I've become disappointed with them over 
the last year or so. I get some of the most entertaining responses from their 
support.  I'd rather just ask James, Jim, or some of the other bright folks on 
the list, because I sure can't rely on CT. 

I needed something more stable for some projects. The disruptor talked me into 
hostmysite's VPS. I can honestly say these people have totally blown me away. I 
had forgotten what it's like to have good support. If you have a problem, 
shoot'em an email, and more than likely you'll get a quick response/solution. 

I've even had some problems configuring software I installed on the VPS. HMS 
Support logged in and made the changes for me. Completely above and beyond the 
call of duty. 
If I had emailed CT, I would've gotten, What is MySQL?

This is makin' me gag to type it, but thanks to dave for the VPS 
recommendation. 

Will 

~|
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:293582
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Globalization Question

2007-11-19 Thread Rich
 (1) would the process of managing translations for a db be
 that much different than managing translations for resource bundle
 properties files?  

I think the main difference during translation would be in what you provide
the translator.  Utilizing text based resource bundles you can provide two
files, one the local version and the other the English version.  The
translator will translate directly into the new RB and return that to you.
Utilizing a DB backed RB you have to either develop a UI for the RB editing,
or export from the DB to a text file to send to the translator.


(2) I'm certainly not trying to re-invent the wheel,

IMO there are a few key reasons to use text based RB's.  

First, using the tools to manipulate RBs make it easy to switch between
bundles which would have to be custom developed with your solution (e.g.
your 'locale' column that would have to be inserted into every table that
contained rb's).  

A second reason (IMO) is the dependency that is needlessly created between
the code and the DB server.

Rich Kroll


~|
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:293583
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread John Blayter
Here are some of the issues that I have had with AHP.

1. The base server that I was on crashed over the weekend and I think that our 
total downtime was 20+ hours before we were successfully moved to another 
server.

2. AHP does the windows updates every weekend so you can count on a random 
restart on Saturday or Sunday. Most places do the Windows update once a month.

3. A few months ago a Windows Update caused our VPS to go up and down like a 
yo-yo and it took a couple days before they could get it straightened out.

4. From what I can tell... its just one person @ AHP and thats it... Our 
projects are starting to get to the size that I need a true hosting company 
with technical staff on location 24x7. 

5. They are in a good data center but I have had a couple of times where for 
some reason my request would die somewhere in their network before it got to my 
VPS. I ended up having to email the trace rt to the data center to have them 
fix it.

HTH,

John

 I am looking for a good VPS or Dedicated CF host. My budget is about
 $200 a month max. I have been having some serious issues with AHP
 hosting and I need to switch while I still can.

CrystalTech.com has some amazing dedicated server packages for half that.
Lots of free (and quality) software and extras.

I've been using a dedicated server from them (an older, $89/month server)
for several years and have nothing but good things to say about them.

Jim Davis 

~|
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:293584
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Yves Arsenault
I've been a Viviotech VPS and Dedicated server customer for some time now.

I have no complaints.

Yves

On Nov 18, 2007 11:34 PM, John Blayter [EMAIL PROTECTED] wrote:

 I am looking for a good VPS or Dedicated CF host. My budget is about $200
 a month max. I have been having some serious issues with AHP hosting and I
 need to switch while I still can.

 Thanks for the recommendations!

 - John

 

~|
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:293585
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Referencing Components

2007-11-19 Thread Richard White
create a cf mapping to the folder where your cfc is, same mapping name 
on local and remote servers, pointing to appropriate folders (these may 
even be different).


Hi Azadi, thanks ill look into this

best wishes

richard 

~|
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:293586
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFHEADER

2007-11-19 Thread Claude Schneegans
 cfheader name=Content-Disposition 
value=attachment;filename=FILENAME

Shouldn't be filename=#FILENAME# ?

Surprising it works with Firefox and IE 7.

-- 
___
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:293587
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Session expiration time?

2007-11-19 Thread Brian Kotek
Note that you can't set this to a higher value than the value defined in the
CF Administrator. Well, you can set it to a higher value in
Application.cfm/Application.cfc,
but it will be ignored.

On Nov 19, 2007 7:50 AM, Dominic Watson [EMAIL PROTECTED]
wrote:

 Check out this page in the CFMX 7 docs:


 http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0692.htm

 The variables you need to set in application.cfc are:

 cfset sessionManagement = true
 cfset sessionTimeout = CreateTimeSpan(0,5,0,0) !--- this will set it to
 5
 hours ---

 Dominic

 On 19/11/2007, George Linderman [EMAIL PROTECTED] wrote:
 
  Hey guys,
 
 
  I've developed a web application that uses application.cfc for
  authentication. The code is really just what is in the CF8 Dev
 Guide...and
  there's no code that says how long until the session expxires. How do I
  increase the session expiration time? I mean, my users get logged out in
  about 20 minutes or so...when I'd like it to be 5 hours. How do I change
  this in the application.cfc?
 
 
  Thanks,
  George C. Linderman
 
 

 

~|
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:293588
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Verity, does it work?

2007-11-19 Thread Matt Barfoot
Nice work Ray! I will have a play and see how the ddx pdf reading works. For
MX7 I might see if I can wrap up the PDFBox classes and extend the pdf.cfc .
For CF8 though this makes it a snap to use Lucene.  Don't know how you have
time do all this apache 2 licensed stuff, but much appreciated. 
Thx
Matt


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: 19 November 2007 14:06
To: CF-Talk
Subject: Re: Verity, does it work?

As just a side note, and forgive me for tooting my own horn, but if
you are interested in using Lucene with CF, you may want to check out
my Seeker project. It is a CF/Lucene implementation.

http://seeker.riaforge.org.


On Nov 19, 2007 5:27 AM, Matt Barfoot [EMAIL PROTECTED] wrote:
 Hello Jonathan,
 I had a problem with Verity and a certain set of PDFs on MX7. I've
 experimented hard, but with no resolution. I lot of people who use Mac's
and
 cf favour apache lucene. There are quite a few examples out of using cf
with
 lucene.  I downloaded them code and followed the getting started and it's
 all pretty transparent and works well. I intend to compare the CF8
 implementation alongside Lucene to under the complexity and likely results
 for my application. Hopefully I will do this soon. Not sure how much help
 this is to you, but you might want to give lucene a go.



-- 
===
Raymond Camden, Camden Media

Email: [EMAIL PROTECTED]
Blog  : www.coldfusionjedi.com
AOL IM : cfjedimaster

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



~|
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:293589
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: VPS or Dedicated CF Hosts

2007-11-19 Thread Jim Davis
 -Original Message-
 From: Will Tomlinson [mailto:[EMAIL PROTECTED]
 Sent: Monday, November 19, 2007 9:03 AM
 To: CF-Talk
 Subject: Re: VPS or Dedicated CF Hosts
 
 I'm a 4 yr CrystalTech customer, but I've become disappointed with them
 over the last year or so. I get some of the most entertaining responses
 from their support.  I'd rather just ask James, Jim, or some of the
 other bright folks on the list, because I sure can't rely on CT.

Not for nothing (and I'm a very happy CT customer) but you won't get good
service from CT on questions dealing with (most) software.  They don't want
to support it.  ;^)

They will (for a HUGE fee) but that fee represents their unwillingness to
get into your specific configuration.  If you consider them only network and
hardware (plug and chug) support you'll have a much better experience.

Nearly every complaint I've seen about CT deals with support for non-system
software (CF, IIS, Apache, etc).  Again, they will do that, but they just
don't want to and their prices and attitudes reflect that.  To be fair they
don't actually advertise this as a feature of their service.

Of course I've had my box, with no fundamental configuration changes, for
over three years.  I may be in a nicely isolated rut.  ;^)

Jim Davis



~|
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:293590
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Verity, does it work?

2007-11-19 Thread Jonathan Gingerich
Thanks everyone.  I've checked the STATUS and have found:
Warn E0-1514 (Drvr): TstrIOFilter:flt_kv: KV failed on filtering document: 
error = 6
Warn E2-0527 (Document Index): Document 1 
(\\sdfs601.corp.NCR.com\trp\oasis\007-0007559\chim_ut_PLAN.doc): Stream error 
(-140) - SKIPPING
Still pretty cryptic, but at least I know something is wrong...

JG 

~|
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:293591
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Will Tomlinson
Not for nothing (and I'm a very happy CT customer) but you won't get good
service from CT on questions dealing with (most) software.  They don't want
to support it.  ;^)

You're exactly right. Just like when my CF mappings magically disappeared 
multiple times after I created them. I emailed support and they replied, the 
cleaners must've deleted them I'm like, O k!

Hey, it just broke my e-comm site when it happened, no big deal.  

~|
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:293592
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Verity, does it work?

2007-11-19 Thread Dave Watts
 Thanks everyone.  I've checked the STATUS and have found:
 Warn E0-1514 (Drvr): TstrIOFilter:flt_kv: KV failed on 
 filtering document: error = 6 Warn E2-0527 (Document Index): 
 Document 1 
 (\\sdfs601.corp.NCR.com\trp\oasis\007-0007559\chim_ut_PLAN.doc
): Stream error (-140) - SKIPPING Still pretty cryptic, but at 
 least I know something is wrong...

Is there anything unusual about the document mentioned in the error?

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!


~|
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:293593
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Casey Dougall
On Nov 19, 2007 9:50 AM, Yves Arsenault [EMAIL PROTECTED] wrote:
 I've been a Viviotech VPS and Dedicated server customer for some time now.

 I have no complaints.

 Yves

Same here. I use viviotech vps and they are great at responding to
support tickets and keep on top of other support related issues that
come up in their forums.

~|
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:293594
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Mik Muller
The cleaners?

WTF is that?

Mik


At 03:27 PM 11/19/2007, Will Tomlinson wrote:
Not for nothing (and I'm a very happy CT customer) but you won't get good
service from CT on questions dealing with (most) software.  They don't want
to support it.  ;^)

You're exactly right. Just like when my CF mappings magically disappeared 
multiple times after I created them. I emailed support and they replied, the 
cleaners must've deleted them I'm like, O k!

Hey, it just broke my e-comm site when it happened, no big deal.  



Michael Muller
Admin, MontagueMA.net Website
work (413) 863-0030
cell (413) 320-5336
skype: michaelBmuller
http://www.MontagueMA.net

Eschew Obfuscation



~|
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:293596
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Mik Muller
The cleaners?

WTF is that?

Mik


At 03:27 PM 11/19/2007, Will Tomlinson wrote:
Not for nothing (and I'm a very happy CT customer) but you won't get good
service from CT on questions dealing with (most) software.  They don't want
to support it.  ;^)

You're exactly right. Just like when my CF mappings magically disappeared 
multiple times after I created them. I emailed support and they replied, the 
cleaners must've deleted them I'm like, O k!

Hey, it just broke my e-comm site when it happened, no big deal.  



Michael Muller
Admin, MontagueMA.net Website
work (413) 863-0030
cell (413) 320-5336
skype: michaelBmuller
http://www.MontagueMA.net

Eschew Obfuscation



~|
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:293595
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Will Tomlinson
The cleaners?

WTF is that?


Heck, *YOU* tell ME! 

I have no idea... 


~|
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:293598
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


EOL Delimited file

2007-11-19 Thread Robert Harrison
I'm writing a quick option to dump data to a delimited file from a query. No
problem formatting the query data.

Question is, what do I put at the EOL to denote a new record? (CHR10, CHR13,
LF, CR)???

Thanks 



Robert B. Harrison
Director of Interactive services
Austin  Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be .




~|
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:293597
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: VPS or Dedicated CF Hosts

2007-11-19 Thread Jim Davis
 -Original Message-
 From: Will Tomlinson [mailto:[EMAIL PROTECTED]
 Sent: Monday, November 19, 2007 3:28 PM
 To: CF-Talk
 Subject: Re: VPS or Dedicated CF Hosts
 
 Not for nothing (and I'm a very happy CT customer) but you won't get
 good
 service from CT on questions dealing with (most) software.  They don't
 want
 to support it.  ;^)
 
 You're exactly right. Just like when my CF mappings magically
 disappeared multiple times after I created them. I emailed support and
 they replied, the cleaners must've deleted them I'm like, O k!

The Cleaners?  Was this before or after you requested assistance?

In my experience they run NOTHING on my server.  (I wouldn't actually want
them to help with most application problems since they know less than I do
and are more likely to screw it up than help.)

They don't even install system updates - the only exception that I can
remember was the system patch to prevent Code Red since it had a broader
network impact.  When they did they sent emails before and after.

Other than that (when an unpatched machine can compromise the network)
you're totally on your own (in my experience).

Jim Davis


~|
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:293600
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: EOL Delimited file

2007-11-19 Thread C. Hatton Humphrey
It's CRLF for windows  dos files (13/10).

cfset MyBreak = CHR(13)  CHR(10)

Hatton

On Nov 19, 2007 3:14 PM, Robert Harrison [EMAIL PROTECTED] wrote:
 I'm writing a quick option to dump data to a delimited file from a query. No
 problem formatting the query data.

 Question is, what do I put at the EOL to denote a new record? (CHR10, CHR13,
 LF, CR)???

 Thanks



 Robert B. Harrison
 Director of Interactive services
 Austin  Williams
 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
 T : 631.231.6600 Ext. 119
 F : 631.434.7022
 www.austin-williams.com

 Great advertising can't be either/or... It must be .




 

~|
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:293601
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


same line number keeps showing with cftrace

2007-11-19 Thread Bryan S
Hi. This is my first post here.

I recently discovered the hidden gem of cftrace.

It works great when developing locally, however, when I use it on our
UNIX development server it always returns the same line number.
cfusion\wwwroot\WEB-INF\cftags\trace.cfm @ line: 86

How do I get it to display the line number that the function call is on?

Thanks for any help.

Bryan S

~|
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:293599
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: EOL Delimited file

2007-11-19 Thread Ian Skinner
Question is, what do I put at the EOL to denote a new record? (CHR10, CHR13,
LF, CR)???

Yes.

I.E.  It depends on how you want to designate the end of the line depending on 
what systems(s) are expected to understand the formating.  The most common are 
chr(13)chr(10) for windows and chr(10) for unix systems.  I think.



~|
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:293602
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: VPS or Dedicated CF Hosts

2007-11-19 Thread Mark A Kruger
You know Guy with a mop and a broom dusting in the server room, taking
out the trash, fiddling with Coldfusion mappings... Same old story :) 

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 19, 2007 3:09 PM
To: CF-Talk
Subject: Re: VPS or Dedicated CF Hosts

The cleaners?

WTF is that?


Heck, *YOU* tell ME! 

I have no idea... 




~|
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:293603
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Globalization Question

2007-11-19 Thread Paul Hastings
Steve Milburn wrote:
 Hi Paul Thanks for the response.  I'm obviously new to this, but in response
 to your questions (1) would the process of managing translations for a db be
 that much different than managing translations for resource bundle properties
 files?  (2) I'm certainly not trying to re-invent the wheel, I'm trying to

1) you have to write a system to do the managing. several good ones exist 
already for java style rb and jason sheedy even has a cf one if you prefer (and 
maybe flex fronted version too, though how this will fair w/BIDI locales will 
be 
fun to watch ;-).

2) see #1.



~|
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:293604
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: VPS or Dedicated CF Hosts

2007-11-19 Thread Dave Watts
 You know Guy with a mop and a broom dusting in the server 
 room, taking out the trash, fiddling with Coldfusion 
 mappings... Same old story :) 

I figured it was this guy:
http://www.imdb.com/name/nm606/

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!


~|
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:293605
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Cold fusion do not support input param: Help

2007-11-19 Thread Tarek Jubaer
Cold fusion do not support input param array like below:
input type='hidden' name='hid_id[]' value='1'
input type='hidden' name='hid_id[]' value='2'
input type='hidden' name='hid_id[]' value='3'

Whereas PHP can handle it as an array.

But i have a code which will display some events and their corresponding child 
events in a page. User can re-arrange the order by selecting the radio button 
and using up/down image links.

In the posted page, i want to get the hid_id[] values in a order they were 
re-arranged by user.
Can you please help me to get this array param work in the posted page for cold 
fusion?

Thanks in advance. 

~|
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:293607
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Azadi Saryev
thanks for sharing the info! they definitely look less like a viable 
option for me now, despite the good price  all...

---
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com


~|
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:293606
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Cold fusion do not support input param: Help

2007-11-19 Thread Dave Watts
 Cold fusion do not support input param array like below:
 input type='hidden' name='hid_id[]' value='1' input 
 type='hidden' name='hid_id[]' value='2' input type='hidden' 
 name='hid_id[]' value='3'
 
 Whereas PHP can handle it as an array.
 
 But i have a code which will display some events and their 
 corresponding child events in a page. User can re-arrange the 
 order by selecting the radio button and using up/down image links.
 
 In the posted page, i want to get the hid_id[] values in a 
 order they were re-arranged by user.
 Can you please help me to get this array param work in the 
 posted page for cold fusion?

Get rid of the brackets. In your action page, Form.hid_id will contain a
list. You can use the ListToArray function to convert it to an array, if you
like.

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!


~|
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:293608
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Permissions with .CFR's (Report Builder)

2007-11-19 Thread Matt Lerwill
Help!

I can't find mention anywhere of how to best manage security/permissions on
..cfr files output by the ColdFusion Report Builder.

I've been programming with CF for what seems like a decade now and am
proficient in coding from scratch, but I'm trying the WYSIWYG report builder
for the first time and want to find a way to make this work.

 - How can I determine within the Report Builder if a user should have
access to the report

 - And if they shouldn't have access, how do I prompt them to log in (either
via a session or cflogin), or kick them out of the report to where they can
log in and be returned to the report.

 - Anyone know of any good articles for this?

Thanks,

Matt 



~|
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:293609
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cold fusion do not support input param: Help

2007-11-19 Thread Brian Kotek
I wrote a CFC that will parse arbitrarily nested structures, arrays, arrays
of structures, etc., based on the form field name(s).

http://formutils.riaforge.org/


On Nov 19, 2007 11:47 PM, Tarek Jubaer [EMAIL PROTECTED] wrote:

 Cold fusion do not support input param array like below:
 input type='hidden' name='hid_id[]' value='1'
 input type='hidden' name='hid_id[]' value='2'
 input type='hidden' name='hid_id[]' value='3'

 Whereas PHP can handle it as an array.

 But i have a code which will display some events and their corresponding
 child events in a page. User can re-arrange the order by selecting the radio
 button and using up/down image links.

 In the posted page, i want to get the hid_id[] values in a order they were
 re-arranged by user.
 Can you please help me to get this array param work in the posted page for
 cold fusion?

 Thanks in advance.

 

~|
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:293610
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4