Re: cfforms flash character encoding

2005-07-19 Thread Kevin Aebig
> well it should have had some effect, how exactly where you changing > encodings? Actually, when it all gets boiled down to it, the encoding would have little to do with the actual flash output. To handle localisation, Flash uses Unicode. > i'd say it was a little too good at localization (l10

getBytes() on a session structure

2005-07-19 Thread Taco Fleur
Is there any way to call java's getBytes() on a CF Session structure? Yeah yeah it's the same old story again, trying to get a slight idea of how much memory a certain structure will take up in memory so we know how it will scale... Been fooling around, does anyone see anything really wrong

Re: farcry?

2005-07-19 Thread Greg Hamm
Ya, the site server failed and most of the content went down with it. If remember correctly there wasnt a plugin listed for a poll/survey, although Im sure you could base a custom type on Ray Camdens Soundings CFC http://www.camdenfamily.com/morpheus/blog/ Farcry has a high learning curve, espec

RE: "or" operator in WHERE statement

2005-07-19 Thread Matthew Walker
I'd go with a UNION. The reason a union is useful is that you want B.content and C.content to appear as the same column in your record set, which is what a union does well. Note that with unions, the order you list the columns and the number of columns is critical. Also only add one ORDBER BY claus

Re: "or" operator in WHERE statement

2005-07-19 Thread Roberto Perez
At 04:25 PM 7/19/2005, you wrote: >Are you table-scoping the column in your SELECT clause? Perhaps you >could post the whole SQL statement? Mmmm...not sure I'm familiar with "table scoping"... (maybe you could elaborate on that) The SQL itself is straightforward, it is just 3 fields in 3 diffe

Re: CFFile strips out line feeds - help

2005-07-19 Thread S . Isaac Dealey
> Thanks for the prompt reply. welcome >>At this point you've made at least one mistake that will >>prevent you from getting the result you want... which is, >>you're looping from 1 to the number of files in the >>directory -- which should (hopefully) have >>nothing to do with the length of the f

Re: "or" operator in WHERE statement

2005-07-19 Thread Barney Boisvert
Are you table-scoping the column in your SELECT clause? Perhaps you could post the whole SQL statement? cheers, barneyb On 7/19/05, Roberto Perez <[EMAIL PROTECTED]> wrote: > Hi all, > > Quick question: is "OR" a valid operator in a WHERE statement? > > I have a main table A with a 'status' fi

RE: "or" operator in WHERE statement

2005-07-19 Thread Taco
It would be something like SELECT CASE A.status WHEN B.status THEN B.status WHEN C.status THEN C.status FROM yourTable I think that's what you are after. Taco Fleur - E-commerce Development Manager Shelco Searches & Services An Authorised ASIC Information Broker

"or" operator in WHERE statement

2005-07-19 Thread Roberto Perez
Hi all, Quick question: is "OR" a valid operator in a WHERE statement? I have a main table A with a 'status' field which value can be either 'open' or 'closed'. Then I have a table B where the 'status' field is 'open' by default (not editable), and a table C where the 'status' field is 'closed'

Re: CFFile strips out line feeds - help

2005-07-19 Thread Billy Jamme
Thanks for the prompt reply. >I assume you don't want to skip empty lines in the file... > That's correct. >At this point you've made at least one mistake that will prevent you >from getting the result you want... which is, you're looping from 1 to >the number of files in the directory -- which

Re: Code function

2005-07-19 Thread Dina Hess
Port 8500 is in reference to ColdFusion's built-in web server, which was unavailable in CF 5.0 and prior versions. I'm guessing that is your problem. ~| Logware (www.logware.us): a new and convenient web-based time tracking appli

Re: cfforms flash character encoding

2005-07-19 Thread Paul Hastings
Wayne Putterill wrote: > Fixed now by using #CHR(163)# in the code, but I was getting strange that's not what i'd call "fixed". how were you using that currency symbol? text on the form, part of some formatting,etc? > characters instead of pound signs when generating flash with cfform, I like w

SOLVED: Re: iText and TIFF2PDF

2005-07-19 Thread Bryan Stevenson
NevermindI've figured out and the CFC will be done shortly.love that package ;-) Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedg

