RE: How to use DLLs in CF

2002-12-09 Thread Shahzad.Butt
Well CFX is one way. Another is to use CFObject. But in that case you need to pass registration key(unique identifier) in your operating system. Which you can get it by typing REGEDIT in RUN box and finding the registration key by giving name of DLL. -Original Message- From: S. Isaac

SOT: Why am I getting this every hour?

2002-12-09 Thread Paul Campano
!doctype html public -//w3c//dtd html 4.0 transitional//en html For the last day or so, I've been getting Cf-List every hour, instead of the once a day delivery I'm used to.nbsp; Every edition I've received hourly is Volume 1 : Number 169.nbsp; How can I change this?nbsp; Why did it change on me

Client Variable problem

2002-12-09 Thread Bud
I've got a customer that keeps getting this message on a site with client variables enabled. [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot insert duplicate key row in object 'CDATA' with unique index 'id1'. Any clues as to what would be causing this? I know that it's trying to write

Client Variable problem - continued

2002-12-09 Thread Bud
OK, as I wrote before, I've got a customer that keeps getting this message on a site with client variables enabled. [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot insert duplicate key row in object 'CDATA' with unique index 'id1'. I went in and checked, and LastVisit was showing 11/25. I

RE: Java in CF (CFMX) - MM Drivers

