Re: Vmware and CF 8+

2010-09-22 Thread Dave Watts

 Oh my!!  You need to say that again several times till folks get it. I vis
 at least one server a week set to automatically install patches ... which
 about 1/3 of the time results in a reboot and about 1/2 the time installs
 extra software or upgrades that are not needed.  Unless you are using your
 server as a desktop do you really need the latest version of windows media
 player? Or the upgraded browser helper active X?  If it's not a print
 spooler does it need spooler flaw patches (and why is the spooler service
 enabled in the first place)?  In my view it should always be set to
 download and let me choose and then you should schedule a time to check
 them out and install the appropriate ones  and even then sometimes they
 trip you up (security based ones in particular have a way of resulting in
 unintended consequences).

Microsoft actually has some decent patch management/deployment tools,
but it seems like most shops just use Automatic Update, which is
asking for your servers to stop working one day all of a sudden. In
some of the better-run shops I've seen, they do use these tools to
choose what patches to deploy to which servers, and they deploy them
first to a test environment before deploying to production, unless
it's a patch for a known exploit of an exposed service.

And yes, I agree fully that for most of the items you listed, you
shouldn't have to apply patches in a well-structured environment. If a
patch doesn't apply to an exposed service, you shouldn't just put it
on your server.

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 ons

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


Re: WebService question

2010-09-22 Thread Dave Watts

 I have a cfc which is used as a SOAP web service. This all works very well. 
 But my question has to do with the arguments. I
 would like to have a argument called theXMLData for example ...

 cffunction name=CheckIn access=remote returntype=boolean output=no
        cfargument name=theXMLData

 But I get an error when I try to send straight XML through a web service. I 
 know I can use Base64 encoding, but it adds 30 - 40%
 overhead to the message. Is there any way to send the XML data as XML instead 
 of encapsulating it?

 The client software which is sending the data is a Objective-C app, which I 
 wrote as well. So any suggestions are welcome.

I think you have to use document/literal instead of rpc/encoded:

cfcomponent style=document ...

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 ons

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


Re: duplication of cookies on each request

2010-09-22 Thread Dave Watts

 I'd be interested to know. I've been using the short method for years and
 never had a problem. However I'd love to know if the longer version is
 actually more stable.

No, there's no problem with the shorter method. Of course, nowadays
you should probably just use JSESSIONID instead.

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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337300
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: duplication of cookies on each request

2010-09-22 Thread Dave Watts

 I have a cookie dupication problem that I cannot get my head around. This is
 a duplication of my thread on cf-aussie, so apologies to those who are
 seeing this twice.

 See this page for example.

 http://www.biowishtechnologies.com/au/information/our-company1/senior-management-team/lorenzo-gella/

 If you click through a few pages on this site, then view the cookies that
 have been set for it you will see they have been multiplied a lot of times,
 I am guessing unnecessarily. I believe these cookies should be set only once
 in the root of the site. This happens for the CF and Google Analytics
 cookies.

 This issue appears to occur on CF9 in development and in CF8 on live. I have
 tried different combinations of cfcookie and settings but nothing seems to
 stop it happening. I believe that this issue is causes Internet Explorer
 users to receive a blank page every now and again because the limit on the
 number of cookies is being reached.

 In our application.cfc we have used this code in onRequestStart() to set
 UID, and cf vars cfcookie name=UUID value=#createUUID()#
 expires=never
 cfcookie name=cfid value=#Client.cfid#
 cfcookie name=cftoken value=#Client.cftoken#

 I have tried to use domain=www.biowishtechnologies.com path=/ but it
 makes no difference.

It's doing exactly what you told it to do - it's setting cookies on
each request. If you put CFCOOKIE tags in onRequestStart, they will
run for every request.

Move the CFCOOKIE tags to onSessionStart, and disable the automatic
setting of cookies in your application properties, or just use
JSESSIONID.

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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337301
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 Solr Search issue

2010-09-22 Thread Dave Watts

 I've run into a frustrating issue while trying to use Solr search in CF9. I'm 
 not sure if the Verity has the same problem, but
 basically the problem is that I have 3 different queries I want to index into 
 a single collection and if I purge the collection first, it is
 refusing to index all three. The records come from fairly difference sources, 
 so not easy to combine, I'm using categories to mark
 the record type so my search interface allows the user to select the scope 
 they want to search in. The code basically looks like
 this:

 cfindex collection=#variables.collection# action=purge

  Code to Retrieve the 3 different document types to index 

 !--- add documents to collection ---
 cfindex collection=#variables.collection# action=update body=doc_text 
 category=doc_type_code custom1=id
 key=key query=local.qryDocs1 /
 cfindex collection=#variables.collection# action=update body=doc_text 
 category=doc_type_code custom1=id
 key=key query=local.qryDocs2 /
 cfindex collection=#variables.collection# action=update 
 body=doc_text1,doc_text2,doc_text3 category=doc_type_code
 custom1=id key=key query=local.qryDocs3 /

 Depending on the order that I run the cfindex tags, I only get one or two of 
 the queries being indexed, never all three. If however, I
 *don't* run a purge first, they always get indexed properly.

What happens if you run the purge in a separate request, before
running the index operations? I wouldn't be surprised if there's some
concurrency issue running them all in the same request, even though
you'd think they just run sequentially.

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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337302
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion Report Builder and Cyrillic fonts [spamtrap bayes][spamtrap heur]

2010-09-22 Thread Paul Hastings

On 9/22/2010 12:11 PM, Paul Kukiel wrote:
 I am trying to output, using a coldfusion report builder report, text in
 Japanese/Russian to a PDF. They always come out with   I tried the

i just tried this w/cfr 9 on windows PDF output  it works as expected. first 
off, are you sure the data/report(should be identity-H) are properly encoded?

