Re: cfdocument not displaying arabic font [spamtrap bayes][spamtrap heur]

2010-10-29 Thread safo 2000
without cfdocument it works fine. so anyway i tried utf-8, at least something gets displayed but as such ARABIC TEXT PRINT TEST ام صمة اله دولة there are some missing characters ~| Order the Adobe Coldfusion

Re: CFLOOP Next Iteration

2010-10-29 Thread Sean Corfield
On Wed, Oct 27, 2010 at 10:16 AM, Jacob Munson yacoub...@gmail.com wrote: You probably noticed this, but cfcontinue is a new CF9 tag, so won't work in older versions of CF. cfcontinue was new in CF9 but continue existed in cfscript before that... -- Sean A Corfield -- (904) 302-SEAN Railo

Re: CFLOOP Next Iteration

2010-10-29 Thread Sean Corfield
On Wed, Oct 27, 2010 at 4:22 PM, Matthew Lowrey rid...@gmail.com wrote: I wasn't aware of that.  We're still learning all the new tags and it doesn't come up win DreamWeaver so it was a shot in the dark to find something that would allow us to continue Time to switch to ColdFusion

StructAppend Creating an Error

2010-10-29 Thread Monique Boea
Hello I have a multi step form that is being submitted to itself. I create a structure session.memberRegister and then append to the structure as each form is submitted like so: cfscript session.memberRegister = structnew(); /cfscript cfset

SOAP Output for Object

2010-10-29 Thread Donnie Carvajal
I am working with a web service and have been working with the web service support to try to work through some of the bugs. They asked what the SOAP requests were. Can any instatiated object in ColdFusion be output as a SOAP request or would this possibly be a built in method of the web

Quick Regex Question

2010-10-29 Thread Robert Harrison
I have the regex statement - ReReplace(new_dir,\W,,all) That removes all non-alphanumeric characters from a sting. If I want to remove all non-alphanumeric characters except the underscore, is that:ReReplace(new_dir,\W/_,,all) or ? Thanks Robert B. Harrison Director of Interactive

NEVER MIND: Quick Regex Question

2010-10-29 Thread Robert Harrison
- ReReplace(new_dir,\W,,all) is any alphanumeric character and the _ Never Mind. Thanks Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great

Re: Quick Regex Question

2010-10-29 Thread Nathan Strutz
Robert, Actually, the underscore is counted as an alphanumeric in regular expressions. Try just replacing \W with nothing and see what you get. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Fri, Oct 29, 2010 at 7:41 AM, Robert Harrison rob...@austin-williams.com

Re: StructAppend Creating an Error

2010-10-29 Thread Monique Boea
I got this to work. DUH!! cfloop query=memberInfoFields !--- create dynamic session vars --- cfif NOT isDefined(session.memberRegister.STRFIELDNAME) cfset session.memberRegister.#STRFIELDNAME# = /cfif On Fri, Oct 29, 2010 at 9:38 AM, Monique Boea moniqueb...@gmail.com wrote: Hello I

Re: cfdocumentitem type=header

2010-10-29 Thread Tony Bentley
Perfect! Thanks Leigh. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: StructAppend Creating an Error

2010-10-29 Thread Leigh
cfset StructAppend(session['memberRegister'],STRFIELDNAME) StructAppend, appends the contents of one structure onto another. STRFIELDNAME looks like a simple value. If you are trying to create a dynamic key, just use array notation ie cfset session.memberRegister[STRFIELDNAME] =

Re: cfdocument not displaying arabic font [spamtrap bayes][spamtrap heur]

2010-10-29 Thread Paul Hastings
On 10/29/2010 1:13 PM, safo 2000 wrote: without cfdocument it works fine. so anyway i tried utf-8, at least something gets displayed but as such ARABIC TEXT PRINT TEST ام صمة اله دولة there are some missing characters if changing to utf-8 makes it display better then your

Re: SOAP Output for Object

2010-10-29 Thread Russ Michaels
What cf sends is a soap request. See getsoaprequest function cfquickdocs for more info. Russ On 29 Oct 2010 15:34, Donnie Carvajal donnie.carva...@transformyx.com wrote: I am working with a web service and have been working with the web service support to try to work through some of the bugs.

Re: StructAppend Creating an Error