2002-12-09 Thread Phil Costa
Better late than never ;-) All the drivers are from DataDirect/Merant except for the mySQL driver. I believe a third-party JDBC driver would be managed just like one of the drivers included with CFMX, but I have to verify that. Phil -Original Message- From: Joe Eugene [mailto:[EMAIL

Updating two fields

2002-12-09 Thread FlashGuy
Hi, I need to update two fields in my database. For example, I have two fields called data1 and data2. THe below code updates only data1 field. Whats the correct syntax to also update data2 field at the same time? cfquery name=Update datasource=db dbtype=ODBC UPDATE

RE: Updating two fields

2002-12-09 Thread Tony Weeg
here ya go. cfquery name=Update datasource=db dbtype=ODBC UPDATE tblField SET data1='Yes', data2='something' WHERE strUsername='test' /cfquery :) ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer

RE: Updating two fields

2002-12-09 Thread webguy
cfquery name=Update datasource=db dbtype=ODBC UPDATE tblField SET data1='Yes' , data2='Yes' WHERE strUsername='test' /cfquery WG From: FlashGuy [mailto:[EMAIL PROTECTED]] Hi, I need to update

RE: Updating two fields

2002-12-09 Thread Justin Hansen
cfquery name=Update datasource=db dbtype=ODBC UPDATE tblField SET data1='Yes', data2='no' WHERE strUsername='test' /cfquery -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 8:22 AM To: CF-Talk Subject: Updating two fields

Re: Updating two fields

2002-12-09 Thread Clint Tredway
cfquery name=Update datasource=db dbtype=ODBC UPDATE tblField SET data1='Yes', data2='No' WHERE strUsername='test' /cfquery HTH Clint - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 09, 2002 8:22 AM Subject: Updating two

Re: Updating two fields

2002-12-09 Thread Jochem van Dieten
Quoting FlashGuy [EMAIL PROTECTED]: I need to update two fields in my database. For example, I have two fields called data1 and data2. THe below code updates only data1 field. Whats the correct syntax to also update data2 field at the same time?

RE: Updating two fields

2002-12-09 Thread Les Mizzell
Good Morning, Simply use a comma to separate the next database fields/value pair and continue your list cfquery name=Update datasource=db dbtype=ODBC UPDATE tblField SET data1='Yes', data2='anothervalue' WHERE

RE: MS Word/CFOBJECT Help

2002-12-09 Thread Matthew Small
Here is some actual code that I currently use- it's not pretty, but it does the job for CF. I'll be happy to try to answer any questions for you. Matt Small cftry cfobject action=CONNECT class=Word.Application name=objWord type=COM

RE: Client Variable problem - continued

2002-12-09 Thread Craig Dudley
Are you using cf5? If so, have you applied all the hotfixes? I remember one of them relates to this specific issue. -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: 09 December 2002 13:40 To: CF-Talk Subject: Client Variable problem - continued OK, as I wrote before, I've

OT: MM partner solution guide

2002-12-09 Thread Uwe Degenhardt
Hi list, I haven't found the newest Partner Solution Guide from Allaire/Macromedia on the MM-web-site. Can someone give me a URL to download it ? Thanks. Uwe ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

csv file question

2002-12-09 Thread Tony Weeg
hi all. I am finishing up a downloadable csv file for a client and was wondering if there is any way known to make a column in a csv file span two above it? like we do with tables, but in a csv file? thanks. ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer

RE: Java in CF (CFMX) - MM Drivers

2002-12-09 Thread Joe Eugene
Phil/MM Product Team All the drivers are from DataDirect/Merant except for the mySQL driver. Are you sure about the above? What Java Type IV driver is provided with CFMX for DB2 UDB? This? http://www.datadirect-technologies.com/products/jdbc/jdbcrelhighlights.asp The above driver supports DB2

Using cfoutput in Emails

2002-12-09 Thread Clark, Aimee
I have used cfmail for quite some time, but I had a quick question. Is it possible to display parameters in the subject line? For instance if I wanted the subject line to be: Departure-IS Notification: Bugs Bunny, PHX, 12/14/02 Now, the first part after notification is just something that I

Re: Using cfoutput in Emails

2002-12-09 Thread Candace Cottrell
I don't think you need the CFoutputs since you're within the cfmail tag. The ## should suffice. Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: Using cfoutput in Emails

2002-12-09 Thread Joe Eugene
Defnitely.. u can do anything you want~!. BTW.. Why dont you take a minute or two and try this...! Have you tried any code? Got any errors? Joe On Mon, 9 Dec 2002 09:58:58 -0600 Clark, Aimee [EMAIL PROTECTED] wrote: I have used cfmail for quite some time, but I had a quick question. Is it

RE: Using cfoutput in Emails

2002-12-09 Thread Chris Alvarado
Just surround your variable with #'s subject=this is the subject : #variable# Being that the subject attribute is part if a CF tag the variable will be evaluated by CF (assuming the variable exists of course). -chris.alvarado [ application developer ] 4 Guys Interactive, Inc.

RE: Using cfoutput in Emails

2002-12-09 Thread Ben Doom
IIRC, yes. Just pound them in the subject string. --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Clark, Aimee [mailto:[EMAIL PROTECTED]] : Sent: Monday, December 09, 2002 10:59 AM : To: CF-Talk : Subject: Using cfoutput in Emails : : : I

CFC output

2002-12-09 Thread Cutter (CF_Talk)
Does anyone have an example of a CFComponent with a function that returns HTML formatted output. Trying to write a function that performs a query based on specific arguments then outputs a select box based upon the query results as well as some of the other arguments. I'd like to make it a web

CF Error: The request has exceeded the allowable time limit

2002-12-09 Thread Steve Reich
I keep getting the following errors for no apparent reason The request has exceeded the allowable time limit Tag: CFQUERY ..or... The request has exceeded the allowable time limit Tag: CFOUTPUT It isn't taking along time or doing anything special. Almost seems more like a connction issue

CFTABLE to variable

2002-12-09 Thread Everett, Al
I need to write some preformatted text in columns and rows. It seems like a perfect application for CFTABLE, but I need to write to a variable instead of CFOUTPUTting the data. Is there a way to get the results of CFTABLE to a variable without using CFSAVECONTENT? (I need to stay

CFCONTENT Problem with PDF Files

2002-12-09 Thread Tim Haak
Hello, I am trying to send a PDF to the user so it loads in their browser window. The code I am using is: cfheader name=Content-type value=application/pdf cfcontent deletefile=no file=C:/Inetpub/wwwroot/cfmxdemo/itworks.pdf type=application/pdf Note: I also tried a content-type of

RE: CFC output

2002-12-09 Thread Raymond Camden
You should not directly output from the method, but should instead return a string with your output. If you are generating a complex result, which it sounds like you are, you would probably want to use cfsavecontent... cfsavecontent variable=result b#title#/bbr #foo#

Inserting a record once (but sometimes writes it twice)...

2002-12-09 Thread cf talk
Hello CF'ers... I have a page that inserts twice sometimes and does it correct (insert only once) every once in a while. I am absolutely clueless as to why. The page does have a few loops but on of the inserts is not in one and it still inserts twice. I put tests info on the screen to show

RE: CFTABLE to variable

2002-12-09 Thread Raymond Camden
Simply write your own cfsavecontent. It's very easy in CF4.5. Just make a custom tag that takes thisTag.generatedContent, saves it to a variable, sets it to , and returns the content to caller.something. === Raymond Camden,

Re: CFC output

2002-12-09 Thread Samuel R. Neff
CFC's, and especially web services, are generally considered to be used for data access or business logic, not for any type of display. However, if you are dead set on doing this, then you can just put your HTML inside the CFFUNCTION just like you would with a custom tag. You can specify

RE: CFC output

2002-12-09 Thread Matt Liotta
It is certainly not a rule or a best practice to avoid directly outputting from a CFC method. There are plenty of good reasons for doing so and making blanket statements like yours only lead to confusion. For example... WriteOutput(someCFC.someMethod()); Where someMethod() returns a

RE: CFC output

2002-12-09 Thread Matt Liotta
CFCs are nothing more than a language construct to encapsulate CFML. To suggest that it is wrong to use CFCs for something other than data access or business logic is wrong. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original

RE: CFC output

2002-12-09 Thread Raymond Camden
I disagree. It's certainly not the 'end of the world', but using direct output from a method automatically means you won't be able to use the result remotely via Flash (or as a WS). Again - this isn't horrible - but it's something you should bear in mind. (And don't forget the lovely bug with

RE: CFC output

2002-12-09 Thread webguy
I agree with Matt. Objects can exist at several levels. For example, all the Swing GUI elements are objects. So there is no problem with using an object to show text, draw a button etc. The trick is to make sure your object don't cross your tiers in a n-tier app. In a model1 app (as SUN call it

RE: CFC output

2002-12-09 Thread Samuel R. Neff
Always nice to have different opinions. At 12:23 PM 12/9/2002, you wrote: CFCs are nothing more than a language construct to encapsulate CFML. To suggest that it is wrong to use CFCs for something other than data access or business logic is wrong. Matt Liotta

RE: CFC output

2002-12-09 Thread Matt Liotta
Yes, but if your CFC is supposed to output HTML why would you want to call it from Flash? There are many different valid uses of CFCs and calling their functionality from Flash is only one of them and certainly isn't a requirement. Matt Liotta President CEO Montara Software, Inc.

RE: CF Error: The request has exceeded the allowable time limit

2002-12-09 Thread Dave Carabetta
The request has exceeded the allowable time limit Tag: CFQUERY .or... The request has exceeded the allowable time limit Tag: CFOUTPUT It isn't taking along time or doing anything special. Almost seems more like a connction issue from my machine to the server. How can I fix this or

RE: csv file question

2002-12-09 Thread Mosh Teitelbaum
Tony: CSV is simply a text-based format for representing data. It doesn't allow for the representation of formatting. CSV is simply: Record1Data1,Record1Data2 Record2Data1,Record2Date2 etc. If you intend to send the CSV file to the web user with an Excel Mime-Type

RE: Java in CF (CFMX) - MM Drivers

2002-12-09 Thread Rob Rohan
We recently moved from SQL7.0 with the included MX (DataDirect/Merant) JDBC drivers, to SQL2000 with MS provided JDBC drivers and it was (aside from microsofts non-standard jdbc uri) simple. In other words believe a third-party JDBC driver would be managed just like one of the drivers included

RE: csv file question

2002-12-09 Thread Tony Weeg
thanks mosh. I just told the client, no it cant do that, and thanks ;) ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message-

RE: CFC output

2002-12-09 Thread Raymond Camden
I never said it was a requirement - but rather something you should remember. In other words, not outputting and using cfreturn will work in more ways then direct outputting, I'd always rather use that just in case I do add a Flash layer to my site. As it stands, we should probably just agree to

Client Variable Problem

2002-12-09 Thread grant
I am having a very odd problem with client variables and would appreciate any suggestions on additional things to look at or try. SYMPTOM: CFID increments with each subsequent page request (refresh). INDEX.CFM html head title/title /head body cfset client.test = test Hi there

FW: ObjectWatch Newsletter 42: J2EE versus .NET

2002-12-09 Thread Haggerty, Mike
Found this on another list, has obvious implications for CFMX in the enterprise. Thought I would share. M -Original Message- From: brian leroux [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 5:19 PM To: [EMAIL PROTECTED] Subject: FW: ObjectWatch Newsletter 42: J2EE

RE: Client Variable problem - continued

2002-12-09 Thread Matt Robertson
Hi Bud, Regarding 2) you are indeed storing cvars in a SQL Server db - you got a sql error and not a registry error :) I had a db corruption problem last week that allowed a duplicate to exist in my db, and gave me the same errmsg you got. Sounds like you do to... Since it ought to be

RE: Client Variable Problem

2002-12-09 Thread Matt Robertson
I saw this happen on netscape browsers on CF4.5 when SETCLIENTCOOKIES=YES was placed in application.cfm, as opposed to leaving the statement out entirely. I'd look to your application.cfm. Try and put in more than the bare minimum you have now and see what happens. Maybe: cfapplication

RE: CFCONTENT Problem with PDF Files

2002-12-09 Thread Rob Rohan
I have - I use it quite a bit with cfx_treebeard. I used cfcontent type=application/pdf ... instead of cfheader. Works for me. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Tim Haak [mailto:[EMAIL PROTECTED]] Sent:

RE: CFC output

2002-12-09 Thread Matt Liotta
If the HTML is meant to display in a browser then sending it to a Flash front-end would be quite silly since Flash supports rendering very little HTML. It would make more sense to create specific CFCs or specific methods for each type of display you are interested in. Then you don't have to worry

RE: Client Variable Problem

2002-12-09 Thread grant
Thanks Matt -- I tried that, still having same problem unfortunately. I am racking my brain and I can't figure out what is going on here. The only thing that seems to make any sense is that there may be an issue with the fact that I am multihoming two sites on the server, both using host

OT: Website testing application

2002-12-09 Thread Carlisle, Eric
I've been tasked with finding an application that will automatically test a website with multiple browsers. Does such a monster exist? Thanks :-) Eric ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Re: Lists vs. Arrays vs. Structures

2002-12-09 Thread Zac Spitzer
Michael Dinowitz wrote: I think that a new array search function might be in order here. Something to look through an array for a value and return its index. I'm not sure what you are really trying to accomplish here. I agree with matt, are you working on the maketree tag in cf? lets talk

Macromedia Contribute

2002-12-09 Thread Joshua Miller
Just got a snazzy tri-fold in the mail today about Macromedia Contribute. It looks great, too bad it doesn't run on the web. Wouldn't it be nice to make Contribute a Java application that could be integrated into an existing web-application to give this kind of power/control to us developers so

Connection Reset by Peer following Warm Restore

2002-12-09 Thread Jim Voris
After running a T-SQL Script that among other things: Restores the database from a prior state, Drops and Re-Adds the User that is used for the DSN, The first attempt to connect to view a page that uses that DSN returns the following error: Macromedia][SQLServer JDBC Driver]Connection

