RE: cold fusion 8 secur1ty question

2008-02-05 Thread Brad Wood
and the web server serves up the 404 without even asking CF. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http

RE: Transact SQL question has me stumped

2008-02-05 Thread Brad Wood
You need a bitwise operator. Bit and is in MS SQL SELECT mycolumns FROM mytable WHERE bit_column 128 = 128 Should be along the lines of what you want I think. This example works for me on MS SQL 2005: declare @test as bigint set @test = 128 select @test 128 ~Brad -Original

RE: Transact SQL question has me stumped

2008-02-05 Thread Brad Wood
) Dynamic SQL. I would do the latter. Dynamically create a SQL string which looks like this: SELECT mycolumns FROM mytable WHERE bit_column 1 = 1 AND bit_column 8 = 8 AND bit_column 32 = 32 AND bit_column 128 = 128 Ect ... ~Brad -Original Message

RE: String Manipulation Fun

2008-02-05 Thread Brad Wood
There's probably a better way of doing this though... There is-- but I think it involves atomic data. :) ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

RE: Programmatically determine an application's size in memory?

2008-02-04 Thread Brad Wood
= CreateObject(java, java.lang.Runtime).getRuntime() cfset usedMemory = (runtime.totalMemory() - runtime.freeMemory()) / 1024 / 1024 #round(usedMemory)# MB used. Then start your application and see how much memory is used then. ~Brad -Original Message- From: Andy Matthews [mailto:[EMAIL

RE: cffile rename

2008-01-28 Thread Brad Wood
Use the fileexists() function prior to the rename. ~Brad -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, January 28, 2008 12:45 PM To: CF-Talk Subject: cffile rename Hello, I am trying to use cffile action=rename to rename some files on the server

RE: This Again - CF Learning Resources

2008-01-28 Thread Brad Wood
http://www.lynda.com -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Monday, January 28, 2008 12:48 PM To: CF-Talk Subject: This Again - CF Learning Resources So I've been told that we have two people that need to learn CF (they have basic programming skills

RE: cffile rename

2008-01-28 Thread Brad Wood
idiot so that's what I do. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com

GlassFish

2008-01-15 Thread Brad Wood
Anyone used it? ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com

RE: GlassFish

2008-01-15 Thread Brad Wood
http://www.google.com/search?hl=enq=glassfish But Rick Root could have told you that :) ~Brad -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 12:38 PM To: CF-Talk Subject: RE: GlassFish Link? Have one? :) -Original Message

RE: GlassFish