Re: Code function

2005-07-19 Thread S . Isaac Dealey
Check the content of your escapetest.txt file ... apparently CF5 doesn't like something about an element in the first line (the column names for the generated query)... I would guess it contains a space or some other strange character that shouldn't be used in a column name. > This code runs fine

Re: CFFile strips out line feeds - help

2005-07-19 Thread S . Isaac Dealey
comments inline > I'm attempting to build an array from .txt file. What I'd > like to do is create a new element in the array with every > new line in the text file. I assume you don't want to skip empty lines in the file... > Now I'm reading the file like this: > name="dirs"> > > >

Re: CFFile strips out line feeds - help

2005-07-19 Thread C. Hatton Humphrey
What OS is this running on? Remember that UNIX, MAC and Windows all treat "new lines" differently. IIRC if your file is coming in via FTP that can also cause issues. I highly doubt that CFFile alone is your culprit here. Hatton On 7/19/05, Billy Jamme <[EMAIL PROTECTED]> wrote: > I'm attemptin

RE: CF Process Monitor

2005-07-19 Thread Patrick Quinn
Hey Kevin. Yep, that's us--SeeFusion (and SeeJava and SeeDotNet coming soon). Feel free to send along any and all comments/questions to [EMAIL PROTECTED] Good luck. Best, Patrick Quinn "Do you SeeFusion?" www.seefusion.com P.S. Neil, thanks for the post! >That was what I was looking for. > >Th

CF Scheduled tasks

2005-07-19 Thread David Critchley
Out of CuriosityWhat would happen if you had it scheduled to run everday and every 3 hours between 9:40 and 18:40? >Here's an odd one that I can't get my head round. - cfmx61 > >I've got a scheduled task to run at 9:40 every day and then repeat >every three hours until 19:40. > >At 9:40 the task

Annoying undelivered email issue

2005-07-19 Thread Richard Crawford
We're still using MX around here (because of an incredibly sloppy setup by my predecessor, upgrading to 6.1 is impractical at best), and we're having a problem with our unsent e-mail. When CF cannot send an e-mail, it puts that e-mail in the /Mail/Undelivr directory with the filename 'Undelieve

Re: Daily DB updates from CSV files

2005-07-19 Thread Matt Robertson
> As for cf_csv2query, I found it. After testing it, I found that it is > putting 0.00 in all my numeric fields, even if there is a value in the > csv. > See attached custom tag Ah yes that is the one I was talking about and not that $50.00 one. Look at the source for that tag. On Lines 167 and

Fusebox and Frameworks Conf 2005 Call for Speakers due 7/25/05

2005-07-19 Thread Michael Smith
Save the date for the next Fusebox conference in September in Rockville MD (near Washington DC). We will have lots of great speakers like last year (including Hal Helms and Michael Smith) and we also want to get your ideas for new speakers on fresh topics too. This year in addition to Fusebox and F

CF Scheduled tasks

2005-07-19 Thread Billy Jamme
How are you scheduling this task ? >Here's an odd one that I can't get my head round. - cfmx61 > >I've got a scheduled task to run at 9:40 every day and then repeat >every three hours until 19:40. > >At 9:40 the task runs but then in the scheduler log file it >reschedules itself for 10:40. At 10:

CFFile strips out line feeds - help

2005-07-19 Thread Billy Jamme
I'm attempting to build an array from .txt file. What I'd like to do is create a new element in the array with every new line in the text file. Now I'm reading the file like this:

Re: Daily DB updates from CSV files

2005-07-19 Thread Ken
Matt. I like the idea of using a java-based CFX tag, but my problem is that I am using hosting service and they won't allow it. As for cf_csv2query, I found it. After testing it, I found that it is putting 0.00 in all my numeric fields, even if there is a value in the csv. See attached custom tag

Re: Amazon AWS

2005-07-19 Thread Brian Kotek
I also can't make it work with this (I don't have an associates id) http://soap.amazon.com/schemas3/AmazonWebServices.wsdl"; method="AsinSearchRequest" returnvariable="productinfoARRAY" timeout="10"> On 7/19/05, Cutter (CF-Talk) <[EMAIL PROTECTED]> wrote: > > I actually tried it b