what font are you using (do not use the @ ones)? embedded or not (actually 
didn't matter for me but might if your client doesn't have font with those 
glyphs)?

btw ? indicates garbaged data. empty boxes or blank glyphs indicate font or 
minor encoding issue. so if you're getting ? in your PDF then i'd go back to 
the 
encoding.

#LSCurrencyFormat(45345,'local','ja_JP')# also works fine in cfr PDF output 
(provided formatted w/correct font).

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Russ Michaels

Ray the exchange has far more in it than riaforge, especially in this
particular category.



On Wed, Sep 22, 2010 at 5:29 AM, Dave Watts dwa...@figleaf.com wrote:


 Strictly speaking, a CF page that returns a JPG via CFCONTENT is a JPG from
 the client's perspective.

 Dave Watts, CTO, Fig Leaf Software

 Sent from my Droid

 On Sep 21, 2010 4:37 PM, Richard Steele r...@photoeye.com wrote:
 
  Hi Russ, Thanks! That worked. I thought google would parse the html code
 to make sure it was a legitimate jpg. But, the cfm file with cfcontent
 worked fine. Thanks again.
 
 

 

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


Re: .NET DLL driving me nuts....

2010-09-22 Thread Michael Christensen

We've decided to pursue another solution as the CF/.NET integrations proves to 
be too time consuming.

Thanks for you answers.

You'll need to restart CF and the .NET service.

Dave Watts, CTO, Fig Leaf Software

Sent from my Droid

On Sep 21, 2010 3:30 AM, Michael Christensen mich...@strib.dk wrote:

 We were able to determine, that the calls to sample functions that don't
work on our development server, does in fact work on our pre-production
server.

 So far so good I guess, but now I am facing a new problem - it seems that
CF caches the functions in the DLLs, so that it doesn't reflect the changes
when I change a function and (re)call it.
 

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


Re: Struct for Applicaton Datasource setting

2010-09-22 Thread James Holmes

The CF documentation is a good place to start:

http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSd160b5fdf5100e8f790124b112a3b8b2adb-8000.html

this.datasource={name='cfartgallery', username=user, password=passwd}


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



On 22 September 2010 12:29, Mary Jo Sminkey mary...@cfwebstore.com wrote:

 I posted this over on the CF-ORM list on google, but not much luck, so 
 thought I'd see if any of you smart HOF folks know. ;-)

 According to the CF 9.01 release notes, you can now use a structure
 for setting the application.datasource setting. I really would like to
 do this for an ORM application I'm doing, as we use a single Oracle
 database for our servers, and each application has its own
 schemaso typically we just have one db and each application
 has a specific username/password to connect to its own schema.  But there 
 doesn't seem to be any documentation or example anywhere on how to do this, 
 and I'm not having much luck trying to figure it out. I tried this:

 this.datasource = {datasource = 'oracle_db', username='schema',
 password='password' } ;

 And all I got was an error from ColdFusion that it couldn't cast a
 struct to a string. So clearly that's not the way to do it.

 So any idea how to do this?


 --- Mary Jo


 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Casey Dougall

On Wed, Sep 22, 2010 at 4:58 AM, Russ Michaels r...@michaels.me.uk wrote:


 Ray the exchange has far more in it than riaforge, especially in this
 particular category.


 www.openx.org is free and still the best solution I've seen, it's also not
listed on adobe or riforge ;-)

It may be a bit overkill for this project but well worth checking out.


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


Re: Struct for Applicaton Datasource setting

2010-09-22 Thread Mary Jo Sminkey

 The CF documentation is a good place to start:
 
 http://help.adobe.com/en_US/ColdFusion/9.
 0/CFMLRef/WSd160b5fdf5100e8f790124b112a3b8b2adb-8000.html
 
 this.datasource={name='cfartgallery', username=user, 
 password=passwd}


Believe me, I *looked* long and hard in the docs and never found that page. It 
sure is well hidden, and none of the higher up pages on application settings 
have been updated with this information. I actually *had* tried 'name for the 
datasource name just as shown as well, and was still getting the error. 

It turned out that the server had *not* been updated to 9.01 as we thought it 
had...so duh! Always love when it's something obvious 

--- Mary Jo




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


Java Object Web Service Issue

2010-09-22 Thread Joel Spriggs

I'm attempting to use the Avalara Tax Java SDK in a CF9 application.  The code 
works fine as a standalone java app.  But when we start to bring it into CF as 
a jar where we instantiate the classes using createObject we get some failures. 
 The main error I tend to see is

 AXIS ERROR org.apache.axis.configuration.EngineConfigurationFactoryFinder - 
Unable to locate a valid EngineConfigurationFactory
 The stack trace looks like this:

java.lang.NullPointerException at 
org.apache.axis.client.Service.getEngineConfiguration(Service.java:801) at 
org.apache.axis.client.Service.getAxisClient(Service.java:143) at 
org.apache.axis.client.Service.(Service.java:152) at 
com.avalara.avatax.services.address.AddressSvcLocator.(AddressSvcLocator.java:48)
 at AddressValidateSample.getAddressSvc(AddressValidateSample.java:101) at 
