Re: SMS messages [spamtrap bayes][spamtrap heur]

2010-08-27 Thread Paul Hastings
On 8/27/2010 2:25 AM, Justin Scott wrote: Have you used them to send to mobile numbers on US carriers? A few places I've spoken to have said that we would need to apply for our own short code to send to US recipients, others have said we can send through theirs but no you don't 100% need a

Re: CFopenchat not working in IE

2010-08-27 Thread Harish Thapliyal
Hi Rick, I have added the the new line you suggested and now I have come across a very peculiar scenario. I open one chat window in FF and other in IE and it seems to work.As soon as I open a new chat window in Chrome for 3rd user, in IE it stops working. Chrome/FF users can communicate

Re: sending a form through CF and catching the results

2010-08-27 Thread Peter Boughton
Josh, you're missing the point entirely. Converting from CSV-Query makes sense and wasn't being questioned. Using the cfhttp tag to do the conversion is what's crazy. There is no sensible reason for requiring CSV conversion to go via HTTP - since the vast majority of the time this isn't

RE: Number of site using ColdFusion

2010-08-27 Thread Sebastiaan GMC van Dijk
Ben's list is unfortunately for the Netherlands terribly out of date. Most companies listed there now use .NET or PHP, whilest there are a lot of CF-sites and companies not being listed. Of course it's important to maintain this data for your own company if you're listed and it would be an

RE: Number of site using ColdFusion

2010-08-27 Thread Sebastiaan GMC van Dijk
Oh, and Rey's GOTCFM is not easy to change either. I wanted to change and add listings, but this isn't possible. Also Rey doesn't really respond to mail, I've tried to contact hi about this thru regular mail but also via the contactmailaddress on the site, to no avail alas. Maybe he'll see

Re: Powerpoint to Flash conversion

2010-08-27 Thread Harish Thapliyal
I went through cfpresentation but not able to use it for converting PPT to flash.Do you know some reference sites/examples that does the same? Can you give an example of it to show its working? ~| Order the Adobe Coldfusion

Re: manipulating Excel files

2010-08-27 Thread Rick Root
Marc, This seems like the worst possible way of attempting this. The POI library included with CF8 allows you to manipulate native excel documents using java calls from within CF Check out Ben Nadel's POIUtility.cfc http://www.bennadel.com/projects/poi-utility.htm Rick On Thu, Aug 26, 2010

Re: manipulating Excel files

2010-08-27 Thread Michael Grant
Oh come now. Surely we could think of a worse way. ;) On Fri, Aug 27, 2010 at 8:20 AM, Rick Root rick.r...@gmail.com wrote: Marc, This seems like the worst possible way of attempting this. The POI library included with CF8 allows you to manipulate native excel documents using java calls

Re: manipulating Excel files

2010-08-27 Thread Rick Root
On Fri, Aug 27, 2010 at 9:02 AM, Michael Grant mgr...@modus.bz wrote: Oh come now. Surely we could think of a worse way. ;) Heh. hiring child labor in a third world country to do the work on demand? ~| Order the Adobe

RE: manipulating Excel files

2010-08-27 Thread Mark A. Kruger
I was thinking of bit-shifting through the entire binary object - but I like yours better. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Rick Root [mailto:rick.r...@gmail.com]

RE: manipulating Excel files

2010-08-27 Thread Leigh
Oh come now. Surely we could think of a worse way. ;) ... I was thinking of bit-shifting through the entire binary object I knew the list would not disappoint ;-) ~| Order the Adobe Coldfusion Anthology now!

Re: manipulating Excel files

2010-08-27 Thread Michael Grant
Heck, you want some serious sarcasm check out cf-comm. :D On Fri, Aug 27, 2010 at 10:51 AM, Leigh cfsearch...@yahoo.com wrote: Oh come now. Surely we could think of a worse way. ;) ... I was thinking of bit-shifting through the entire binary object I knew the list would not disappoint

Re: manipulating Excel files

2010-08-27 Thread Leigh
Heck, you want some serious sarcasm check out cf-comm. :D Ah, so that is where the cf sarcasm smorgasborg can be found! ;-) ~| Order the Adobe Coldfusion Anthology now!

Re: sending a form through CF and catching the results

2010-08-27 Thread Josh Nathanson
There is no sensible reason for requiring CSV conversion to go via HTTP - since the vast majority of the time this isn't necessary/desired - having a dedicated cfcsv tag and/or CsvParse function would have made sense. Yup, I totally agree with that. Guess I misread the emphasis in your

Marilynn Monroe (not really - cfinput but no one answered before)

2010-08-27 Thread Stephens, Larry V
This is straight off the Adobe CF9 page. We're running CF8 but the docs there are so sparse they tell you nothing so we can't tell if this is a version problem or what. The .cfm file (we added the cftry stuff): cftry cfform name=mycfform First Name: cfinput type=text name=firstname

Re: Marilynn Monroe (not really - cfinput but no one answered before)

2010-08-27 Thread Scott Stewart
You need to set the returnformat to json On Fri, Aug 27, 2010 at 1:55 PM, Stephens, Larry V steph...@indiana.edu wrote: This is straight off the Adobe CF9 page. We're running CF8 but the docs there are so sparse they tell you nothing so we can't tell if this is a version problem or what.

HTMLEditFormat and Cross Site Scripting

2010-08-27 Thread cindi gannon
New to the cross site scripting arena - trying to prevent users from entering javascript into form fields and the javascript from executing. Pretty much anything goes in the form fields - so I am trying to add htmleditformat to my code - but the javascript is still executing when I click

Re: Marilynn Monroe (not really - cfinput but no one answered before)

