Re: chr(10) AND CFSCRIPT

2005-06-11 Thread Barney Boisvert
You meant chr(13) chr(10) for the windows line ending, right? And the 'mac' line ending is only for Mac OS9 and earlier. Mac OSX (since it's *nix based) uses just the line feed. cheers, barneyb On 6/10/05, Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] wrote: That will work in most browsers,

Re: SPAM-LOW: Re: cfchart not working on new server

2005-06-11 Thread Allan Cliff
Yes, when i said mappings i meant virtual directories in IIS. We had exactly the same problem as Matthew did and creating that file and those virtual directories solved the problem. Allan - Original Message - From: Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] To: CF-Talk

css no flashform - dica

2005-06-11 Thread Felipe Fernandes
Galera, Estava fuçando nos flashforms e o fato dele só aceitar style escrito inline estava me incomodando bastante. Então resolvi criar uma página de estilos para facilitar, o truque é bastante simples. Ao inves de ter uma página .css com os estilos defindos na sintaxe de css eu defini variáveis

Re: SPAM-LOW: Re: cfchart not working on new server

2005-06-11 Thread Jared Rypka-Hauer - CMG, LLC
Actually this is starting to make sense... If you add /CFIDE as a virtual dir and add GraphData.cfm to it, then IIS won't balk as per the other message in this thread (can't recall who posted it), but will allow the URL to be executed. Then, since the URL is actually a Jrun servlet mapping,

RE: SPAM-LOW: Re: cfchart not working on new server

2005-06-11 Thread James Holmes
The poster said that the option for chekcing for files was already unselected, so that's not the issue. I checked the URL the original post gave, http://www.christchurchnz.net/chart.cfm, and the image location therein: http://www.christchurchnz.net/CFIDE/GraphData.cfm?graphCache=wc50graphI

Changing Mail Spool Location

2005-06-11 Thread Robertson-Ravo, Neil (RX)
Anyone know if it is possible to spool mail to a different location from the vanilla cfrootmail/ folder? TIA This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It

Re: Changing Mail Spool Location

2005-06-11 Thread Jochem van Dieten
Robertson-Ravo, Neil (RX) wrote: Anyone know if it is possible to spool mail to a different location from the vanilla cfrootmail/ folder? http://www1.oli.tudelft.nl/jochemd/index.cfm?PageID=13 Jochem ~| Logware

RE: mx 6 licenses?

2005-06-11 Thread Russ
Except the FREE version of BlueDragon doesn't support HTTPS. They kinda hide it in the documentation... we found out the hard way. -Original Message- From: Jared Rypka-Hauer - CMG, LLC [mailto:[EMAIL PROTECTED] Sent: Friday, June 10, 2005 11:54 PM To: CF-Talk Subject: Re: mx 6

Re: chr(10) AND CFSCRIPT

2005-06-11 Thread James Taavon
well, that did not work. I keep getting invalid CFML construct. i believe i need to use #chr(10). Here what i am trying to do exactly. I have a shipping address populating a cell in an array. Now i want to have a carriage return after each line in the address in the same array cell. CODE:

spelling and GRAMMAR check. . .

2005-06-11 Thread chris.alvarado
hello all, does anyone know of a good spelling AND grammar check tag for CF? i know of a couple good spelling check tags but none that also check grammar. if there is not one that includes a grammar check does anyone know of a spelling and grammar check API that i could integrate with? i guess

Different in performance?

2005-06-11 Thread Johnny Le
Hi, Is there a performance difference between this? cfif not structKeyExists(application, message) cfset application.message = createObject(component, message).init()/ /cfif and cfparam name=application.message default=#createObject('component', 'message').init()#/ The cfparam method seems

Re: Different in performance?

2005-06-11 Thread Barney Boisvert
Yes, there is a HUGE difference. Check my post about it here: http://www.barneyb.com/blog/archives/000496.jsp In a nutshell, the CFPARAM tag will execute the 'default' attribute whether the result will be used or not, so if you use the CFPARAM method, you'll be instantiating your 'message'

Re: REPOST Re: FedEx Shipping custom tags

2005-06-11 Thread One User
We use CFX_FEDEX for a long time and it works fine. What else can I say? I don't have any experience with the other tag. If people are selling it, I assume it works also. spent a week or so trying to work out the integration myself for my ecommerce software . . . I'm not sure I'd pay $250