AddressValidateSample.isValidAddress(AddressValidateSample.java:31) at 
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597) at 
coldfusion.runtime.java.JavaProxy.invoke(JavaProxy.java:97) at 
coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at 
cfTax2ecfc2111713232$funcVALIDATEADDRESS.runFunction(/Applications/JRun4/servers/...

Has anyone seen this kind of error before trying to use a java based Soap 
wrapper in CF9?  I was starting on the path of a mixed version of Axis, since 
I've been burned on that path before, but it's not panning out like I had 
expected.

Thanks
Joel 

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


Gateway / Telnet Resources

2010-09-22 Thread Tim Claremont

I have searched the web so much that Google wants to put me on the payroll. I 
am looking for a great tutorial on Gateways / Telnet for an application I am 
building. I am using CF8 in a Windows environment. I am a complete newbie with 
Gateways, and the information I am finding in the docs is amazingly lacking. Is 
it me, or is there truly a dearth of information out there? Can anyone point me 
in the right direction? I need to monitor a device at a given IP address (it is 
a magnetic stripe badge reader hanging on the network, no PC). When a scan is 
detected, I want to send the data into my database and send a command back to 
the badge reader triggering the indicator light. 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Raymond Camden

Just trying to remind folks. Far too often I see people post here
looking for a CF solution to do X when X readily exists on RIAForge.


On Wed, Sep 22, 2010 at 3:58 AM, Russ Michaels r...@michaels.me.uk wrote:

 Ray the exchange has far more in it than riaforge, especially in this
 particular category.



 On Wed, Sep 22, 2010 at 5:29 AM, Dave Watts dwa...@figleaf.com wrote:


 Strictly speaking, a CF page that returns a JPG via CFCONTENT is a JPG from
 the client's perspective.

 Dave Watts, CTO, Fig Leaf Software

 Sent from my Droid

 On Sep 21, 2010 4:37 PM, Richard Steele r...@photoeye.com wrote:
 
  Hi Russ, Thanks! That worked. I thought google would parse the html code
 to make sure it was a legitimate jpg. But, the cfm file with cfcontent
 worked fine. Thanks again.
 
 



 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Michael Grant

As a bit of conjecture to that. I also find that far too often I see people
post here trying to get support for X that they found on RIAForge when
authorX won't respond to support email.

Just sayin'.


On Wed, Sep 22, 2010 at 9:14 AM, Raymond Camden rcam...@gmail.com wrote:


 Just trying to remind folks. Far too often I see people post here
 looking for a CF solution to do X when X readily exists on RIAForge.


 On Wed, Sep 22, 2010 at 3:58 AM, Russ Michaels r...@michaels.me.uk
 wrote:
 
  Ray the exchange has far more in it than riaforge, especially in this
  particular category.
 
 
 
  On Wed, Sep 22, 2010 at 5:29 AM, Dave Watts dwa...@figleaf.com wrote:
 
 
  Strictly speaking, a CF page that returns a JPG via CFCONTENT is a JPG
 from
  the client's perspective.
 
  Dave Watts, CTO, Fig Leaf Software
 
  Sent from my Droid
 
  On Sep 21, 2010 4:37 PM, Richard Steele r...@photoeye.com wrote:
  
   Hi Russ, Thanks! That worked. I thought google would parse the html
 code
  to make sure it was a legitimate jpg. But, the cfm file with cfcontent
  worked fine. Thanks again.
  
  
 
 
 
 

 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Raymond Camden

Fair point - but I'd be willing to bet you get the same % of responses
on anything from the Exchange as well.

On Wed, Sep 22, 2010 at 8:20 AM, Michael Grant mgr...@modus.bz wrote:

 As a bit of conjecture to that. I also find that far too often I see people
 post here trying to get support for X that they found on RIAForge when
 authorX won't respond to support email.

 Just sayin'.


 On Wed, Sep 22, 2010 at 9:14 AM, Raymond Camden rcam...@gmail.com wrote:


 Just trying to remind folks. Far too often I see people post here
 looking for a CF solution to do X when X readily exists on RIAForge.


 On Wed, Sep 22, 2010 at 3:58 AM, Russ Michaels r...@michaels.me.uk
 wrote:
 
  Ray the exchange has far more in it than riaforge, especially in this
  particular category.
 
 
 
  On Wed, Sep 22, 2010 at 5:29 AM, Dave Watts dwa...@figleaf.com wrote:
 
 
  Strictly speaking, a CF page that returns a JPG via CFCONTENT is a JPG
 from
  the client's perspective.
 
  Dave Watts, CTO, Fig Leaf Software
 
  Sent from my Droid
 
  On Sep 21, 2010 4:37 PM, Richard Steele r...@photoeye.com wrote:
  
   Hi Russ, Thanks! That worked. I thought google would parse the html
 code
  to make sure it was a legitimate jpg. But, the cfm file with cfcontent
  worked fine. Thanks again.
  
  
 
 
 
 



 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Michael Grant

I suspect you are right. My point was more that RIAForge (and others) isn't
always people's first or best choice. Many of us prefer to build our own.
And many of us that try to use others' work end up with delays trying to get
support. And in some cases the delay for support is longer than the time it
takes to build from scratch.

Not everyone is as diligent about supporting their products as a certain Mr.
Camden is. ;-0



On Wed, Sep 22, 2010 at 9:23 AM, Raymond Camden rcam...@gmail.com wrote:


 Fair point - but I'd be willing to bet you get the same % of responses
 on anything from the Exchange as well.

 On Wed, Sep 22, 2010 at 8:20 AM, Michael Grant mgr...@modus.bz wrote:
 
  As a bit of conjecture to that. I also find that far too often I see
 people
  post here trying to get support for X that they found on RIAForge when
  authorX won't respond to support email.
 
  Just sayin'.
 
 
  On Wed, Sep 22, 2010 at 9:14 AM, Raymond Camden rcam...@gmail.com
 wrote:
 
 
  Just trying to remind folks. Far too often I see people post here
  looking for a CF solution to do X when X readily exists on RIAForge.
 
 
  On Wed, Sep 22, 2010 at 3:58 AM, Russ Michaels r...@michaels.me.uk
  wrote:
  
   Ray the exchange has far more in it than riaforge, especially in this
   particular category.
  
  
  
   On Wed, Sep 22, 2010 at 5:29 AM, Dave Watts dwa...@figleaf.com
 wrote:
  
  
   Strictly speaking, a CF page that returns a JPG via CFCONTENT is a
 JPG
  from
   the client's perspective.
  
   Dave Watts, CTO, Fig Leaf Software
  
   Sent from my Droid
  
   On Sep 21, 2010 4:37 PM, Richard Steele r...@photoeye.com wrote:
   
Hi Russ, Thanks! That worked. I thought google would parse the html
  code
   to make sure it was a legitimate jpg. But, the cfm file with
 cfcontent
   worked fine. Thanks again.
   
   
  
  
  
  
 
 
 
 

 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Raymond Camden

Must... resist... the urge to go crazy on the whole topic of
reinventing the wheel ;)