2010-08-27 Thread Tony Bentley
cffunction name=getEmailId access=remote returnformat=JSON cfreturn left(arguments.firstname,1) . arguments.lastname @ lcase(arguments.domain) Not sure if this fixes it but you might be having a problem with wddx, which is the default return format.

RE: HTMLEditFormat and Cross Site Scripting

2010-08-27 Thread Mark A. Kruger
Cindi, You need to use HTMLedit format in the handler... where's the code that takes the Post request and does something with it? -Mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message-

RE: HTMLEditFormat and Cross Site Scripting

2010-08-27 Thread cindi . gannon
Hi there - I have it in the handle as shown below - but the javascript still executes, so , if i put scriptalert.../script in the logname field on the form - the alert comes up and then the form processes correctly. I'm just trying to prevent the alert or whatever js code is in there

Re: HTMLEditFormat and Cross Site Scripting

2010-08-27 Thread Michael Grant
cfqueryparam is your friend. On Fri, Aug 27, 2010 at 2:19 PM, cindi.gan...@bnymellon.com wrote: Hi there - I have it in the handle as shown below - but the javascript still executes, so , if i put scriptalert.../script in the logname field on the form - the alert comes up and then the

Re: HTMLEditFormat and Cross Site Scripting

2010-08-27 Thread Dave Watts
cfqueryparam is your friend. That has no effect on XSS. It simply prevents SQL injection. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber

Re: HTMLEditFormat and Cross Site Scripting

2010-08-27 Thread Michael Grant
Right. Cindi posted an example of a cfquery and I responded with cfqueryparam is your friend. Her query is vulnerable to sql injection. On Fri, Aug 27, 2010 at 2:27 PM, Dave Watts dwa...@figleaf.com wrote: cfqueryparam is your friend. That has no effect on XSS. It simply prevents SQL

Re: manipulating Excel files

2010-08-27 Thread Larry Lyons
Serious? Its far more frivolous than that. Heck, you want some serious sarcasm check out cf-comm. :D ~| Order the Adobe Coldfusion Anthology now!

Re: manipulating Excel files

2010-08-27 Thread Michael Grant
True dat. On Fri, Aug 27, 2010 at 4:52 PM, Larry Lyons larrycly...@gmail.com wrote: Serious? Its far more frivolous than that. Heck, you want some serious sarcasm check out cf-comm. :D ~| Order the Adobe

cfhttp all of a sudden getting connection failure.

2010-08-27 Thread Michael Grant
I know this is going to be vague, and I apologise in advance for that. I am hitting a webservice for TicketNetwork. It's code that has been in production for over 6 months and has worked flawlessly until about three weeks ago. Here's an example: cfhttp method=POST

Re: cfhttp all of a sudden getting connection failure.

2010-08-27 Thread Michael Grant
P.S. I've also verified that the URL that cfhttp points to is still indeed the correct url. ~| Order the Adobe Coldfusion Anthology now!

RE: HTMLEditFormat and Cross Site Scripting

2010-08-27 Thread Mark A. Kruger
Cindi, Do you have debugging on? Perhaps it's showing up in the debug and firing off. That's not a problem that would affect your users. -Mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original

RE: cfhttp all of a sudden getting connection failure.

2010-08-27 Thread Mark A. Kruger
Did you recently update your JVM? This post might help... though you don't look like you are using client certs. http://www.coldfusionmuse.com/index.cfm/2010/8/27/SSL.Client.Certificates.Fa iling Also - check the certificate chain - perhaps the vendor updated an intermediate cert that you now

social network application based on CF ?

2010-08-27 Thread cf-t...@sdsolutions.de
Hi list, is there any social network application / social network framework based on CF you guys are aware of ? Thanks in advance for your feedback ! Uwe ~| Order the Adobe Coldfusion Anthology now!

Re: cfhttp all of a sudden getting connection failure.

2010-08-27 Thread Leigh
Any help or insight would be great, thanks. Possibly a swing and a miss here.. but have you double checked the cfhttp headers?  Just to verify it is not the old compression issue. http://www.talkingtree.com/blog/index.cfm?mode=entryentry=25aa8297-45a6-2844-729dbd51575c1bd2

Re: cfhttp all of a sudden getting connection failure.

2010-08-27 Thread Matthew Friedman
Could it be a caching issue. CF is set to resolve the DNS forever and the location you are hitting might have moved DNS locations. - URL the same just pointed to a new box. You can change this setting by modifying an xml file in the lib folder. google it and there are a bunch of blogs on this.

Re: social network application based on CF ?

2010-08-27 Thread Won Lee
myspace used to be in CF I think. On Fri, Aug 27, 2010 at 6:23 PM, cf-t...@sdsolutions.de cf-t...@sdsolutions.de wrote: Hi list, is there any social network application / social network framework based on CF you guys are aware of ? Thanks in advance for your feedback ! Uwe

Re: social network application based on CF ?

2010-08-27 Thread Wil Genovese
Are you looking for an app you can download and use or just want to know if any social networking sites are using ColdFusion? Wil Genovese Sr. Web Application Developer/ Systems Administrator Wil Genovese Consulting 651-894-4238 wilg...@trunkful.com www.trunkful.com On Aug 27, 2010, at 5:23

Re: social network application based on CF ?

2010-08-27 Thread Sean Corfield
On Fri, Aug 27, 2010 at 3:23 PM, cf-t...@sdsolutions.de cf-t...@sdsolutions.de wrote: Hi list, is there any social network application / social network framework based on CF you guys are aware of ? What do you mean by social network application / social network framework? Twitter? Facebook?