Re: Maximum Request Setting CF6

2011-11-08 Thread Dave Watts

> I have a legacy site running CF6.1 Enterprise.  I have noticed that it will 
> only process 8 requests at one time and will
> que the others.  Does anyone know where I might be able to change this in 
> CF6?  I cannot find a setting for it.

It's been a long time since I've looked at CF 6.x. But if I recall
correctly, there's a "Number of Simultaneous Requests" field if you're
using CF 6.x Enterprise via standalone install (not J2EE). That's the
field you'd change. If you're using the J2EE install, you might have
to edit a text file. I don't remember.

That said, have you determined a more appropriate number for this
value via load testing? This queuing behavior is by design, and is
pretty efficient - moreso than having a large number of threads that
aren't utilized all the time.

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 onsi

~|
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:348529
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: word doc to PDF

2011-11-08 Thread Judah McAuley

What versions of Office do you have to support? If you can get away
with only supporting Open XML doc files, you'll be able to do a lot
more. They are zip files of xml docs and resources and MS has an SDK
for working with them. You can convert them into a number of formats
through XSLT and other options. If you have to support older, binary,
DOC versions then you'll need to look at the various commercial
options like ActivePDF and some of the non-commercial options like
OpenOffice.

Judah

On Tue, Nov 8, 2011 at 10:53 AM, Russ Michaels  wrote:
>
> anyone got any recommendations for DOC to PDF conversion ?
> CFDOCUMENT requires OpenOffice to be on the server, which I don't
> really want to do, so looking for an alternative.
>

~|
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:348528
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: word doc to PDF

2011-11-08 Thread Mike Chabot

I am assuming this is something you need to have on your Web server,
which I believe would rule out Adobe Acrobat Pro. ActivePDF makes some
good server PDF tools that I have used in the past with great success.
I would recommend that or installing OpenOffice. I personally install
OpenOffice on servers without any notable reservations. PrimoPDF is
another big name in this space, although I don't know much about their
enterprise server products.

-Mike Chabot

On Tue, Nov 8, 2011 at 1:53 PM, Russ Michaels  wrote:
>
> anyone got any recommendations for DOC to PDF conversion ?
> CFDOCUMENT requires OpenOffice to be on the server, which I don't
> really want to do, so looking for an alternative.
>
> --
> --
>
> Snake

~|
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:348527
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: word doc to PDF

2011-11-08 Thread Claude Schnéegans

 >>CFDOCUMENT requires OpenOffice to be on the server,

Although it does not answer your question, I understand you don't want to use 
OpenOffice.
I recently installed the last version, tried to open some simple Word documents 
with it and the result was just horrible. If OpenOffice works that badly just 
to open Words documents, one can expect something even worse when converting to 
PDF :-(

~|
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:348526
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFTP secure bug?

2011-11-08 Thread Yuliang Ruan

we're already on 9.0.1.   yea i saw that bug report.  that one dealt with 
creating the connection.   in my situation, the connection establishes fine.  i 
can listdir fine.   it's the get command that's causing an 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:348525
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFFTP secure bug?

2011-11-08 Thread Andy Allan

You haven't mentioned which version of CF you're using, but there was
a bug in CF9.0 with SecureFTP. It's fixed in 9.01 (8.01 is fine too).

Andy

On 8 November 2011 21:29, Yuliang Ruan  wrote:
>
> having a wierd issue here.   i believe it may be a bug in CF.
>
> code:
>  username="#username#" password="#password#" fingerprint="#fingerprint#" 
> connection="myftp">
>
>  localfile="E:\tmp\testfile.txt" transfermode="binary" passive="true"/>
>
>
>
> throws error
>
> An error occurred during the sFTP getfile operation. Error: File Exists: 
> E:\tmp\testfile.txt
>
>
>
>
>
> Folder view shows a file testfile.txt   0 bytes.  and it's locked by cf 
> server.
>
>
> It seems like the operation is creating the file stub, but has some problem 
> writing to it, then complains that the file exists when cf created the file 
> in the first place.
>
>
>
>
>
> this is only in secure mode.  in regular FTP mode, code runs perfectly.
>
>
>
>
>
> Stack trace:
>
> coldfusion.tagext.net.SftpHandler$SftpOperationException: An error occurred 
> during the sFTP getfile operation.
>
> at coldfusion.tagext.net.SftpHandler.checkError(SftpHandler.java:195)
>
> at coldfusion.tagext.net.SftpHandler.getFile(SftpHandler.java:475)
>
> at coldfusion.tagext.net.FtpTag.doStartTag(FtpTag.java:740)
>
> at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2722)
>
> at cffedexImport2ecfm385136567.runPage(E:\htdocs\Pmall_Admin\autoTasks\f 
> edexImport.cfm:32)
>
> at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231)
>
> at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416)
>
> at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
>
> at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:381 )
>
> at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.ja 
> va:48)
>
> at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
>
> at coldfusion.filter.PathFilter.invoke(PathFilter.java:94)
>
> at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
>
> at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:7 9)
>
> at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePers 
> istenceFilter.java:28)
>
> at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
>
> at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
>
> at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
>
> at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
>
> at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
>
> at coldfusion.CfmServlet.service(CfmServlet.java:200)
>
> at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:8 9)
>
> at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
>
> at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringS 
> ervletFilter.java:42)
>
> at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46 )
>
> at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
>
> at jrun.servlet.FilterChain.service(FilterChain.java:101)
>
> at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
>
> at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
>
> at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java: 286)
>
> at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java: 543)
>
> at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.ja 
> va:203)
>
> at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPoo 
> l.java:320)
>
> at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.j 
> ava:428)
>
> at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool. 
> java:266)
>
> at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
>
> 

