RE: QofQ data type assignation

2005-01-19 Thread James Holmes
I've been thining of writing and releasing a queryCast() function to fix this, but no-one has been interested so far. -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Wednesday, 19 January 2005 3:41 To: CF-Talk Subject: RE: QofQ data type assignation AFAIK this is

Re: IE6-SP1 (MS04-040 Update) Locks JRun Admin

2005-01-19 Thread Andy Allan
As I only use CF Standard (only install CF/JRun in 30 day trial mode when I'm keeping myself handy with multiple instances/clustering) I've obviously not run into the issue. Then again (and I don't mean this as a solution to your problem) I use Firefox rather than IE. Check the JMC with another

Re: CFMX 61 help in HomeSite [bump]

2005-01-19 Thread Ian Winter
Have you got these installed? (see link) http://ray.camdenfamily.com/index.cfm?mode=entryentry=395FD4F4-E752-4C9C-9BD93428C711497E On Tue, 18 Jan 2005 18:59:15 -0500, Dave Merrill [EMAIL PROTECTED] wrote: Any takers on this? Or did I miss a reply? What's the best way to get CFMX 6.1 help

RE: CFMX 61 help in HomeSite [bump]

2005-01-19 Thread Dave Merrill
Thanks for the pointer, found these files at MM too. They say they apply to Homesite+, but I have Homesite 5.5 standalone; doesn't say +. Do you know if the files apply to both? Do you know if HS 5.5 includes any of this as purchased? Do I gather that nobody is using HomeSite standalone for CF

RE: CFMX 61 help in HomeSite [bump]

2005-01-19 Thread Calvin Ward
+ can only be purchased with Dreamweaver or Studio MX 2004. Keep in mind that one of the features that makes it + (interactive debugging) doesn't work with ColdFusion MX. Also keep in mind that HomeSite, regardless of version, doesn't properly support Unicode and that may be a concern when

RE: CFMX 61 help in HomeSite [bump]

2005-01-19 Thread Dave Merrill
Thanks for your reply Calvin. I did know about no debug w MX, but not about unicode issues, though at least for now that's not that important to me. So are you using the full Studio/Dreamweaver/HS+? CFEclipse? Dave Merrill + can only be purchased with Dreamweaver or Studio MX 2004. Keep in

RE: CFMX 61 help in HomeSite [bump]

2005-01-19 Thread Calvin Ward
Because of the nature of our business, we are currently using Dreamweaver MX 2004, but it has enough shortcomings that I'm frustrated most days. I'm tinkering with CFEclipse in my spare time, and so far I like what I see! - Calvin -Original Message- From: Dave Merrill [mailto:[EMAIL

Re: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread John Beynon
did you see http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=95ee04fbpss=rss_coldfusion_95ee04fb jb. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: javacast not working

2005-01-19 Thread S . Isaac Dealey
S. Isaac Dealey wrote: and format(long)... So I've tried using both object.format(javacast(double,number)) and object.format(javacast(long,number)) and in both cases an error is produced saying The selected method format was not found. ... and if I dump the java object it shows two

Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Dave Wilson
Hi all, I was wondering if anybody on the list has ever managed to do this, using CF, or any other technologies for that matter. I know that apache has server-push available to it, but my research shows that it only works for Netscape/Mozilla browsers and that IE simply does not support it. The

RE: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Robertson-Ravo, Neil (RX)
Flash and Flash Remoting? Flex? -Original Message- From: Dave Wilson [mailto:[EMAIL PROTECTED] Sent: 19 January 2005 14:06 To: CF-Talk Subject: Emulating http server-push to Internet Explorer browsers Hi all, I was wondering if anybody on the list has ever managed to do this, using

RE: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Dave Wilson
Flash and Flash Remoting? Flex? Ah yes, sorry I had forgotten to mention, FLash and Flex aren't an option at this stage, but will keep them in mind as a last resort, thanks ~| Logware: a new and convenient web-based time

RE: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Micha Schopman
I used Flash XML sockets for this in the past. It was a digital conferencing system by Philips. The system pushed DDE packets over Netbui which we intercepted with a custom made socket on the server. Flash connected to our sockets, and we then pushed our xml over that connection. We used this for

Re: QofQ data type assignation

2005-01-19 Thread Claude Schneegans
how the QofQ functions assign datatypes to the columns of a query passed into it on CFMX 6.1?? It guesses. My suspicion is that it typecasts the whole dataset based on a test case of the first row of data in the query you are querying... Your suspicion is right. --

Re: QofQ data type assignation

2005-01-19 Thread Claude Schneegans
I've been thining of writing and releasing a queryCast() function to fix this, but no-one has been interested so far. I think the problem is not being interested, but HOW one would do it. -- ___ REUSE CODE! Use custom tags; See

But it IS defined!

2005-01-19 Thread Tony Pimm
This has had me scratching my head for ages now cfset var cfcAbsence = createobject(component, absence) !--- Set up the structure and other stuff--- cfset stRecord.Holidays.stApproved= cfcAbsence.search(arguments.userID1,1) cfset stRecord.Holidays.stNonApproved =

RE: QofQ data type assignation

2005-01-19 Thread gabriel l smallman
I think the problem is not being interested, but HOW one would do it. I agree with the intrest part, this has been a thorn in my side with using Q in Q ~| Logware: a new and convenient web-based time tracking application.

Re: display number of pages left

2005-01-19 Thread daniel kessler
That isn't really a good idea since you are asking for all your records into CF before you manipulate the results. The result is an app which doesn't scale well and chokes on simple paging query. well that's what I'm trying to avoid, though I thought that with startRow and maxrow, it limited

Re: But it IS defined!

2005-01-19 Thread Joe Rinehart
Tony, It looks like your structure is stRecord.Holidays.stApproved, but your error message looks like there's a piece of code that thinks it's stRecord.stApproved.Holidaysis there a stray line of code that gets things backwards somewhere? -joe On Wed, 19 Jan 2005 11:18:08 -0400, Tony Pimm

Re: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Doug James
I have successfully used XMLHTTPRequest to get data from a CF page without a get/post. You page would need to have a JavaScript function with a timer (very doable) rather than a hidden frame. There are plenty of resources available. Let me know if I can help. Doug James IT Developer /

Importing a csv file

2005-01-19 Thread Victor Moore
Hi, I have a question regarding importing a csv file, that contains commas in some of the fields. As a result those lines are screwing the import process. Unfortunately I don't have any control over the content of the files. I am sure that other people had the some issue an I was wondering how

RE: Importing a csv file

2005-01-19 Thread RADEMAKERS Tanguy
Importing a csv file into ___? -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 5:45 PM To: CF-Talk Subject: Importing a csv file Hi, I have a question regarding importing a csv file, that contains commas in some of the

RE: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Jim Davis
The old way to do this was via Channel Definition Format (it appeared in IE 4 but it's supported in all other versions as well). The technology was created to support the Windows 95 Active Desktop and active content. Here's a very old example I did (for a site that's no longer active): ?XML

RE: Importing a csv file

2005-01-19 Thread Ian Skinner
Hopefully there is some standard of a string escape character; often double quotes (). When one imports a CSV file, one would ignore any delimitaters that appear between a set of string escape characters. If this CSV file is not formatted with some kind of string escape, I feel you pain,

RE: Importing a csv file

2005-01-19 Thread Tim Blair
Victor, I have a question regarding importing a csv file This topic was covered only a week ago, so check out this thread for some good info: http://www.houseoffusion.com/cf_lists/messages.cfm/threadid=37522/forumi d=4 Tim. -- --- Badpen

RE: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Jim Davis
-Original Message- From: Doug James [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 11:25 AM To: CF-Talk Subject: Re: Emulating http server-push to Internet Explorer browsers I have successfully used XMLHTTPRequest to get data from a CF page without a get/post. You

Can we use CFFILE for this?

2005-01-19 Thread Discover Antartica
Does anyone know how to upload a file into a column in a database table using Coldfusion? Can we use CFFILE? - Do you Yahoo!? Take Yahoo! Mail with you! Get it on your mobile phone.

RE: Importing a csv file

2005-01-19 Thread Tim Blair
I have a question regarding importing a csv file This topic was covered only a week ago, so check out this thread for some good info: http://www.houseoffusion.com/cf_lists/messages.cfm/threadid=37 522/forumi d=4 For anyone suffering from word-wrap-itis:

RE: Can we use CFFILE for this?

2005-01-19 Thread Craig Dudley
This will store the file as a base64 representation of the file. cffile action=READBINARY file=yourfile variable=blobData cfset blobBase64 = toBase64(blobData) Then just insert blobBase64 to an nText field in your db. To get the file out... cfset blobBinary = toBinary(queryname.blobBase64)

Re: display number of pages left

2005-01-19 Thread Greg Morphis
Yeah, for larger results you'd want to limit the results within the query, not the output.. IE. (oracle) SELECT * FROM ( SELECT ROWNUM ID, d.* FROM DOCUMENTS d ORDER BY docid ) WHERE ID BETWEEN 25 AND 49 On Wed, 19 Jan 2005 11:33:22 -0400, daniel kessler [EMAIL PROTECTED]

RE: display number of pages left

2005-01-19 Thread Dave Watts
well that's what I'm trying to avoid, though I thought that with startRow and maxrow, it limited the search to only grab those 25. You're saying it grabs all of them and only shows me the 25 in the delivered recordSet? The STARTROW and MAXROWS attributes of the CFOUTPUT tag have no effect

RE: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Dave Watts
I believe that XMLHTTPRequest is a GET or a POST (it would have to be, I think - one of the parameters it takes is method). Yes, it will use one or the other. Any HTTP request will use one of the accepted HTTP verbs, of which GET and POST are the most common. Dave Watts, CTO, Fig Leaf

RE: OT: Lynx MySQL v Win2003/IIS SQL

2005-01-19 Thread Dave Watts
All of that to say this, I seem to hear mostly positives about MySQL and a lot of negatives about MS SQL. Sometimes I think that might be more dissatisfaction with MS than objectivity? Well, it's harder to criticize something when you don't pay for it! However, the big differences between

Re: Query to Excel

2005-01-19 Thread Nick Baker
Vishnu I had to do the same (with the help of someone else on this list) for test gathering a while back, and someone on this list was nice enough to help. Hopefully the following code will give you some ideas. As I remember this acts a little different with NS and IE. I also save the info to

Re: display number of pages left

2005-01-19 Thread daniel kessler
I just posted this in response to a different question. A note on your use of #preservesinglequotes# here - that is inherently unsafe and should really be replaced by a cfqueryparam. As it stands your find text could allow a malicious SQL injection to delete tables or pull back login names

RE: QofQ data type assignation

2005-01-19 Thread kola.oyedeji
We had this problem, I believe we wrote a a udf which appended an initial first row using the queryAddRow(), setcell() functions HTH Kola -Original Message- From: gabriel l smallman [mailto:[EMAIL PROTECTED] Sent: 19 January 2005 16:26 To: CF-Talk Subject: RE: QofQ data type

RE: display number of pages left

2005-01-19 Thread Dave Watts
I've not used cfqueryparam before. Can you clarify how I can implement this so that it makes my WHERE more secure? I've never really understood cfqueryparam. You can read all about it here: http://www.macromedia.com/devnet/mx/coldfusion/articles/cfqueryparam.html Dave Watts, CTO, Fig Leaf

Re: display number of pages left

2005-01-19 Thread Greg Morphis
Is there a chance that anyone of these rows will be deleted? If so then you wont want to do a query where id between m and n Say you delete id 250... then run a query for 201-300 expecting to return 100 results, you wont.. you'll return 100 minus the people you deleted.. could mess up your output.

Can we do this with CFPOP?

2005-01-19 Thread Discover Antartica
Ok. Now another problem. I am using the generateUniqueFilenames attribute in CFPOP. Is there a way to find what is the unique filename that is being generated by CFPOP? what is happening is that if I have one two emails with the attachments having the same name, say for example Testing.cfm,

SOT: CFREPORT questions

2005-01-19 Thread Jeff Waris
This is a half crystal reports question half Coldfusion. I am trying to run a crystal reports rpt file through the tag. The report runs fine through crystal itself BUT it bombs when I run it through the tag. I keep getting this error. An unexpected error occurred while using the Crystal Engine.

RE: OT: Lynx MySQL v Win2003/IIS SQL

2005-01-19 Thread kola.oyedeji
Nick You are experiencing performance problems with your current hosting - are you sure its actually down to the database platform? Perhaps you would be better of looking at the db design, indexes etc. IIRC MySQl has a number of different table types which you can mix and match within the same

RE: display number of pages left

2005-01-19 Thread Discover Antartica
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-b20.htm#wp1102474 Dave Watts [EMAIL PROTECTED] wrote: I've not used cfqueryparam before. Can you clarify how I can implement this so that it makes my WHERE more secure? I've never really understood cfqueryparam. You can read

Re: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Doug James
Jim, You are correct the xmlhttprequest is a post to a page to handle the request. I was thinking of forms when I wrote my first post. JavaScript posts the information to a page, presumably a cfm, which processes the request then replies with a mime type of xml and xml only. My apologies

RE: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Dave Wilson
Thanks all for ideas and pointers. I'll look into XML-RPC a bit more to see if I can get it working. I did come across the Channel Definitions stuff during my google sessions and flagged it as a possible solution. My current hidden frame approach is refreshing (for every user logged in) every 15

RE: Importing a csv file

2005-01-19 Thread Andy Ousterhout
Victor, This has been covered several times over the years. Search the archives. Andy -Original Message- From: Victor Moore ~| Logware: a new and convenient web-based time tracking application. Start tracking and

Can we do this with CFPOP?

2005-01-19 Thread Discover Antartica
- Do you Yahoo!? Yahoo! Mail - 250MB free storage. Do more. Manage less. ~| Logware: a new and convenient web-based time tracking application. Start tracking and documenting

RE: Can we do this with CFPOP?

2005-01-19 Thread Jacob
-Original Message- From: Discover Antartica [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 9:59 AM To: CF-Talk Subject: Can we do this with CFPOP? - Do you Yahoo!? Yahoo! Mail - 250MB free storage. Do more. Manage less.

RE: Query to Excel

2005-01-19 Thread Ron Eis
Here's what I use with the help of a lot of feedback from the board. There are two cfcontent and cfoutput tags. The first one will display the headers at the top of the .xls file and the 2nd group outputs the data from query. Make sure that Reset is Yes on the 1st cfcontent but Reset is No on

RE: Query to Excel

2005-01-19 Thread Dave Watts
There are two cfcontent and cfoutput tags. The first one will display the headers at the top of the .xls file and the 2nd group outputs the data from query. Make sure that Reset is Yes on the 1st cfcontent but Reset is No on the 2nd. This why it won't wipe out the results of the 1st

Re: Importing a csv file

2005-01-19 Thread Howie Hamlin
In that case the text needs to either be inside of double quotes or the entire file needs to be delimited with tabs (I prefer TAB-demimited files as there it is easier to work with and does not increase the file size like double quotes will. If you can get the files generated with TABs then

Re: javacast not working

2005-01-19 Thread Paul Hastings
S. Isaac Dealey wrote: Well I'm always hopeful. :P Trying to create something that can _potentially_ scale back to CF5 without changing the implementation i'd rather have a sharp stick in my eye than deal w/a lot fo java in cf5. porting geoLocator from mx to cf5 took 3 times as long as it did

Processing quiz with a non-existent script?!!?

2005-01-19 Thread Richard Crawford
I'm trying to track down a serious bug on our website, which is really starting to annoy me. Basic rundown: We have two servers, a development server and a production server. The directory structure is identical in both servers (with the exception of some permissions issues which should not

Re: Importing a csv file

2005-01-19 Thread Victor Moore
Thank you all. I ended up using Ostermiller java utility and it seems it's doing the job. /regards Vic On Wed, 19 Jan 2005 13:20:27 -0500, Howie Hamlin [EMAIL PROTECTED] wrote: In that case the text needs to either be inside of double quotes or the entire file needs to be delimited with

RE: Processing quiz with a non-existent script?!!?

2005-01-19 Thread Russ
Have you recently changed the form action to page2.cfm from pageDo.cfm? Perhaps the old page is still stuck in your browser cache... Do you have a 404 handler in that directory? Perhaps it's the pageDo.cfm file? Are you using any javascript? Is it possible that when you hit submit, the

New CF Blog App

2005-01-19 Thread Rick Root
If anyone is interested, I'm making excellent progress on my new coldfusion blogging tool which I will release under open source. It's called BlogCFM. Currently only running under CFMX 6.1 with MySQL, I plan to test it with BlueDragon too, eventually. Two big features that I like about it (hey

RE: Desperately Seeking John Malkovich

2005-01-19 Thread Mark A Kruger
Hmmm I always think of you as Sir Isaac dealey and imagine you speaking with a fancy pants british accent :) -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 3:52 PM To: CF-Talk Subject: RE: Desperately Seeking John Malkovich From:

RE: DB Survey

2005-01-19 Thread Kevin Graeme
We use XTG Data Modeller. A visual CASE tool for data structure modelling and documenting, reverse engineering and exploring databases. http://www.xtgsystems.com/xtgdm.php3 -Kevin -Original Message- From: Tiki Guy [mailto:[EMAIL PROTECTED] Sent: Monday, January 17, 2005 6:18 AM To:

Re: Emulating http server-push to Internet Explorer browsers

2005-01-19 Thread Dave Carabetta
On Wed, 19 Jan 2005 12:29:54 -0500, Doug James [EMAIL PROTECTED] wrote: Jim, You are correct the xmlhttprequest is a post to a page to handle the request. I was thinking of forms when I wrote my first post. JavaScript posts the information to a page, presumably a cfm, which processes

Re: Desperately Seeking John Malkovich

2005-01-19 Thread Mark Drew
Mind out for Apples (from trees, not those cute little machines .. ohhh,, mac mini for me!) err yes MD On Wed, 19 Jan 2005 12:54:05 -0600, Mark A Kruger [EMAIL PROTECTED] wrote: Hmmm I always think of you as Sir Isaac dealey and imagine you speaking with a fancy pants british accent

News about Macrmedia and it stock...

2005-01-19 Thread Ciliotta, Mario
Here is an article I received this afternoon: TECH BIZ from CNN/Money and Business 2.0 Wednesday, January 19, 2005 *** Be the first to know when there is breaking financial news! Sign up now to receive your BREAKING NEWS e-mail alerts.

Re: Processing quiz with a non-existent script?!!?

2005-01-19 Thread Ben Doom
On occasion, I've seen deleted .cfm files continue to work. I had to manually recompile the directory to make them go away, so I think that the compiled form gets cached and not deleted properly. HTH. --Ben Richard Crawford wrote: I'm trying to track down a serious bug on our website, which

CF calling a page itself

2005-01-19 Thread Matthew Small
Hi, I need to have a CF page make a call to another CF page on the same server but not wait for a response. What I really need is just to do some processing in the background but have the presentation send an Action complete message to the user instead of timing out. Can anybody

cfx_SNMP

2005-01-19 Thread Lab Manager
Does anyone have experience with this custom tag? I support a college network training lab and one of my professors purchased this tag to monitor the status of some of the lab equipment for purposes of student homework. The developers site, www.insapi.com, has been totally unresponsive to

a question popped up about cfpop

2005-01-19 Thread Discover Antartica
I am using the generateUniqueFilenames attribute in CFPOP. Is there a way to find what is the unique filename that is being generated by CFPOP? what is happening is that if I have one two emails with the attachments having the same name, say for example Testing.cfm, then, CFPOP stores the

RE: Processing quiz with a non-existent script?!!?

2005-01-19 Thread Paul
I had some problems along these same lines when I upgraded to MX - it turned out I hadn't properly read the instructions for configuring CF on a multihomed server. Dunno if that applies to your situation or not but there you go... -Original Message- From: Ben Doom [mailto:[EMAIL

RE: CF calling a page itself

2005-01-19 Thread Matthew Walker
How about loading the page into a hidden iframe? When the page is finished, you can get the page in the iframe to call some JavaScript in the parent page: parent.myJSMethod(); -Original Message- From: Matthew Small [mailto:[EMAIL PROTECTED] Sent: Thursday, 20 January 2005 9:23 a.m. To:

RE: Query to Excel

2005-01-19 Thread Ron Eis
You know, that does make sense. There was so much trial and error when I was trying to get the column headers to output correctly, that I wasn't thinking CF clearly. Thanks for the tip. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005

RE: CF calling a page itself

2005-01-19 Thread Mike Nicholls
You could also fire off a CFHTTP request to the page you are calling with a timeout of 1 - not quite instant, but possibly better than waiting. I seem to remember that a timeout of 0 causes your page to wait as long as necessary for the request to finish before continuing, so be careful ;-)

FuseBox is clearing sessions

2005-01-19 Thread Claude Schneegans
Hi, I'still trying to find my way in all this FB mess! ;-) I find these lines in fbx_settings.cfm : !--- Clear cookies for users coming from external links --- cfelseif NOT len(CGI.HTTP_REFERER) AND NOT isDefined(attributes.redirect) cfcookie name=CFID value= expires=NOW cfcookie

RE: CF calling a page itself

2005-01-19 Thread Matthew Walker
Depends if you want that Action complete message. Another option would be to use cfhttp, then when the page is complete it updates a field in the database, and you get your calling page to use remote scripting to query that data every few seconds until the process is complete. You'd need a

Re: cfx_SNMP

2005-01-19 Thread Nathan Strutz
Yeah, I've tried to use it, but had awful luck as well. Instead, look up cfx_querysnmp. It actually works, and has good docs with it, etc. Plus it's open source. I made a little CFMRTG program with it, put cfchart and cfschedule to work and came up with a pretty easily maintainable and

RE: QofQ data type assignation

2005-01-19 Thread Paul Vernon
Thanks all for the responses... After much digging on Google I found that the MM livedocs seems to have turned into a forum where QofQ is concerned and there are a few different workarounds published there but the main thrust of the docs say it's broke in CFMX and should be fixed in Blackstone...

Re: Desperately Seeking John Malkovich

2005-01-19 Thread Jim McAtee
Maybe it's the powdered wig that throws 'em off. - Original Message - From: Mark A Kruger [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, January 19, 2005 11:54 AM Subject: RE: Desperately Seeking John Malkovich Hmmm I always think of you as Sir Isaac

Re: javacast not working

2005-01-19 Thread S . Isaac Dealey
S. Isaac Dealey wrote: Well I'm always hopeful. :P Trying to create something that can _potentially_ scale back to CF5 without changing the implementation i'd rather have a sharp stick in my eye than deal w/a lot fo java in cf5. porting geoLocator from mx to cf5 took 3 times as long as it

RE: Desperately Seeking John Malkovich

2005-01-19 Thread S . Isaac Dealey
Hmmm I always think of you as Sir Isaac dealey and imagine you speaking with a fancy pants british accent :) Common misconception, although unless there's a new process I haven't heard about, unlike Tim Berners-Lee, the Queen hasn't seen fit to have me knighted yet. :) As to pants I

Re: News about Macrmedia and it stock...

2005-01-19 Thread Micha Schopman
With ever increasing demand of new features, and the enormous amount of competiting products I can imagine the market is pretty tough for these type of products. I think only the Flash suite is pretty unique. Freehand, well we have Illustrator. Dreamweaver well we have Eclipse or UltraEdit,

Re: News about Macrmedia and it stock...

2005-01-19 Thread Adrocknaphobia
I don't think Eclipse or UltraEdit are viable options for most companies. There is that whole ideology that if it doesnt cost alot of money, how good could it be? IMO Dreamweaver only really competes with FrontPage (which isnt much competition outside of marketing on MS part). VS is a viable

Re: Processing quiz with a non-existent script?!!?

2005-01-19 Thread Richard Crawford
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben Doom wrote: | On occasion, I've seen deleted .cfm files continue to work. I had to | manually recompile the directory to make them go away, so I think that | the compiled form gets cached and not deleted properly. That might be the problem.

cfinvoke communication specifics

2005-01-19 Thread Matthew Drayer
Hi there, Wondering if someone can shed a little light on the method of communication that is employed when you use cfinvoke component=? ie, let's say you have a CFC connecting to another CFC in the local system -- what is the transmission protocol for this operation? Also, along these

Re: News about Macrmedia and it stock...

2005-01-19 Thread Tyler Fitch
Actually Contribute is the type of product that I think they sell large amounts of in bulk. It's aimed at content management for groups large and small. Especially the large companies who use the administrative tools in Contribute like connection keys to allow users to have correct access to

Re: New CF Blog App

2005-01-19 Thread Keith Gaughan
Rick Root wrote: If anyone is interested, I'm making excellent progress on my new coldfusion blogging tool which I will release under open source. It's called BlogCFM. Currently only running under CFMX 6.1 with MySQL, I plan to test it with BlueDragon too, eventually. Two big features

Clustered CFMX 6.1 Pro servers and session vars

2005-01-19 Thread Brook Davies
We use a client var db for maintaining state in our app, because it is clustered. We are running CFMX 6.1 Pro. Has there been any changes to session management in CFMX that would enable the use of session vars on a clustered setup? Brook

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Andrew Tyrone
John, Yes, thanks. As far as I've tested on IIS 5, checking the check that file exists checkbox doesn't do ANYTHING. IIS still passes missing .cfm files to CFMX regardless of that setting. Sometimes I wonder if even Macromedia knows how the missing template handler works. Andy -Original

Re: News about Macrmedia and it stock...

2005-01-19 Thread Rob
On Wed, 19 Jan 2005 16:45:25 -0500, Adrocknaphobia [EMAIL PROTECTED] wrote: I don't think Eclipse or UltraEdit are viable options for most companies. There is that whole ideology that if it doesnt cost alot of money, how good could it be? That's true, so we've now decided to charge 5 million

Re: Clustered CFMX 6.1 Pro servers and session vars

2005-01-19 Thread Dave Carabetta
On Wed, 19 Jan 2005 14:13:19 -0800, Brook Davies [EMAIL PROTECTED] wrote: We use a client var db for maintaining state in our app, because it is clustered. We are running CFMX 6.1 Pro. Has there been any changes to session management in CFMX that would enable the use of session vars on a

Re: New CF Blog App

2005-01-19 Thread Neil Middleton
I too would be interested in taking a look at this and suprise, surpise I also have a CFOpen account under neilmiddleton. Rick Root wrote: If anyone is interested, I'm making excellent progress on my new coldfusion blogging tool which I will release under open source. It's called

Re: javacast not working

2005-01-19 Thread Paul Hastings
S. Isaac Dealey wrote: Well I'm not actually planning to use this stuff with CF5. :) Just wanted to try and create something that would allow someone to hook into CF5 if they needed it for what reason I have no idea. It would forgetting that cf5 lacks unicode support?

Re: FuseBox is clearing sessions

2005-01-19 Thread Sean Corfield
On Wed, 19 Jan 2005 15:42:55 -0500, Claude Schneegans [EMAIL PROTECTED] wrote: I'still trying to find my way in all this FB mess! ;-) I find these lines in fbx_settings.cfm : The fbx_Settings.cfm file is *user* created, not something that FB itself provides. !--- Clear cookies for users

Re: cfinvoke communication specifics

2005-01-19 Thread Sean Corfield
On Wed, 19 Jan 2005 17:00:02 -0400, Matthew Drayer [EMAIL PROTECTED] wrote: Wondering if someone can shed a little light on the method of communication that is employed when you use cfinvoke component=? ie, let's say you have a CFC connecting to another CFC in the local system -- what is the

Re: FuseBox is clearing sessions

2005-01-19 Thread Claude Schneegans
The fbx_Settings.cfm file is *user* created, not something that FB itself provides. Ah ah, so it comes with the application. Yup, this looks like dumb code to me - remove it! Glad to have a confirmation of what I was thinking ;-) -- ___ REUSE CODE! Use custom

Re: News about Macrmedia and it stock...

2005-01-19 Thread Adam Haskell
On Wed, 19 Jan 2005 14:37:41 -0800, Rob [EMAIL PROTECTED] wrote: On Wed, 19 Jan 2005 16:45:25 -0500, Adrocknaphobia [EMAIL PROTECTED] wrote: I don't think Eclipse or UltraEdit are viable options for most companies. There is that whole ideology that if it doesnt cost alot of money, how good

RE: QofQ data type assignation

2005-01-19 Thread James Holmes
It's actually not very difficult. You convert the query to WDDX, edit the WDDX packet (with XSLT or whatever) to change the types for the columns and then convert back to a query. It' just a matter of finding time to write it and I can only be bothered doing that if people will use it.

RE: CF calling a page itself

2005-01-19 Thread James Holmes
How about cfsheduling a once-run execution of the page in one second's time? -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Thursday, 20 January 2005 4:46 To: CF-Talk Subject: RE: CF calling a page itself Depends if you want that Action complete message.

RE: Clustered CFMX 6.1 Pro servers and session vars

2005-01-19 Thread Dave Watts
We use a client var db for maintaining state in our app, because it is clustered. We are running CFMX 6.1 Pro. Has there been any changes to session management in CFMX that would enable the use of session vars on a clustered setup? You can use the underlying J2EE session management

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Dave Watts
Yes, thanks. As far as I've tested on IIS 5, checking the check that file exists checkbox doesn't do ANYTHING. IIS still passes missing .cfm files to CFMX regardless of that setting. Sometimes I wonder if even Macromedia knows how the missing template handler works. By default, that's

RE: cfinvoke communication specifics

2005-01-19 Thread Dave Watts
Wondering if someone can shed a little light on the method of communication that is employed when you use cfinvoke component=? ie, let's say you have a CFC connecting to another CFC in the local system -- what is the transmission protocol for this operation? I don't think there's any

RE: News about Macrmedia and it stock...

2005-01-19 Thread Dave Watts
Dreamweaver well we have Eclipse or UltraEdit, Visual Studio 2003, .. etc.. All of those do some of the things that Dreamweaver does, but none of them do all the things that Dreamweaver does! I don't think there's really a comparable HTML authoring tool out there. Products like RoboHelp,

Re: javacast not working

2005-01-19 Thread S . Isaac Dealey
S. Isaac Dealey wrote: Well I'm not actually planning to use this stuff with CF5. :) Just wanted to try and create something that would allow someone to hook into CF5 if they needed it for what reason I have no idea. It would forgetting that cf5 lacks unicode support? Not every currency

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Andrew Tyrone
Dave, I forgot about the isapi filter in the master www property page. Does this mean I can't catch missing .jsp pages? I am not sure if you saw my initial post in this thread, but it's all explained in there. CFMX catches missing .cfm and .cfml pages and displays the page defined in the

RE: Can we use CFFILE for this?

2005-01-19 Thread Dawson, Michael
Go back through this list's archive a couple of weeks. I posted a working solution on here. It works with CF6.1 and SQL 2k -Original Message- From: Discover Antartica [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 10:55 AM To: CF-Talk Subject: Can we use CFFILE for this?

  1   2   >