Help please!

2002-12-09 Thread Ryan Mitchell
I have the following query cfpop action=getall name=GetMessages server=#server_ip# username=#Session.MM_User# password=#Session.MM_Pwd# And im doing a query of a query in order to order it by latest first cfquery name=OutputMessages dbtype=query SELECT * FROM GetMessages ORDER BY UID DESC

Re: Macromedia Contribute

2002-12-09 Thread Matt Robertson
Personally, my answer to that is an emphatic NO. Thats my job to build a system that my customers can use to do that. If Macromedia becomes an end-user solutions provider it undercuts my business. Contribute is fine as a generic and rather basic solution. It has a fine niche and, speaking

Verity's vspider on Solaris.

2002-12-09 Thread joachim . piro
Hi folks, I'm starting to loose my mind on this one so suggestions/clues are more then welcome... Solaris 2.6 Coldfusion 5 I'm trying to get Verity's vspider up and running but for some reason it keeps failing. I've set -loglevel to trace but those logfiles don't show anything more usefull

RE: Help please!

2002-12-09 Thread Mike Brunt
Ryan a couple of things, are you locking the cfpop code where you are reading Session vars or move them to the request scope if you do not want to lock them and secondly what do you get if you cfdump the query recordset prior to the Query of a Query? Kind Regards - Mike Brunt, CTO Webapper Blog