Re: Daily DB updates from CSV files

2005-07-19 Thread Matt Robertson
On 7/19/05, Ken <[EMAIL PROTECTED]> wrote: > Matt: Please see if you can send me the file, or tell me where to get > it from. Thanks. I *think* the file is cf_csv2query 1.0 in the Devex. I'm not sure and the author now wants US$50 for it (!) so I can't check to be sure if his v1.0 $50 tag is the

iText and TIFF2PDF

2005-07-19 Thread Bryan Stevenson
Has anybody used iText to create a PDF from a TIFF file? If so, please fire me a code snippet ;-) TIA Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

Re: Amazon AWS

2005-07-19 Thread Cutter (CF-Talk)
I actually tried it both ways after your initial example didn't work for me (Brian's had it without the 's'). Same message either way Jonathan Mauney wrote: >The error message you pasted below has schemas as the directory and not >schemas3 as in my example (which is working in my apps). > >Jona

Re: New DNS

2005-07-19 Thread Barney Boisvert
What DNS server are you using, and what platform? I'd imagine you can do lots of stuff via COM on a Windows server. Writing BIND files for 'named' or windows DNS is pretty trivial to do programatically as well. On 7/19/05, Chad McCue <[EMAIL PROTECTED]> wrote: > Does anyone know of a good tag se

Re: Amazon AWS

2005-07-19 Thread Jonathan Mauney
The error message you pasted below has schemas as the directory and not schemas3 as in my example (which is working in my apps). Jonathan >I am trying the code supplied (with the necessary variables) but I keep >getting the following error: > >Detail Name: http://soap.amazon.com/schemas/Am

OT: MySpace.com bought by Fox / News Corp

2005-07-19 Thread Michael Dinowitz
This was heavily discussed yesterday on the CF-Community list: http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:5/threadid:17953 ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Sta

Re: OT: CFMX & Java API

2005-07-19 Thread George Abraham
Shailaja, Are you specifically working with the Plumtree API or with some other application's API? Jeff's email, which by the way was sent in September 2004, seemed more related to problems with using ColdFusion and Plumtree. If it is not related to Plumtree, can you show any code for the problem t

New DNS

2005-07-19 Thread Chad McCue
Does anyone know of a good tag set that will allow me to create new DNS settings on the server? I heard it can be done with some DNS servers in ColdFusion. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble T

OT: MySpace.com bought by Fox / News Corp

2005-07-19 Thread Damien McKenna
http://www.informationweek.com/story/showArticle.jhtml?articleID=1664004 91&tid=13692 That $580m should allow for lots of new toy^H^H^Hsystem purchases :-) -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include ~

RE: Code function

