Re: Using Application.cfc has decreased performance

2005-02-11 Thread Sean Corfield
On Thu, 10 Feb 2005 15:34:44 +0100, Micha Schopman [EMAIL PROTECTED] wrote: It does, on each request Application.cfm - onRequestStart - onRequest - index.cfm If you're using onRequest, there is no point in using onRequestStart as well. Of course there's a minor performance overhead - CF is

RE: Using Application.cfc has decreased performance

2005-02-11 Thread James Holmes
Does CF cache the instantiated component somewhere, or does it have to re-instantiate it for every request? This could be part of the performance drop i.e.: Run Application.cfm Vs Create component from Application.cfc - invoke onRequest() method -Original Message- From: Sean Corfield

Re: Using Application.cfc has decreased performance

2005-02-11 Thread Sean Corfield
On Fri, 11 Feb 2005 16:12:42 +0800, James Holmes [EMAIL PROTECTED] wrote: Does CF cache the instantiated component somewhere, or does it have to re-instantiate it for every request? The CFC is instantiated for each request (but the last instantiated CFC for a particular session / application is

RE: Using Application.cfc has decreased performance

2005-02-11 Thread James Holmes
That's what I thought. I agree, by the way - I'll trade a few ms for an onSessionEnd eny day - this feature allows us to solve so many problems with tracking sessions (without resorting to the undocumented sesiontracker objects). -Original Message- From: Sean Corfield [mailto:[EMAIL

RE: Using Application.cfc has decreased performance

2005-02-11 Thread Micha Schopman
Ah ok, haven't played with this goodie yet :) One thing people need to keep in mind, is that effectively there will be no real degrade of performance. You only move logic for checking session state (and people have been logged in or not) from the template normally called after application.cfm,

Strange XSLT errors with XMLTransform ?

2005-02-11 Thread Ian Vaughan
Hi I am getting some strange errors with Coldfusion and XSLT, just wanted to know if there are any bugs with using XMLTransform as the code works with some variations of XSLT and not others ?? This is the error I am recieving, any ideas on possible causes ?

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread James Holmes
Does the stylesheet (parse.xsl) have the XML dec at the top? I needs one, as I recall. -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: Friday, 11 February 2005 5:32 To: CF-Talk Subject: Strange XSLT errors with XMLTransform ? Hi I am getting some strange errors

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread Ian Vaughan
Just tried adding ?xml version=1.0 encoding=UTF-8 ? To the top of the style sheet but still same error ? Stylesheet ?xml version=1.0 encoding=UTF-8 ? xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform;

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread Ian Vaughan
Just tried adding ?xml version=1.0 encoding=UTF-8 ? To the top of the style sheet but still same error ? Stylesheet ?xml version=1.0 encoding=UTF-8 ? xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform;

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread James Holmes
Perhaps write the content of TransformedXmlCode to a file to examine it and see what the error may be. -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: Friday, 11 February 2005 5:52 To: CF-Talk Subject: RE: Strange XSLT errors with XMLTransform ? Just tried adding

Looking for an FB4 Developer

2005-02-11 Thread Mickael
Hello All, Sorry for being OT. I am looking for a developer in the Toronto Area preferably or someone that is really good at working remotely. To make some ongoing changes and work on a CFMX Fusebox 4 site. Should have a good understanding of FB4 and MSSQL (stored procs) Please reply off

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread Ian Vaughan
How could I change the CF Code below to write it to a text file instead of displaying it on screen using CFOUTPUT so I can examine the file in its correct format as a text file ? ---SNIPPET-- CFSET TransformedXmlCode = XmlTransform(myxml, MyXSLTCode) CFCONTENT type=text/plain

RE: New CF7 feature request - please support it - Casting query columns

2005-02-11 Thread Martin Parry
Unfortunately, the query results come from a non-SQL compliant, third party ODBC driver which doesn't allow the use of CAST. Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Figy, Kam [mailto:[EMAIL PROTECTED] Sent: 10 February 2005

can't get onApplicationStart to fire...

2005-02-11 Thread Bert Dawson
I can't seem to get onApplicationStart to run, nor onSessionStart, but on request start works fine. I'd be grateful if someone could caste an eye over my code to see if they can spot what i'm doing wrong: 2 files in a directory: Application.cfc and index.cfm:

RE: New CF7 feature request - please support it - Casting query columns

2005-02-11 Thread Martin Parry
Cheers Ray - I'll try that now. Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 10 February 2005 14:36 To: CF-Talk Subject: Re: New CF7 feature request - please support it - Casting

RE: New CF7 feature request - please support it - Casting query columns

2005-02-11 Thread Martin Parry
I'v come up with this and it works rather nicely... cfset qryOptions = QueryCastColumn(qryOptions, column, varchar) cffunction name=QueryCastColumn cfargument name=query type=query required=Yes cfargument name=column type=string required=Yes cfargument name=type

RE: can't get onApplicationStart to fire...

2005-02-11 Thread Calvin Ward
Are you restarting CF before you request index.cfm? -Original Message- From: Bert Dawson [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 5:48 AM To: CF-Talk Subject: can't get onApplicationStart to fire... I can't seem to get onApplicationStart to run, nor onSessionStart, but

RE: Business Case for a 4.5 - 7 upgrade

2005-02-11 Thread Calvin Ward
There's also this: http://www.macromedia.com/software/coldfusion/productinfo/product_editions/f p_frameset.html - Calvin -Original Message- From: Duncan I Loxton [mailto:[EMAIL PROTECTED] Sent: Thursday, February 10, 2005 6:17 PM To: CF-Talk Subject: Re: Business Case for a 4.5 - 7

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread James Holmes
CFSET TransformedXmlCode = XmlTransform(myxml, MyXSLTCode) cffile action=write output=#TransformedXmlCode# file=full path to file here -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: Friday, 11 February 2005 6:21 To: CF-Talk Subject: RE: Strange XSLT errors with

RE: cftry/cfcatch around cfmail

2005-02-11 Thread Calvin Ward
Tony, Are you saying that no error is fired and no email is received, but there's an email in the undelvr cfmail folder? Or maybe I should just ask, how are you determining the email did not deliver? - Calvin -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: Few cfoutput Vs Many cfoutput

2005-02-11 Thread Calvin Ward
How about something more abstracted: ...alt0{background-color: #fff;} ...alt0{background-color: #ffc;} cfscript function setRowClass(cr) { return alt#cr MOD 2#; } /cfscript class=#setRowClass(currentRow)# A bit more typing on the one occurrence, but in the end you've more control over

Re: can't get onApplicationStart to fire...

2005-02-11 Thread Bert Dawson
No, but then why should i? If the methods were getting called then the ?.started variables would be getting set, but only request.started is getting set. Bert On Fri, 11 Feb 2005 06:32:53 -0500, Calvin Ward [EMAIL PROTECTED] wrote: Are you restarting CF before you request index.cfm?

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread Ian Vaughan
James That seems to work !!! the data has been written to the text file Is it possible after the XML file has been converted to the text file that a message would be displayed on screen to inform the user of progress with a link to the text file created ? At present it is just a blank screen,

RE: can't get onApplicationStart to fire...

2005-02-11 Thread Calvin Ward
Because if you don't restart CF then the Application is already started and onApplicationStart will never fire. The Application starts on the first browser request to the CF server after the CF server is started. Additionally, you may want to close and re-open your browser to get onSessionStart

Re: U.S.-based SMS/SMPP API

2005-02-11 Thread Graham Pearson
Verizon Wireless, Nextell and other Service Providers who offer Digital Service all have SMS. Along with Cell Phones Alphanumeric Paging Companys all provide Text Message Capabilities. Simon Horwith wrote: I don't know whether this helps or not, but as far as I know the carriers that offer

http://www.verypdf.com

2005-02-11 Thread Robertson-Ravo, Neil (RX)
What are peoples' experience with this and its integration with ColdFusion? What are its capabilities compared to other PDF tools...? N -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: 11 February 2005 02:09 To: CF-Talk Subject: RE: pdf to jpg Nice... I

MySQL J Connector error and Changing class path on CFMX6.1 update 1 on RH Linux

2005-02-11 Thread Stephen Moretti (cfmaster)
I haven't had to change anything on this server for ages, but now we're looking at up upgrading mySQL to mySQL 4.1 and I thought I do some other minor maintenance while I'm at it. So problem number one: I've followed Steve Erats instructions on how to set up the mySQL J Connector, but I keep

RE: can't get onApplicationStart to fire...

2005-02-11 Thread Calvin Ward
Slight amendment The below should read Because if you don't restart CF then the Application is already started and onApplicationStart will never fire. The Application starts on the first request to the CF server that requests that Application.cfc (or another template that contains the

Re: can't get onApplicationStart to fire...

2005-02-11 Thread Raymond Camden
You may also want to consider a very low app timeout while testing. You may also want to consider putting something like this in your onRequestStart: if isDefined(url.reinit) onApplicationStart() Unfortunately, this will only run you rmethod. It will not reset the Application like a true

Re: http://www.verypdf.com

2005-02-11 Thread Adam Haskell
if you are looking for PDF - something those tools might work, but don't forget if you want something - PDF you can do that with cfdocument in MX 7. To convert the Office files you need to do a midterm convert to HTML but it is very possbile. Pretty nice results ussually. Adam H On Fri, 11 Feb

Re: can't get onApplicationStart to fire...

2005-02-11 Thread Bert Dawson
But I'm using createUUID() as the application name to ensure the application always starts on every request... (I'm only doing this cos i got bored of changing the name everytime i tweaked Application.cfc to try and get it to work) And either i'm using the same session, in which case

Re: consultant wanted

2005-02-11 Thread Jochem van Dieten
Steve Logan wrote: After 11 hours on the phone with Microsoft today, I'm giving up and reformatting one of my Windows servers tomorrow. Right now I have 4 CF5 servers running fine, but this W2K CFMX SQL server bugged out on us today and I'm at wits end with it. Basically, IIS refuses

RE: consultant wanted

2005-02-11 Thread Rick Faircloth
Hi, Michael... That was the first place I went to, but when I enter the first number, 127, I get a popup warning that says: IP addresses starting with 127 are not valid because they are reserved for loopback addresses. Please specify some other valid value between 1 and 223. I've never had

RE: Strange XSLT errors with XMLTransform ?

2005-02-11 Thread James Holmes
Yes, this is possible, but the original cfcontent is a beter way to do it if it works, because this file will just sit around otherwise. Maybe try using text/xml instead of text/plain in the cfcontent? Try that first. -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent:

CFMX7 on DevNet

2005-02-11 Thread Cutter (CF related)
As promised (for those who want to know) CFMX 7 is now available from the DevNet Subscription Downloads page! Cutter -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.8.7 - Release Date: 2/10/2005

Re: http://www.verypdf.com

2005-02-11 Thread Doug James
Not exactly sure what you are hoping to accomplish but I have found xpdf http://www.foolabs.com/xpdf/ to be very good at pdf to text for indexing. It is mostly geared toward *nix but they have some windows executables. Hope this helps. Doug Robertson-Ravo, Neil (RX) wrote: What are peoples'

RE: consultant wanted

2005-02-11 Thread Dawson, Michael
On the site's Home Directory properties in IIS, you should have Scripts only in the Execute Permissions. Also, if you click the Configuration... button, do you see all of the ColdFusion-related extensions? .cfc .cfm .cfml .cfr .cfswf .jsp .jws If you have multiple virtuals on this site, you

Re: can't get onApplicationStart to fire...

2005-02-11 Thread Bert Dawson
I'm confused now: I'm i right in thinking that onApplicationStart() should fire automatically when the application starts? And by application starting i mean the first time a cfapplication tag with a particular application name is run (assuming server has just restarted). If thats correct then i

RE: http://www.verypdf.com

2005-02-11 Thread Robertson-Ravo, Neil (RX)
Yep, but we certainly will not be upgrading to CF7 until at least a few bug fixes/patches etc (maybe even a service pack) -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent: 11 February 2005 12:33 To: CF-Talk Subject: Re: http://www.verypdf.com if you are looking for

RE: consultant wanted

2005-02-11 Thread Rick Faircloth
All that's good...I do have about 20 virtual sites and they can all be accessed via the domain name through the Internet without problem...it's just trying to use localhost, 127.0.0.1, or going directly to the site using a direct path, like http://55.555.66.666/cfdocs/secc/index.cfm that suddenly

RE: CFMX7 on DevNet

2005-02-11 Thread Calvin Ward
Is this the unlimited IP version or the Developer Edition? -Original Message- From: Cutter (CF related) [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 8:13 AM To: CF-Talk Subject: CFMX7 on DevNet As promised (for those who want to know) CFMX 7 is now available from the

Re: CFGrid Styles

2005-02-11 Thread Cutter (CF related)
I haven't been following these threads closely enough. Might have to thoroughly check out the documentation. Not sure specifically about these form components (flash movie clips) but Flash itself does provide support for css style sheets, so I would image there would have to be a way. Cutter

RE: consultant wanted

2005-02-11 Thread Rick Faircloth
Jochem...what are we talking about here... What does net user IUSR_machinename show? Rick -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 7:40 AM To: CF-Talk Subject: Re: consultant wanted Steve Logan wrote: After 11 hours on the

RE: consultant wanted

2005-02-11 Thread James Holmes
He means go to the command prompt and type in net user IUSR_machinename and press enter. That will display all the details for the account in a form that can be posted here. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Friday, 11 February 2005 10:00 To:

CFLib Downtime

2005-02-11 Thread Raymond Camden
CFLib will be down in about an hour for around 20 minutes while we do an update. So if you have any emergency UDF needs (yeah right), grab them now. In case you didn't know, you can use the Library Generator to grab a copy of the entire site. Then you can store a copy locally. --

Re: consultant wanted

2005-02-11 Thread Jochem van Dieten
Rick Faircloth wrote: Jochem...what are we talking about here... About Steve Logans problem. What does net user IUSR_machinename show? Details about the IUSR_machinename account. Just try it, it won't change anything, it will just display information. Jochem

Setting up Windows 2003 Server

2005-02-11 Thread Lee
I'm in the process of setting up a Windows 2003 development box from scratch. Does anyone have a practical list of do's and don'ts and what order to do things in? Lee ~| Logware (www.logware.us): a new and convenient web-based

RE: can't get onApplicationStart to fire...

2005-02-11 Thread James Holmes
No, you don't need to call it manually. Does it work if you use Application.cfc to set the app paramaters? http://livedocs.macromedia.com/coldfusion/7/htmldocs/1115.htm -Original Message- From: Bert Dawson [mailto:[EMAIL PROTECTED] Sent: Friday, 11 February 2005 9:27 To: CF-Talk

Re: consultant wanted

2005-02-11 Thread Adrocknaphobia
Rick, Check to make sure that IUSR account is not locked or the password has changed/expired. There is an option in IIS to manage this account automatically. If the password expires/changes in one place and not the other this can throw these types of errors. At the very least you should be able

Questio nabout CF7 and generating Acrobat files

2005-02-11 Thread SStewart
We attended a webinar yesterday, concerning CF7 and had questions that they didn't get to, so I figured I toss them out to the list and see what I get. When using cfform type=pdf does this programmatically expose acrobat so that other features (security, digital signatures) can be used. Can we

Re: CFMX 7 alongside 6.1 on JRun

2005-02-11 Thread Ken Dunnington
Oh, there's no question, I was just seeing who else was running a similar setup and if they had any caveats to note. :) Incidentally, how does running that many servers affect performance of your Powerbook? On Thu, 10 Feb 2005 19:34:34 -0800, Sean Corfield [EMAIL PROTECTED] wrote: On Thu, 10 Feb

CFMX J2EE Failover

2005-02-11 Thread Bryan F. Hogan
Hi all, I'm looking for a low cost option so that when CFMX is offline it fails over to another instance keeping the site running. Does anyone know where I can find information on how to do this? For example if I install a patch and have to restart the CF instance that requests go to another

Moving from CF 5 to MX6 or MX7

2005-02-11 Thread jonese
All, We are in the process of moving our CF5 sites to MX6 or MX7. We have a custom built CMS which talks to a SQL 2000 server. I'm looking to compile lessons learned from those who've already gone through this in an effort to minimize my frustration when bugs crop up etc. Thanks in

Re: CFMX J2EE Failover

2005-02-11 Thread Adrocknaphobia
This may help. Although clustering JRun isn't going to allow you to do a reboot. You will need to cluster your webserver (IIS) as well. Your best bet is a hardware solution. http://www.talkingtree.com/blog/index.cfm?mode=dayday=25month=02year=2004#EF77CF06-45A6-2844-7465AB8B7EE43A5B -Adam On

RE: CFMX J2EE Failover

2005-02-11 Thread Bryan F. Hogan
That's great Adam thanks! Anyone have any recommendations for clustering IIS? -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 9:59 AM To: CF-Talk Subject: Re: CFMX J2EE Failover This may help. Although clustering JRun isn't going to

Re: Moving from CF 5 to MX6 or MX7

2005-02-11 Thread Michael Dinowitz
I moved directly from CF 5 to CF 7. The main thing to do is 1. run the code analyzer 2. Set up a global error handler that'll email you on EVERY error that happens on the site 3. do the move over late at night and then test the site to deal with anything missed from the analyzer. Not really

CFMX7 PDF generation question

2005-02-11 Thread Damien McKenna
I've got a question about CFMX7's PDF generation. Presumably it is converting HTML content to PDF format. The question is, what generator does it use to do this - IE's DLLs, Gecko, or something else as this will drastically affect the quality of the output. Also, how would things like in-page

RE: Setting up Windows 2003 Server

2005-02-11 Thread Dawson, Michael
I just built one (domain controller) last night and another a couple of days back. The first thing I did, since it's a generic server running an AMD chip, is to disable ACPI on the mobo. I have two servers that are similar and W2k3 would get hosed every now and then. The event logs had repeated

RE: CFMX7 PDF generation question

2005-02-11 Thread Robertson-Ravo, Neil (RX)
I believe it is using a combo of Java and/or FlashPaper. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: 11 February 2005 15:10 To: CF-Talk Subject: CFMX7 PDF generation question I've got a question about CFMX7's PDF generation. Presumably it is converting

Re: Questio nabout CF7 and generating Acrobat files

2005-02-11 Thread Adam Haskell
When using cfform type=pdf does this programmatically expose acrobat so that other features (security, digital signatures) can be used. No, infact i would guess that cfform type=pdf would blow up since as far as I remeber that is not a vaild attribute/value pair for cfformdid you mean

RE: Questio nabout CF7 and generating Acrobat files

2005-02-11 Thread SStewart
I meant, cfdocument (DOH!!!) sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 100 Chantilly, VA 20151 Phone: (703) 471-8400 Fax: (703) 834-5527 -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED]

SOT - IIS 5.0 Website Creation Question

2005-02-11 Thread jonese
Hey CF'ers, As with most of you we setup a lot of sites in IIS5 and these site typically have the same settings. We've seen in IIS6 that you can export a sites settings to a file and then use that file to create new sites in the future. Has anyone been able to do the same type of thing in IIS5?

RE: http://www.verypdf.com

2005-02-11 Thread Michael Dinowitz
You are aware that CF 7 is essentially an upgrade and bug fix over 6.1, right? I mean you can wait for patches to new features if there's needed, but with the amount of testing that went on, it might be a wait till CF 8 (i.e. might not be any need for patches). Yep, but we certainly will not be

Re: Moving from CF 5 to MX6 or MX7

2005-02-11 Thread jonese
cool thanks michael. We doing this on our DEV systems first to catch most of the bugs but your idea of the global error handler is a good one for when we push it live. anyone else? jonese On Fri, 11 Feb 2005 10:07:22 -0400, Michael Dinowitz [EMAIL PROTECTED] wrote: I moved directly from CF 5

Loosing CFHTTP.FileContent?

2005-02-11 Thread Nick Baker
I inherited a program that is event driven, i.e., from the Scheduler The templates were working with both the templates and scheduler located at Server A Were still working after moving the code to Server B, but calling templates with the scheduler at Server A. Problem occurred when I

Re: cftry/cfcatch around cfmail

2005-02-11 Thread Tony Weeg
i can determine that because, ive replaced all the email addresses with mine, and just put one bad one, in there, and i dont get them :( i do get VALID emails, if they are all valid... i know, its strange. tw On Fri, 11 Feb 2005 06:37:23 -0500, Calvin Ward [EMAIL PROTECTED] wrote: Tony,

Re: cftry/cfcatch around cfmail

2005-02-11 Thread Tony Weeg
hey matt. if i dont spoolenable... my imail server just doesnt work... with cfmx they problem isnt an invalid format of an email address, its the problem that the email address that its choking on is no longer an email address to my mail server. which is the same mail server that cfmx sends

RE: http://www.verypdf.com

2005-02-11 Thread Robertson-Ravo, Neil (RX)
Hah, Some may see it that way but there is no way we can justify costs for upgrade and bug fix over 6.1 if that was the case then it should have been free. Unfortunately its just the way a large organization works. N -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: http://www.verypdf.com

2005-02-11 Thread Adam Haskell
I'm going to echo Michael on this one. I would not recomend MX 7 if I didn't think it was rock solid. I honeslty think it is the most stable release yet of Coldfusion, atleast most stable release from macromedia. Is there a particular bug you are aware of that would prevent you from uprgrading?

Re: Setting up Windows 2003 Server

2005-02-11 Thread John Beynon
http://www.macromedia.com/devnet/mx/coldfusion/articles/cf7_security.html is a pretty good article from the new CF7 range, jb. I'm in the process of setting up a Windows 2003 development box from scratch. Does anyone have a practical list of do's and don'ts and what order to do things in?

Re: cflogin in v7

2005-02-11 Thread Raymond Camden
I'm 99% sure it does - but will ping Sarge when I see him to confirm. If I don't repost, then I was 100% right. (Or he may post here.) On Thu, 10 Feb 2005 22:27:28 -0700, Paul [EMAIL PROTECTED] wrote: Does MX7 correct the 6.1 bug regarding cflogin not properly expiring sessions? (OK I admit I

Re: can't get onApplicationStart to fire...

2005-02-11 Thread Bert Dawson
Aha - thats what i was missing. So in order to use the onApplication and onSession methods you need to initialise the application in application.cfc, except instead of using the cfapplication tag you set the the parameters in the This scope. In other words, Application.cfc replaces both

RE: SOT - IIS 5.0 Website Creation Question

2005-02-11 Thread Dave Watts
As with most of you we setup a lot of sites in IIS5 and these site typically have the same settings. We've seen in IIS6 that you can export a sites settings to a file and then use that file to create new sites in the future. Has anyone been able to do the same type of thing in IIS5? I've

Forms in Email

2005-02-11 Thread Matthew Small
Hi guys, What's the deal with an HTML email containing a form? The form, which works great in a web page, does not work when sent in an HTML email and is being viewed in an email client. I'm using Outlook 2003. Is this a security measure of Outlook or is this a standard across the

Re: SOT - IIS 5.0 Website Creation Question

2005-02-11 Thread John Beynon
i don't think that IIS5 let you import the config onto another server, whilst it is possible on IIS6 jb. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

New bellaalbum 3, CF open source app

2005-02-11 Thread Giampaolo Bellavite
I've just released the new version of a little open source application for making static HTML image albums. Download, screenshot and a demo here: http://www.bellavite.com/bellaalbum.cfm It uses extensively the tmt_img CFC developed by Massimo Foti for manipulating images with the CF java

Re: cftry/cfcatch around cfmail

2005-02-11 Thread Tony Weeg
:( ok, i must say, it wasnt anything, i had a rule in my outlook that sent mail from myself, to myself, into a folder, that is no longer there :( what this means? outlook didnt bug, and that was my problem. testing with another address, all is well, and it looks like my code is workign after

Re: Forms in Email

2005-02-11 Thread Tony Weeg
see if you can make the action= point to the full url like http://www.yourdomain.com/formpost.cfm instead of formpost.cfm see if that works. tw On Fri, 11 Feb 2005 11:15:05 -0500, Matthew Small [EMAIL PROTECTED] wrote: Hi guys, What's the deal with an HTML email

MX7 Upgrade (was Re: http://www.verypdf.com)

2005-02-11 Thread Dave Carabetta
On Fri, 11 Feb 2005 10:39:08 -0500, Michael Dinowitz [EMAIL PROTECTED] wrote: You are aware that CF 7 is essentially an upgrade and bug fix over 6.1, right? I mean you can wait for patches to new features if there's needed, but with the amount of testing that went on, it might be a wait till CF

RE: http://www.verypdf.com

2005-02-11 Thread Robertson-Ravo, Neil (RX)
Well, I am not advocating that it's not a stable release but in the world of Corporate IT you cannot just install software 'cause it's new. I certainly don't see it as a bug fix release for 6.1 though. I have tested and worked with Blackstone for a quite while now (Beta)There are bugs and

Re: http://www.verypdf.com

2005-02-11 Thread David Fafard
I use it as a one trick pony to make nice jpegs as thumbnails from my pdfs. Like I said I just call it from cfexecute when needed and it works fine. As for other pdf tools, I don't have experience. Dave Robertson-Ravo, Neil (RX) wrote: What are peoples' experience with this and its integration

Re: CFGrid Styles

2005-02-11 Thread Tyler Silcox
I think this LiveDocs section should help you out: ColdFusion MX Flash Form Style Reference http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0677.htm#1116669 Tyler On Thu, 10 Feb 2005 16:32:25 -0400, Jeff

Re: http://www.verypdf.com

2005-02-11 Thread Adam Haskell
Must just be the way yours works...we never moved to MX, though we purchased it with the intent to move :), we are moving to MX 7. How can you not justify the cost if you are just going to buy a PDF convertion suite anyway which will inevitabley be half the price of the upgrade...MX 7 is feature

RE: cflogin in v7

2005-02-11 Thread Paul
Great, thanks for the reply Ray. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 9:03 AM To: CF-Talk Subject: Re: cflogin in v7 I'm 99% sure it does - but will ping Sarge when I see him to confirm. If I don't repost, then I was 100%

Re: Forms in Email

2005-02-11 Thread S . Isaac Dealey
Hi guys, What's the deal with an HTML email containing a form? The form, which works great in a web page, does not work when sent in an HTML email and is being viewed in an email client. I'm using Outlook 2003. Is this a security measure of Outlook or is this a

RE: http://www.verypdf.com

2005-02-11 Thread Michael Dinowitz
The question is will any of the new features save in programming time. That can justify the upgrade cost. Larry was saying how the PDF could have saved him 3 weeks of work. That's worth the upgrade. And that's ignoring new features for new features sake. My boss was not going to upgrade till he

Re: CFMX7 on DevNet

2005-02-11 Thread Cutter (CF related)
I have not loaded it yet, but it does not state that it is the developer edition. And if it is the same as the CFMX 6.1 download was, then it would be the unlimited IP version. Calvin Ward wrote: Is this the unlimited IP version or the Developer Edition? -Original Message- From:

Re: cftry/cfcatch around cfmail

2005-02-11 Thread Matt Robertson
On Fri, 11 Feb 2005 10:52:29 -0500, Tony Weeg [EMAIL PROTECTED] wrote: if i dont spoolenable... my imail server just doesnt work... with cfmx Hmmm... I've used Im,ail for years with CF. I'm running Imail 8.11 with MX 6.1 Updater 1 (soon to be CF7 :D) In fact now that I have converted my

RE: New bellaalbum 3, CF open source app

2005-02-11 Thread Bryan F. Hogan
Looks interesting. My first thought was to add it to our Intranet to allow our customers to create presentations. Do you have an example of the output posted somewhere? -Original Message- From: Giampaolo Bellavite [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 11:34 AM To:

CFHTTP and FileContent Problem

2005-02-11 Thread Nick Baker
CFMX 6.1 CFHTTP URL=http://www.isbc.com; method=GET port=80 resolveurl=false timeout=60 throwonerror=NO When executing the above it returns Statuscode 200 OK But when I add the following to see the results cfoutput#CFHTTP.FileContent#/cfoutput The

Re: http://www.verypdf.com

2005-02-11 Thread Adam Haskell
We did system tests in Beta and our only app using BS was written from scratch while in beta, so we did not have quite as many concerns since it was a fresh instence of everything, including server. We were making a proof of concept for CF and Java to play nice, remeber our company had never

RE: Setting up Windows 2003 Server

2005-02-11 Thread Dave Watts
http://www.macromedia.com/devnet/mx/coldfusion/articles/cf7_se curity.html is a pretty good article from the new CF7 range, I'd just like to second this recommendation. It's useful no matter what version of Windows and CF you're running. Dave Watts, CTO, Fig Leaf Software

RE: Setting up Windows 2003 Server

2005-02-11 Thread Dave Watts
Run Windows Update FIRST! I would recommend that, before you run Windows Update, you either download appropriate patches from another machine or that you create an IP security policy to limit access to and from the machine to only the Windows Update site and your DNS server. This minimizes the

RE: Loosing CFHTTP.FileContent?

2005-02-11 Thread Dave Watts
I inherited a program that is event driven, i.e., from the Scheduler The templates were working with both the templates and scheduler located at Server A Were still working after moving the code to Server B, but calling templates with the scheduler at Server A. Problem occurred

RE: Forms in Email

2005-02-11 Thread Dave Watts
What's the deal with an HTML email containing a form? The form, which works great in a web page, does not work when sent in an HTML email and is being viewed in an email client. I'm using Outlook 2003. Is this a security measure of Outlook or is this a standard across the

Re: Comparing Remote Local Documents for Incremental Back-ups?

2005-02-11 Thread Matt Robertson
Rick, FTPVoyager and Serv-U both can create logs. Use cffile to parse 'em out and do whatever. You could even upload the client-side ftpv log as the last part of your upload, maybe. That one might be a little hairy since the log would be in use while you send it, but give it a shot and see if

Re: http://www.verypdf.com

2005-02-11 Thread Adrocknaphobia
Intresting thought, altough I would imagine my organization is _much_ larger (US Dept of State) than yours and we are moving to CFMX7 as fast as possible. Native PDF and Flash forms are to valuable to ignore. -Adam On Fri, 11 Feb 2005 15:51:12 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]

RE: CFMX J2EE Failover

2005-02-11 Thread Dave Watts
That's great Adam thanks! Anyone have any recommendations for clustering IIS? Since you mentioned you were looking for low-cost solutions, you might use the NLB/WLBS functionality built into Windows. I'm pretty sure there's a Devnet article talking about this. Dave Watts, CTO, Fig Leaf

RE: MX7 Upgrade (was Re: http://www.verypdf.com)

2005-02-11 Thread Michael Dinowitz
That's why I mentioned patches to the new features separately. I expect that the core 7 IS essentially an upgrade/fix of 6.1 and didn't worry about it. It's far from 'just an upgrade' as you said. (and don't worry, I don't take it personally). I'll be honest here. I was on CF 5 until a few

Re: http://www.verypdf.com

2005-02-11 Thread Adrocknaphobia
Not too mention the beta ran quite along time and had more people testing it than ever before. -Adam On Fri, 11 Feb 2005 11:02:05 -0500, Adam Haskell [EMAIL PROTECTED] wrote: I'm going to echo Michael on this one. I would not recomend MX 7 if I didn't think it was rock solid. I honeslty think

  1   2   3   >