RE: Cold Fusion and VMWare?

2007-07-25 Thread Mark A Kruger
If I wanted to use VM Ware to run... Let's say 3 separate Coldfusion servers and have sufficient resources for all of them. What would be acceptable hardware for that? Any input? -mark -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 5:15 PM

Re: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Maximilian Nyman
You don't actually need to use the StructKeyExists though I would take what Russ said and rewrite the function to this: function getRandomNumberArray(length, count) { var min = "1" + repeatString("0", length - 1); var max = repeatString("9", length); var uniquer = structNew(); while (structCou

Re: CF 8 and CFDOCUMENT

2007-07-25 Thread Oğuz Demirkapı
Can you also provide some sample code? I am now working with cfdocument and I really wonder what you are trying to do. TIA! Raymond Camden wrote: > I assume you logged bugs for all this, right? ;) > > So I haven't tried this - but the docs for CF8, which you can download > from labs btw and try

RE: Running CF7 on 64 bit Windows

2007-07-25 Thread Ben Forta
>> You can run CF as a 32 bit application on 64 bit Windows. Connecting >> to a 64 bit web server is not supported. Actually, 32bit CF can indeed use 64bit IIS on 64bit Windows, but there is a configuration change you need to make to allow 64bit IIS to run 32bit apps. I blogged this in February

Re: CF 8 and CFDOCUMENT

2007-07-25 Thread Bryan Stevenson
>I assume you logged bugs for all this, right? ;) > > So I haven't tried this - but the docs for CF8, which you can download > from labs btw and try this out yourself, talk about how there are > there are new variables available in cfdocumentitem based on > sections.. I'd say it should should work

Re: Running CF7 on 64 bit Windows

2007-07-25 Thread Gert Franz
We have a couple of Railo installations on 64bit Linux Ubuntu. Except for the unsupported ODBC drivers with windows 64bit we had no issues with Railo so far... Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie u

Re: CF 8 and CFDOCUMENT

2007-07-25 Thread Raymond Camden
I assume you logged bugs for all this, right? ;) So I haven't tried this - but the docs for CF8, which you can download from labs btw and try this out yourself, talk about how there are there are new variables available in cfdocumentitem based on sections.. I'd say it should should work fine, but

RE: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Ben Nadel
Barney, I love the 1XYZ-N technique for the length constraint That's damn brilliant! .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Barney Boisvert [mailto:[EMAIL PROT

RE: Cold Fusion and VMWare?

2007-07-25 Thread Dave Watts
> We are testing to see if it is possible to run a Virtualized > (VMWare) Version of a Cold Fusion application, which will be > accessed by IP address. > We have VMWare running on a test server and installed a > virtualized version of the application and everything works. > Sporadically, we get

RE: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Russ
Well you can put them into a struct and keep generating until you get 1000 in the struct. Since the struct only allows for unique keys, you won't have more then one of the same number. Russ > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, Ju

Re: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Barney Boisvert
I haven't tested this (just wrote it in the email), but it should be close: function getRandomNumberArray(length, count) { var min = "1" + repeatString("0", length - 1); var max = repeatString("9", length); var uniquer = structNew(); var result = arrayNew(1); var num = ""; while (array

RE: Cold Fusion and VMWare?

2007-07-25 Thread John Mason
Do you have vmware tools installed? John [EMAIL PROTECTED] -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 5:33 PM To: CF-Talk Subject: Re: Cold Fusion and VMWare? "Has anyone ever used Cold Fusion with VMWare?" YUP! "Any ideas why we w

Re: Mail Issues - Java Errors

2007-07-25 Thread Jochem van Dieten
Ryan Mannion wrote: > > "Error","scheduler-3","07/25/07","11:01:39",,"452 4.3.1 Out of memory " > Do you think my JVM heap size may be set too small? Currently set as "blank" > min, and 512 max. Look at your SMTP server, this is the error it returns to CF. Jochem ~~