On Wed, Sep 22, 2010 at 8:35 AM, Michael Grant mgr...@modus.bz wrote:

 I suspect you are right. My point was more that RIAForge (and others) isn't
 always people's first or best choice. Many of us prefer to build our own.
 And many of us that try to use others' work end up with delays trying to get
 support. And in some cases the delay for support is longer than the time it
 takes to build from scratch.

 Not everyone is as diligent about supporting their products as a certain Mr.
 Camden is. ;-0


-- 
===
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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337315
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Michael Grant

hehe.
Please believe me that I understand and in many cases agree with your don't
reinvent the wheel position.
However I also don't think that we should assume that every project on
RIAForge is the absolute-hands-down-best-way of doing something either.

(Psst. we're hijacking this thread rather successfully. Are you sure this
isn't cf-comm?)

On Wed, Sep 22, 2010 at 10:01 AM, Raymond Camden rcam...@gmail.com wrote:


 Must... resist... the urge to go crazy on the whole topic of
 reinventing the wheel ;)

 On Wed, Sep 22, 2010 at 8:35 AM, Michael Grant mgr...@modus.bz wrote:
 
  I suspect you are right. My point was more that RIAForge (and others)
 isn't
  always people's first or best choice. Many of us prefer to build our own.
  And many of us that try to use others' work end up with delays trying to
 get
  support. And in some cases the delay for support is longer than the time
 it
  takes to build from scratch.
 
  Not everyone is as diligent about supporting their products as a certain
 Mr.
  Camden is. ;-0
 
 
 --
 ===
 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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337316
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Java Object Web Service Issue

2010-09-22 Thread James Holmes

We had the same error using the Alfresco webservice client. We ended
up having to use a classloader to load a different version of Axis
along with the Alfresco client.

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



On 22 September 2010 20:35, Joel Spriggs jrspri...@herffjones.com wrote:

 I'm attempting to use the Avalara Tax Java SDK in a CF9 application.  The 
 code works fine as a standalone java app.  But when we start to bring it into 
 CF as a jar where we instantiate the classes using createObject we get some 
 failures.  The main error I tend to see is

  AXIS ERROR org.apache.axis.configuration.EngineConfigurationFactoryFinder - 
 Unable to locate a valid EngineConfigurationFactory
  The stack trace looks like this:

 java.lang.NullPointerException at 
 org.apache.axis.client.Service.getEngineConfiguration(Service.java:801) at 
 org.apache.axis.client.Service.getAxisClient(Service.java:143) at 
 org.apache.axis.client.Service.(Service.java:152) at 
 com.avalara.avatax.services.address.AddressSvcLocator.(AddressSvcLocator.java:48)
  at AddressValidateSample.getAddressSvc(AddressValidateSample.java:101) at 
 AddressValidateSample.isValidAddress(AddressValidateSample.java:31) at 
 sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  at java.lang.reflect.Method.invoke(Method.java:597) at 
 coldfusion.runtime.java.JavaProxy.invoke(JavaProxy.java:97) at 
 coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2360) at 
 cfTax2ecfc2111713232$funcVALIDATEADDRESS.runFunction(/Applications/JRun4/servers/...

 Has anyone seen this kind of error before trying to use a java based Soap 
 wrapper in CF9?  I was starting on the path of a mixed version of Axis, since 
 I've been burned on that path before, but it's not panning out like I had 
 expected.

 Thanks
 Joel

 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Casey Dougall

On Wed, Sep 22, 2010 at 10:06 AM, Michael Grant mgr...@modus.bz wrote:

 (Psst. we're hijacking this thread rather successfully. Are you sure this
 isn't cf-comm?)


Remember the time when hotscripts.com had more perl scrips than php ;-)


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


Re: Java Object Web Service Issue

2010-09-22 Thread Joel Spriggs

I've found the issue.  It turns out the java code given by Avalara is compiled 
with Axis 1.2.  The CF9 server was a bit of a decoy, bc it had a compatible 
Axis jar.  

The problem was with the server running CF9.  The other developer working on 
this and myself are both running CF9 on a jrun server for development, the base 
JRun 4 server in its lib directory had a webservices.jar file that was a 
compilation of Axis 1.1.x, jaxrpc and saaj.  

After we removed that jar file, copied all dependent jars from the Avalara 
compile and removed the Axis jars we'd put into cfusion/lib, it picked up and 
started working fine.

Not the first time I've had Axis issues with cf and web services.  Probably 
won't be the last.

Thanks,
Joel 

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


Re: Using CF to manage ads shown on Blogger

2010-09-22 Thread Cameron Childress

On Wed, Sep 22, 2010 at 10:58 AM, Casey Dougall
ca...@uberwebsitesolutions.com wrote:
 Remember the time when hotscripts.com had more perl scrips than php ;-)

PERL?  Matt's Script Archive!

Incredibly, it's still alive (http://www.scriptarchive.com/).

-Cameron

...

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


List Sort help

2010-09-22 Thread Tom Jones