2005-07-19 Thread Jim Davis
> -Original Message- > From: Ken [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 19, 2005 2:07 PM > To: CF-Talk > Subject: Re: Code function > > actually, guys... I am using this url: > http://www.citronfood.com/MyFile.csv > > As you can see http is present, No port numbers. > > Also, pl

Re: Purpose of HTML tags at beginning of cfoutput in classic.cfm debug page

2005-07-19 Thread sonicDivx
Thats what I thought. Yeah trying to fix the issue with the debug output appearing under my DIVS. tried a div with a style of "clear:both" at end but that didn't help. Frame sites make debugging so much fun. Kevin ~| Log

Re: WMode Flash and HTML Forms

2005-07-19 Thread John Dowdell
Mark Leder wrote: > I have an XML flash horizontal drop down menu with a param wmode= > transparent so that the drop downs cover over some of the content (like a > dhtml menu). This works fine. Problem is, if I have a page with an html > form that the menu overlays, I can see the html form fields

OT: CFMX & Java API

2005-07-19 Thread Shailaja Jain
>I have a Java based API from Plumtree Software. I know ColdFusion, but have >very little Java knowledge. I have to utilize this piece of software and >its API. So, I am still trying to make this API work with ColdFusion. >Plumtree won't offer any support as they don't support ColdFusion. So, h

Re: Code function

2005-07-19 Thread Ken
actually, guys... I am using this url: http://www.citronfood.com/MyFile.csv As you can see http is present, No port numbers. Also, please explain in case of a csv file, what the text qualifier would be? On 7/19/05, Al Everett <[EMAIL PROTECTED]> wrote: > You might also need to define the delimit

Re: Purpose of HTML tags at beginning of cfoutput in classic.cfm debug page

2005-07-19 Thread Marlon Moyer
to close off any unclosed tags that might render the debugging content invisible. On 7/19/05, sonicDivx <[EMAIL PROTECTED]> wrote: > What is the purpose of all the HTML tags? > > Thanks > Kevin > > > ~| Logware (www.logware.u

Re: Purpose of HTML tags at beginning of cfoutput in classic.cfm debug page

2005-07-19 Thread Barney Boisvert
All the closing tags, you mean? That's so that the debugging output will theoretically be a top-level content element, rather than nested inside some of your [potentially broken] markup. For example, in certain browsers, if you make an invalid table in a certain way, following content will be mis

RE: Purpose of HTML tags at beginning of cfoutput in classic.cfm debug page

2005-07-19 Thread Tim Blair
> Subject: Purpose of HTML tags at beginning of cfoutput in > classic.cfm debug page > > What is the purpose of all the HTML tags? I believe it's to catch the possibility that an error may have left unclosed tags laying around that might interfere with the display of the debug information, and

Purpose of HTML tags at beginning of cfoutput in classic.cfm debug page

2005-07-19 Thread sonicDivx
What is the purpose of all the HTML tags? Thanks Kevin ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logwa

Re: Code function

2005-07-19 Thread Al Everett
You might also need to define the delimiter and textqualifier. On 7/19/05, Al Everett <[EMAIL PROTECTED]> wrote: > Try this instead: > > http://127.0.0.1/tests/escapetest.txt"; > port="8500" name="onerow"> > > On 7/19/05, Ken <[EMAIL PROTECTED]> wrote: > > Well, My actual code is a fully qualifi

Re: Code function

2005-07-19 Thread Al Everett
Try this instead: http://127.0.0.1/tests/escapetest.txt"; port="8500" name="onerow"> On 7/19/05, Ken <[EMAIL PROTECTED]> wrote: > Well, My actual code is a fully qualified URL. And besides, its the > same code that works fine on CF MX 7, but not on CF 5.0 > - Ken > > On 7/19/05, Al Everett <[EMA

RE: CF Process Monitor

2005-07-19 Thread Kevin Aebig
It hasn't gone quiet... it's being fixed up and included in the next DRK. There will be a new and improved (no bugs, thx Ray) version release shortly after the DRK has been out. There'll also be a lot more documents on it as well as tutorials for every feature it has. I'll be adding a few new feat

Re: Crystal Reports

2005-07-19 Thread Tom McNeer
We've handled the issue for clients in a slightly different way from Marlon, posting parameters for a report to the ASP template (sometimes on a separate server), then handling the redirect to the PDF through ASP. But the heart of the matter is the same: unless CFReport in CFMX7 plays much better

Re: Code function

2005-07-19 Thread Barney Boisvert
Actually, it's not. It's missing the protocol specifier. And it's entirely possible that CF7 will assume http if it's missing, while CF5 won't. CF7 is an entirely different product (written in Java, rather than C++), and so while the core behaviour is compatible, edge cases are often different.

Re: Code function

2005-07-19 Thread Ken
Well, My actual code is a fully qualified URL. And besides, its the same code that works fine on CF MX 7, but not on CF 5.0 - Ken On 7/19/05, Al Everett <[EMAIL PROTECTED]> wrote: > You probably need a fully qualified URL. > > http://127.0.0.1:8500/tests/escapetest.txt"; > name="onerow"> > > On

Re: Code function

2005-07-19 Thread Al Everett
You probably need a fully qualified URL. http://127.0.0.1:8500/tests/escapetest.txt"; name="onerow"> On 7/19/05, Ken <[EMAIL PROTECTED]> wrote: > 127.0.0.1:8500/tests/escapetest.txt -- Get Firefox! http://www.spreadfirefox.com/?q=affiliates&id=58370&t=1 Got Gmail? I have 50 invites to give awa

Re: Amazon AWS

2005-07-19 Thread Brian Kotek
Cutter, just FYI I am pretty sure that when Amazon changed over to the new web service API it broke the old web service request I was using in the bookstore. I haven't had a chance to fiddle with the new API or update the example yet. But if someone has a working example using the new API it wou

RE: WMode Flash and HTML Forms

2005-07-19 Thread Mark Leder
Bummer - I'll have to trash my menu system. Mark ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware to

RE: CF Process Monitor

2005-07-19 Thread Kazmierczak, Kevin
That was what I was looking for. Thanks. Kevin. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 19, 2005 11:50 AM To: CF-Talk Subject: RE: CF Process Monitor SeeFusion by WebApper. www.seefusion.com -Original Message- From: K

RE: Syncing 2 different databases

2005-07-19 Thread Kevin Aebig
Actually, our method currently goes 1 way, but we'll be expanding it to run back and forth. When we logged the instructions, we also update a 'modified_datetime' column or a 'created_datetime' column. When the updates happen, they're compared to decide which value has precedent. As for the quic

Re: Fusebox Oddity: FORM scope not moving to ATTRIBUTE scope

2005-07-19 Thread Robert Nichols
>The CFDUMP tags are before the CFPARAM tags, so it's not the CFPARAM >tags that are setting the values. They must be getting set some other >place. > >cheers, >barneyb > >On 7/19/05, Robert Nichols <[EMAIL PROTECTED]> wrote: >> BarneyB was correct... I had a "hidden" fuse that was doing the rese

farcry?

2005-07-19 Thread DRE
Hi, I'm considering the farcry cms for a project but it appears that there are only 3 plugins for the software and the site seems decidedly barren. Specifically, I need a polling/survey tool to go along with it. Anybody know anything? Thanks. DRE ~~

RE: Syncing 2 different databases

2005-07-19 Thread CollicuttL
Thanks Kevin. Just so I'm clear...it sounds like you stored up data changes (e.g. update this field to the new value) as instructions in an xml document. During sync your web service performed the data changes as specified in the xml doc. 1. Did you do this both ways? Ie changes from system 1

Re: Amazon AWS

2005-07-19 Thread Cutter (CF-Talk)
I am trying the code supplied (with the necessary variables) but I keep getting the following error: Detail Name: http://soap.amazon.com/schemas/AmazonWebServices.wsdl. WSDL: http://soap.amazon.com/schemas/AmazonWebServices.wsdl. java.io.InterruptedIOException: Connection establishment tim

RE: WMode Flash and HTML Forms

2005-07-19 Thread Kevin Aebig
The fun part about wmode with the Flashplayer is that even though there's nothing there... its still part of the plugin. If you use layers to overlap Flash on top of other content, than even though the content is visible, it won't accessible. Cheers, Kevin -Original Message- From: Mark L

Code function

2005-07-19 Thread Ken
This code runs fine on CFMX 7, but not on CF 5.0. Any clues: Runs fine on CFMX 7, but on CF 5.0 following error is produced: Error Diagnostic Information CFHTTP Invalid column header. The error occurred while processing an element with a general identifier of (CFHTTP), occupying document positi

Re: Daily DB updates from CSV files

2005-07-19 Thread Ken
Matt: Please see if you can send me the file, or tell me where to get it from. Thanks. On 7/19/05, Matt Robertson <[EMAIL PROTECTED]> wrote: > There is also a custom tag in the MM devex that will do this, although > the tag's suipport of cfqueryparam is broken (the author left a bug in > it that d

RE: Syncing 2 different databases

2005-07-19 Thread Kevin Aebig
Well actually, I had to do something very similar... Instead of separating the calls into multiple webservice calls, we created 1 webservice that would interpret and parse an xml doc that contained instructions. If you're going to be doing mostly updates to the data and not inserts, than this woul

RE: Installation saga continues...

2005-07-19 Thread Damien McKenna
After playing with it some more I discovered that the MSVCP60.dll file was not installed while the MSVCRT.dll file was. I wasn't able to get the vcredist.exe file to run so I simply copied the MSVCP60.dll file from another Windows 2000 Server machine to C:\WinNT\System32. I then tried to start th

Re: Fusebox Oddity: FORM scope not moving to ATTRIBUTE scope

2005-07-19 Thread Barney Boisvert
The CFDUMP tags are before the CFPARAM tags, so it's not the CFPARAM tags that are setting the values. They must be getting set some other place. cheers, barneyb On 7/19/05, Robert Nichols <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > > > > > UPDATE tblPeople >

Re: SHA-1 encoding and least significant bits

2005-07-19 Thread Greg Morphis
Okay so I think I know what the problem is.. I downloaded a hash calculator and one of the options is telling it the format of the text entered, hex string or text string. Does anyone know how to accomplish this? I've tried using InputBaseN to convert the string before passing it to the sha-1 func

Re: CF Process Monitor

2005-07-19 Thread Thomas Chiverton
On Tuesday 19 July 2005 16:46, Kazmierczak, Kevin wrote: > What was the name of the java app that would tell you the current > running cf processes? Do you mean http://www.keslabs.com/crd/ (which has gone all quiet recently) ? -- Tom Chiverton Advanced ColdFusion Programmer ~~

RE: CF Process Monitor

2005-07-19 Thread Robertson-Ravo, Neil (RX)
SeeFusion by WebApper. www.seefusion.com -Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] Sent: 19 July 2005 16:46 To: CF-Talk Subject: CF Process Monitor What was the name of the java app that would tell you the current running cf processes? Thanks. Kevin

Syncing 2 different databases

2005-07-19 Thread CollicuttL
I have to sync code tables on 2 different databases (Oracle and SQLserver) belonging to 2 different companies. New codes or changes to existing codes might happen in either database. The only connection between the 2 networks is over the internet so I'd like the solution to be via web services.

Re: thin array / cfbam.cfc

2005-07-19 Thread Anthony Prato
Well if you just want it to be generic, CFGRID with type XML will return the xml string of a grid to a variable. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documentin

CF Process Monitor

2005-07-19 Thread Kazmierczak, Kevin
What was the name of the java app that would tell you the current running cf processes? Thanks. Kevin. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.

Re: CFError performance

2005-07-19 Thread S . Isaac Dealey
> No, I changed the y = x to y = x/1, of course the x/0 is > still the error condition. But thanks ;-) Oh my misunderstanding ... nevermind... :) s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add features without fixtures with the onTap open source framework http://www