Re: HELLO

2007-07-25 Thread Michael Dinowitz
I've removed the spam portion or Eric's message. In the archives, that portion would normally have only shown up in the "original message" but I removed it totally due to its content. >Eric Haskins wrote: >> Almost hit "Report SPAM" in Gmail until I noticed it was from CF-Talk. > >And you found

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Greg Luce
I would investigate migrating it to FB5 because the FB debug is awesome. You can turn the CFdebug off then. Greg On 7/25/07, Sandra Clark <[EMAIL PROTECTED]> wrote: > > Development mode forces a reload of the circuit files, parsed files and > the > fusebox with each call. Production mode will on

Generate Random Number 1000 - No Duplicates

2007-07-25 Thread coldfusion . developer
I need to generate 1000, unique 8 digit numbers. I'm looking for a function that will do this. Rand generates in the range of 0 - 1. RandRange would work, but how do I assure that there aren't any duplicates. I'm outputing this data from a query to a xls. Thanks D ~~~

Re: Cold Fusion and VMWare?

2007-07-25 Thread Ian Skinner
"Has anyone ever used Cold Fusion with VMWare?" YUP! "Any ideas why we would sporadically get a connection error?" Nope, it worked fine for me on my development workstation. Sorry. ~| Enterprise web applications, build robus

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
Thanks for the tip Sandra. Like I said, I'm a rookie ;) But this thing boggles my mind, since it normally loads fine. I was under the impression code is code, if its not altered it should load the same every time. -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Wedn

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Andy Matthews
Not sure if it's just the way it came through in email, but your classes are setup incorrectly. A class definition should only have one . Before the name: ..myClassName Not ...myClassName Also, your HTML is invalid. The A tag should not have anything nested inside it, especially block level el

Re: CF8 and pdfs

2007-07-25 Thread Bryan Stevenson
> Anyone know if you can place an image in a PDF in CF8? > > Thanks, > Chad You could in 7, so don't see why not in 8 (not that it always worked in 7...there were some known issues). Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
Thanks Andy I will check it out yes I was only putting a single . before the class, the cut and paste must of messed that up. If I shouldn't be nesting things in the href that is probably the root of the problem. But, you'd think it would load messed up on each request, not just some. -Origin

RE: Spry and IE Caching

2007-07-25 Thread Andy Matthews
That should have read "append a random var to the request". -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 3:46 PM To: CF-Talk Subject: RE: Spry and IE Caching You might need to append a random var to the returned string. Timestamp or som

Cold Fusion and VMWare?

2007-07-25 Thread Michael Eger
We are testing to see if it is possible to run a Virtualized (VMWare) Version of a Cold Fusion application, which will be accessed by IP address. We have VMWare running on a test server and installed a virtualized version of the application and everything works. Sporadically, we get a "Connection R

Re: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
It should have been (removed the Not): or if you want to clear the whole session struct for that user: -Aaron ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers an

CF 8 and CFDOCUMENT