Hello,
I have a lit of version numbers and I need to sort them in the right order. 

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

How do I sort these so that they show in the right order starting with the 
highest first?

Thanks,
tom 

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


RE: List Sort help

2010-09-22 Thread Andy Matthews

ListSort should work:

http://www.cfquickdocs.com/cf8/#ListSort

Although you might need to use the text sort instead of numeric.



andy 

-Original Message-
From: Tom Jones [mailto:tjo...@acworld.com] 
Sent: Wednesday, September 22, 2010 11:18 AM
To: cf-talk
Subject: List Sort help


Hello,
I have a lit of version numbers and I need to sort them in the right order. 

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

How do I sort these so that they show in the right order starting with the
highest first?

Thanks,
tom 



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


Re: List Sort help

2010-09-22 Thread Tom Jones

thanks,
but I get an error saying cant convert 3.6.1 to numeric.

tom

ListSort should work:

http://www.cfquickdocs.com/cf8/#ListSort

Although you might need to use the text sort instead of numeric.



andy 

Hello,
I have a lit of version numbers and I need to sort them in the right order. 

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

How do I sort these so that they show in the right order starting with the
highest first?

Thanks,
tom 

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


Re: List Sort help

2010-09-22 Thread Dorioo

Did you do this: Although you might need to use the text sort instead of
numeric

- Gabriel

On Wed, Sep 22, 2010 at 12:26 PM, Tom Jones tjo...@acworld.com wrote:


 thanks,
 but I get an error saying cant convert 3.6.1 to numeric.

 tom

 ListSort should work:
 
 http://www.cfquickdocs.com/cf8/#ListSort
 
 Although you might need to use the text sort instead of numeric.
 
 
 
 andy
 
 Hello,
 I have a lit of version numbers and I need to sort them in the right
 order.
 
 cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10
 
 How do I sort these so that they show in the right order starting with the
 highest first?
 
 Thanks,
 tom

 

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


Re: List Sort help

2010-09-22 Thread Charlie Griefer

What version of CF?

On CF9, the following works:

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

cfoutput#appVers#br /#listSort( appVers, 'numeric', 'desc' )#/cfoutput


On Wed, Sep 22, 2010 at 9:26 AM, Tom Jones tjo...@acworld.com wrote:


 thanks,
 but I get an error saying cant convert 3.6.1 to numeric.

 tom

 ListSort should work:
 
 http://www.cfquickdocs.com/cf8/#ListSort
 
 Although you might need to use the text sort instead of numeric.
 
 
 
 andy
 
 Hello,
 I have a lit of version numbers and I need to sort them in the right
 order.
 
 cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10
 
 How do I sort these so that they show in the right order starting with the
 highest first?
 
 Thanks,
 tom

 

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


Re: List Sort help

2010-09-22 Thread Tom Jones

Hmm, OK ... I'm using CFMX7 and OpenBD 1.3

Thanks,
tom


What version of CF?

On CF9, the following works:

cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10

cfoutput#appVers#br /#listSort( appVers, 'numeric', 'desc' )#/cfoutput




 

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


Re: Really odd problem - cpu utilization at idle

2010-09-22 Thread Dan Baughman

Ok I got this taken care of, it was the registry values!

I wasn't using Client variables, but I had client management set to yes in
the application.cfm

I disabled that, and cleared that reg key that stores the client variables
and like magic the server is 100%

Clientmanagement=yes is basically a time bomb just waiting to go off if you
are using the registry for client variables.

Why in the world would Adobe not use something like SQLite or Derby for
this, by default?

Thanks all for the help.


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


Video analysis

2010-09-22 Thread Dan Baughman

Hi List,

I'm kicking around allowing users to upload videos directly to my site
rather than using a 3rd party like youtube or vimeo.

Does anyone have any experience with a coldFusion friendly video analysis
tool?

I'm hoping for something I can run on the uploaded file to verify the
fileformat, video codec, etc.

Regards,
Dan


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


Re: List Sort help

2010-09-22 Thread Tom Jones

Correction, it's only on OpenBD 1.3, that I have the problem. I will file a bug 
with them.

Thanks,
tom


Hmm, OK ... I'm using CFMX7 and OpenBD 1.3

Thanks,
tom


 

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


Re: Video analysis

2010-09-22 Thread Oğuz Demirkapı

I am just working on same kind of approach.

There is no easy answer because of having inconsistent services/tools.

I tried ffmpeg and mencoder with command line execution but it is too
detailed with all possible parameters and not fun at all. Every version of
any of these tools also possibly contains some major changes which can cause
a real maintenance issues.

I also tried Railo CFVideo extension which is a wrapper for ffmpeg and in
theory it is a nice solution. BUT, it has an old version of ffmpeg as
default and whenever you update the ffmpeg version, it does not work as
expected. Railo team can update the wrapper with the latest versions of
ffmpeg and even they may accept to offer some commercial support for this
task. I asked already and waiting an answer for that.

The other solution that I focused is the On2 Flix Engine http://on2.com. It
uses mencoder as base and has a good isolated structure with a frequent
update periods (not as frequent as ffmpeg). But I am forced to develop a
solution on Windows only platform and the COM object that is utilized as
wrapper is not stable enough on Win platform. On2 has also sample code for
ColdFusion and it is a plus.