Re: Lists vs. Arrays vs. Structures

2002-12-09 Thread Michael Dinowitz
You can see the code here: http://www.houseoffusion.com/_library/maketree.txt Your example will fail as there can be more than one item with the same 'parent', which is what we're looking for. No matter what, we have to do a search and the list search functions seem to be the fastest of the

RE: Macromedia Contribute

2002-12-09 Thread Joshua Miller
Actually, I don't see any difference other than where it runs. If you can integrate it into your application and give your customer this power from anywhere they've got a web connection then that's an added service that's tied into their application and thus tied into you. If they can buy it for

RE: Help please!

2002-12-09 Thread Lofback, Chris
Is there a reason you're sorting by UID? Why not use Date or MessageNumber instead? Maybe that will clear up the problem. Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste. C Clearwater, FL 33761 www.trxi.com -Original Message- From: Ryan Mitchell [mailto:[EMAIL

Re: Macromedia Contribute

2002-12-09 Thread Jason Miller
I have to agree with Matt - it undercuts my business. But on the other hand I do have clients that spend very good money with me on large feature and graphic updates.. So where the dozens of faxes and emails which come through, the tracking and billing of these whordes of changes, delay the

CF 5 Page Filing massively... Ideas?

2002-12-09 Thread Jeremy Bruck - MfgQuote, Inc.
Everyone, We have had a challenge for the last 2 months with no ability to track it down and solve it. We are running CF 5 on Win2K with Dual P3 @ 1Ghz and 1Gig of Ram. We normally only use about 400-500 meg of ram, but once to twice per week right now we are filling up memory to 2.5ish gig and