2007-07-25 Thread Bryan Stevenson
Hey All, Does anyone know if the horrendously broken CFRDOCUMENT tag actually works as advertised in CF 8? Big broken item for me was only 1 header/footer per document regardless of how many CFDOCUNTSECTIONS (even though docs said you could have a header and footer per section and not just for

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks Sean. Your advice is very welcome. It's a Fusebox 4.0.2 app. The circuits folder has 28,000 files in it! Took 45 minutes just to unzip onto my dev PC. Is it a simple/trivial thing to convert to fusebox 5+ ?It's not going to be something i'm going to be paid to do, so it needs to be

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Sandra Clark
I don't know why its crashing, but simplify your life Paul. Use inheritance and the cascade to create a more efficient CSS. That way when you start trying to figure out where the problems are, it will be a heck of a lot easier. ..chanpod :link, ..chanpod :visited{ display: block;

Re: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
It should have been (removed the Not): or if you want to clear the whole session struct for that user: -Aaron ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://w

Re: HELLO

2007-07-25 Thread Eric Haskins
Sorry Michael, Wasn't trying to RE-SPAM just wanted to see if anyone else got it Eric On 7/25/07, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > > I've removed the spam portion or Eric's message. In the archives, that > portion would normally have only shown up in the "original message" but I

RE: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
Che, You should also run this code to clear out the session for that user: -Aaron -Original Message- From: Aaron Wolfe [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 3:09 PM To: CF-Talk Subject: RE: Clearing the Cookie that gets set when usin

Mail Issues - Java Errors

2007-07-25 Thread Ryan Mannion
Does anyone know what the following might mean? Our application seems to be running fine, but we've encountered a few low traffic (small number of emails), errors occuring in the logs. The emails were never sent either "Error","scheduler-3","07/25/07","11:01:39",,"452 4.3.1 Out of memory " javax.

RE: Spry and IE Caching

2007-07-25 Thread Andy Matthews
You might need to append a random var to the returned string. Timestamp or something. -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 11:45 AM To: CF-Talk Subject: Spry and IE Caching Hello Guys, First time ever using spr

RE: Writing large data files

2007-07-25 Thread Dave Watts
> > I suppose I could increase the JVM max memory to 2GB but I'm not > > really sure if this is a viable option. > > No, it's certainly not an option on Windows generally, and > probably not a viable option for solving this problem on any > platform - that's just too big of a recordset. Do this

CF8 and pdfs

2007-07-25 Thread Chad Gray
Anyone know if you can place an image in a PDF in CF8? Thanks, Chad ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe.com/cfusion/entitlement/i

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
Its basically one div pod that is crashing, as in the txt style doesn't apply and the div ends up appearing 3 times and one of the 3 is out of place. I didn't post the code originally because I was hoping it was a common bug, guess not. Here is the css: ..chanpod a { display: block; background-co

Re: JS errors/ IE7

2007-07-25 Thread Will Tomlinson
yep Jim, you nailed it. Thanks much dude, Will ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers. http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumi

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Andy Matthews
Can you be a little more clear as to what you mean by "CSS crash"? Are you saying that the CSS doesn't work? Doesn't load? Do you have a site we could look at? andy -Original Message- From: Paul Henderson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 1:35 PM To: CF-Talk Sub

Re: HELLO

2007-07-25 Thread Jochem van Dieten
Eric Haskins wrote: > Almost hit "Report SPAM" in Gmail until I noticed it was from CF-Talk. And you found it of vital importance to include the full, unaltered email message and not even remove the email addresses? Jochem ~| G

Re: Connection Flex to CF Error

2007-07-25 Thread Paul Hastings
Bill Betournay wrote: > Everything about my installations are defaults. I'm using the built in cf > server as well. are your CFCs in a cf mapped dir & did you do a cf re-install lately? maybe forgot to set "use-mappings" to true in remoting-config.xml? ~~~

Spry and IE Caching

2007-07-25 Thread Robert Rawlins - Think Blue
Hello Guys, First time ever using spry and I'm using the Spry.Utils.updateContent() function to update content every few seconds in a div. This works perfectly in Firefox but for some reason IE seems to have a common caching problem where it'll cache the content totally ruining the point of the

Re: Developer Edition on Portable Hard Drive

2007-07-25 Thread William Burba
Oh, and forgot with being wrapped up in the first post. They do have a self contained stand alone version which you can download and use as well. Since I was playing with jsp as well, that is why I went with the xampp and war option.

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
Development mode forces a reload of the circuit files, parsed files and the fusebox with each call. Production mode will only reload the parsed files if they aren't there and it won't pick up changes in the circuit files either. The problem is that forcing the recall from production mode to pick

RE: Writing large data files

2007-07-25 Thread Dave Watts
> I suppose I could increase the JVM max memory to 2GB but I'm > not really sure if this is a viable option. No, it's certainly not an option on Windows generally, and probably not a viable option for solving this problem on any platform - that's just too big of a recordset. Do this within the da

RE: XML Insert Problem

2007-07-25 Thread Chad Gray
I think I typed this out right... might be some typos. Basically use XmlElemNew to create the new node then assign it's XmlAttributes and XmlText to what you want. -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 10:24 AM To: CF-Talk Subje

CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
This isn't exactly a cf issue but its happening on a .cfm page so plase bare with me. For some reason my css seems to partially crash, randomly on SOME refreshes in Firefox only.. On avg 8 out of 10 times the code will load fine. Is this a known Firefox bug? I'm a bit of a css rookie but I've tried

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sean Corfield
On 7/25/07, Mike Kear <[EMAIL PROTECTED]> wrote: > What does do? Does it > force a reload of the XML files every page view? Yup. It'll makes things run slowly (since the framework is reloading on every request) but it will enable you to test the changes you are making more easily. If you are u

Re: XML Insert Problem

2007-07-25 Thread Dominic Watson
I have been writing a component that lets you do this kind of thing using XPath. So you can do things like: myXML.Insert('XPath of parent','name of tag', value); or myXML.Delete('XPath of elements/attributes/comments/etc to delete'); or myXML.Update('XPath of elements to update', value); It i

Re: HELLO

2007-07-25 Thread Michael Dinowitz
It was spam that got through to the list. Why, I'm not sure but the thread was killed from the archives. Looks like a little more work on the filters. On 7/25/07, Eric Haskins <[EMAIL PROTECTED]> wrote: > Almost hit "Report SPAM" in Gmail until I noticed it was from CF-Talk. ~

RE: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
Che, Here is one way to do it. Use the code within this tag to expire the login: If you want it to be more robust, you can read the cookie variables in and then loop over the vari

Re: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > This should be and easy question. How do I programmatically clear/remove > the browser's cookie that gets set when using Client variables? > I need to generate a new CFID/CFTOKEN when a user logs out of and older > application. Use cfcookie to w

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > Everything about my installations are defaults. I'm using the built in cf > server as well. On port 8500 or something (i.e. not 80) ? Could a firewall be in the way ? -- Tom Chiverton This

Re: XML Insert Problem

2007-07-25 Thread Raymond Camden
Is there any reason you aren't using CF's XML functions? Like XMLElemNew(). On 7/25/07, Lee <[EMAIL PROTECTED]> wrote: > We are having trouble inserting a line into XML when using > straight string manipulation it blows up on XML Search. We > are guessing that there is a better > way to insert the

Re: Developer Edition on Portable Hard Drive

2007-07-25 Thread William Burba
There is one option I have been playing with for kicks, and it works to a degree, just depends on what you are doing. Check out the SmithProject (http://www.smithproject.org/). What I did was go out to portableapps.com, downloaded xampp and installed the tomcat portable server in that. You ma

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
I'd recommend that you call the fuseaction in question, rather than copy the file itself. You would do this using the verb. That way the core files will take care of making sure your dependencies are all there, and you will have very little editing to do. Even if the logic is similar but not id

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks for your suggestion Phillip. Actually what I am currently tasked with is duplicate part of the functionality of one circuit in a new circuit. At first sight, all i have to do is copy that circuit to a new folder, tweak the circuit.xml.cfm files a bit and change the dsp files to show the n

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
Couple of things that will help in Debugging a Fusebox 4+ app. 1) Validate the XML in circuit.xml.cfm. Fusebox will burp on bad XML. If an error shows up in the parsed file. (circuit.fuseaction.cfm) then the error is in the circuit. Most well done FB4+ apps usually use MVC. The controller wil

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Sandra, thank you!That looks extremely helpful. What does do? Does it force a reload of the XML files every page view? If so, that's what i've been looking for for days now! And yes, this app seems pretty well written by the previous guy. IT reuses code a LOT. It is built on MVC archte

Re: Using XMLHTTPREQUEST on windows 2003

2007-07-25 Thread Claude Schneegans
>>I then moved it over to a new server running a firewall and windows 2003 and it no longer works. Define "no longer works". Any error message ? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any

Re: Using XMLHTTPREQUEST on windows 2003

2007-07-25 Thread Raymond Camden
Did you try Firebug to debug the XHR request? On 7/25/07, Chad McCue <[EMAIL PROTECTED]> wrote: > I have a script running on a windows 2000 server with a firewall > perfectly, I then moved it over to a new server running a firewall and > windows 2003 and it no longer works. The AJAX call simply ch

RE: Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
Everything about my installations are defaults. I'm using the built in cf server as well. Bill -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 25 July 2007 10:10 To: CF-Talk Subject: Re: Connection Flex to CF Error On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote

Re: How so I show prior month?

2007-07-25 Thread Charlie Griefer
the coldfusion reference has all functions, not only listed alphabetically, but also grouped by category (including a date category). http://livedocs.adobe.com/coldfusion/7/htmldocs/0354.htm i have to assume checking there would have been easier than beating your head as well :) On 7/25/07,

Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Che Vilnonis
This should be and easy question. How do I programmatically clear/remove the browser's cookie that gets set when using Client variables? I need to generate a new CFID/CFTOKEN when a user logs out of and older application. Thanks, Che ~

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Phillip M. Vector
It wasn't that steep when I tried learning it, but then again, I learned on FB3. :) The idea is that you only open up 1 circuit.xml file at a time. trace down the error that's causing a fuseaction to go kaput and then move onto the next. It shoulds like you are opening all the pages that have

XML Insert Problem

2007-07-25 Thread Lee
We are having trouble inserting a line into XML when using straight string manipulation it blows up on XML Search. We are guessing that there is a better way to insert the line. Details below. The existing XML structure shows (partial XML is noted in the examples below and does not represent th

Using XMLHTTPREQUEST on windows 2003

2007-07-25 Thread Chad McCue
I have a script running on a windows 2000 server with a firewall perfectly, I then moved it over to a new server running a firewall and windows 2003 and it no longer works. The AJAX call simply checks for a valid promotion code by calling a CFC that checks the SQL database if found returns a 1 if n

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
He said it's a custom template. Like you set in the administrator. -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 10:10 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? On Wednesday 25 Jul 2007, [EMAIL PROTECT

Re: How so I show prior month?

2007-07-25 Thread Dae
Thanks everyone!! Now that sure was easier then sitting here beating my head for the last hour. On 7/25/07, Andrew Tyrone <[EMAIL PROTECTED]> wrote: > > > I know #dateformat(now(),'mmm ')# > > will put out > > current month and year (Jul 2007). > > Subtract from the current month using DateAd

RE: Connection Flex to CF Error

2007-07-25 Thread Chad Gray
If you go to the endpoint do you get a blank page? You should. IE when I go here: http://demo.dev/flex2gateway/ The last time I played with Flex I put the endpoint in the RemoteObject. There are probably a lot of ways to set it up though. http://demo.dev/flex2gateway/"; result="letUs

Re: Writing large data files

2007-07-25 Thread Jochem van Dieten
Garth Young wrote: > > The problem I have is that the Coldfusion query is not returning as the > result set is too big. I could simply run the query pulling out blocks of > rows from it but this would require re-executing the SQL 6-7 times at least. Use a cursor: http://www.houseoffusion.com/g

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > Michael, is this available somewhere? > > I'd really like to check it out. Turn on the relevant debug option in the CF admin. -- Tom Chiverton This email is sent for and on behalf of Halli

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > >> uri="http://{server.name}:{server.port}{context.root}/flex2gateway/"; > > Is this likly to be correct (your site doesn't go via a proxy or > > something that changes the URL ? > yes that's the default for cf 7/8's services­config.xml I know i

Re: Connection Flex to CF Error

2007-07-25 Thread Paul Hastings
Tom Chiverton wrote: >> uri="http://{server.name}:{server.port}{context.root}/flex2gateway/"; > > Is this likly to be correct (your site doesn't go via a proxy or something > that changes the URL ? yes that's the default for cf 7/8's services-config.xml ~

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
Michael, is this available somewhere? I'd really like to check it out. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 9:13 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? If you have debug access I have an

RE: querySetCell within cfoutput

2007-07-25 Thread Peterson, Chris
Yea, I thought of that afterwards too ;) I wrote a quick script to check, and it does use the new value for any further request of that date variable. I will have to look elsewhere for my bug! ;) Chris Peterson Gainey IT Adobe Certified Advanced Coldfusion Developer -Original Message-

RE: querySetCell within cfoutput

2007-07-25 Thread Adrian Lynch
Good question. Can you not knock up a simple test? Changing the index of an index loop doesn't effect the number of times the loop runs, so it might not be as straightforward an answer. Adrian -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: 25 July 2007 14:28 To:

Re: HELLO

2007-07-25 Thread Eric Haskins
Almost hit "Report SPAM" in Gmail until I noticed it was from CF-Talk. Eric Haskins On 7/25/07, ISWARDUTH BEEHARRY <[EMAIL PROTECTED]> wrote: > > > Alternate e-mail: [EMAIL PROTECTED] > > > > > I am Dr. Mrs. Mariam Abacha, wife to the late Nigerian Head of state, > > General Sani Abacha who di

RE: querySetCell within cfoutput

2007-07-25 Thread Jayesh Viradiya
Hi, I think it should take the new value for the later check but just not sure. Why don't you try printing it, to know if it has taken the new value. Jayesh Adobe CF Team -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 6:58 PM To: CF-Tal

Re: cfcontent

2007-07-25 Thread Ben Doom
Use cfheader and cfcontent to set they data type, reset the output, etc. Then just print the XML. If you really need to FORCE them to download it (something I'd not recommend), you could always misset the MIME type to something like application/octet-stream. --Ben Doom Chad Gray wrote: > I

Re: reformatting data in text field

2007-07-25 Thread Ben Doom
It didn't occur to me but, yes, that would likely be a more readable solution than either of mine. --Ben Doom Raymond Camden wrote: > I'm surprised no one mentioned ListQualify. > > On 7/24/07, John P <[EMAIL PROTECTED]> wrote: >> That worked, Thanks for your help >> >> >> > > ~~

querySetCell within cfoutput

2007-07-25 Thread Peterson, Chris
I have an output block that does many different tests against each record as its looping through them. Near the beginning of the loop, I check for a certain date and, if it matches, I perform a querySetCell() on that date to assign a new one. Now, further down in this block of code, I do further

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks Michael, that sounds interesting. I'd like to have a look at that. I'm new to fusebox, and I have to say I'm yet to be convinced it's better than the way I do my own sites. But i inherited it, and it's not going to be rebuilt any time soon, so I have to roll my sleeves up and learn every

RE: XML to database

2007-07-25 Thread Jayesh Viradiya
Hi, I think this link could be useful for you. http://tutorial195.easycfm.com/ I have take the example from the above link to modify your needs. I haven't executed the code myself, so if any syntax errors, correct by yourself. Jayesh Adobe CF Team http://www.xp-resources.com/easycfm.xml"; met

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Michael Dinowitz
If you have debug access I have an enhanced debug template that shows the full flow of an application. It includes standard templates, components, custom tags and includes in a full tree view. ~| Get involved in the latest ColdF

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > I'm running CF8 and the only reference to "endpoint" is in the > services­config.xml file. This is the it: K. > > class="mx.messaging.channels.AMFChannel"> > uri="http://{server.name}:{server.port}{context.root}/f

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
I'd say the debugging information with order of execution and execution times and templates and paths is most useful for this. It tells you what templates are being executed and where. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 8:29 AM To:

RE: Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
I'm not sure I know what you mean Tom. I'm running CF8 and the only reference to "endpoint" is in the services-config.xml file. This is the it: http://{server.name}:{server.port}{context.root}/flex2gateway/"; class="flex.messaging.endpoints.AMFEndpoint"/>

XML to database

2007-07-25 Thread R M
Hi all, I would like to know how to populate mySQL database with XML data. This data comes from a webservice I would like to store it in a database. ie: 154 X9 9XQ Mr Wood Borin

XML to database

2007-07-25 Thread R M
Hi all, I would like to know how to populate mySQL database with XML data. This data comes from a webservice I would like to store it in a database. ie: 154 X9 9XQ Mr Wood Boring

XML to database

2007-07-25 Thread R M
Hi all, I would like to know how to populate mySQL database with XML data. This data comes from a webservice I would like to store it in a database. ie: 154 X9 9XQ Mr Wood Boring

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > Hi Tom > > Yes, it's running. An app I've been working on was running fine until this > morning when I started getting this error. And you can't do a diff against the previous version of the code ? Or check it out and check it's not a code gaff

Re: Site Monitoring Update

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > ServersAlive, PingaLink, Paessler, and SeeFusion. I would like to know > if opinions have changed about these or other products or has anything > new come on the horizon that you like, either to purchase or freeware. ColdFusion 8 :-) -- Tom Ch

Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
I have inherited a fusebox4.0 app to maintain that has dozens of circuits that are reused all over the place. I know that's how fusebox is supposed to work, and it makes sense to reuse the fuses, but wow it takes AGES to follow the flow of the program. And i end up with dozens of files open, all

Re: CF8 and cfimage captchas

2007-07-25 Thread Jayesh Viradiya
Hi, This could be achived using the "fonts" attribute in the tag. One or more valid fonts to use for the CAPTCHA text. Separate multiple fonts with commas. ColdFuison supports only the system fonts that the JDK can recognize. For example, TTF fonts in the Windows directory are supported on Win

Site Monitoring Update

2007-07-25 Thread Steve LaBadie
Back in November of 2006 this list was discussing site monitoring tools/software. Some of the products discussed were: Server Siren, ServersAlive, PingaLink, Paessler, and SeeFusion. I would like to know if opinions have changed about these or other products or has anything new come on the horizon

Re: PGP...

2007-07-25 Thread Brian Peddle
Syntax I us FYI so this would be the full path to file and the filename, we store the filename in the database. Since some files we received have pgp and some don't the filename is always stored as foo.txt .. if we see it has PGP we just tack it on like above. Jake Pi

RE: Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
Hi Tom Yes, it's running. An app I've been working on was running fine until this morning when I started getting this error. Here's the code for a simple CF call. [Bindable] private var thisTest:String = ""; private function testResultHandler(e

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > Can anyone tell me what this error usually means?? Obviously it can't > connect to CF but I don't understand why. Is CF running ? What is your endpoint URL ? -- Tom Chiverton This email i

Re: HELLO

2007-07-25 Thread ISWARDUTH BEEHARRY
> Alternate e-mail: [EMAIL PROTECTED] > > I am Dr. Mrs. Mariam Abacha, wife to the late Nigerian Head of state, > General Sani Abacha who died on the 8th of June 1998 while still on > active > service for our Country. I am contacting > you with the hope that you will be of great assista

Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
C Fault faultString="[MessagingError message='Unknown destination 'ColdFusion'.']" faultCode="InvokeFailed" faultDetail="Couldn't establish a connection to 'ColdFusion'"] at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::invoke() at mx.rpc.remoting.mxml::Operati

Re: PGP...

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: > We use CFEXECUTE and the command­line tools, but I'm sure there are > other ways. The oddly named Bouncy Castle Java classes, for instance. -- Tom Chiverton This email is sent for and on

  1   2   >