~|
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:348524
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFFTP secure bug?

2011-11-08 Thread Yuliang Ruan

having a wierd issue here.   i believe it may be a bug in CF.

code:




 

throws error

An error occurred during the sFTP getfile operation. Error: File Exists: 
E:\tmp\testfile.txt

 

 

Folder view shows a file testfile.txt   0 bytes.  and it's locked by cf server.

 
It seems like the operation is creating the file stub, but has some problem 
writing to it, then complains that the file exists when cf created the file in 
the first place.

 

 

this is only in secure mode.  in regular FTP mode, code runs perfectly.

 

 

Stack trace:

coldfusion.tagext.net.SftpHandler$SftpOperationException: An error occurred 
during the sFTP getfile operation.

at coldfusion.tagext.net.SftpHandler.checkError(SftpHandler.java:195)

at coldfusion.tagext.net.SftpHandler.getFile(SftpHandler.java:475)

at coldfusion.tagext.net.FtpTag.doStartTag(FtpTag.java:740)

at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2722)

at cffedexImport2ecfm385136567.runPage(E:\htdocs\Pmall_Admin\autoTasks\f 
edexImport.cfm:32)

at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231)

at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416)

at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)

at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:381 )

at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.ja va:48)

at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)

at coldfusion.filter.PathFilter.invoke(PathFilter.java:94)

at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)

at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:7 9)

at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePers 
istenceFilter.java:28)

at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)

at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)

at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)

at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)

at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)

at coldfusion.CfmServlet.service(CfmServlet.java:200)

at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:8 9)

at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)

at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringS 
ervletFilter.java:42)

at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46 )

at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)

at jrun.servlet.FilterChain.service(FilterChain.java:101)

at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)

at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)

at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java: 286)

at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java: 543)

at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.ja va:203)

at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPoo 
l.java:320)

at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.j 
ava:428)

at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool. 
java:266)

at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66) 

~|
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:348523
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Maximum Request Setting CF6

2011-11-08 Thread Brian Cain

Greetings,

I have a legacy site running CF6.1 Enterprise.  I have noticed that it will 
only process 8 requests at one time and will que the others.  Does anyone know 
where I might be able to change this in CF6?  I cannot find a setting for it. 

~|
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:348522
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: FCKEditor.. XML Request error: Access denied (403)

2011-11-08 Thread Pete Freitag

This is disabled by default, you need to enable it via a Java System
Property, see details here: http://www.petefreitag.com/item/718.cfm

--
Pete Freitag - Adobe Community Professional
http://foundeo.com/ - ColdFusion Consulting & Products
http://petefreitag.com/ - My Blog
http://hackmycf.com - Is your ColdFusion Server Secure?




On Wed, Nov 2, 2011 at 7:40 PM, Terry Troxel  wrote:
>
> Coldfusion 9, just started has been working fine on all the websites until
> today when using FCKEditor to browse server for an image.
>
> Any Ideas?
>
> Java recently Updated.
>
> Terry
>
>
> 

~|
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:348521
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


word doc to PDF

2011-11-08 Thread Russ Michaels