Re: Daily DB updates from CSV files

2005-07-19 Thread Matt Robertson
There is also a custom tag in the MM devex that will do this, although the tag's suipport of cfqueryparam is broken (the author left a bug in it that defaults it permanently to cf_sql_varchar IIRC... oddly when I told him about it he refused to accept that the bug existed). It will take a quoted,

Re: CFError performance

2005-07-19 Thread Adam Howitt
No, I changed the y = x to y = x/1, of course the x/0 is still the error condition. But thanks ;-) On 7/19/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > > > Thanks for the suggestion. On one of our boxes (without > > robust error > > handling) processing times increase to 8 times with your >

RE: CFError performance

2005-07-19 Thread S . Isaac Dealey
> I got: > normal time = 0 milliseconds > error time = 125 milliseconds > division by zero error! Increase the number of iterations of the loop until normal time is at least 1ms -- 400 is what worked on our server, but it's liable to vary. s. isaac dealey 954.522.6080 new epoch : isn't it tim

Re: CFError performance

2005-07-19 Thread S . Isaac Dealey
> Thanks for the suggestion. On one of our boxes (without > robust error > handling) processing times increase to 8 times with your > script. I modified > it so it was still performing a division operation (y=x/1) > to improve the > validity of the script. Actually that makes the script invalid...