RE: Verity's vspider on Solaris.

2002-12-09 Thread Sean McCarthy
I have 0 experience with solaris. But my guess is your collection is corrupt I would go in stop the k2 service...delete the collection...start service and recreate collection. Then try spidering it again. hope that helps sean -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: Macromedia Contribute

2002-12-09 Thread Ken Wilson
then why do they need to pay you for a content management system? Perhaps so he can continue to pay his kids tuition bill, the mortgage or buy groceries? :) Ken ~| Archives:

RE: CF 5 Page Filing massively... Ideas?

2002-12-09 Thread Capener, Suzanne
In this circumstance, I would use a load test tool against a stage/test environment that mirrors the production environment to try and determine what the cause was. There are free load test tools out there. Suzanne -Original Message- From: Jeremy Bruck - MfgQuote, Inc. [mailto:[EMAIL

Re: Macromedia Contribute

2002-12-09 Thread Samuel R. Neff
Contribute is very closely inner-twined with Dreamweaver--reuses a lot of the code base. If it were written in Java, it would have to be totally written from scratch. I'm also not sure you could do all the things Contribute does if it was written in Java--particularly the integration with

RE: CF 5 Page Filing massively... Ideas?

2002-12-09 Thread Mike Brunt
Jeremy, I would take a look at the ColdFusion error logs, particularly Application and Server in that order. See if you are getting error messages and if so what are the most regular ones. If you are seeing the string thread or threading in either log that can be a sign of memory corruption.

RE: Lists vs. Arrays vs. Structures

2002-12-09 Thread Matt Liotta
If I understand you correctly, you are representing a hierarchical relationship in a tabular manner. If there is another way you can store this information I would suggest it highly as there are many data structures much better suited for storage of hierarchical information. For example, a tree

Re: Macromedia Contribute

2002-12-09 Thread Matt Robertson
Yes, exactly. For a customer who has a largely *static* site and wants to do modest stuff, Contribute is a fine solution and I would recommend it to clients who are locked into a big static solution for whatever reason. To answer Joshua's question regarding why do they need to pay me for a

Re: Lists vs. Arrays vs. Structures

2002-12-09 Thread Zac Spitzer
Michael Dinowitz wrote: You can see the code here: http://www.houseoffusion.com/_library/maketree.txt Your example will fail as there can be more than one item with the same 'parent', which is what we're looking for. No matter what, we have to do a search and the list search functions seem to

CFMX - Mail Spooling Issue!

2002-12-09 Thread David Notik
Hi all: Has anyone seen behavior like this? I have a script on localhost that pulls e-mails from an Access database, then loops over and sends a message to each e-mail address (over 500 addresses) using 127.0.0.1. The e-mail gets sent fine and all is good, but days later when I reboot my

RE: Macromedia Contribute

2002-12-09 Thread Pete Freitag
Wouldn't it be nice to make Contribute a Java application that could be integrated into an existing web-application to give this kind of power/control to us developers so that we could hand it out to whoever needs to use it - and have it be web-based so as not to have to maintain software

RE: CF 5 Page Filing massively... Ideas?

2002-12-09 Thread Ryan Kime
Couple questions: The swap file is set to what size? 2.5Gig? Is the pagefile.sys (swap) on a separate partition? When was the last time you defragged? -Original Message- From: Jeremy Bruck - MfgQuote, Inc. [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 2:24 PM To: CF-Talk

RE: Macromedia Contribute

2002-12-09 Thread Matt Liotta
Depends on who we are talking about. Some business will be excited about Contribute. Others will understand or find out the hard way that they really need a CMS. Of course many are still finding out the hard way that CMS is an often abused term and that home grown systems aren't going to meet

Re: Macromedia Contribute

2002-12-09 Thread Cathy Taylor
Speaking of, does anyone know what it's using to connect to the server (ie RPC)? I got it to try out and I managed to get it working fine to my home server, but it does not work with any of the servers at work (all of which are Solaris). The only thing I can think of is that it's using some

RE: CFC output

2002-12-09 Thread Stacy Young
I agree with u Matt but I think he's trying to say that any logic used to derive those html results are set in stone if the function is used to output html...Unless the function is solely used to format data which was generated from other function call(s). Stace -Original Message- From:

RE: MS Word/CFOBJECT Help

2002-12-09 Thread Peter Bagnato
Hi Matt, Thanks so much for the code! I'll try it out at work tomorrow and let you know how it works!! Peter Bagnato -Original Message- From: Matthew Small [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 9:31 AM To: CF-Talk Subject: RE: MS Word/CFOBJECT Help Importance: High

RE: CFC output

2002-12-09 Thread Matt Liotta
The logic used to derive those results should be decoupled from the display. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 4:06 PM To:

RE: Macromedia Contribute

2002-12-09 Thread Matt Liotta
It uses FTP, which any security conscious admin would disable. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Cathy Taylor [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 3:58 PM To: CF-Talk

Error in logs

2002-12-09 Thread Robert Shaw
Hi, We're seeing the CF Process hang in CFMX (new install) after implementing this article: http://www.macromedia.com/desdev/mx/coldfusion/articles/ntdomain_1.html. There is this message in the server log: An unexpected exception has been detected in native code outside the VM. Unexpected

RE: CFC output

2002-12-09 Thread Kevin Bridges
Think we should listen to Matt on this one ... 3 letters for dealing with cfcs: MVC (Model - View - Controller) ... learn it, live it, love it. Kevin Bridges -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 2:09 PM To: CF-Talk Subject: RE:

Large file uploads

2002-12-09 Thread Suzanne Capener
I have the same issue. I don't like the answer of RAM because I am running on a gigahertz with 768MB of ram. While uploading the 10MB file, the CPU maxed out at 100% for 2 minutes. My physical memory usage is only have the capacity. Anyone have any suggestions? Perhaps there is something

Re: CFMX - Mail Spooling Issue!

2002-12-09 Thread samcfug
Is your mail server running on the same machine as the script? Is your mail server set to do open relays? What mail server do you have set in CF Administrator? Is your mail server sending mail only from your script, or relaying for someone else? I am not really clear on what you are asking

RE: Large file uploads

2002-12-09 Thread Matt Liotta
I would suggest using a servlet to handle file uploads as you can stream the file to disk. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Suzanne Capener [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09,

Re: Macromedia Contribute

2002-12-09 Thread Matt Brown
Point is in some cases - this will free up some time and allow you to create more important changes. While allowing clients text only changes, most often than not - an enthusiastic client, whom sees delay changes = happy web surfers - they commit to larger and more frequent updates and therefore

access odbc connection

2002-12-09 Thread Steve Dworman
Here's the deal. We need to connect to an access database that resides on another server. I know to use the UNC path, and to make sure the ColdFusion service has rights to open the database on the other machine. There is no username and password for the database. The issue is that CF cannot

RE: Large file uploads

2002-12-09 Thread Bosky, Dave
Can you recommend any servlets that work well and are free? Dave -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 4:34 PM To: CF-Talk Subject: RE: Large file uploads I would suggest using a servlet to handle file uploads as you can stream

RE: CF 5 Page Filing massively... Ideas?

2002-12-09 Thread Jared Clinton
Jeremy, I suggest that you learn how to use the 'perfmon.exe' application. Using perfmon you should be able to pinpoint what is going wrong (M$ only). In my experience it is likely to be a combination of CF and something uncooperative. Of course as Mike suggested below, always check your

RE: access odbc connection

2002-12-09 Thread Smith, Matthew P -CONT(DYN)
I believe you have to map the drive rather than use a unc. I might be wrong though. Matthew P. Smith Web Developer, Object Oriented Naval Education Training Professional Development Technology Center (NETPDTC) (850)452-1001 ext. 1245 [EMAIL PROTECTED] -Original Message- From:

RE: Large file uploads

2002-12-09 Thread Matt Liotta
Can't say I can. However like always, if there is enough demand I will be happy to create and write an article on it. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]]

RE: CF 5 Page Filing massively... Ideas?

2002-12-09 Thread Gaulin, Mark
I would look for queries that could potentially return a very large number of rows. Since queries are completely loaded into memory as part of cfquery, it doesn't take much to grab tons of RAM that way. -Original Message- From: Jeremy Bruck - MfgQuote, Inc. [mailto:[EMAIL PROTECTED]]

RE: CFC output

2002-12-09 Thread Raymond Camden
Does this back up what I said though? If you break away the display from the logic used to generate it, wouldn't the display be left to the calling template and not the CFC? Ie, for the method, um, whatever, the method would return a string and the caller would handle outputting, or perhaps saving

RE: access odbc connection

2002-12-09 Thread Steve Dworman
CF will only read local drives. I'm positive you have to use the UNC path. -Original Message- From: Smith, Matthew P -CONT(DYN) [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 5:05 PM To: CF-Talk Subject: RE: access odbc connection I believe you have to map the drive rather

RE: Macromedia Contribute

2002-12-09 Thread Jeff Beer
I'm thinking that Contribute offers a great opportunity for install/configuration/training, with a good upsell for a full-featured, custom CMS in some cases - either immediately or down the road. -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09,

Warning: Page has Expired

2002-12-09 Thread Stevens, Jason
I have no doubt that this is a no brainer but I can't seem to find the answer. I've tried setting the expiration in the meta tag but it doesn't seem to give me the result I want. I want a page to expire if it is either refreshed or if someone tries to hit the back button to see the page. How

RE: access odbc connection

2002-12-09 Thread Smith, Matthew P -CONT(DYN)
Yes, but I mean map the remote drive to a local drive letter. (sorry, but I might not be using the correct terminology). \\othercomputer\c$ is mapped to j: locally(cfserver). So the cfserver would have a mapped drive, j:, which is actually c: on the other computer. Can someone verify this is

RE: Warning: Page has Expired

2002-12-09 Thread Jared Clinton
AFAIK: To get the page has expired message, you have to have posted information from a form submission. But why would you want to? Jared Clinton. -Original Message- From: Stevens, Jason [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 10 December 2002 8:16 AM To: CF-Talk Subject: Warning:

RE: Macromedia Contribute

2002-12-09 Thread Joshua Miller
This is exactly my point - I've seen ActivEdit before and it's a fabulous product, and this is what I had assumed Contribute is - just a desktop-only version. And yes, you're right, JAVA Applets probably aren't the best method. I have yet to find a product like ActivEdit that works well on say a

RE: access odbc connection

2002-12-09 Thread Steve Dworman
CF administrator doesn't read network drives even if they are mapped locally. -Original Message- From: Smith, Matthew P -CONT(DYN) [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 5:21 PM To: CF-Talk Subject: RE: access odbc connection Yes, but I mean map the remote drive to a

RE: Warning: Page has Expired

2002-12-09 Thread Joshua Miller
This is what I use, seems to work pretty well. I put it into an include file and use it in the header of all the pages I serve up that require cache control. I belive this was from someone else on the list from not too long ago: !--- Client side cache prevention --- !--- Setup our expire times

RE: access odbc connection

2002-12-09 Thread Steve Dworman
Got it. -Original Message- From: Smith, Matthew P -CONT(DYN) [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 5:21 PM To: CF-Talk Subject: RE: access odbc connection Yes, but I mean map the remote drive to a local drive letter. (sorry, but I might not be using the correct

  1   2   >