Help with COM

2005-06-11 Thread Bud
Hi all. I'm trying to use a COM object to connect to CyberSource payment gateway. I'm converting their ASP script sample. Here is my problem. I'm trying to set a value within the object (oRequest). The ASP command for this is as follows. oRequest.Value(billTo_firstName) = Jane If I try to use

best way to invoke a cfc

2005-06-11 Thread dave
is see a lot of ppl on here using different ways to invoke a cfc, any best practices? (on a shared server) the one thing i am really tired of is having the files on a local dev puter and having the cfc's to be called with the live settings and dw choking for a few minutes while it looks for

Re: Help with COM

2005-06-11 Thread Dan O'Keefe
Bud, I think you have to use their SetValue method: cfset oRequest.SetValue(billTo_firstName, Jane) Dan On 6/11/05, Bud [EMAIL PROTECTED] wrote: Hi all. I'm trying to use a COM object to connect to CyberSource payment gateway. I'm converting their ASP script sample. Here is my problem. I'm

Re: Help with COM

2005-06-11 Thread Bud
Thanks Dan. I think you may have another tag in mind. Error: Failed attempting to find SETVALUE property/method on the object Bud, I think you have to use their SetValue method: cfset oRequest.SetValue(billTo_firstName, Jane) Dan On 6/11/05, Bud [EMAIL PROTECTED] wrote: Hi all. I'm trying

Re: REPOST Re: FedEx Shipping custom tags

2005-06-11 Thread One User
Also. Just checked cf_FedEx on adminprotools.com. Here some observations: - For $49 you get only the ability to issue the rate and tracking requests. No actual shipping supported. You have to pay $149 for a full version that allows shipping operations. - Labels are browser-based, as far as

RE: best way to invoke a cfc

2005-06-11 Thread James Holmes
On a shared server, it's important to ensure that a unique name is used. If you have a mapping or a custom tag path, putting a unique directory name in the calling path and then using the dotted notation (e.g. myuniquename.somecfc) helps. If not, you have to rely on the default searching mechanism

Portlets (JSR168 and WSRP) with CF

2005-06-11 Thread James Holmes
Has anyone delved in to JSR168 and WSRP with CF? One of our J2EE apps uses Portlets as a standard and we need to start looking at employing these standards across all our apps (where appropriate). Is there any existing work on which we can build? James Holmes Divisional Web Interface Development

RE: best way to invoke a cfc

2005-06-11 Thread dave
well I was thinking that on a shared server it probably wouldn't be a real good idea to create an object out of it (just in case they take that way for security) and the dreamweaver one doesn't add it correctly, was just curious what ppl are using, since I see quite a lot of diff techniques.

Re: CFC's and limiting DB queries

2005-06-11 Thread Will Tomlinson
Does someone have the link to the previous thread where Sean explained this? I can't find it and was paying scant attention when it was first posted. Would come in handy for me. Thanks, Will ~| Logware (www.logware.us): a new

Re: Sharepoint

2005-06-11 Thread Michael Hohnecker
I have been working with SharePoint a lot in the last six months. Has anyone consumed a SharePoint web service with ColdFusion? Is that possible? Mike ~| Find out how CFTicket can increase your company's customer support

application and session scope components?

2005-06-11 Thread Johnny Le
Hi, I have several components that are the same for all users throughout the site. So I put them in application scope. I just developed a component that is specific for each user. So I put it in session scope. The problem is that I need to pass this sesion scope component into those

Re: application and session scope components?

2005-06-11 Thread Barney Boisvert
You should pass the session-scope component into each individual method call on the app-scope component that needs it, but never storing the session-scope component in an instance variable. That'll keep your app-scope components session-neutral. If you find that every method (or at least the

dreamweaver tag updater - cfparam types

2005-06-11 Thread S . Isaac Dealey
Is is just my imagination, or did the tag updater for dreamweaver for CF7 add social_security_number and _remove_ the _much_ more frequently used string and struct types from the list of options for the type attribute? s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add

RE: Cold Fusion Job Resources

2005-06-11 Thread Dave Merrill
Couple more suggestions: craigslist.com just seems to have more interesting jobs than many. bostonworks.boston.com is good if you're in that area. guru.com seems to be one of the better piecework sites, though I didn't end up actually setting myself up there. idealist.org is good if you're