I also contacted with Rhozet for their commercial solutions but they are not
well responsive for possible sales actions. Their Carbon Coder (
http://rhozet.com/carbon_coder.html) was the main engine on Adobe Media
Encoder and it would be interesting solution for mass production. If they
can learn the sales ...

The encoding issue will be always a problem with latest codecs etc. For
example having MTS file support is an issue now and hard to figure out a
proper solution because of having different standards from different brands
etc. Just because of that focusing a solution which has frequent updates
would be the right approach.


I also may want to hear others experiences, if any.


Sincerely,

Oğuz Demirkapı





2010/9/22 Dan Baughman dan.baugh...@gmail.com


 Hi List,

 I'm kicking around allowing users to upload videos directly to my site
 rather than using a 3rd party like youtube or vimeo.

 Does anyone have any experience with a coldFusion friendly video analysis
 tool?

 I'm hoping for something I can run on the uploaded file to verify the
 fileformat, video codec, etc.

 Regards,
 Dan


 

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


Re: Video analysis

2010-09-22 Thread Wil Genovese

The first thing I would look at is Java. ColdFusion can access the Java layer 
easily and there are many Java based media tools.


Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well. 

On Sep 22, 2010, at 11:43 AM, Dan Baughman wrote:

 
 Hi List,
 
 I'm kicking around allowing users to upload videos directly to my site
 rather than using a 3rd party like youtube or vimeo.
 
 Does anyone have any experience with a coldFusion friendly video analysis
 tool?
 
 I'm hoping for something I can run on the uploaded file to verify the
 fileformat, video codec, etc.
 
 Regards,
 Dan
 
 
 

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


Re: Really odd problem - cpu utilization at idle

2010-09-22 Thread Dave Watts

 Why in the world would Adobe not use something like SQLite or Derby for
 this, by default?

Client variables predate the existence of SQLite or Derby. Client
variables were first introduced back in CF 2, if I recall correctly.

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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337332
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Sessions persist after server restart.

2010-09-22 Thread Eric Cobb

No, the J2EE sessions are persisting between server restarts, just like 
the documentation says.  The docs just don't tell how to turn it off.  
Adobe hints that you can configure the J2EE server to retain session 
data, which means that you should also be able to configure it NOT to 
retains sessions, but there's no mention as to where this configuration 
is or how to change it.

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Cutter (ColdFusion) wrote:
   Is it using the CLIENT scope, with vars in the db? Is it storing 
 things in the COOKIE scope, and checking that scope on login for 
 previously entered credentials?

 Steve Cutter Blades
 Adobe Community Professional - ColdFusion
 Adobe Certified Professional
 Advanced Macromedia ColdFusion MX 7 Developer

 Co-Author of Learning Ext JS
 http://www.packtpub.com/learning-ext-js/book
 _
 http://blog.cutterscrossing.com


 On 9/20/2010 1:45 PM, Eric Cobb wrote:
   
 So, I was working locally on an application today and I needed to
 restart my CF services.  Much to my surprise, after I bounced CF I came
 back to my application and I was not forced back to the login screen as
 I would have expected.  Rather, all of my session info was still there.
 I then shut down CF, clicked around in my application to make sure
 everything was down, then brought CF back up and my session info was
 still alive in my application.

 So, I did a little research and came across this
 (http://livedocs.adobe.com/coldfusion/8/htmldocs/sharedVars_02.html)
 where it states:
 /If you use J2EE session management and configure the J2EE server to
 retain session data between server restarts, ColdFusion retains session
 variables between server restarts./

 Ok, I'm using J2EE sessions, so now I know what's going on.  Now, my
 question is, how do I turn it off?  Adobe hints that you can configure
 the J2EE server to retain session data, but gives no clue as to where or
 how.  All I've found is the checkbox to enable/disable J2EE sessions.

 Also, is this something that is turned ON or OFF by default?  I'm just
 wondering if I accidentally turned it on, or if it's always been on and
 I never noticed it.

 


 

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


Re: Sessions persist after server restart.

2010-09-22 Thread Carl Von Stetten

I don't know what the answer is, but it might help if you state which J2EE 
server you are using (JRUN, JBoss, etc.).

Carl

No, the J2EE sessions are persisting between server restarts, just like 
the documentation says.  The docs just don't tell how to turn it off.  
Adobe hints that you can configure the J2EE server to retain session 
data, which means that you should also be able to configure it NOT to 
retains sessions, but there's no mention as to where this configuration 
is or how to change it.

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Cutter (ColdFusion) wrote:
 

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


Webservice Question: Switching from CFHTTP to CFINVOKE not working out so well.

2010-09-22 Thread Michael Grant

Up until recently I hit this webservice with a simple CFHTTP and the
webservice would return XML. For some reason now when I hit it with CFHTTP I
get a Connection Failure message in the file content.
I've verified that the webservice URL is stil valid and works if I hit with
a regular form post. So I suspect this has something to do with the hosting
provider. So i thought I'd switch to use CFINVOKE instead.
However I don't seem to know how to get to the actual XML anymore. When I
hit the web service it seems to return an object and I'm at a loss as to how
to get the xml I used to get. Any help would be great.

There's a full description with example code and example response here:
*http://tinyurl.com/28ehyyj*
*
*
*Full link here:*
*http://www.cheappremiumtickets.com/test3.cfm*


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


Boardwalk Empire

2010-09-22 Thread Rick Root

anyone else watch HBO's new series Boardwalk Empire?  I caught the
series premier last night, thought it was pretty good.

Rick

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


Re: Boardwalk Empire

2010-09-22 Thread Michael Grant

Is it done in CF?

On Wed, Sep 22, 2010 at 3:24 PM, Rick Root rick.r...@gmail.com wrote:


 anyone else watch HBO's new series Boardwalk Empire?  I caught the
 series premier last night, thought it was pretty good.

 Rick

 

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


RE: Boardwalk Empire

2010-09-22 Thread Andy Matthews

NO, but it's done in OT. 

-Original Message-
From: Michael Grant [mailto:mgr...@modus.bz] 
Sent: Wednesday, September 22, 2010 2:26 PM
To: cf-talk
Subject: Re: Boardwalk Empire


Is it done in CF?

On Wed, Sep 22, 2010 at 3:24 PM, Rick Root rick.r...@gmail.com wrote:


 anyone else watch HBO's new series Boardwalk Empire?  I caught the 
 series premier last night, thought it was pretty good.

 Rick

 



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


Re: Really odd problem - cpu utilization at idle

2010-09-22 Thread Russ Michaels

set the default to cookie like i said and u will have no issues. Note what i
said about the registry key if you wish to disable registry storage
permanently.

On Wed, Sep 22, 2010 at 6:44 PM, Dave Watts dwa...@figleaf.com wrote:


  Why in the world would Adobe not use something like SQLite or Derby for
  this, by default?

 Client variables predate the existence of SQLite or Derby. Client
 variables were first introduced back in CF 2, if I recall correctly.

 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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337339
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: List Sort help

2010-09-22 Thread Leigh

 On CF9, the following works:

Does it *really* work .. or just seem to? I cannot test it at the moment, but I 
would not have expected either sort to yield the desired results. 

-Leigh


  

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


Re: List Sort help

2010-09-22 Thread Charlie Griefer

On Wed, Sep 22, 2010 at 2:25 PM, Leigh cfsearch...@yahoo.com wrote:


  On CF9, the following works:

 Does it *really* work .. or just seem to? I cannot test it at the moment,
 but I would not have expected either sort to yield the desired results.


What would be the difference between *really* working and just seeming to?

I output the listSorted()'d values, they looked to be sorted.  So it seems
to.  As to whether or not it *really* works, I will admit that I hadn't had
a full cup of coffee when testing.  But I agree with you... I was more
surprised that it seemed to have worked than I would have been had it not.

FWIW, sorting by text did not work.  Well, it worked as one might have
expected it to (putting 3.6.10 and 3.6.1 next to each other), but not in the
way that the OP was looking for it to work.

-- 
Charlie Griefer
http://charlie.griefer.com/

I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.


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


Re: List Sort help

2010-09-22 Thread Leigh

 What would be the difference between *really* working and
 just seeming to?

For me ... more testing and more coffee ;-) Specifically with a greater range 
of values, such as version numbers before and after the 3.x.x range. 

 I was more
 surprised that it seemed to have worked than I would have

Exactly, and that is why I am suspicious.  I was not expecting text to work 
at all, for obvious reasons. Neither was I expecting numeric to work because 
values like 3.6.1 are not numeric. At least not in the strict sense. Hence my 
reluctance to say it it works
 
-Leigh


  

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


Re: List Sort help

2010-09-22 Thread Charlie Griefer

On Wed, Sep 22, 2010 at 3:16 PM, Leigh cfsearch...@yahoo.com wrote:


  What would be the difference between *really* working and
  just seeming to?

 For me ... more testing and more coffee ;-) Specifically with a greater
 range of values, such as version numbers before and after the 3.x.x range.