Re: Basics: Directly calling a function in a .cfm file?

2005-07-19 Thread Thomas Chiverton
On Monday 18 July 2005 19:47, Pete Ruckelshaus wrote: > I have a function that is generating HTML output, so I have it in a .CFM > file. Is there a way to directly "call" a method in this function via a > URL? Thanks You will need to move the function into a Coldfusion Component (a CFC). See the '

Re: Coldfusion classic.cfm debug display issues

2005-07-19 Thread sonicDivx
Yeah , I was thinking of modifying it. Just wasn't sure if anybody else had the issue and had solved it. I'm lazy, hehe. But actually its my second question on multiple instances in J2EE environment and no debug output that is a bigger issue. One of our team asked at CFUnited about the issue a

RE: CFError performance

2005-07-19 Thread Kerry
I got: normal time = 0 milliseconds error time = 125 milliseconds division by zero error! -Original Message- From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: 19 July 2005 15:49 To: CF-Talk Subject: Re: CFError performance Minor revisions to the script:

Re: Crystal Reports

2005-07-19 Thread Marlon Moyer
Yes, you can use the CFReport tag, but I've never had good luck with it concerning formatting. Also, it produces an HTML version of the report vs. something easily printed. On 7/19/05, Niklas Richardson <[EMAIL PROTECTED]> wrote: > Hi Marlon, > > Thanks for the info. But isn't there a way to u