2008-01-15 Thread Brad Wood
How did you like it? We were considering playing with it too. ~Brad -Original Message- From: Jerry Guido [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 1:01 PM To: CF-Talk Subject: RE: GlassFish Briefly. I played around with Jruby for a weekend. It is Suns OS Java EE web

RE: SQL Question, get previous record

2008-01-15 Thread Brad Wood
I think you'll want an order by on those: to get the previous: SELECT TOP 1 idNumber FROM Table WHERE idNumber #myNumber# ORDER BY idNumber DESC or to get the next: SELECT TOP 1 idNumber FROM Table WHERE idNumber #myNumber# ORDER BY idNumber ASC ~Brad -Original Message- From

RE: GlassFish

2008-01-15 Thread Brad Wood
Thanks for the input Jochem and Jerry! ~Brad -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 2:40 PM To: CF-Talk Subject: Re: GlassFish Brad Wood wrote: Anyone used it? I tried it out for a short while a little over a year ago

RE: Finding Vital Server Stats with CFML

2008-01-10 Thread Brad Wood
GetMetricData http://livedocs.adobe.com/coldfusion/7/htmldocs/0489.htm ~Brad -Original Message- From: Shane Trahan [mailto:[EMAIL PROTECTED] Sent: Thursday, January 10, 2008 9:25 AM To: CF-Talk Subject: Finding Vital Server Stats with CFML Are there any CFML tags to pull memory

RE: Outputting a hash character in an IIF() function.

2008-01-09 Thread Brad Wood
=background-color: ##DDFFDD That text is then evaluated by the iif to: style=background-color: #DDFFDD ~Brad -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 09, 2008 10:14 AM To: CF-Talk Subject: Re: Outputting a hash character in an IIF() function. Dave

RE: Outputting a hash character in an IIF() function.

2008-01-09 Thread Brad Wood
a hash mark in an iif. (which I answered in my previous reply. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w

RE: A Very Sophisticated Query

2008-01-09 Thread Brad Wood
of information you left out was what DBMS you are using. My example below works on MS SQL Server 2000 and 2005. I hope the line breaks don't get too messed up. ~Brad -- declare tables to match data structure declare @lot table (lot_id int, dev_name varchar(50)) declare @serial table (serial_id int

RE: HUGE problem -- all datasource connections are broken

2008-01-04 Thread Brad Wood
Just a thought, but you aren't by chance using SQL server instances, are you? We had some problems connecting to anything but the base instance on one of our MS SQL Servers after installing some Windows updates. I can't remember the specifics right now and by DBA is at lunch... ~Brad c) From

RE: Viviotech Outage

2008-01-04 Thread Brad Wood
Well, technically if this is their first outage all year, they are allowed to be down for 8.76 hours and still claim 99.9% uptime. :) 365.25 * .001 * 24 ~Brad -Original Message- From: Dr A [mailto:[EMAIL PROTECTED] Sent: Friday, January 04, 2008 3:31 PM To: CF-Talk Subject: Re

RE: CFMX7

2008-01-04 Thread Brad Wood
I think I may have seen that error related to network connectivity problems. Also, are the connection pooling settings the same between your dev and prod environments? Just a couple thoughts. ~Brad -Original Message- From: Brent Nicholas [mailto:[EMAIL PROTECTED] Sent: Friday

RE: CFMX7

2008-01-04 Thread Brad Wood
Also, check out this blog: http://www.talkingtree.com/blog/index.cfm?mode=entryentry=40F4C7EA-45A6 -2844-7D0C4841EA190125 ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

RE: Should jsstringformat do more?

2008-01-01 Thread Brad Wood
here should be bullet-proof as long as you do tag onlick=alert('#htmleditformat(jsstringformat(crazy_string))#'); That feels right to me. Thanks for the good input Barney. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most

RE: If It Ain't Broke

2008-01-01 Thread Brad Wood
joins. When I have to manually escape script tags it just reeks of wrong. Like there should be a better, bullet-proof way if I just re-thought my code. Unfortunately, there doesn't seem to be an elegant answer to this one that will give me the warm fuzzies as I code it. ~Brad

RE: Should jsstringformat do more?

2008-01-01 Thread Brad Wood
does that sound? ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF

Should jsstringformat do more?

2007-12-31 Thread Brad Wood
that escaping script tags might be out of scope (and difficult) for the jsstringformat function, but I wanted to hear your thoughts first. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

RE: Should jsstringformat do more?

2007-12-31 Thread Brad Wood
So, do you consider that to be a browser bug or is the replace method really the right way to do it? I mean, it seems logical why my browser acts the way it does-- but the solution sure seems kludgy... it just doesn't seem right. ~Brad -Original Message- From: Barney Boisvert [mailto

RE: Should jsstringformat do more?

2007-12-31 Thread Brad Wood
would have seen the example which involved ColdFusion. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive

RE: Should jsstringformat do more?

2007-12-31 Thread Brad Wood
HTML and or JavaScript and by doing so bind their success to browser behaviors. 20 years from now when we are on HTML 8.0 all the CFFORM tags may no longer work, but that hasn't stopped us yet. ~Brad ~| Adobe® ColdFusion® 8 software

RE: Should jsstringformat do more?

2007-12-31 Thread Brad Wood
with the topic. I'd say we've beaten the former into the ground (as usual) but never touched the latter. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

Streaming Flash videos with CF/Flex ??

2007-12-26 Thread Brad Wood
that cfpresentation lets you have a slide with video in it, but I've never tried it. Is this really a solution for Flex? Thanks. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-24 Thread Brad Wood
Hope that helps? Very much so-- thanks. I need to find (or make) a big Venn diagram that shows all these relations... ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-23 Thread Brad Wood
? ~Brad JRun is not a JRE. JRun uses whatever JRE (actually JDK) that you've configured. Same for JBoss, WebSphere, WebLogic etc. You need a JDK in order to run a Java app server. Sorry to nit-pick but I think it's an important point and it's indicative of how little most folks really

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-21 Thread Brad Wood
Thank you for the input Adam. ~Brad -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent: Thursday, December 20, 2007 7:53 PM To: CF-Talk Subject: Re: JREE Servers (was Session Management - sticky sessions) We use clustered CF servers, most sitting behind F5 switches

RE: Some troubles with my Query

2007-12-21 Thread Brad Wood
want to do: WHERE contractinfo.months in (cfqueryparam value=#form.Monthselect# cfsqltype=CF_SQL_VARCHAR separator=/ list=Yes) Which will result in this equivalent SQL being passed to the DB: WHERE contractinfo.months in (1,2,3,4,5) Does that help? ~Brad -Original Message- From: Scott

RE: Some troubles with my Query

2007-12-21 Thread Brad Wood
the months column contained a 1 or a 3 or a 5. ~Brad -Original Message- From: Scott Kuo [mailto:[EMAIL PROTECTED] Sent: Friday, December 21, 2007 4:33 PM To: CF-Talk Subject: Re: Some troubles with my Query Hmm what do you think would be a good solution to filtering out extra rows

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-20 Thread Brad Wood
Interesting. Updater 7, huh? Isn't it about time for JRun 5? :) ~Brad -Original Message- From: Matthew Williams [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 9:22 PM To: CF-Talk Subject: Re: JREE Servers (was Session Management - sticky sessions) But wait! Adobe just

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-20 Thread Brad Wood
with experience in that realm. (And their help is always much appreciated!) Heck, raise your hand if you use JRun in Multi-Server mode too. One thing I don't want to do is move to another J2EE platform because it think it has more features and then find myself all alone. :) Thanks. ~Brad

RE: cfquery order by question

2007-12-19 Thread Brad Wood
above should work. ~Brad -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 11:44 AM To: CF-Talk Subject: cfquery order by question i have an adin form that allows a client to specify the sort order of a returned collection of results. Easy

RE: cfquery order by question

2007-12-19 Thread Brad Wood
Coalesce simply returns the first non-null value. Like MS SQL's isnull, but it can take more arguments. ~Brad -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 12:15 PM To: CF-Talk Subject: Re: cfquery order by question Use something

RE: Loopy loo

2007-12-19 Thread Brad Wood
It is a little bizarre, but it has come up several times in the talk list and I don't think I have ever heard an exceptionally good reason for it. The good news is, the behavior is fixed in CF8. I just tested it to make sure. :) ~Brad -Original Message- From: Dominic Watson [mailto

RE: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Brad Wood
It is resolved, if you have CF8. http://www.chapter31.com/2007/10/31/coldfusion-8-can-now-use-cacheafterc achewithin-when-using-cfqueryparams/ ~Brad -Original Message- From: Ben Mueller [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 2:40 PM To: CF-Talk Subject: Solutions

JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Brad Wood
on the same J2EE server. Our Java team has used WebSphere, JBoss, Tomcat and JRUN in the past. Do you have a personal preference over JRUN, Sean? Or anyone for that matter who has experience. ~Brad ~| Adobe® ColdFusion® 8 software 8

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Brad Wood
. Thanks. ~Brad JRun is not an enterprise J2EE server, it's a midrange J2EE server. WebSphere and WebLogic are enterprise servers. I haven't worked with WebLogic, but WebSphere has LOTS of functionality beyond what JRun offers. Of course, that functionality comes at a cost - it's very complicated

RE: CFDOCUMENT creating a PDF - ARGH!

2007-12-18 Thread Brad Wood
Sorry, I haven't been keeping up with this entire thread, but I noticed your post below. Beware that IE (at least) will cache the mime type on successive refreshes of a page. If it gets a pdf one time, it expects it the next time as well etc... ~Brad -Original Message- From: Les

RE: FTP via CF?

2007-12-18 Thread Brad Wood
cfftp Who would have guessed, huh? :) -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 18, 2007 1:19 PM To: CF-Talk Subject: FTP via CF? Can CF upload/download a file or files via FTP? I was looking at cfhttp or cffile. Sorry if this seems

RE: memory issues

2007-12-18 Thread Brad Wood
SeeFusion or Fusion-Reactor will allow you to force garbage collection. ~Brad I plan on converting it all to being database-driven, but I'm still confused as to why this memory isn't being released. Are the Queries being eliminated, but not removed from memory just yet? Is there a way

RE: 'The selected method functionName was not found.' error.

2007-12-18 Thread Brad Wood
Could you show us how page is created? Is page an instance of a CFC? If so, what cfarguments does cffunction name=getRootIDofChildPage have in the CFC? ~Brad -Original Message- From: h k [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 18, 2007 4:38 PM To: CF-Talk Subject

RE: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Brad Wood
, but easier to implement, and will probably perform better if you are dealing with a lot of records. ~Brad -Original Message- From: Philip Hayes [mailto:[EMAIL PROTECTED] Sent: Monday, December 17, 2007 11:17 AM To: CF-Talk Subject: Filtering with a session variable in CFGRID and Paging Ok

RE: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Brad Wood
Oops, I actually meant to post (http://www.asfusion.com/blog/entry/filtering-a-cfgrid-as-you-type) as an example of the second method. The link below was an example of the first method. ~Brad -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Monday, December 17, 2007

RE: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Brad Wood
Could you elaborate on the errors? Are they flash errors or CF errors? Can you give us the error messages? ~Brad -Original Message- From: Philip Hayes [mailto:[EMAIL PROTECTED] Sent: Monday, December 17, 2007 3:59 PM To: CF-Talk Subject: Re: Filtering with a session variable in CFGRID

RE: QofQ insert

2007-12-17 Thread Brad Wood
the cfquery and produce sql like such: Insert into table (col1, col2) (select 'foo1', 'bar1' Union all select 'foo2', 'bar2' Union all select 'foo3', 'bar3' Union all select 'foo'4, 'bar4') ~Brad -Original Message

RE: To AIR or not to AIR?

2007-12-14 Thread Brad Wood
via it's web service calls. Hope that helps. ~Brad -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, December 14, 2007 9:52 AM To: CF-Talk Subject: RE: To AIR or not to AIR? Meaning that the purpose behind AIR is to make portable Desktop apps out of web

RE: Compare two tables

2007-12-14 Thread Brad Wood
If you can pull both result sets into ColdFusion through their respective data sources, you should be able to use a QofQ. A left outer join isn't supported in QofQ's, but there are work-arounds: http://www.bealearts.co.uk/blog/2007/06/20/how-to-do-an-outer-join-in-qu ery-of-queries/ ~Brad

RE: Compare two tables

2007-12-14 Thread Brad Wood
in a cfquery tag and then do your join to that? Overall it might perform better and you wouldn't actually be putting the data in SQL server :) ~Brad -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, December 14, 2007 12:02 PM To: CF-Talk Subject: Re: Compare two

RE: Compare two tables

2007-12-14 Thread Brad Wood
Nope, QofQ does now allow for outer joins either with the left outer syntax, nor with the *= syntax. The work-around is usually to union two selects like in the link I posted earlier. ~Brad -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Friday, December 14

RE: CF8 CFGrid and https

2007-12-14 Thread Brad Wood
We ended up putting all our web services in their own sub folder with it's own Application.cfm. We also had to eliminate cfhtmlhead stuff in any file we retro-fitted to include in a web service call to our Ajax pages. ~Brad -Original Message- From: Jeremy Keith [mailto:[EMAIL

RE: Compare two tables

2007-12-14 Thread Brad Wood
Lol. That does make a difference, doesn't it. :) ~Brad -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Friday, December 14, 2007 2:07 PM To: CF-Talk Subject: RE: Compare two tables Pardon me for correcting Brad: QofQ does NOT allow for outer joins I'm glad

RE: 500 null due to large amounts of records returned

2007-12-14 Thread Brad Wood
to load that page and actually wanting to see all 4 millions records worth. That would suck to have to wait for a page like that to load when you really just wanted to verify a particular subset of the security configuration. ~Brad -Original Message- From: Joyce Young [mailto:[EMAIL

RE: clustering issue

2007-12-13 Thread Brad Wood
over and over while it is running. I've seen it in thread dumps before. It's kind of annoying, but if I am correct-- it does make a little sense. ~Brad -Original Message- From: Matthew Williams [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 12, 2007 9:53 PM To: CF-Talk Subject: Re

RE: To AIR or not to AIR?

2007-12-13 Thread Brad Wood
You might want to ask the AIR mailing list... http://www.houseoffusion.com/groups/adobe-integrated-runtime/ ~Brad -Original Message- From: d l [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 2:18 PM To: CF-Talk Subject: To AIR or not to AIR? I know I need air but do I need

RE: clustering issue

2007-12-12 Thread Brad Wood
If CF8 clustering is like CF7, I believe you are giving it too much credit. The JRUN connectors set up in your web server will not give request to an instance which has been stopped, but it pays absolutely no regard to the load of that instance. I was disappointed when I found that out. ~Brad

TCP Sessions and firewalls

2007-12-05 Thread Brad Wood
useful. Our load balancer is a Foundry ServerIron. Our Firewall is a Juniper SSG-520. Are our servers configured wrong, or is our firewall underpowered? ~Brad ~| Check out the new features and enhancements

RE: Problem with SQL Insert

2007-12-05 Thread Brad Wood
Depending on your DBMS, the syntax INSERT table_name can be valid. I know it works for MSSQL. What if you put the table name in brackets? [table_name] ~Brad -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 05, 2007 6:08 PM To: CF-Talk Subject

RE: nobody on Linux

2007-12-03 Thread Brad Wood
server. You have one, right? :) ~Brad -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Monday, December 03, 2007 4:32 PM To: CF-Talk Subject: RE: nobody on Linux We installed an outside NAS under NFS, so the Linux server could access files there. Apache can get

RE: cfswitch in cf8

2007-11-26 Thread Brad Wood
it to ColdFusion, but that would take more obfuscated dynamic SQL than I care to deal with. I would only resort to another language if what I wanted could not be accomplished quickly and easily in ColdFusion 7, and in this case it can-- with the cfif tag. :) ~Brad

RE: cfswitch in cf8

2007-11-26 Thread Brad Wood
Interesting-- Thanks for sharing. Sometimes I wish Adobe ColdFusion was open-source so one could easily compare your tests with what was really going on under the hood. ~Brad -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, November 26, 2007 2:01 PM To: CF

RE: error caused by cfqueryparam inside cfif

2007-11-26 Thread Brad Wood
)? ~Brad Can anybody help me figure out this error? I'm struggling with a really confusing error. It occurs when I put a cfqueryparam tag nested inside a cfif tag. More interesting data: This error only occurs on CF8. And only when the code is located in a .cfc file. It doesn't happen if the query

cfswitch in cf8

2007-11-21 Thread Brad Wood
. ~Brad ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta - Build next generation apps Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm

RE: cfswitch in cf8

2007-11-21 Thread Brad Wood
on CF7 was literally bringing down someone's server until they converted them to cfif's. The problem may not affect everyone, but it's worth noting as opposed to writing it off IMO. Also, I'm glad you mentioned the CF8 debugger lets you break on exceptions. I'll have to play with that! ~Brad

RE: cfswitch in cf8

2007-11-21 Thread Brad Wood
-- knowing is half the battle. http://en.wikipedia.org/wiki/G.I._Joe ~Brad -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 21, 2007 3:12 PM To: CF-Talk Subject: RE: cfswitch in cf8 Not so fast there cowboy. :) The 200 mili and 400 mili numbers were

RE: cfswitch in cf8

2007-11-21 Thread Brad Wood
that optimized for their version of the compiler would be a lie. I'm sorry, but I won't be able to post any more until Monday. I'm off to celebrate Thankgiving. Happy Holiday everyone! (And I am interesting what other people's opinion on this is.) ~Brad

RE: Help please - a 500 null error

2007-11-16 Thread Brad Wood
Check your ColdFusion server logs. They will usually contain the real error. I have gotten 500 NULLs before when wddxing large objects, or applying regex to very lengthy strings. It could be a number of things-- but likely memory related. ~Brad -Original Message- From: Peter Tilbrook

RE: CFMX 7 not releasing memory

2007-11-14 Thread Brad Wood
SeeFusion will let you manually run garbage collection. I'm not sure what interval garbage collection is normally run at though. ~Brad -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 14, 2007 5:29 PM To: CF-Talk Subject: CFMX 7 not releasing memory

RE: dumpy goodness

2007-11-13 Thread Brad Wood
at first, but a process can ask for more memory from the OS? So, if I allow for 15 concurrent threads to execute, then I would need for the heap size to be at least 15 times the stack size? I'm sure it's more complicated than that though... ~Brad -Original Message- From: James Holmes [mailto

RE: dumpy goodness

2007-11-13 Thread Brad Wood
think 400 is a pretty darn good guess. When I ran the proc in query analyzer I confirmed that was about the number of errors being returned. ~Brad === You're saying this as if you didn't just pull the number 400 out of thin air

dumpy goodness

2007-11-12 Thread Brad Wood
happened before that I have ever seen until today? I can reproduce it on more than one server. ~Brad ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where

RE: dumpy goodness

2007-11-12 Thread Brad Wood
inclined to think that the java.lang.StackOverflowError is more of a bug. Yes, yes-- had better SQL error handling been in place, my errors wouldn't have been so large-- but who's to say I won't run into this again and have a good reason for it? Thoughts? CFMX 7.0.2 Standard Linux. ~Brad

RE: dumpy goodness

2007-11-12 Thread Brad Wood
in the database. ~Brad ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adobe.com/wiki/index.php/ColdFusion_8 Archive: http://www.houseoffusion.com/groups/CF

find and replace in a string the size of texas

2007-11-12 Thread Brad Wood
. I obviously should have just done that to begin with. ~Brad ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe.com/cfusion/entitlement

RE: dumpy goodness

2007-11-12 Thread Brad Wood
size? ~Brad ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive: http://www.houseoffusion.com

RE: CFStoredProc

2007-11-09 Thread Brad Wood
cfstoredproc.statuscode -Original Message- From: CF Developer [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 10:40 AM To: CF-Talk Subject: Re: CFStoredProc The storedProc only returns a single interget value not a database object or field. It runs a Query,

RE: Getting a computer name by ip address.

2007-11-05 Thread Brad Wood
I just do ping -a. The -a says Resolve addresses to hostnames -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Monday, November 05, 2007 11:18 AM To: CF-Talk Subject: RE: Getting a computer name by ip address. try: tracert with the IP. ie: tracert hostname for

RE: MS SQL Mirroring and CF

2007-11-05 Thread Brad Wood
I do not speak from experience, but I believe you must have special DB drivers set up with your CF data source which do the fail over for you. ~Brad -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, November 05, 2007 11:12 AM To: CF-Talk Subject: MS SQL

RE: SeeFusion vs. FusionReactor

2007-10-24 Thread Brad Wood
running spid and web server IP. Finally, I have never had a bad experience calling up for tech support. I bugged the crap out of them for a while, and they still kept answering the phones with a smile. lol Anyway, just my 2 cents. :) ~Brad -Original Message- From: Ben Doom [mailto:[EMAIL

RE: SeeFusion vs. FusionReactor

2007-10-24 Thread Brad Wood
SeeFusion licenses. == ~Brad A SeeFusion license had to be purchased for each instance of ColdFusion running on the server. Whereas, one FusionReactor license was used per server (not instance). ~| Check out the new

RE: Returning and object from a Web Service

2007-10-24 Thread Brad Wood
What version of CF? Does the object happen to be a CFC? CFC's are not serializable in CF 8. Try returning a struct of values if can. ~Brad -Original Message- From: Dean Lawrence [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 24, 2007 4:30 PM To: CF-Talk Subject: Returning

RE: UNZIP

2007-10-22 Thread Brad Wood
Are you on CF8? -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Monday, October 22, 2007 11:13 AM To: CF-Talk Subject: UNZIP Can anyone recommend a tag for unzipping files programmatically? Rick Colman

RE: Stop View Source

2007-10-19 Thread Brad Wood
would be to re-write your site using Flex. Swf files are compiled... :) ~Brad -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Friday, October 19, 2007 10:16 AM To: CF-Talk Subject: Stop View Source Hi, I remember reading something that said in ColdFusion we can stop

RE: Stop View Source

2007-10-19 Thread Brad Wood
to clarify what you meant by page source code ~Brad -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Friday, October 19, 2007 10:16 AM To: CF-Talk Subject: Stop View Source Hi, I remember reading something that said in ColdFusion we can stop people from viewing the page

RE: Stop View Source

2007-10-19 Thread Brad Wood
Just keep in mind, all you are doing is slowing someone down. If they are determined, they will get your source code. ~Brad we will look into JS encryption ~| Download the latest ColdFusion 8 utilities including Report

RE: Web Service Help

2007-10-18 Thread Brad Wood
Are you sure that the code in OneCallNow.asmx supports a method called login? Try logging into CF Admin and removing that webservice since it tends to cache things like methods and parameter types. ~Brad -Original Message- From: David Adress [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: Web Service Help

2007-10-18 Thread Brad Wood
. ~Brad -Original Message- From: David Adress [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 12:08 PM To: CF-Talk Subject: RE: Web Service Help yes -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 12:51 PM To: CF-Talk Subject: RE

RE: File disappears after cffile rename

2007-10-18 Thread Brad Wood
no two locks would ever have anything to wait on. If you want to keep two pages from writing to the same file or directory at the same time, use the full file path or directory path as the lock name. ~Brad -Original Message- From: Michael E. Carluen [mailto:[EMAIL PROTECTED] Sent

RE: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Brad Wood
free PDF viewers let them do whatever they want. There are actually utilities out there which will remove all security from a PDF for you if you forgot your password. ~Brad -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 11:37 AM To: CF

RE: OT Sys-con at it again

2007-10-12 Thread Brad Wood
Lol. You're approach is working already... http://www.google.com/search?hl=enq=James+Hamilton+sys-conbtnG=Search First result. ~Brad -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Friday, October 12, 2007 12:03 PM To: CF-Talk Subject: Re: OT Sys-con at it again

RE: Community Opportunity

2007-10-10 Thread Brad Wood
?? CF8 stuff has been on there since months before the release. Right now it is under Current Version Or are you just saying it should have more detailed info? ~Brad -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 3:02 PM To: CF

RE: XML Parse

2007-10-09 Thread Brad Wood
Can you supply us with the error you are receiving? -Original Message- From: Web Exp [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 09, 2007 5:01 PM To: CF-Talk Subject: Re: XML Parse Well... I don't want to convert this string to a CF struct. I know I can do that using cfwddx. In

RE: Name of uploaded file before cffile

2007-10-05 Thread Brad Wood
The form post must complete before any ColdFusion runs. By that time, it is too late because the file is already uploaded. You need something on the client. Perhaps some flash could determine that... ~Brad -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Friday

RE: Automated Way of Getting # of lines of code?

2007-09-28 Thread Brad Wood
Sweet dang-- that function from the blog works pretty good. (I moved the cffile inside of the file extension loop though. No sense reading in files which you aren't going to count). We've got 1,317,749 lines of code! ~Brad -Original Message- From: Howard Fore [mailto:[EMAIL PROTECTED

RE: Automated Way of Getting # of lines of code?

2007-09-28 Thread Brad Wood
Lol. That's a good question. I guess you could recurse over your directory structure, open each file and count the line breaks. That would suck though. :) Why don't you just look at how many KB of .cfm files and guess how many lines per KB there is on average? ~Brad -Original Message

<    5   6   7   8   9   10   11   12   13   14   >