OK you twisted my arm into indulging in another cup of coffee (mmm
coffee).  You're correct.  It only seemed to work with the originally
given values.

Changing the list to: cfset appVers =
10.2.4,3.6.1,3.6.5,3.6.3,3.6.10,1.2.5

Resulted in a sorted list of: 3.6.1, 3.6.3, 10.2.4, 1.2.5, 3.6.5, 3.6.10



  I was more
  surprised that it seemed to have worked than I would have

 Exactly, and that is why I am suspicious.  I was not expecting text to
 work at all, for obvious reasons. Neither was I expecting numeric to work
 because values like 3.6.1 are not numeric. At least not in the strict sense.
 Hence my reluctance to say it it works


CF -is- treating these like some sort of numeric value tho... because if I
added a value like 10.2.5.4 to the original list, a numeric listSort fails
saying a non-numeric value was found.  So CF sees x.x.x as a valid numeric
value, but apparently not base 10 based on the sorted result above.

-- 
Charlie Griefer
http://charlie.griefer.com/

I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.


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


Re: Really odd problem - cpu utilization at idle

2010-09-22 Thread Dan Baughman

My hesitation on cookie is adding the un-necessary bandwidth to every
request.

I think the best move is a hybrid.

1) disable client vars using clientmanagement=no in your cfapplication
2) set it to database or cookies.

On Wed, Sep 22, 2010 at 2:57 PM, Russ Michaels r...@michaels.me.uk wrote:


 set the default to cookie like i said and u will have no issues. Note what
 i
 said about the registry key if you wish to disable registry storage
 permanently.

 On Wed, Sep 22, 2010 at 6:44 PM, Dave Watts dwa...@figleaf.com wrote:

 
   Why in the world would Adobe not use something like SQLite or Derby for
   this, by default?
 
  Client variables predate the existence of SQLite or Derby. Client
  variables were first introduced back in CF 2, if I recall correctly.
 
  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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337344
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: List Sort help

2010-09-22 Thread Leigh

 So CF sees
 x.x.x as a valid numeric
 value

WTH,, x.x.x is numeric but x.x.x.X is not? Maybe CF is treating x.x.x as some 
weird date format, and that is how it is able to sort numerically sort-of... ?


  

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


Re: ColdFusion Report Builder and Cyrillic fonts [spamtrap bayes][spamtrap heur]

2010-09-22 Thread Paul Kukiel

Thanks Paul.

Font is:  Helvetica

identity-H is selected.

I have Windows 7 which comes with all fonts installed I assume.  Also I can
generate basic HTML and the Japanese fonts will display.

Example I used this text int eh report:
http://localhost/ee-debug/reports/it/questionreport.cfm

Set identity-H and the font as Helvetica

And there is nothing in the report where the text should be.  ( attached a
snip )

Any further ideas?

Paul.