Re: CFError performance

2005-07-19 Thread Adam Howitt
Thanks for the suggestion. On one of our boxes (without robust error handling) processing times increase to 8 times with your script. I modified it so it was still performing a division operation (y=x/1) to improve the validity of the script. I appreciate the ideas. Adam On 7/19/05, S. Isaac

Re: cfforms flash character encoding

2005-07-19 Thread Wayne Putterill
Fixed now by using #CHR(163)# in the code, but I was getting strange characters instead of pound signs when generating flash with cfform, I was using Dreamweaver and it didn't make any difference what encoding was on the pages. I had something which I think is probably related where I couldn't get

Re: thin array / cfbam.cfc

2005-07-19 Thread Thomas Chiverton
On Tuesday 19 July 2005 15:26, Dan G. Switzer, II wrote: > If you're transferring large query results, JSON might be the better > alternative. Thanks (both). I remembered MacroMedia has a query2xml/xml2query CFC, so I've used that instead. -- Tom Chiverton Advanced ColdFusion Programmer

Re: cfforms flash character encoding

2005-07-19 Thread Wayne Putterill
#CHR(163)# did the trick, thanks for your help - it's so annoying when little things like this take up development time. On 7/18/05, Kevin Aebig <[EMAIL PROTECTED]> wrote: > Using the Flash IDE, I tested and found that you can use the character > entity on both Win and Lin... is that what you're d

Re: Crystal Reports

2005-07-19 Thread Niklas Richardson
Hi Marlon, Thanks for the info. But isn't there a way to use CFREPORT with Crystal? Thanks Niklas On 19/07/05, Marlon Moyer <[EMAIL PROTECTED]> wrote: > Niklas, > > I've been dealing with the scourge of crystal for a long time. This > is the solution I've had the most luck with. I know tha

Re: CFError performance

2005-07-19 Thread S . Isaac Dealey
Minor revisions to the script: normal time = #ms# milliseconds error time = #ms# milliseconds increase = x#int(m)# I ran this on our development server and got these results: normal time = 15 milliseconds error

Re: cfforms flash character encoding