2010-10-29 Thread Monique Boea
Thanks Leigh. Now, how do I check for the existance of and use these dynamic variables to set my form values? Like so: cfif #session.memberRegister.strCME# EQ medicalselected=selected/cfif But I need to use dynamic variable names. I am trying to use this but it is not working:

Alternative to CFCONTENT

2010-10-29 Thread Chad Baloga
We are serving files from a file server to users using cfcontent/cfheader. When we upgraded to CF9, we started getting the java heap space errors when users would try to download files larger than 250mb. We have the min and max heap space settings on 1024mb. Are there any other alternatives

Re: CFLOOP Next Iteration

2010-10-29 Thread Matthew Lowrey
On Wed, Oct 27, 2010 at 4:22 PM, Matthew Lowrey rid...@gmail.com wrote: I wasn't aware of that.  We're still learning all the new tags and it doesn't come up win DreamWeaver so it was a shot in the dark to find something that would allow us to continue Time to switch to ColdFusion

Re: StructAppend Creating an Error

2010-10-29 Thread Leigh
Now, how do I check for the existance of and use these dynamic variables to set my form values? The same way as before. Use array notation. No need for the extra # signs. ie cfif session.memberRegister[ STRFIELDNAME ] eq someValue something here... /cfif BTW: Most scopes in CF are

Re: StructAppend Creating an Error

2010-10-29 Thread Leigh
Now, how do I check for the existance value=#Evaluate(session.memberRegister.#STRFIELDNAME#)# BTW: I ignored the check for existence comment because your code seemed to be getting the value instead. But if you really do mean existence, then use structKeyExists or IsDefined.

Re: CFLOOP Next Iteration

2010-10-29 Thread Russ Michaels
If ur docs are out of date then you can alays use cfquickdocs.com or coldfusiondocs.com as your reference On 29 Oct 2010 17:57, Matthew Lowrey rid...@gmail.com wrote: On Wed, Oct 27, 2010 at 4:22 PM, Matthew Lowrey rid...@gmail.com wrote: I wasn't aware o... I really wanted to switch over

Re: Alternative to CFCONTENT

2010-10-29 Thread Russ Michaels
The reason most people use cfcontent like this is to secure files from public access. The alternative is just to use authenticated access using. Htaccess, this means users must login to access files. Russ On 29 Oct 2010 17:45, Chad Baloga cbal...@gmail.com wrote: We are serving files from a

Re: CFLOOP Next Iteration

2010-10-29 Thread Jacob Munson
There just hasn't been a good enough reason for my company to purchase it when DW doesn't just about everything it does for a fraction of the cost. I am going to argue that CFB is not buggy, or that people should definitely switch to CFB from DW. However, I don't agree with your statement

Re: OOP vs cfinvoke

2010-10-29 Thread Dev Guru
I've got an app here that has several hundred cfinvoke calls to a couple of CFCs. I'm trying to decide if it's worth my time to go through and convert the app from using cfinvoke constantly to using cfobject. How much of a difference on my overhead will it make? Kris Sisk USD-457 Technology

Re: OOP vs cfinvoke

2010-10-29 Thread Raymond Camden
Maybe I'm reading you wrong, but your message implies that you can only return something from a method if you have a real instance of it. That is not true. While it typically isn't recommended to use cfinvoke with the name attribute since it 'throws away' the instance, you certainly can do that

Re: Quick Regex Question

2010-10-29 Thread CDCaveman
unsubscribe In a message dated 10/29/2010 10:41:43 A.M. Eastern Daylight Time, rob...@austin-williams.com writes: I have the regex statement - ReReplace(new_dir,\W,,all) That removes all non-alphanumeric characters from a sting. If I want to remove all non-alphanumeric characters

Re: Alternative to CFCONTENT

2010-10-29 Thread Mark Mandel
Try mod xsendfile if you are on apache http://tn123.ath.cx/mod_xsendfile/ Mark Sent from my mobile device On 30 Oct 2010 03:45, Chad Baloga cbal...@gmail.com wrote: ~| Order the Adobe Coldfusion Anthology now!

Re: CFLOOP Next Iteration

2010-10-29 Thread Dave Merrill
Just to say it, I too had lots of trouble with CFB, and while I liked some things about CFEclipse before that, its bloat and bugginess bummed me out (Eclipse more than CFE). But now I'm a happy camper, using IntelliJ IDEA with its CFML plugin. No, it's not perfect by any means, but it's just a