On Wed, Sep 22, 2010 at 5:35 PM, Paul Hastings p...@sustainablegis.comwrote:


 On 9/22/2010 12:11 PM, Paul Kukiel wrote:
  I am trying to output, using a coldfusion report builder report, text in
  Japanese/Russian to a PDF. They always come out with   I tried the

 i just tried this w/cfr 9 on windows PDF output  it works as expected.
 first
 off, are you sure the data/report(should be identity-H) are properly
 encoded?

 what font are you using (do not use the @ ones)? embedded or not
 (actually
 didn't matter for me but might if your client doesn't have font with those
 glyphs)?

 btw ? indicates garbaged data. empty boxes or blank glyphs indicate font
 or
 minor encoding issue. so if you're getting ? in your PDF then i'd go back
 to the
 encoding.

 #LSCurrencyFormat(45345,'local','ja_JP')# also works fine in cfr PDF output
 (provided formatted w/correct font).

 

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


Re: Really odd problem - cpu utilization at idle

2010-09-22 Thread Russ Michaels

what you have to remember is that cookies are sent back and forth regardless
unless the client has them disabled in his browser.
Official *max*imum *size* for a HTTP *cookie* header is 4K. So the actual *
cookie* will be slightly smaller. Some browsers will work with bigger *
cookie*s, others won't.
So it is never going to add much bandwidth.


On Wed, Sep 22, 2010 at 11:52 PM, Dan Baughman dan.baugh...@gmail.comwrote:


 My hesitation on cookie is adding the un-necessary bandwidth to every
 request.

 I think the best move is a hybrid.

 1) disable client vars using clientmanagement=no in your cfapplication
 2) set it to database or cookies.

 On Wed, Sep 22, 2010 at 2:57 PM, Russ Michaels r...@michaels.me.uk
 wrote:

 
  set the default to cookie like i said and u will have no issues. Note
 what
  i
  said about the registry key if you wish to disable registry storage
  permanently.
 
  On Wed, Sep 22, 2010 at 6:44 PM, Dave Watts dwa...@figleaf.com wrote:
 
  
Why in the world would Adobe not use something like SQLite or Derby
 for
this, by default?
  
   Client variables predate the existence of SQLite or Derby. Client
   variables were first introduced back in CF 2, if I recall correctly.
  
   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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337347
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion Report Builder and Cyrillic fonts [spamtrap bayes][spamtrap heur]

2010-09-22 Thread Andrew Scott

I disagree that ? means garbage data, and I say this because I spend a good
2 months trying to solve this problem. And the thing is that the reports
that I tried to use them on, as Paul K as mentioned will work in both HTML
mode, as well as Flash Paper mode with no issues. But as soon as you need to
generate a PDF with the same data it won't work.

This is exactly why Adobe has identified this as a bug.

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


 -Original Message-
 From: Paul Kukiel [mailto:pkuk...@gmail.com]
 Sent: Thursday, 23 September 2010 9:06 AM
 To: cf-talk
 Subject: Re: ColdFusion Report Builder and Cyrillic fonts [spamtrap
 bayes][spamtrap heur]
 
 
 Thanks Paul.
 
 Font is:  Helvetica
 
 identity-H is selected.
 
 I have Windows 7 which comes with all fonts installed I assume.  Also I
can
 generate basic HTML and the Japanese fonts will display.
 
 Example I used this text int eh report:
 http://localhost/ee-debug/reports/it/questionreport.cfm
 
 Set identity-H and the font as Helvetica
 
 And there is nothing in the report where the text should be.  ( attached a
 snip )
 
 Any further ideas?
 
 Paul.
 
 
 On Wed, Sep 22, 2010 at 5:35 PM, Paul Hastings
 p...@sustainablegis.comwrote:
 
 
  On 9/22/2010 12:11 PM, Paul Kukiel wrote:
   I am trying to output, using a coldfusion report builder report,
   text in Japanese/Russian to a PDF. They always come out with   I
   tried the
 
  i just tried this w/cfr 9 on windows PDF output  it works as expected.
  first
  off, are you sure the data/report(should be identity-H) are properly
  encoded?
 
  what font are you using (do not use the @ ones)? embedded or not
  (actually didn't matter for me but might if your client doesn't have
  font with those glyphs)?
 
  btw ? indicates garbaged data. empty boxes or blank glyphs indicate
  font or minor encoding issue. so if you're getting ? in your PDF then
  i'd go back to the encoding.
 
  #LSCurrencyFormat(45345,'local','ja_JP')# also works fine in cfr PDF
  output (provided formatted w/correct font).
 
 
 
 ~~
 ~~~|
 Order the Adobe Coldfusion Anthology now!
 http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-
 Dinowitz/dp/1430272155/?tag=houseoffusion
 Archive: http://www.houseoffusion.com/groups/cf-
 talk/message.cfm/messageid:337346
 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-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337348
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: List Sort help

2010-09-22 Thread Leigh

 So CF sees x.x.x as a valid numeric
 value, but apparently not base 10 based on the sorted
 result above.

I am pretty sure it treating the values as dates. Go figure.

cfset appVers = 10.2.4,3.6.1,3.6.5,3.6.3,3.6.10,1.2.5 
cfset appVers  = ListSort(appVers, numeric, desc)
cfloop from=1 to=#listLen(appVers)# index=x
   cfset asText = listGetAt(appVers, x)
   cfset asDate = createODBCDate(asText)
   cfoutput
  #asText# == #asDate#br
   /cfoutput
/cfloop



  

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


running requests longer than request timeout

2010-09-22 Thread Richard Steele

On CF8 Enterprise, we have set the request timeout to 30 seconds. However, in 
Fusion Reactor the request is continuing on way past that time for certain 
threads. Why is the request timeout not working? Thanks in advance. 

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