2005-07-19 Thread Wayne Putterill
It's actually the server built into CF on my Linux box, I presume it's IIS on the shared host. On 7/18/05, Kevin Aebig <[EMAIL PROTECTED]> wrote: > O... so are you running Apache on one and IIS on the other? > > Kevin > > -Original Message- > From: Wayne Putterill [mailto:[EMAIL PROTECTE

WMode Flash and HTML Forms

2005-07-19 Thread Mark Leder
Hi all, I have an XML flash horizontal drop down menu with a param wmode= transparent so that the drop downs cover over some of the content (like a dhtml menu). This works fine. Problem is, if I have a page with an html form that the menu overlays, I can see the html form fields, but I can't cl

Re: CFError performance

2005-07-19 Thread S . Isaac Dealey
> It may have been a crazy dream but I thought I read > somewhere that when CF > enters an error state the performance of the server, or > more importantly > it's ability to serve pages, is impeded. Does anyone have > any thoughts or > links to any evidence to that effect? Specifically, we > have s

RE: thin array / cfbam.cfc

2005-07-19 Thread Dan G. Switzer, II
Tom, >Where can I get the Coldfusion side of the JavaScript/Ajax thinarray >object, which I think should be called cfbam.cfc? > >All the links pointing to it being on Rob's site end up at a broken Tigris >project. > >Unless anyone knows of a better way of turning a CF query into a generic >blob of

CFError performance

2005-07-19 Thread Adam Howitt
It may have been a crazy dream but I thought I read somewhere that when CF enters an error state the performance of the server, or more importantly it's ability to serve pages, is impeded. Does anyone have any thoughts or links to any evidence to that effect? Specifically, we have some errors g

Oracle OCI driver

2005-07-19 Thread Steve Brownlee
Anyone out there using the Oracle 10 OCI driver with their CFMX servers? I'm having a huge problem getting ours to work. Every time I set up a datasource using the OCI driver, my SESSION scope can no longer be locked and my JVM process spikes. Here's my setup: - Jboss 4.0 sp1 AS - ColdFusion 7 -

Re: Coldfusion classic.cfm debug display issues

2005-07-19 Thread Raymond Camden
The classic.cfm file is unencrypted - so yo ucould easily modify the HTML generated by it. If you check my blog, you will see 2 mods I described last week or so. (One mod lets you collapse the stack trace in Firefox, and another mod will notice an error involving a missing key in a struct and show

Coldfusion classic.cfm debug display issues

2005-07-19 Thread sonicDivx
Wondering if anybody knows how to fix the classic.cfm debug display from appearing under tags. This especially happens when they are absolutely positioned. Unfortunately I cannot used the dockable version because the site is frame based ( yeah I know, don't ask ). Oh, this is CFMX 6.1 though I

Re: Crystal Reports

2005-07-19 Thread Marlon Moyer
Niklas, I've been dealing with the scourge of crystal for a long time. This is the solution I've had the most luck with. I know that this solution works with CR 8.5, but I'm not sure about newer versions. This solution also requires Crystal and .Net framework to be installed on the server. Ess

RE: Fusebox Oddity: FORM scope not moving to ATTRIBUTE scope

2005-07-19 Thread Robert Nichols
>> From: Robert Nichols [mailto:[EMAIL PROTECTED] >> As you can see, the values of the variables in scope form are >> *not* being copied to attributes. So the code winds up >> updating the table tblPeople with the values in attributes >> instead of the values the user enters on the form. > >Wh

Re: thin array / cfbam.cfc

2005-07-19 Thread Rob
Hi Thomas, We are in discussions with some companies on the thinarray concept and had to take them down because of that. If you promise not to distribute the code I'll send you a copy you can use for your projects. And the project page where it would have been found had it not been removed from t

Re: Amazon AWS

2005-07-19 Thread Jonathan Mauney
This is what I'm using... I don't remember where I got it. It returns an array with all the product details http://soap.amazon.com/schemas3/AmazonWebServices.wsdl"; method="AsinSearchRequest" returnvariable="productinfoARRAY" timeout="10"> Jonathan >I'm trying to pull

RE: Fusebox Oddity: FORM scope not moving to ATTRIBUTE scope

2005-07-19 Thread Tangorre, Michael
> From: Robert Nichols [mailto:[EMAIL PROTECTED] > As you can see, the values of the variables in scope form are > *not* being copied to attributes. So the code winds up > updating the table tblPeople with the values in attributes > instead of the values the user enters on the form. What vers

RE: Flash Forms

2005-07-19 Thread Tom King
If anyone's interested, I figured out the problem, CF was looking for the flash compilers and libraries in the wrong place, as the CFIDE dir is on a different partition, and I had the "flash forms debugging" turned off.. *sigh* T -Original Message- From: Tom King [mailto:[EMAIL PROTECTE

Fusebox Oddity: FORM scope not moving to ATTRIBUTE scope

2005-07-19 Thread Robert Nichols
UPDATE tblPeople SET Color1 = , Color2 = , Color3 = , Color4 = , Color5 = , Color6 = , Color7 = , Color8 = , Color9 = WHERE P

  1   2   >