anyone got any recommendations for DOC to PDF conversion ?
CFDOCUMENT requires OpenOffice to be on the server, which I don't
really want to do, so looking for an alternative.

-- 
--

Snake

~|
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:348520
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfftp preserve remote file timestamp?

2011-11-08 Thread Yuliang Ruan

is there an option somewhere?   

~|
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:348519
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Creating a ColdFusion Error

2011-11-08 Thread Steve Bryant

Yes, but I will get the stack from the cfthrow. I want the stack of the error 
on the page that I am calling via CFSelenium.

As far as my running ColdFusion application is concerned, that is just any page 
being called by Selenium-RC. I can get the data from the error (right now by 
using onError to return a JSON of it - thanks to one of your old blog entries), 
but I want to be able to recreate that stack.

>That will happen automatically when you throw. 

~|
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:348518
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Creating a ColdFusion Error

2011-11-08 Thread Raymond Camden

That will happen automatically when you throw.


On Tue, Nov 8, 2011 at 10:33 AM, Steve Bryant
 wrote:
>
> I want to specify the stack information as well so that I can see all of the 
> files and lines involved in the original exception.
>
> Steve
>
>> You can specify type, message and detail information with CFTHROW,
>> just like you'd read from CFCATCH. Out of curiosity, what information
>> do you want to provide?
>
> 

~|
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:348517
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Creating a ColdFusion Error

2011-11-08 Thread Steve Bryant

I want to specify the stack information as well so that I can see all of the 
files and lines involved in the original exception.

Steve

> You can specify type, message and detail information with CFTHROW,
> just like you'd read from CFCATCH. Out of curiosity, what information
> do you want to provide? 

~|
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:348516
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Creating a ColdFusion Error

2011-11-08 Thread Russ Michaels

This is what  CFTHROW is for. Just copy the details from the REAL
error and use the same details to THROW an error of the same type.

On Tue, Nov 8, 2011 at 4:10 PM, Steve Bryant
 wrote:
>
> I'm doing some functional testing with CFSelenium (thanks Bob!) for a 
> situation that could potentially create a ColdFusion exception on the page 
> being tested. I would ideally like to recreate that exception within my test 
> so that it returns an appropriate "error" status (complete with correct stack 
> trace) in my mxunit results.
>
> Right now, I am taking screen shots of the error and returning a failure 
> status. That works fine, but doesn't seem as elegant a way to handle it.
>
> Steve
>
>>what exactly is it you want to do ?
>
> 

~|
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:348515
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Creating a ColdFusion Error

2011-11-08 Thread Dave Watts

> It seems like I saw how to do this once, but my Google-fu is weak today and I 
> can't find it. Does anyone know how to manually create a ColdFusion
> error object?
>
> To clarify, I don't mean using cfthrow. I want to be able to control more of 
> the error data than I can using cfthrow. Any ideas?

You can specify type, message and detail information with CFTHROW,
just like you'd read from CFCATCH. Out of curiosity, what information
do you want to provide?

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:348514
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Creating a ColdFusion Error

2011-11-08 Thread Steve Bryant

I'm doing some functional testing with CFSelenium (thanks Bob!) for a situation 
that could potentially create a ColdFusion exception on the page being tested. 
I would ideally like to recreate that exception within my test so that it 
returns an appropriate "error" status (complete with correct stack trace) in my 
mxunit results.

Right now, I am taking screen shots of the error and returning a failure 
status. That works fine, but doesn't seem as elegant a way to handle it.

Steve

>what exactly is it you want to do ?

~|
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:348513
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Creating a ColdFusion Error

2011-11-08 Thread Russ Michaels

what exactly is it you want to do ?

On Tue, Nov 8, 2011 at 3:55 PM, Steve Bryant
 wrote:
>
> It seems like I saw how to do this once, but my Google-fu is weak today and I 
> can't find it. Does anyone know how to manually create a ColdFusion error 
> object?
>
> To clarify, I don't mean using cfthrow. I want to be able to control more of 
> the error data than I can using cfthrow. Any ideas?
>
> Thanks,
>
> Steve
>
> 

~|
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:348512
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Creating a ColdFusion Error

2011-11-08 Thread Steve Bryant

It seems like I saw how to do this once, but my Google-fu is weak today and I 
can't find it. Does anyone know how to manually create a ColdFusion error 
object?

To clarify, I don't mean using cfthrow. I want to be able to control more of 
the error data than I can using cfthrow. Any ideas?

Thanks,

Steve 

~|
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:348511
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm