Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Robertson-Ravo, Neil (RX)
Got to be Eclipse, with Aptana as well you get the library bindings.






"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Mike Chabot
To: CF-Talk
Sent: Wed Nov 08 23:07:35 2006
Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

I use HomeSite when writing Ajax code. It is just JavaScript.

-Mike Chabot

On 11/8/06, Ali Majdzadeh <[EMAIL PROTECTED]> wrote:
> Great reply Rey. Thanks. Another question is what IDE do you suggest for
these frameworks? I've heard of some AJAX IDE's (WYSIWYG/NON WYSIWYG) but
not sure they are real help. Please give me your opinion.
> Thanks
> Benign
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259739
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Selecting date from table (for the experts)

2006-11-08 Thread Barney Boisvert
assuming years are irrelevant, the condition for determining if it's
after the start day is like this.

WHERE (sp_start_month < #month(now())#
  OR (sp_start_month = #month(now())# AND sp_start_day <= #day(now())#)
)

Determining if you're before the end date is equivalent, just
reversed.  If both parts are true, you're within the season.  If you
need to deal with seasons that cross a year boundary (like
basketball), then you'll wan the inverse comparison (before the start
and after the end).

cheers,
barneyb

On 11/8/06, Mike | NZSolutions Ltd <[EMAIL PROTECTED]> wrote:
> Hi guys,
>
> I have the following table...
>
> Season_period
> -
> Sp_id (PK)
> Season_id (FK)
> Sp_start_day (INT)
> Sp_start_month (INT)
> Sp_end_day (INT)
> Sp_end_month (INT)
>
> What I wish to do is select the season_id using a particular date. I am
> really not sure how to compare an actual date against just a day/month
> value.
>
> I am going to loop through a series of dates, and wish to know the
> matching season_id for a particular date.
>
> Any ideas on how I should go about building this query would be greatly
> appeciated.
>
> mike
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259738
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Selecting date from table (for the experts)

2006-11-08 Thread Mike | NZSolutions Ltd
Hi guys,

I have the following table...

Season_period
-
Sp_id (PK)
Season_id (FK)
Sp_start_day (INT)
Sp_start_month (INT)
Sp_end_day (INT)
Sp_end_month (INT)

What I wish to do is select the season_id using a particular date. I am
really not sure how to compare an actual date against just a day/month
value.

I am going to loop through a series of dates, and wish to know the
matching season_id for a particular date.

Any ideas on how I should go about building this query would be greatly
appeciated.

mike



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259737
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cool things about cf

2006-11-08 Thread Antony Sideropoulos
The next time someone starts a 'CF is dying' or 'Why choose CF over ASP/PHP'
thread, can they please be pointed to this thread as the answer?

How do you make a sticky on CF-Talk?


On 11/9/06, Bobby Hartsfield <[EMAIL PROTECTED]> wrote:
>
> Here's a simple, useful example.
>
> 
> function bhimginfo(imgfile){
>jFileIn = createObject("java","java.io.File").init(imgfile);
>ImageInfo = StructNew();
>ImageObject =
> createObject("java","javax.imageio.ImageIO").read(jFileIn);
>
>imageFile = CreateObject("java", "java.io.File");
>imageFile.init(imgfile);
>sizeb = imageFile.length();
>sizekb = numberformat(sizeb / 1024, "9.99");
>sizemb = numberformat(sizekb / 1024, ".99");
>
>bhImageInfo = StructNew();
>bhImageInfo.ImgWidth = ImageObject.getWidth();
>bhImageInfo.ImgHeight = ImageObject.getHeight();
>bhImageInfo.SizeB = sizeb;
>bhImageInfo.SizeKB = sizekb;
>bhImageInfo.SizeMB = sizemb;
> }
> 
>
>
> It will return image width, height, filesize (in bytes, kilobytes, and
> megabytes)
>
>
> -Original Message-
> From: DRE [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 11:29 AM
> To: CF-Talk
> Subject: Re: Cool things about cf
>
> Ben,
> I've instantiated java before using cf but its not been all that simple.
> What would be a good example of a simple but very useful java
> instantiation
> suitable for a tutorial?
>
> DRE
>
> On 11/8/06, Ben Nadel <[EMAIL PROTECTED]> wrote:
> >
> > I looked through the other responses, and I might have missed it, but
> > the ability to instantiate Java objects, call underlying Java methods,
> > and write your own Java classes... That's pretty freakin' nifty.
> >
> >
> > ..
> > Ben Nadel
> > Certified Advanced ColdFusion MX7 Developer
> > www.bennadel.com
> >
> > Need ColdFusion Help?
> > www.bennadel.com/ask-ben/
> >
> > -Original Message-
> > From: DRE [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, November 07, 2006 7:01 PM
> > To: CF-Talk
> > Subject: Cool things about cf
> >
> > Hey, I'm writing a short article about the cool things that cf comes
> > with that most others dont. I've got so far:
> >
> > qoq
> > groupd output (Hey, I think its cool)
> > charting
> > cfdocument
> >
> > I'm thinking of adding a section on custom tags but not cfc's because
> > you can write classes easily in most other languages.  Flash forms seem
> > mostly annoying and I dont like cfform all that much.
> >
> > So, stuff that is very useful but only comes with cf.  Any others you
> > can think of?  I'm sure there is much that I have'nt thought of.
> >
> > Thanks for the moment.
> >
> > --
> > DRE
> > www.webmachineinc.com
> > www.theanticool.com
> >
> >
> >
> >
> >
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259736
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Generating a spam score

2006-11-08 Thread Mike Chabot
I was thinking that a rule-based spam filter would be easier to work
with, since nobody would be actively training the filter. It may come
down to what is easiest to program against. PopFile is another
open-source option that I should look into.

Thank you,
Mike Chabot

On 11/8/06, Eric Roberts <[EMAIL PROTECTED]> wrote:
> I don't know if they have a web service or not, but you could check out
> spambayes...they make a really awesome free spam filter for outlook.  I
> believe it is open source so you may be able to get the code and go from
> there.  They may also have put out something like what you are looking for.
> It's been awhile since I have been to their site.
>
> Eric
>
> -Original Message-
> From: Mike Chabot [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 08 November 2006 13:19
> To: CF-Talk
> Subject: Generating a spam score
>
> I am looking to program a feature that can pass E-mail text through a
> rule-based spam filter, notably SpamAssassin, to generate a spam score
> before the E-mail is mailed to many people using ColdFusion MX 7. If the
> score is above a certain level, the person would have the ability to tweak
> the E-mail to try to lower the spam score before sending it out. Has anyone
> done anything like this or does anyone know of existing code or a Web
> service that would help with this?
>
> Thank you,
> Mike Chabot
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259735
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Custom 404 error page

2006-11-08 Thread Claude Schneegans
Ok, I got it.

I replaced the 404 error handler in IIS to redirect to /404/index.cfm.
In /404, you need also an empty application.cfm,
Then in 404/index.cfm, just these two lines:

http://www.mysite.com/";>

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259734
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Bobby Hartsfield
This was just 'Slashdotted'

http://isc.sans.org/diary.php?storyid=1836
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.430 / Virus Database: 268.13.32/523 - Release Date: 11/7/2006
1:40 PM
 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259733
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


MD5 in cfm is not correct

2006-11-08 Thread Glence Mathew
If we md5 a string in php and cfm we are getting different results


That is 

PHP - Md5(“anystring”) - > Correct – equivalent to MD5 val described in 
http://en.wikipedia.org/wiki/MD5

CFM – Hash(“anystring”,”MD5”) -> Returns a different value

 

Here is an example, if we execute the given below example in php we will get 
correct result but if we do it in cfm we are getting a different result. Can 
you please help? Do you have any idea how to create correct md5 values in cfm? 
 
MD5("The quick brown fox jumps over the lazy dog")  = 
9e107d9d372bb6826bd81d3542a419d6 (Correct MD5)
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259732
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


MD5 Issue in CFM

2006-11-08 Thread Glence Mathew
If we md5 a string in php and cfm we are getting different results

That is 
PHP - Md5(“anystring”) - > is the correct MD5 Correct – 
equivalent to MD5 val described in http://en.wikipedia.org/wiki/MD5

CFM – Hash(“anystring”,”MD5”) -> Returns a 
different value
 

Here is an example, if we execute the given below example in php we 
will get correct result but if we do it in cfm we are getting a different 
result. Can you please help? Do you have any idea how to create correct 
md5 values in cfm? 

eg: MD5("The quick brown fox jumps over the lazy dog")  = 
9e107d9d372bb6826bd81d3542a419d6 (Correct MD5)

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259731
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Custom 404 error page

2006-11-08 Thread Claude Schneegans
Hi, I' publishing a new web site for a customer which was html only 
before, hosted somewhere else.
I want old links to any old page to be redirected to /index.cfm

I managed to set up the redirection in IIS to /index.cfm
The problem is that index.cfm is called relatively to the old address.
For instance, www.mySite.com/someOldDirectory/someOldPage.htm
displays what's in /index.cfm, but like if it was 
www.mySite.com/someOldDirectory/index.cfm,
then all internal relative addresses are wrong.

What can I do so that the visitor is really redirected to www.mySite.com 
and the address in his
browser is www.mySite.com, not 
www.mySite.com/someOldDirectory/someOldPage.htm?

Thanks

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259730
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Generating a spam score

2006-11-08 Thread Eric Roberts
I don't know if they have a web service or not, but you could check out
spambayes...they make a really awesome free spam filter for outlook.  I
believe it is open source so you may be able to get the code and go from
there.  They may also have put out something like what you are looking for.
It's been awhile since I have been to their site.

Eric 

-Original Message-
From: Mike Chabot [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 08 November 2006 13:19
To: CF-Talk
Subject: Generating a spam score

I am looking to program a feature that can pass E-mail text through a
rule-based spam filter, notably SpamAssassin, to generate a spam score
before the E-mail is mailed to many people using ColdFusion MX 7. If the
score is above a certain level, the person would have the ability to tweak
the E-mail to try to lower the spam score before sending it out. Has anyone
done anything like this or does anyone know of existing code or a Web
service that would help with this?

Thank you,
Mike Chabot




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259729
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: IIS 6.0 Configuration

2006-11-08 Thread Mike Tangorre
From: "Kym Kovan" <[EMAIL PROTECTED]>
> You cannot have two different SSL sites n the same IP address as
> everything is encrypted by the SSL, even the hostname in the initial
> connection, so IIS cannot work out what site is being connected to. You
> need to use differing IP addresses.

Actually, I got it working!

Somehow, "Integrated Windows Authentication" got checked along with "Basic 
Authentication" for both sites.  Removing the first check, fixed the 
problem.

One thing I did not mention, which I discovered from Microsoft's web site, 
is that when using host headers on multiple sites running on the same IP 
where SSL is required, setting the secure bindings must be done as well as 
using the wildcard certificate with the common name set to (*.domain.com).

Set the secure bindings using the following:

cscript.exe adsutil.vbs set /w3svc//SecureBindings 
":443:www.domain.com"

and

cscript.exe adsutil.vbs set /w3svc//SecureBindings 
":443:site2.domain.com"

This only applies to Windows Server 2003 running IIS 6.0.  There is a whole 
slew of other steps when dealing with Windows Server 2000.

Anyway, its all running fine now.

Mike 




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259728
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: inside of ??

2006-11-08 Thread Sinuy L
hi
i'm still newbie to xml thingy, do u think i can use 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
http://www.w3.org/1999/xhtml";>


XML to Database



http://localhost:8500/templatemonsters-WEBAPI/01NOV-02NOV.xml"; 
method="GET" resolveurl="Yes" throwOnError="Yes"/>


















#thisID["state"]#


#thisID["id"].xmlText#
Price#thisID["price"].xmlText#
(Unique#thisID["exc_price"].xmlText#)
Type #thisID["template_type"]["type_id"].xmlText#



  
Directory 
#ReplaceList(findDIR,"http://,images.templatemonster.com/screenshots/,/";, 
"")#





#getFileFromPath(

thisID["screenshots_list"]["screenshot"][the_screenshot_list]["uri"].xmlText
)#,




Null




















>>Figured someone would know and answer quicker than me testing this. 
>>
>>Can you wrap a query with cftry inside a cftransaction? 
>>
>>Thanks,
>>Will
>
>I do this all the time in my CFCs...
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259726
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: IIS 6.0 Configuration

2006-11-08 Thread Kym Kovan
Hi Mike,

you wrote:
> I realize this is off-topic, although the end result will be related to 
> ColdFusion.  I am having trouble getting two sites working on IIS.  The 
> server is running Windows Server 2003 Enterprise w/ SP1.
>
> I have two web sites setup:
>
> ... snip ...
>
> I need to have SSL and basic authentication set on both sites.  When I 
> attempt to start both sites, www.domain.com starts fine. The second site 
> however will not start as it complains about various things (depending upon 
> the settings I am toying with). If the SSL port set on site2 is the same as 
> www.domain.com it gives an error pertaining to that.
>   

You cannot have two different SSL sites n the same IP address as 
everything is encrypted by the SSL, even the hostname in the initial 
connection, so IIS cannot work out what site is being connected to. You 
need to use differing IP addresses.



HTH

Kym K


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259727
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT: IIS 6.0 Configuration

2006-11-08 Thread Mike Tangorre
I realize this is off-topic, although the end result will be related to 
ColdFusion.  I am having trouble getting two sites working on IIS.  The 
server is running Windows Server 2003 Enterprise w/ SP1.

I have two web sites setup:

www.domain.com
Host Header: www.domain.com
IP: 10.100.20.11
TCP Port: 80
SSL Port: 443

site2.domain.com
Host Header: site2.domain.com
IP: 10.100.20.11
TCP Port: 80
SSL Port: 443

I have two DNS entries as well:

www - 10.100.20.11
site2 - 10.100.20.11

Both sites have the same security certificate assigned which is actually a 
wild card certificate (but can be changed to whatever, should it be 
necessary) - *.domain.com

I need to have SSL and basic authentication set on both sites.  When I 
attempt to start both sites, www.domain.com starts fine. The second site 
however will not start as it complains about various things (depending upon 
the settings I am toying with). If the SSL port set on site2 is the same as 
www.domain.com it gives an error pertaining to that.

I have been reading various MS article regarding host headers + IIS 6 + SSL 
and have tried the various solutions and have gotten as far as 
www.domain.com working fine with SSL and basic authentication and 
site2.domain.com continuously asking me for my credentials which I continue 
to provide until I get an access denied (HTTP 401.1) the credentials are 
the same as www.domain.com.

Can anyone recommend an approach that will allow me to get both sites 
running with SSL and basic authentication?

Thanks,

Mike





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259725
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Sandra Clark
Can it go instead to a cfm page that checks for the session variable and if
it isn't found, passes the update info to the component?  If you do it that
way, you can then do a http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 4:41 PM
To: CF-Talk
Subject: Re: Help with Form Validation Against Spam

Sandra,

I had read of that technique in the comments of Ben Nadel's blog post about
his Math technique. At present I get a few spam submissions a week and they
are all of the same format (first and last name in both fields and a well
formed email address). It does make me thing that maybe I am only dealing
with one spam bot, but I am sure there will be more in the future.

My action page is a component, so I would rather not reference the session
scope in the CFC. How exactly do I check against the session variable in
that case?

-Aaron

On 11/8/06, Sandra Clark <[EMAIL PROTECTED]> wrote:
> How bout setting a session variable on the form when loaded and 
> checking for it after submittal?  Most spammers use automatic 
> submittal, so its not from your site and hence no session variable.  
> They can't emulate it and its invisible to your users.
>
>
> Sandra Clark
> ==
> http://www.shayna.com
> Training in Cascading Style Sheets and Accessibility
>
>
> -Original Message-
> From: Aaron Roberson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 3:14 PM
> To: CF-Talk
> Subject: Re: Help with Form Validation Against Spam
>
> Ben,
>
> The nice thing about your Javascript suggestion is that people will 
> think that they are just confirming their subscription (which is true) 
> while in reality it would be filtering spam. Another thing is that 
> they will already be committed having submitted the form, and would 
> likely click the confirm button.
>
> A couple of cons of using your JavaScript suggestion should be noted.
> The confirmation dialog is annoying, especially in IE since it makes a 
> noise.Secondly, some people may have JavaScript disabled. Third, 
> people may hesitate completing any other forms on the site thinking 
> that they will also have a confirmation on submit which is annoying.
>
> The good thing is that the newsletter form is typically something a 
> visitor would only fill out once. They would not be annoyed by 
> confirmation dialogs again.
>
> I may choose to use JavaScript as you have suggested instead of 
> checking if the first name and last name is the same. I'm not sure.
>
> -Aaron
>
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259724
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: What *NOT* to do to screw up my google rankings...

2006-11-08 Thread Will Tomlinson
Thanx for the good info guys! I'll follow your advice. 

Will

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259723
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Bobby Hartsfield
Wouldn’t they just need to add that field to their own form as well? I guess
that really depends on what is IN the hidden field (hidden acesskey)? 


I've also seen people do time sensitive submits, meaning if you just
submitted, you can't submit again for another XX minutes or whatever. That's
only good if you are getting tons a day of course. My friend was getting one
every day or two so that wouldn’t have helped him (he's the reason I wrote
bhcaptcha)

I really liked Sandra's idea of 'bad keywords' myself. If the post contains
any of the 'bad words', it doesn’t go through. The user is basically
presented with an old school form with no special hoops to prove that he/she
is in fact a human. Sandra takes care of deciding that herself and updates
her list of keywords regularly... kudos to her.


-Original Message-
From: Eric Haskins [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 5:14 PM
To: CF-Talk
Subject: Re: Help with Form Validation Against Spam

Also take into consideration some of these bots look for the form action and
fields and create their own post to the URL. I started using an accesskey on
some of my customers OLD formmail.cgi  Wrote a custom verification looking
for a certain value (hidden accesskey). Also renamed the script.

This cutdown on the Spam right off the bat. This was on top of javascript
email validation

Eric Haskins
Web Systems Developer

On 11/8/06, Bobby Hartsfield <[EMAIL PROTECTED]> wrote:
>
> Godaddy uses captchas on their renewal form but I also noticed that there
> is
> no submit button available until you actually click in the box to type the
> captcha. Has anyone tried anything similar, maybe a checkbox or something,
> and if so did it help?
>
> And of course...
> http://acoderslife.com/downloads/bhcaptcha/
>
> :-)
>
> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 2:41 PM
> To: CF-Talk
> Subject: RE: Help with Form Validation Against Spam
>
> What about putting a Javascript confirmation upon form submission that
> sets a value:
>
>
> 
>
> In the above line, the [SET VALUE] could set a hidden form field to a
> predefined value. The confirmation is a bit cheesy, but I am guessing
> spammers don't actually "run " the live page and therefore wouldn't set
> the hidden field. And, you could randomize the field for each page
> refresh so it couldn't be guessed.
>
>
> ...
> Ben Nadel
> Certified Advanced ColdFusion MX7 Developer
> www.bennadel.com
>
> Need ColdFusion Help?
> www.bennadel.com/ask-ben/
>
>
> -Original Message-
> From: Aaron Roberson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 2:34 PM
> To: CF-Talk
> Subject: Re: Help with Form Validation Against Spam
>
> I know that nobody wants to put their site visitors through the trouble
> of entering some anti-spam verification code into the form but in this
> case I really don't think that Capthca or Math is the right solution.
>
> I would rather just use a regular expression. The reason is that email
> newsletter subscriptions are delicate. People are already hesitant about
> subscribing and I don't want to make them beg for it.
>
> I didn't think about checking if the first name and last name are the
> same, I may try that (and count my losses when/if anybody with the same
> first and last name tries to enroll).
>
> I may use Math or Lyla Captcha on other forms on my site though, so
> thank you for the links.
>
> -Aaron
>
>
>
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259722
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Generating a spam score

2006-11-08 Thread Russ
It's just a collection of perl scripts as far as I remember... If you're on
windows, you'd have to install perl, etc... but I do believe you can compile
perl programs... perhaps you can make an executable that won't need the perl
runtime or the original source files. 

Russ



> -Original Message-
> From: Mike Chabot [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 6:04 PM
> To: CF-Talk
> Subject: Re: Generating a spam score
> 
> Can you do that? I have zero experience with SpamAssassin.
> 
> -Mike Chabot
> 
> On 11/8/06, Russ <[EMAIL PROTECTED]> wrote:
> > I'm planning to do this sometime in the future... Why not just install
> > SpamAssassin and cfexecute it?
> >
> > Russ
> >
> > > -Original Message-
> > > From: Mike Chabot [mailto:[EMAIL PROTECTED]
> > > Sent: Wednesday, November 08, 2006 2:19 PM
> > > To: CF-Talk
> > > Subject: Generating a spam score
> > >
> > > I am looking to program a feature that can pass E-mail text through a
> > > rule-based spam filter, notably SpamAssassin, to generate a spam score
> > > before the E-mail is mailed to many people using ColdFusion MX 7. If
> the
> > > score is above a certain level, the person would have the ability to
> tweak
> > > the E-mail to try to lower the spam score before sending it out. Has
> > > anyone
> > > done anything like this or does anyone know of existing code or a Web
> > > service that would help with this?
> > >
> > > Thank you,
> > > Mike Chabot
> > >
> > >
> > >
> >
> >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259721
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Cognos Integration / COM object troubles!!!

2006-11-08 Thread Cameron Bohle
Hi all,

I'm trying to do a integration with the Cognos ReportNet tool using the COM 
object that comes with the ReportNet SDK (crn.dll). They do not have any 
ColdFusion examples so I translated their ASP example for logging into 
ReportNet.

I'm getting an AutomationException: 0x80020005 - Type mismatch error on one of 
the last lines of code which is baffling me because I've checked all my 
objects and verified against the DLL interface the appropriate types.

Has anyone done this before or can you see anything wrong???

Thanks!



oCRNS = CreateObject("COM", "CRN.CognosReportNetService");
oCRNS.endPointUrl = "http://devcognos01/crnmr3/cgi-bin/cognos.cgi";;
oFFCol = CreateObject("COM", "CRN.FormFieldVarC");
oFF = CreateObject("COM", "CRN.FormFieldVar");
oFF.Name = "CAMNameSpace";
oFF.value = "Series7";
oFFCol.Add("oFF");
oFF = CreateObject("COM", "CRN.FormFieldVar");
oFF.Name = "CAMUsername";
oFF.value = "username";
oFFCol.Add("oFF");
oFF = CreateObject("COM", "CRN.FormFieldVar");
oFF.Name = "CAMPassword";
oFF.value = "password";
oFFCol.Add("oFF");

oHDR = CreateObject("COM", "CRN.BiBusHeader");
oCAM = CreateObject("COM", "CRN.CAM");
oCAM.action = "loginAs";
oHDR.CAM = oCAM;
oHDR.HdrSession = CreateObject("COM", "CRN.HdrSession");
oHDR.HdrSession.formFieldVars = oFFCol;* ERROR HERE 

oCRNS.biBusHeaderValue = oHDR;
bca = oCRNS.Query("~", "", "", "");



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259720
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Rey Bango
Hi Michael,

I'm going to be working on a series of jQuery tutorials that will have a 
CF spin to it so just keep an eye on my blog (www.reybango.com) for more 
info. Andy has also responded and he's one of the most active people on 
the jQuery list so he's a top notch CF/jQuery resource as well.

Also, Chris Jordan has been doing some really cool work with JSon so 
I'll see if I can get some info from him as well.

Rey...


Michael E. Carluen wrote:
> Thanks Andy.  
> 
> Rey, looking forward for your next jquery blog  ;-) 
> 
> Thanks for both of your thoughts on jquery, btw.
> 
> 
> 
> 
>>-Original Message-
>>From: Andy Matthews [mailto:[EMAIL PROTECTED]
>>Sent: Wednesday, November 08, 2006 2:33 PM
>>To: CF-Talk
>>Subject: RE: Plenty of Coldfusion/Ajax frameworks. Which one for a starter
>>?
>>
>>Rey's got a great set of code. I'd also be happy to share with you what
>>I've
>>come up with, but Rey's gotten more into it that I have.
>>
>>>andy matthews
>>web developer
>>certified advanced coldfusion programmer
>>ICGLink, Inc.
>>[EMAIL PROTECTED]
>>615.370.1530 x737
>>--//->
>>
>>-Original Message-
>>From: Michael E. Carluen [mailto:[EMAIL PROTECTED]
>>Sent: Wednesday, November 08, 2006 4:20 PM
>>To: CF-Talk
>>Subject: RE: Plenty of Coldfusion/Ajax frameworks. Which one for a
>>starter ?
>>
>>
>>Hi Ray, Andy M
>>
>>I just started toying around with jquery, and been pretty impressed,
>>especially with the available plugins.  Do you know any basic tutorials to
>>get me up and running quicky on jquery+CF integration/implementation.  I
>>tried to google it but didn't come up with anything.
>>
>>Thanks,
>>
>>
>>
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259719
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Auction Software

2006-11-08 Thread Rick Mason
Craig,

The company that I work for has a CF based auction system known as Auction
Master.  The software is available in standard and advanced versions.  It
supports MS SQL Server, Oracle and Access.

http://www.businessgrade.com/cf/shopmast/productdetailp.cfm?ds=enhtech&productid=43

If anyone has any questions they can contact me.


Rick Mason
[EMAIL PROTECTED]





On 11/7/06, Craig Heneveld <[EMAIL PROTECTED]> wrote:
>
> Anyone know of any soild coldfusion based auction software?  I looking for
> something to handle advertising based auctioning.
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259718
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Rey Bango
Hi Benign,

In terms of IDE's, any standard IDE would work just fine but those that 
have some form of JS integration (ie: validation, highlighting, et al) 
really helps. I used CF Studio and I'm happy with it but Aptana is 
really nice as well.

Rey...

Ali Majdzadeh wrote:
> Great reply Rey. Thanks. Another question is what IDE do you suggest for 
> these frameworks? I've heard of some AJAX IDE's (WYSIWYG/NON WYSIWYG) but not 
> sure they are real help. Please give me your opinion.
> Thanks
> Benign
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259717
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Mike Chabot
I use HomeSite when writing Ajax code. It is just JavaScript.

-Mike Chabot

On 11/8/06, Ali Majdzadeh <[EMAIL PROTECTED]> wrote:
> Great reply Rey. Thanks. Another question is what IDE do you suggest for 
> these frameworks? I've heard of some AJAX IDE's (WYSIWYG/NON WYSIWYG) but not 
> sure they are real help. Please give me your opinion.
> Thanks
> Benign
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259716
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Generating a spam score

2006-11-08 Thread Mike Chabot
Can you do that? I have zero experience with SpamAssassin.

-Mike Chabot

On 11/8/06, Russ <[EMAIL PROTECTED]> wrote:
> I'm planning to do this sometime in the future... Why not just install
> SpamAssassin and cfexecute it?
>
> Russ
>
> > -Original Message-
> > From: Mike Chabot [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, November 08, 2006 2:19 PM
> > To: CF-Talk
> > Subject: Generating a spam score
> >
> > I am looking to program a feature that can pass E-mail text through a
> > rule-based spam filter, notably SpamAssassin, to generate a spam score
> > before the E-mail is mailed to many people using ColdFusion MX 7. If the
> > score is above a certain level, the person would have the ability to tweak
> > the E-mail to try to lower the spam score before sending it out. Has
> > anyone
> > done anything like this or does anyone know of existing code or a Web
> > service that would help with this?
> >
> > Thank you,
> > Mike Chabot
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259715
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Michael E. Carluen
Thanks Andy.  

Rey, looking forward for your next jquery blog  ;-) 

Thanks for both of your thoughts on jquery, btw.



> -Original Message-
> From: Andy Matthews [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 2:33 PM
> To: CF-Talk
> Subject: RE: Plenty of Coldfusion/Ajax frameworks. Which one for a starter
> ?
> 
> Rey's got a great set of code. I'd also be happy to share with you what
> I've
> come up with, but Rey's gotten more into it that I have.
> 
>  andy matthews
> web developer
> certified advanced coldfusion programmer
> ICGLink, Inc.
> [EMAIL PROTECTED]
> 615.370.1530 x737
> --//->
> 
> -Original Message-
> From: Michael E. Carluen [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 4:20 PM
> To: CF-Talk
> Subject: RE: Plenty of Coldfusion/Ajax frameworks. Which one for a
> starter ?
> 
> 
> Hi Ray, Andy M
> 
> I just started toying around with jquery, and been pretty impressed,
> especially with the available plugins.  Do you know any basic tutorials to
> get me up and running quicky on jquery+CF integration/implementation.  I
> tried to google it but didn't come up with anything.
> 
> Thanks,
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259714
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Ali Majdzadeh
Great reply Rey. Thanks. Another question is what IDE do you suggest for these 
frameworks? I've heard of some AJAX IDE's (WYSIWYG/NON WYSIWYG) but not sure 
they are real help. Please give me your opinion.
Thanks
Benign

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259713
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Andy Matthews
Rey's got a great set of code. I'd also be happy to share with you what I've
come up with, but Rey's gotten more into it that I have.



-Original Message-
From: Michael E. Carluen [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 08, 2006 4:20 PM
To: CF-Talk
Subject: RE: Plenty of Coldfusion/Ajax frameworks. Which one for a
starter ?


Hi Ray, Andy M

I just started toying around with jquery, and been pretty impressed,
especially with the available plugins.  Do you know any basic tutorials to
get me up and running quicky on jquery+CF integration/implementation.  I
tried to google it but didn't come up with anything.

Thanks,


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259712
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Michael E. Carluen
Hi Ray, Andy M

I just started toying around with jquery, and been pretty impressed,
especially with the available plugins.  Do you know any basic tutorials to
get me up and running quicky on jquery+CF integration/implementation.  I
tried to google it but didn't come up with anything.

Thanks,


> -Original Message-
> From: Rey Bango [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 1:04 PM
> To: CF-Talk
> Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter
> ?
> 
> benign,
> 
> Let me preface this by saying that Ajax features are not fancy, whiz
> bang effects. Those effects are typically additional DOM/CSS/DHTML
> components created to compliment Ajax functionality.
> 
> If all you want is straight Ajax with some level of CF integration, then
> look at AjaxCFC (www.robgonda.com) or JSMX (www.lalabird.com). These are
> lightweight options that offer very good Ajax features and nice CF
> coupling.
> 
> If you want Ajax integrated with the effects and some level of CF
> integration, then look at MXAjax.
> 
> I started off with AjaxCFC and then decided to use one of the more
> popular & maintstream libraries on the market. These include:
> 
> jQuery (http://www.jquery.com)
> Prototype/Scriptaculous (http://script.aculo.us/)
> Yahoo User Interface (http://developer.yahoo.com/yui/)
> Dojo (http://dojotoolkit.com/)
> 
> I personally chose jQuery because of its power, documentation, learning
> curve and simple syntax. While all of the tools I listed are very
> powerful, only YUI, IMO, came close in terms of completeness in regards
> to the criteria I just mentioned (power, documentation, learning curve
> and simple syntax). The community is awesome as well.
> 
> There are several CF'ers here that have adopted jQuery so if you need
> some assistance feel free to ask.
> 
> Rey...
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259711
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Eric Haskins
Also take into consideration some of these bots look for the form action and
fields and create their own post to the URL. I started using an accesskey on
some of my customers OLD formmail.cgi  Wrote a custom verification looking
for a certain value (hidden accesskey). Also renamed the script.

This cutdown on the Spam right off the bat. This was on top of javascript
email validation

Eric Haskins
Web Systems Developer

On 11/8/06, Bobby Hartsfield <[EMAIL PROTECTED]> wrote:
>
> Godaddy uses captchas on their renewal form but I also noticed that there
> is
> no submit button available until you actually click in the box to type the
> captcha. Has anyone tried anything similar, maybe a checkbox or something,
> and if so did it help?
>
> And of course...
> http://acoderslife.com/downloads/bhcaptcha/
>
> :-)
>
> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 2:41 PM
> To: CF-Talk
> Subject: RE: Help with Form Validation Against Spam
>
> What about putting a Javascript confirmation upon form submission that
> sets a value:
>
>
> 
>
> In the above line, the [SET VALUE] could set a hidden form field to a
> predefined value. The confirmation is a bit cheesy, but I am guessing
> spammers don't actually "run " the live page and therefore wouldn't set
> the hidden field. And, you could randomize the field for each page
> refresh so it couldn't be guessed.
>
>
> ...
> Ben Nadel
> Certified Advanced ColdFusion MX7 Developer
> www.bennadel.com
>
> Need ColdFusion Help?
> www.bennadel.com/ask-ben/
>
>
> -Original Message-
> From: Aaron Roberson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 2:34 PM
> To: CF-Talk
> Subject: Re: Help with Form Validation Against Spam
>
> I know that nobody wants to put their site visitors through the trouble
> of entering some anti-spam verification code into the form but in this
> case I really don't think that Capthca or Math is the right solution.
>
> I would rather just use a regular expression. The reason is that email
> newsletter subscriptions are delicate. People are already hesitant about
> subscribing and I don't want to make them beg for it.
>
> I didn't think about checking if the first name and last name are the
> same, I may try that (and count my losses when/if anybody with the same
> first and last name tries to enroll).
>
> I may use Math or Lyla Captcha on other forms on my site though, so
> thank you for the links.
>
> -Aaron
>
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259710
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Bobby Hartsfield
Godaddy uses captchas on their renewal form but I also noticed that there is
no submit button available until you actually click in the box to type the
captcha. Has anyone tried anything similar, maybe a checkbox or something,
and if so did it help?

And of course...
http://acoderslife.com/downloads/bhcaptcha/

:-)

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 2:41 PM
To: CF-Talk
Subject: RE: Help with Form Validation Against Spam

What about putting a Javascript confirmation upon form submission that
sets a value:


 

In the above line, the [SET VALUE] could set a hidden form field to a
predefined value. The confirmation is a bit cheesy, but I am guessing
spammers don't actually "run " the live page and therefore wouldn't set
the hidden field. And, you could randomize the field for each page
refresh so it couldn't be guessed. 


...
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 2:34 PM
To: CF-Talk
Subject: Re: Help with Form Validation Against Spam

I know that nobody wants to put their site visitors through the trouble
of entering some anti-spam verification code into the form but in this
case I really don't think that Capthca or Math is the right solution.

I would rather just use a regular expression. The reason is that email
newsletter subscriptions are delicate. People are already hesitant about
subscribing and I don't want to make them beg for it.

I didn't think about checking if the first name and last name are the
same, I may try that (and count my losses when/if anybody with the same
first and last name tries to enroll).

I may use Math or Lyla Captcha on other forms on my site though, so
thank you for the links.

-Aaron





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259709
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: PayPal Pro 2.0 requirements

2006-11-08 Thread Dan Vega
I would change hosts in a second. It is a very popular solution (versign)
that you should be able to use. If you have any problems let me  know.

On 11/8/06, Max Hamby <[EMAIL PROTECTED]> wrote:
>
> Dan,
> It looks like it would be easy to implement, but the installation of the
> class file is a no go for my host. According to them, they don't have it
> installed and they "don't allow any custom tags or other 3rd party
> software
> on the shared Cold Fusion servers."
>
> Unless there is some other way (anybody?), I guess I'll have to change
> hosts
> or gateway/merchant solutions.
>
> ~Max
>
> On 11/8/06, Dan Vega <[EMAIL PROTECTED]> wrote:
> >
> > I have 2 sites that I recently integrated. The great thing is that it
> > still
> > uses versigns old jar and class files. I am running a cfx downloaded
> from
> > the paypal manager. Are you having trouble using it? It is fairly easy
> to
> > get up and running.
> >
> > On 11/8/06, Max Hamby <[EMAIL PROTECTED]> wrote:
> > >
> > > Has anyone implemented PayPal Pro 2.0 (which is apparently orriginally
> > > owned
> > > by Verisign)?
> > >
> > > The integration information I got from them requires the installation
> of
> > a
> > > java class file which my host doesn't want to install on a shared
> > hosting
> > > box.  Unfortunately, my client would like to use PayPal if at all
> > > possible.
> > >
> > > Does anyone know if its possible to process without the class file
> > (CFHTTP
> > > or other)? Or am I stuck looking for a different host or
> > gateway/merchant
> > > account?
> > >
> > > Thanks,
> > > ~Max
> > >
> > >
> > >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259708
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Aaron Roberson
Sandra,

I had read of that technique in the comments of Ben Nadel's blog post
about his Math technique. At present I get a few spam submissions a
week and they are all of the same format (first and last name in both
fields and a well formed email address). It does make me thing that
maybe I am only dealing with one spam bot, but I am sure there will be
more in the future.

My action page is a component, so I would rather not reference the
session scope in the CFC. How exactly do I check against the session
variable in that case?

-Aaron

On 11/8/06, Sandra Clark <[EMAIL PROTECTED]> wrote:
> How bout setting a session variable on the form when loaded and checking for
> it after submittal?  Most spammers use automatic submittal, so its not from
> your site and hence no session variable.  They can't emulate it and its
> invisible to your users.
>
>
> Sandra Clark
> ==
> http://www.shayna.com
> Training in Cascading Style Sheets and Accessibility
>
>
> -Original Message-
> From: Aaron Roberson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 3:14 PM
> To: CF-Talk
> Subject: Re: Help with Form Validation Against Spam
>
> Ben,
>
> The nice thing about your Javascript suggestion is that people will think
> that they are just confirming their subscription (which is true) while in
> reality it would be filtering spam. Another thing is that they will already
> be committed having submitted the form, and would likely click the confirm
> button.
>
> A couple of cons of using your JavaScript suggestion should be noted.
> The confirmation dialog is annoying, especially in IE since it makes a
> noise.Secondly, some people may have JavaScript disabled. Third, people may
> hesitate completing any other forms on the site thinking that they will also
> have a confirmation on submit which is annoying.
>
> The good thing is that the newsletter form is typically something a visitor
> would only fill out once. They would not be annoyed by confirmation dialogs
> again.
>
> I may choose to use JavaScript as you have suggested instead of checking if
> the first name and last name is the same. I'm not sure.
>
> -Aaron
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259707
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Check URL

2006-11-08 Thread Ray Champagne
Check the HTTP header?  200 OK.


> -Original Message-
> From: Orlini, Robert [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 4:15 PM
> To: CF-Talk
> Subject: Check URL
> 
> Is there any way to check whether a Home Page using .cfm loads? Maybe
checking
> if the standard CF error page displays? I know this may be vague, but it's
a
> direction to seeing if the cf server is down or is there another path I
could go?
> 
> Any advice would be helpful.
> 
> Thanks as always...y'all have given me good advice over the years.
> 
> Robert O.
> HWW
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259706
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: PayPal Pro 2.0 requirements

2006-11-08 Thread Max Hamby
Dan,
It looks like it would be easy to implement, but the installation of the
class file is a no go for my host. According to them, they don't have it
installed and they "don't allow any custom tags or other 3rd party software
on the shared Cold Fusion servers."

Unless there is some other way (anybody?), I guess I'll have to change hosts
or gateway/merchant solutions.

~Max

On 11/8/06, Dan Vega <[EMAIL PROTECTED]> wrote:
>
> I have 2 sites that I recently integrated. The great thing is that it
> still
> uses versigns old jar and class files. I am running a cfx downloaded from
> the paypal manager. Are you having trouble using it? It is fairly easy to
> get up and running.
>
> On 11/8/06, Max Hamby <[EMAIL PROTECTED]> wrote:
> >
> > Has anyone implemented PayPal Pro 2.0 (which is apparently orriginally
> > owned
> > by Verisign)?
> >
> > The integration information I got from them requires the installation of
> a
> > java class file which my host doesn't want to install on a shared
> hosting
> > box.  Unfortunately, my client would like to use PayPal if at all
> > possible.
> >
> > Does anyone know if its possible to process without the class file
> (CFHTTP
> > or other)? Or am I stuck looking for a different host or
> gateway/merchant
> > account?
> >
> > Thanks,
> > ~Max
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259705
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Check URL

2006-11-08 Thread Orlini, Robert
Is there any way to check whether a Home Page using .cfm loads? Maybe checking 
if the standard CF error page displays? I know this may be vague, but it's a 
direction to seeing if the cf server is down or is there another path I could 
go?

Any advice would be helpful.

Thanks as always...y'all have given me good advice over the years.

Robert O.
HWW


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259704
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PayPal Pro 2.0 requirements

2006-11-08 Thread Dan Vega
I have 2 sites that I recently integrated. The great thing is that it still
uses versigns old jar and class files. I am running a cfx downloaded from
the paypal manager. Are you having trouble using it? It is fairly easy to
get up and running.

On 11/8/06, Max Hamby <[EMAIL PROTECTED]> wrote:
>
> Has anyone implemented PayPal Pro 2.0 (which is apparently orriginally
> owned
> by Verisign)?
>
> The integration information I got from them requires the installation of a
> java class file which my host doesn't want to install on a shared hosting
> box.  Unfortunately, my client would like to use PayPal if at all
> possible.
>
> Does anyone know if its possible to process without the class file (CFHTTP
> or other)? Or am I stuck looking for a different host or gateway/merchant
> account?
>
> Thanks,
> ~Max
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259703
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


PayPal Pro 2.0 requirements

2006-11-08 Thread Max Hamby
Has anyone implemented PayPal Pro 2.0 (which is apparently orriginally owned
by Verisign)?

The integration information I got from them requires the installation of a
java class file which my host doesn't want to install on a shared hosting
box.  Unfortunately, my client would like to use PayPal if at all possible.

Does anyone know if its possible to process without the class file (CFHTTP
or other)? Or am I stuck looking for a different host or gateway/merchant
account?

Thanks,
~Max


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259702
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfhttp QUESTION

2006-11-08 Thread Robert Harrison
Now I'm canning the EXCEL COM object and using CFHTTP to parse a comma
delimited format. This works fine when the data is perfect. But when this
data is missing a column from a row and doen't have the right number of
columns it says wrong number of rows and craps out. 
 
Here's a perfect data set... this works:
 
Email Address,First Name,Last Name,Company,Title,Address Line 1,Address Line
2,City,State,Zip,Phone,Fax,Website
[EMAIL PROTECTED],Avi,Hayon,,
[EMAIL PROTECTED],Anthony V.,Ambrose RPLU,,
[EMAIL PROTECTED],Arturo,Antezan,,
[EMAIL PROTECTED],Anthony R.,Armstrong,,
[EMAIL PROTECTED],Arthur,Baden,,
[EMAIL PROTECTED],Alan H.,Barbanel,,
[EMAIL PROTECTED],Abbey M.,Gallegos,,
[EMAIL PROTECTED],Amy J.,Berezein,,
 
 
When the data looks like this (an actual Excel csv file) it craps:
 
[EMAIL PROTECTED],Avi,Hayon,,
[EMAIL PROTECTED],Anthony V.,Ambrose RPLU,,
[EMAIL PROTECTED],Arturo,Antezan,,
[EMAIL PROTECTED],Anthony R.,Armstrong,,
[EMAIL PROTECTED],Arthur,Baden,,
[EMAIL PROTECTED],Alan H.,Barbanel,,
[EMAIL PROTECTED],Abbey M.,Gallegos
[EMAIL PROTECTED],Amy J.,Berezein 
 
 
Any ideas
 
Thanks,
 
Robert


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259701
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Rey Bango
benign,

Let me preface this by saying that Ajax features are not fancy, whiz 
bang effects. Those effects are typically additional DOM/CSS/DHTML 
components created to compliment Ajax functionality.

If all you want is straight Ajax with some level of CF integration, then 
look at AjaxCFC (www.robgonda.com) or JSMX (www.lalabird.com). These are 
lightweight options that offer very good Ajax features and nice CF 
coupling.

If you want Ajax integrated with the effects and some level of CF 
integration, then look at MXAjax.

I started off with AjaxCFC and then decided to use one of the more 
popular & maintstream libraries on the market. These include:

jQuery (http://www.jquery.com)
Prototype/Scriptaculous (http://script.aculo.us/)
Yahoo User Interface (http://developer.yahoo.com/yui/)
Dojo (http://dojotoolkit.com/)

I personally chose jQuery because of its power, documentation, learning 
curve and simple syntax. While all of the tools I listed are very 
powerful, only YUI, IMO, came close in terms of completeness in regards 
to the criteria I just mentioned (power, documentation, learning curve 
and simple syntax). The community is awesome as well.

There are several CF'ers here that have adopted jQuery so if you need 
some assistance feel free to ask.

Rey...

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259700
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Aaron Roberson
Unfortunately, I can't create flash forms since I am using BlueDragon.
I would have to create the form in Flash manually, which is an idea...

-Aaron

On 11/8/06, Teddy Payne <[EMAIL PROTECTED]> wrote:
> I mean most people use the flash player not flash forms.
>
> Teddy
>
> On 11/8/06, Teddy Payne <[EMAIL PROTECTED]> wrote:
> >
> > Create a small flash form.  Most people use it and should prevent most
> > bots from triggering submitted events, since it is a compiled swf.
> >
> > Teddy
> >
> > On 11/8/06, Aaron Roberson <[EMAIL PROTECTED]> wrote:
> > >
> > > Ben,
> > >
> > > The nice thing about your Javascript suggestion is that people will
> > > think that they are just confirming their subscription (which is true)
> > > while in reality it would be filtering spam. Another thing is that
> > > they will already be committed having submitted the form, and would
> > > likely click the confirm button.
> > >
> > > A couple of cons of using your JavaScript suggestion should be noted.
> > > The confirmation dialog is annoying, especially in IE since it makes a
> > > noise.Secondly, some people may have JavaScript disabled. Third,
> > > people may hesitate completing any other forms on the site thinking
> > > that they will also have a confirmation on submit which is annoying.
> > >
> > > The good thing is that the newsletter form is typically something a
> > > visitor would only fill out once. They would not be annoyed by
> > > confirmation dialogs again.
> > >
> > > I may choose to use JavaScript as you have suggested instead of
> > > checking if the first name and last name is the same. I'm not sure.
> > >
> > > -Aaron
> > >
> > >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259699
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Sandra Clark
How bout setting a session variable on the form when loaded and checking for
it after submittal?  Most spammers use automatic submittal, so its not from
your site and hence no session variable.  They can't emulate it and its
invisible to your users. 


Sandra Clark
==
http://www.shayna.com
Training in Cascading Style Sheets and Accessibility


-Original Message-
From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 3:14 PM
To: CF-Talk
Subject: Re: Help with Form Validation Against Spam

Ben,

The nice thing about your Javascript suggestion is that people will think
that they are just confirming their subscription (which is true) while in
reality it would be filtering spam. Another thing is that they will already
be committed having submitted the form, and would likely click the confirm
button.

A couple of cons of using your JavaScript suggestion should be noted.
The confirmation dialog is annoying, especially in IE since it makes a
noise.Secondly, some people may have JavaScript disabled. Third, people may
hesitate completing any other forms on the site thinking that they will also
have a confirmation on submit which is annoying.

The good thing is that the newsletter form is typically something a visitor
would only fill out once. They would not be annoyed by confirmation dialogs
again.

I may choose to use JavaScript as you have suggested instead of checking if
the first name and last name is the same. I'm not sure.

-Aaron



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259698
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Teddy Payne
I mean most people use the flash player not flash forms.

Teddy

On 11/8/06, Teddy Payne <[EMAIL PROTECTED]> wrote:
>
> Create a small flash form.  Most people use it and should prevent most
> bots from triggering submitted events, since it is a compiled swf.
>
> Teddy
>
> On 11/8/06, Aaron Roberson <[EMAIL PROTECTED]> wrote:
> >
> > Ben,
> >
> > The nice thing about your Javascript suggestion is that people will
> > think that they are just confirming their subscription (which is true)
> > while in reality it would be filtering spam. Another thing is that
> > they will already be committed having submitted the form, and would
> > likely click the confirm button.
> >
> > A couple of cons of using your JavaScript suggestion should be noted.
> > The confirmation dialog is annoying, especially in IE since it makes a
> > noise.Secondly, some people may have JavaScript disabled. Third,
> > people may hesitate completing any other forms on the site thinking
> > that they will also have a confirmation on submit which is annoying.
> >
> > The good thing is that the newsletter form is typically something a
> > visitor would only fill out once. They would not be annoyed by
> > confirmation dialogs again.
> >
> > I may choose to use JavaScript as you have suggested instead of
> > checking if the first name and last name is the same. I'm not sure.
> >
> > -Aaron
> >
> > 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259697
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Teddy Payne
Create a small flash form.  Most people use it and should prevent most bots
from triggering submitted events, since it is a compiled swf.

Teddy

On 11/8/06, Aaron Roberson <[EMAIL PROTECTED]> wrote:
>
> Ben,
>
> The nice thing about your Javascript suggestion is that people will
> think that they are just confirming their subscription (which is true)
> while in reality it would be filtering spam. Another thing is that
> they will already be committed having submitted the form, and would
> likely click the confirm button.
>
> A couple of cons of using your JavaScript suggestion should be noted.
> The confirmation dialog is annoying, especially in IE since it makes a
> noise.Secondly, some people may have JavaScript disabled. Third,
> people may hesitate completing any other forms on the site thinking
> that they will also have a confirmation on submit which is annoying.
>
> The good thing is that the newsletter form is typically something a
> visitor would only fill out once. They would not be annoyed by
> confirmation dialogs again.
>
> I may choose to use JavaScript as you have suggested instead of
> checking if the first name and last name is the same. I'm not sure.
>
> -Aaron
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259696
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Aaron Roberson
Ben,

The nice thing about your Javascript suggestion is that people will
think that they are just confirming their subscription (which is true)
while in reality it would be filtering spam. Another thing is that
they will already be committed having submitted the form, and would
likely click the confirm button.

A couple of cons of using your JavaScript suggestion should be noted.
The confirmation dialog is annoying, especially in IE since it makes a
noise.Secondly, some people may have JavaScript disabled. Third,
people may hesitate completing any other forms on the site thinking
that they will also have a confirmation on submit which is annoying.

The good thing is that the newsletter form is typically something a
visitor would only fill out once. They would not be annoyed by
confirmation dialogs again.

I may choose to use JavaScript as you have suggested instead of
checking if the first name and last name is the same. I'm not sure.

-Aaron

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259695
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Aaron Roberson
Randy,

I had thought about that, but my form is very compact because of
layout constraints (http://whitehrosemedia.com) and I don't think the
fact that we are not accepting spam will motivate people to go through
the extra steps to receive our newsletter. I am partially working off
of Steve Krug's philosophy of not making the visitor think (doing math
or decrypting Capthca) in order to subscribe.

For other forms, Captcha or Math will be fine. For the newsletter
however, I will have to find another method.

-Aaron

On 11/8/06, Adkins, Randy <[EMAIL PROTECTED]> wrote:
> I do not think it comes down to making them beg, it shows them you
> Are concerned about SPAM and since they are subscribing to a service
> You are providing, they will not have to worry about receiving spam
> notices from that Newsletter List.
>
> Captcha is a great concept and is in use in many high profiled sites.
>
> -Original Message-
> From: Aaron Roberson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 2:34 PM
> To: CF-Talk
> Subject: Re: Help with Form Validation Against Spam
>
> I know that nobody wants to put their site visitors through the trouble
> of entering some anti-spam verification code into the form but in this
> case I really don't think that Capthca or Math is the right solution.
>
> I would rather just use a regular expression. The reason is that email
> newsletter subscriptions are delicate. People are already hesitant about
> subscribing and I don't want to make them beg for it.
>
> I didn't think about checking if the first name and last name are the
> same, I may try that (and count my losses when/if anybody with the same
> first and last name tries to enroll).
>
> I may use Math or Lyla Captcha on other forms on my site though, so
> thank you for the links.
>
> -Aaron
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259694
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Reading data from a bookmark?

2006-11-08 Thread Brad Wood
Hmm, I haven't tried this yet... but are you SURE all cookies were
deleted.  Restarting your computer doesn't necessarily delete cookies
(unless you have the paranoia section of Tweak IU set to clear them on
restart).

Also there is another type of IE specific cookie I have heard called a
"XMLcookie" which is actually an XML file stored somewhere in your
application data folder.  It persists very well, even if you clear your
normal cookies.  They could be doing something tricky like that.



~Brad

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 1:36 PM
To: CF-Talk
Subject: Reading data from a bookmark?

Okay...

A co-worker and I are trying to puzzle out a very cool/odd issue with
Google
Maps and I'd like some input. We all know that the guys at Google are
level
73 wizards, but I can't even begin to imagine how they accomplish this
one.

Try this walk-through if you have a moment and care to try to solve it.
By
the way, it only appears to work in IE.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259693
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Email address domain validation code

2006-11-08 Thread Mike Chabot
I perform highly-accurate E-mail address syntax checking on addresses
that people enter, but I want to take it a bit further by attempting
to screen out transposition errors by validating that the domain
exists, or that there is an MX (mail exchange) record for the domain.
Does anyone know of free code that does this email address domain
existence checking?

Thank you,
Mike Chabot

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259692
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Generating a spam score

2006-11-08 Thread Russ
I'm planning to do this sometime in the future... Why not just install
SpamAssassin and cfexecute it?  

Russ

> -Original Message-
> From: Mike Chabot [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 2:19 PM
> To: CF-Talk
> Subject: Generating a spam score
> 
> I am looking to program a feature that can pass E-mail text through a
> rule-based spam filter, notably SpamAssassin, to generate a spam score
> before the E-mail is mailed to many people using ColdFusion MX 7. If the
> score is above a certain level, the person would have the ability to tweak
> the E-mail to try to lower the spam score before sending it out. Has
> anyone
> done anything like this or does anyone know of existing code or a Web
> service that would help with this?
> 
> Thank you,
> Mike Chabot
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259691
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Adkins, Randy
I do not think it comes down to making them beg, it shows them you
Are concerned about SPAM and since they are subscribing to a service
You are providing, they will not have to worry about receiving spam 
notices from that Newsletter List.

Captcha is a great concept and is in use in many high profiled sites.

-Original Message-
From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 2:34 PM
To: CF-Talk
Subject: Re: Help with Form Validation Against Spam

I know that nobody wants to put their site visitors through the trouble
of entering some anti-spam verification code into the form but in this
case I really don't think that Capthca or Math is the right solution.

I would rather just use a regular expression. The reason is that email
newsletter subscriptions are delicate. People are already hesitant about
subscribing and I don't want to make them beg for it.

I didn't think about checking if the first name and last name are the
same, I may try that (and count my losses when/if anybody with the same
first and last name tries to enroll).

I may use Math or Lyla Captcha on other forms on my site though, so
thank you for the links.

-Aaron



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259690
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Ben Nadel
What about putting a Javascript confirmation upon form submission that
sets a value:


 

In the above line, the [SET VALUE] could set a hidden form field to a
predefined value. The confirmation is a bit cheesy, but I am guessing
spammers don't actually "run " the live page and therefore wouldn't set
the hidden field. And, you could randomize the field for each page
refresh so it couldn't be guessed. 


..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 2:34 PM
To: CF-Talk
Subject: Re: Help with Form Validation Against Spam

I know that nobody wants to put their site visitors through the trouble
of entering some anti-spam verification code into the form but in this
case I really don't think that Capthca or Math is the right solution.

I would rather just use a regular expression. The reason is that email
newsletter subscriptions are delicate. People are already hesitant about
subscribing and I don't want to make them beg for it.

I didn't think about checking if the first name and last name are the
same, I may try that (and count my losses when/if anybody with the same
first and last name tries to enroll).

I may use Math or Lyla Captcha on other forms on my site though, so
thank you for the links.

-Aaron



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259689
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Reading data from a bookmark?

2006-11-08 Thread Andy Matthews
Okay...

A co-worker and I are trying to puzzle out a very cool/odd issue with Google
Maps and I'd like some input. We all know that the guys at Google are level
73 wizards, but I can't even begin to imagine how they accomplish this one.

Try this walk-through if you have a moment and care to try to solve it. By
the way, it only appears to work in IE.

1) Visit http://maps.google.com/
2) Add this page to your bookmarks, then view it's properties. It should be
titled "Google Maps", and it's URL should be http://maps.google.com/.
3) Delete this favorite.
4) Next, do a search for something (your own address for example), then
immediately add it as a favorite. I search for my office address (7003
Chadwick Dr, 37027). Then add it as a bookmark.
5) The new bookmark's title is "7003 Chadwick Dr, 37027 - Google Maps" and
it's URL is the same as before "http://maps.google.com/";.

Yet, when I visit another website, cnn.com for example, then click the
bookmark, it takes me straight to the map location for my office.

I can even close my browser window completely and it does the same thing.

Interestingly enough, when I click the bookmark, it loads the very front
page of Google Maps briefly before changing over to my bookmarked search
result.

One thing to note, my co-worker and I thought that Google might somehow be
reading the title of the bookmark, but it doesn't seem to pass that
information in any way. I decided to be sneaky and change the title of the
bookmark to my home address to test and it didn't work. It still loaded my
office address.

I've even restarted my computer to make sure my sessions/cookies were
cleared out and it still worked.

So my question is, does anyone have a clue how Google accomplishes this?
Because it would be perfect for this site I'm building using AJAX.





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259688
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Aaron Roberson
I know that nobody wants to put their site visitors through the
trouble of entering some anti-spam verification code into the form but
in this case I really don't think that Capthca or Math is the right
solution.

I would rather just use a regular expression. The reason is that email
newsletter subscriptions are delicate. People are already hesitant
about subscribing and I don't want to make them beg for it.

I didn't think about checking if the first name and last name are the
same, I may try that (and count my losses when/if anybody with the
same first and last name tries to enroll).

I may use Math or Lyla Captcha on other forms on my site though, so
thank you for the links.

-Aaron

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259687
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Joshua Cyr
I like the Yahoo UI library.  Dojo is easy, but not well documented and its
onload functionality runs after everything else, which can mean important UI
layouts render after all other JS is run (such as google adsense, analytics,
etc).  I ended up dropping dojo for spry which isnt' quite as feature rich,
but renders much faster. 

-Original Message-
From: Robyn [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 2:19 PM
To: CF-Talk
Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

Not CF specific, but I'm currently using Prototype and scriptaculous. 
Looking into Dojo.

Dan Vega wrote:
> I am a big fan of Yahoo and Yahoo ext
> 
> On 11/8/06, Mike Chabot <[EMAIL PROTECTED]> wrote:
>> I looked at a lot of the frameworks. The problem is that there are at 
>> least 10 really good frameworks, and they are all significantly 
>> different. The one you start with may depend on what you are looking 
>> to accomplish. If you are looking for a certain visual effect, that 
>> is different than a simple Ajax call from the server. I tried to 
>> start with the Google library, but ruled that out since I didn't like 
>> the idea of having Java generate JavaScript.
>> I
>> am currently using jQuery. It does have some bugs, but it is pretty 
>> good and there is a lot of information about it on the Internet. 
>> moo.fx is a good one, but it is a small library that focuses on a few 
>> visual effects.
>>
>> Good luck,
>> Mike Chabot
>>
>> On 11/8/06, Robertson-Ravo, Neil (RX) < 
>> [EMAIL PROTECTED]>
>> wrote:
>>> Indeed, Spry or MXAJAX would be my food for thought.
>>>
>>>
>>>
>>>
>>>
>>>
>>> "This e-mail is from Reed Exhibitions (Gateway House, 28 The 
>>> Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of 
>>> Reed Business, Registered in England, Number 678540.  It contains 
>>> information which is confidential and may also be privileged.  It is 
>>> for the exclusive use of the intended recipient(s).  If you are not 
>>> the intended recipient(s) please note that any form of distribution, 
>>> copying or use of this communication or
>> the
>>> information in it is strictly prohibited and may be unlawful.  If 
>>> you
>> have
>>> received this communication in error please return it to the sender 
>>> or call our switchboard on +44 (0) 20 89107910.  The opinions 
>>> expressed within this communication are not necessarily those 
>>> expressed by Reed Exhibitions."
>>> Visit our website at http://www.reedexpo.com
>>>
>>> -Original Message-
>>> From: Raymond Camden
>>> To: CF-Talk
>>> Sent: Wed Nov 08 15:04:59 2006
>>> Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a 
>>> starter?
>>>
>>> While not CF specific, I'd really recommend Spry:
>>>
>>> http://labs.adobe.com/technologies/spry/
>>>
>>> I found it to be a _very_ easy to use AJAX framework. It is not yet 
>>> 1.0 though (well, the release is 1.3, but technically it isn't 
>>> officially done), but I've found it stable enough to use with BlogCFC.
>>>
>>>
>>> On 11/8/06, Ali Majdzadeh <[EMAIL PROTECTED]> wrote:
 Hi: I want to start AJAX. I found plenty of CF/AJAX frameworks out
>> there
>>> and some looked really great but I really need a basic documentation
>> plus
>>> ease of use cause I want to START it. Which one is the easiest 
>>> and/or
>> best
>>> with good a documentation.
 thanks
 benign


>>>
>>>
>>>
>>
> 
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259686
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Generating a spam score

2006-11-08 Thread Mike Chabot
I am looking to program a feature that can pass E-mail text through a
rule-based spam filter, notably SpamAssassin, to generate a spam score
before the E-mail is mailed to many people using ColdFusion MX 7. If the
score is above a certain level, the person would have the ability to tweak
the E-mail to try to lower the spam score before sending it out. Has anyone
done anything like this or does anyone know of existing code or a Web
service that would help with this?

Thank you,
Mike Chabot


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259685
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Robyn
Not CF specific, but I'm currently using Prototype and scriptaculous. 
Looking into Dojo.

Dan Vega wrote:
> I am a big fan of Yahoo and Yahoo ext
> 
> On 11/8/06, Mike Chabot <[EMAIL PROTECTED]> wrote:
>> I looked at a lot of the frameworks. The problem is that there are at
>> least
>> 10 really good frameworks, and they are all significantly different. The
>> one
>> you start with may depend on what you are looking to accomplish. If you
>> are
>> looking for a certain visual effect, that is different than a simple Ajax
>> call from the server. I tried to start with the Google library, but ruled
>> that out since I didn't like the idea of having Java generate JavaScript.
>> I
>> am currently using jQuery. It does have some bugs, but it is pretty good
>> and
>> there is a lot of information about it on the Internet. moo.fx is a good
>> one, but it is a small library that focuses on a few visual effects.
>>
>> Good luck,
>> Mike Chabot
>>
>> On 11/8/06, Robertson-Ravo, Neil (RX) <
>> [EMAIL PROTECTED]>
>> wrote:
>>> Indeed, Spry or MXAJAX would be my food for thought.
>>>
>>>
>>>
>>>
>>>
>>>
>>> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
>>> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
>>> Registered in England, Number 678540.  It contains information which is
>>> confidential and may also be privileged.  It is for the exclusive use of
>>> the
>>> intended recipient(s).  If you are not the intended recipient(s) please
>>> note
>>> that any form of distribution, copying or use of this communication or
>> the
>>> information in it is strictly prohibited and may be unlawful.  If you
>> have
>>> received this communication in error please return it to the sender or
>>> call
>>> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
>>> this
>>> communication are not necessarily those expressed by Reed Exhibitions."
>>> Visit our website at http://www.reedexpo.com
>>>
>>> -Original Message-
>>> From: Raymond Camden
>>> To: CF-Talk
>>> Sent: Wed Nov 08 15:04:59 2006
>>> Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a
>>> starter?
>>>
>>> While not CF specific, I'd really recommend Spry:
>>>
>>> http://labs.adobe.com/technologies/spry/
>>>
>>> I found it to be a _very_ easy to use AJAX framework. It is not yet
>>> 1.0 though (well, the release is 1.3, but technically it isn't
>>> officially done), but I've found it stable enough to use with BlogCFC.
>>>
>>>
>>> On 11/8/06, Ali Majdzadeh <[EMAIL PROTECTED]> wrote:
 Hi: I want to start AJAX. I found plenty of CF/AJAX frameworks out
>> there
>>> and some looked really great but I really need a basic documentation
>> plus
>>> ease of use cause I want to START it. Which one is the easiest and/or
>> best
>>> with good a documentation.
 thanks
 benign


>>>
>>>
>>>
>>
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259684
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Dan Vega
I am a big fan of Yahoo and Yahoo ext

On 11/8/06, Mike Chabot <[EMAIL PROTECTED]> wrote:
>
> I looked at a lot of the frameworks. The problem is that there are at
> least
> 10 really good frameworks, and they are all significantly different. The
> one
> you start with may depend on what you are looking to accomplish. If you
> are
> looking for a certain visual effect, that is different than a simple Ajax
> call from the server. I tried to start with the Google library, but ruled
> that out since I didn't like the idea of having Java generate JavaScript.
> I
> am currently using jQuery. It does have some bugs, but it is pretty good
> and
> there is a lot of information about it on the Internet. moo.fx is a good
> one, but it is a small library that focuses on a few visual effects.
>
> Good luck,
> Mike Chabot
>
> On 11/8/06, Robertson-Ravo, Neil (RX) <
> [EMAIL PROTECTED]>
> wrote:
> >
> > Indeed, Spry or MXAJAX would be my food for thought.
> >
> >
> >
> >
> >
> >
> > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> > Registered in England, Number 678540.  It contains information which is
> > confidential and may also be privileged.  It is for the exclusive use of
> > the
> > intended recipient(s).  If you are not the intended recipient(s) please
> > note
> > that any form of distribution, copying or use of this communication or
> the
> > information in it is strictly prohibited and may be unlawful.  If you
> have
> > received this communication in error please return it to the sender or
> > call
> > our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> > this
> > communication are not necessarily those expressed by Reed Exhibitions."
> > Visit our website at http://www.reedexpo.com
> >
> > -Original Message-
> > From: Raymond Camden
> > To: CF-Talk
> > Sent: Wed Nov 08 15:04:59 2006
> > Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a
> > starter?
> >
> > While not CF specific, I'd really recommend Spry:
> >
> > http://labs.adobe.com/technologies/spry/
> >
> > I found it to be a _very_ easy to use AJAX framework. It is not yet
> > 1.0 though (well, the release is 1.3, but technically it isn't
> > officially done), but I've found it stable enough to use with BlogCFC.
> >
> >
> > On 11/8/06, Ali Majdzadeh <[EMAIL PROTECTED]> wrote:
> > > Hi: I want to start AJAX. I found plenty of CF/AJAX frameworks out
> there
> > and some looked really great but I really need a basic documentation
> plus
> > ease of use cause I want to START it. Which one is the easiest and/or
> best
> > with good a documentation.
> > > thanks
> > > benign
> > >
> > >
> >
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259683
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFREPORT problem: Report compilation error. Error at (158, 21 : null

2006-11-08 Thread Kris Jones
Hi Dave,

I saw at least 2 posts suggesting that re-saving the reports with the
patched report builder was the fix, but many more saying it wasn't the
the fix. And, in our case, the reports themselves had been created
with the 7.0.2 report builder, but were deployed on a server that was
running 7.0.1 or 7.0. (And, of course, the report builder itself isn't
installed on the QA and Production servers.)

Apparently the updater to 7.0.2 had a little bug where in certain
circumstances that one outdated .jar file was not getting removed when
it should have. Stopping the CF Application service, removing the .jar
file, and restarting the service fixed the problem immediately.

> I ran into a similar problem about two weeks ago. I think the fix was to
> reinstall the latest Report Builder, open the reports with that, and resave
> them.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259681
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Mike Chabot
I looked at a lot of the frameworks. The problem is that there are at least
10 really good frameworks, and they are all significantly different. The one
you start with may depend on what you are looking to accomplish. If you are
looking for a certain visual effect, that is different than a simple Ajax
call from the server. I tried to start with the Google library, but ruled
that out since I didn't like the idea of having Java generate JavaScript. I
am currently using jQuery. It does have some bugs, but it is pretty good and
there is a lot of information about it on the Internet. moo.fx is a good
one, but it is a small library that focuses on a few visual effects.

Good luck,
Mike Chabot

On 11/8/06, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> Indeed, Spry or MXAJAX would be my food for thought.
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Raymond Camden
> To: CF-Talk
> Sent: Wed Nov 08 15:04:59 2006
> Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a
> starter?
>
> While not CF specific, I'd really recommend Spry:
>
> http://labs.adobe.com/technologies/spry/
>
> I found it to be a _very_ easy to use AJAX framework. It is not yet
> 1.0 though (well, the release is 1.3, but technically it isn't
> officially done), but I've found it stable enough to use with BlogCFC.
>
>
> On 11/8/06, Ali Majdzadeh <[EMAIL PROTECTED]> wrote:
> > Hi: I want to start AJAX. I found plenty of CF/AJAX frameworks out there
> and some looked really great but I really need a basic documentation plus
> ease of use cause I want to START it. Which one is the easiest and/or best
> with good a documentation.
> > thanks
> > benign
> >
> >
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259682
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: What *NOT* to do to screw up my google rankings...

2006-11-08 Thread Bryan Stevenson
redirects will kill your rankings!!

Fresh content is a good thing (within reason...i.e. totally different subject 
matter is death, but fresh content about e-comm should be OK).  So I'd update 
the text on your exisitng pages.  Bots like the fresh content as it re-assures 
them that your site is not stale.

If you do remove and pages you can add the fact that they have been removed in 
robots.txt or mabye it was your .HTAccess file (one of those you can tell bots 
"page xyz.cfm is gone").  Oterwise they think pages are going missing and lower 
your rank.  If you rerplace files with new file names, those files I just 
mentioned can also be used to tell bots "file xyz.cfm can now be found at 
abc.cfm").

HTH

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259680
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter ?

2006-11-08 Thread Robertson-Ravo, Neil (RX)
Indeed, Spry or MXAJAX would be my food for thought.



 


"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Raymond Camden
To: CF-Talk
Sent: Wed Nov 08 15:04:59 2006
Subject: Re: Plenty of Coldfusion/Ajax frameworks. Which one for a starter?

While not CF specific, I'd really recommend Spry:

http://labs.adobe.com/technologies/spry/

I found it to be a _very_ easy to use AJAX framework. It is not yet
1.0 though (well, the release is 1.3, but technically it isn't
officially done), but I've found it stable enough to use with BlogCFC.


On 11/8/06, Ali Majdzadeh <[EMAIL PROTECTED]> wrote:
> Hi: I want to start AJAX. I found plenty of CF/AJAX frameworks out there
and some looked really great but I really need a basic documentation plus
ease of use cause I want to START it. Which one is the easiest and/or best
with good a documentation.
> thanks
> benign
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259679
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: What *NOT* to do to screw up my google rankings...

2006-11-08 Thread Brad Wood
Yeah, the 302 redirect does crazy things to Google.  In the past if A
302 redirected to B, then A would eventually drop of the search results.
(among other nasty page jacking things...)

~Brad

-Original Message-
From: Albert Bussolino [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 11:59 AM
To: CF-Talk
Subject: Re: What *NOT* to do to screw up my google rankings...

On 11/8/06, Will Tomlinson <[EMAIL PROTECTED]> wrote:
>Would it hurt to put a cflocation on them, pointing to the new store?
Placing dynamic >s to the matching page in the store isn't
really an option.

Yes, don't use it ... try to redirect with 301 status code instead:




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259678
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Help with Form Validation Against Spam

2006-11-08 Thread Jordan Michaels
Aaron Roberson wrote:
> I have a newsletter form on my website that accepts frist name, last
> name and email. The sorry spam crawlers are submitting bogus
> information into the form. Most of the time, they are sending the
> first name and last name in both name fields so that I recieve
> something like this:
> 
> You have a new subscriber to your e-newsletter:
> 
> First Name: David Boswell
> Last Name: David Boswell
> Email Address: [EMAIL PROTECTED]
> 
> How can I make it so that each name field only accepts one word with no 
> spaces?
> 
> I made several attempts at this using cfform and regular expressions
> but I'm not very good with regular expressions so I couldn't figure it
> out.
> 
> Thanks for the help,
> Aaron

This is a perfect situation where CAPTCHA's would be very useful.

Take a look at LylaCaptcha. It's quick, easy, and works great with
keeping out the riff-raff spam bots on your forms:

http://lyla.maestropublishing.com/

Hope this helps!

-- 
Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Blue Dragon Alliance Member
[EMAIL PROTECTED]

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259677
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Help with Form Validation Against Spam

2006-11-08 Thread Ben Nadel
Be careful, some names have a space in it "Bobby Jo". 

You could check to make sure that first name and last name are
different... However, if you watch Curb Your Enthusiasm, you know that
is not a good solution (Remember Lewis Lewis and the kideny??). 

The best bet is to go with some other method. The CAPTCHA stuff is
really good. I use math to stop spammers:
 
http://www.bennadel.com/blog/197-How-I-Stop-Spammers-On-My-ColdFusion-Bl
og.htm


By using a method that doesn't base itself on the values of the names
entered you don't have to worry about people's crazy names.

..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 1:08 PM
To: CF-Talk
Subject: Help with Form Validation Against Spam

I have a newsletter form on my website that accepts frist name, last
name and email. The sorry spam crawlers are submitting bogus information
into the form. Most of the time, they are sending the first name and
last name in both name fields so that I recieve something like this:

You have a new subscriber to your e-newsletter:

First Name: David Boswell
Last Name: David Boswell
Email Address: [EMAIL PROTECTED]

How can I make it so that each name field only accepts one word with no
spaces?

I made several attempts at this using cfform and regular expressions but
I'm not very good with regular expressions so I couldn't figure it out.

Thanks for the help,
Aaron



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259676
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Help with Form Validation Against Spam

2006-11-08 Thread Aaron Roberson
I have a newsletter form on my website that accepts frist name, last
name and email. The sorry spam crawlers are submitting bogus
information into the form. Most of the time, they are sending the
first name and last name in both name fields so that I recieve
something like this:

You have a new subscriber to your e-newsletter:

First Name: David Boswell
Last Name: David Boswell
Email Address: [EMAIL PROTECTED]

How can I make it so that each name field only accepts one word with no spaces?

I made several attempts at this using cfform and regular expressions
but I'm not very good with regular expressions so I couldn't figure it
out.

Thanks for the help,
Aaron

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259675
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: DateDiff Error Rrrrrrr

2006-11-08 Thread Ben Nadel
It looks like LastDownloadDate is just NULL in the database. 


..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Sent: Wednesday, November 08, 2006 12:48 PM
To: CF-Talk
Subject: DateDiff Error Rrr

All,

I'm trying to fix someone's code and I'm getting this error within a
datediff.  
When I do a cfdump on the query variable UserCoupon.LastDownloadDate I
get [empty string].  However when I do the query myself I get a single
record returned. Is there something wrong with this syntax.  This code
was originally written against MSAccess, it's been since moved to SQL
Server.

Any help would be much appreciated.

Error starts with ...
Null Pointers are another name for undefined values. 

 
The error occurred in
D:\Inetpub\wwwroot\site\website\coupons\viewcoupons.cfm: line 184

182 :  
183 :   
184 :  
185 : 
186 :  

Here's the actual cf code. (Not my code)
   select *from   Coupons
where  StartDate <= #CreateODBCDateTime(now())# and   EndDate >=
#CreateODBCDateTime(now())#and CompanyID = 1   order by CouponOrder
ASC 



  
 select * 
   from   UserCoupons 
   where  UserID = #cookie.userID# and 
  CouponID = #Coupons.ID#
  

MY TROUBLESHOOTING

LASTD:
  COOKIE.USERID:
  COUPON ID:  
RESULTS:
UserCoupon.LastDownloadDate CFDUMP =  [empty string]
COOKIE.USERID: 24884
COUPON ID: 269

MY TROUBLESHOOTING

  
 
  

ERROR HAPPENS HERE

 

ERROR HAPPENS HERE


 
  
   



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259674
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: What *NOT* to do to screw up my google rankings...

2006-11-08 Thread Albert Bussolino
On 11/8/06, Will Tomlinson <[EMAIL PROTECTED]> wrote:
>Would it hurt to put a cflocation on them, pointing to the new store?
Placing dynamic >s to the matching page in the store isn't
really an option.

Yes, don't use it ... try to redirect with 301 status code instead:



-- 
Albert Bussolino

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259673
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: DateDiff Error Rrrrrrr

2006-11-08 Thread coldfusion . developer
Coupons.RefreshDays below is set to 9 as a constant.

D

> All,
> ERROR HAPPENS HERE
> 
 
>  "mm/dd/"))) GTE Coupons.RefreshDays>
> 
> ERROR HAPPENS HERE

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259672
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


What *NOT* to do to screw up my google rankings...

2006-11-08 Thread Will Tomlinson
I've successfully converted my old e-comm site to my new store app 
(neverendingcart.cfc).

It's taken me 2+ years to achieve top-ranked pages with google and my old app. 
I don't wanna screw that up with the new one. 

So, what I've done is built the new one a store residing within the old one. I 
figured this'd maintain much of my established text, keywords, etc. 

All the main content pages will remain the same, EXCEPT the actual product 
pages and checkout of course. What should I do with my old master/detail pages? 
Google has quality links to those. Would it hurt to put a cflocation on them, 
pointing to the new store? Placing dynamic s to the matching page 
in the store isn't really an option. 

Anyone have any good ideas on this? Jenn? 

Thanks,
Will 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259671
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


DateDiff Error Rrrrrrr

2006-11-08 Thread coldfusion . developer
All,

I'm trying to fix someone's code and I'm getting this error within a datediff.  
When I do a cfdump on the query variable UserCoupon.LastDownloadDate
I get [empty string].  However when I do the query myself I get a single record 
returned. Is there something wrong with this syntax.  This code was originally
written against MSAccess, it's been since moved to SQL Server.

Any help would be much appreciated.

Error starts with ...
Null Pointers are another name for undefined values. 

 
The error occurred in D:\Inetpub\wwwroot\site\website\coupons\viewcoupons.cfm: 
line 184

182 :  
183 :   
184 :  
185 : 
186 :  

Here's the actual cf code. (Not my code)
   select *from   Couponswhere  
StartDate <= #CreateODBCDateTime(now())# and   EndDate >= 
#CreateODBCDateTime(now())#and CompanyID = 1   order by CouponOrder ASC 




  
 select * 
   from   UserCoupons 
   where  UserID = #cookie.userID# and 
  CouponID = #Coupons.ID#
  

MY TROUBLESHOOTING

LASTD:
  COOKIE.USERID:
  COUPON ID:  
RESULTS:
UserCoupon.LastDownloadDate CFDUMP =  [empty string] 
COOKIE.USERID: 24884 
COUPON ID: 269

MY TROUBLESHOOTING

  
 
  

ERROR HAPPENS HERE

 

ERROR HAPPENS HERE


 
  
   

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259670
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF-Elearning Application

2006-11-08 Thread Aldon Moore
After hearing much crap about CF scalability problems and lack of developer
power, I have decided to go with CF for developing my elearning application.
It would release as an open source CF application on completion.

I am inviting companies and/or developers to contact me directly in this
regard for a copy of the requirements analysis for quote response.

As always gurus, your opinions are most vital and welcomed.

Aldon


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259669
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Cool things about cf

2006-11-08 Thread Bobby Hartsfield
Here's a simple, useful example.


function bhimginfo(imgfile){
jFileIn = createObject("java","java.io.File").init(imgfile);
ImageInfo = StructNew();
ImageObject =
createObject("java","javax.imageio.ImageIO").read(jFileIn);

imageFile = CreateObject("java", "java.io.File"); 
imageFile.init(imgfile); 
sizeb = imageFile.length(); 
sizekb = numberformat(sizeb / 1024, "9.99");
sizemb = numberformat(sizekb / 1024, ".99");

bhImageInfo = StructNew();
bhImageInfo.ImgWidth = ImageObject.getWidth();
bhImageInfo.ImgHeight = ImageObject.getHeight();
bhImageInfo.SizeB = sizeb;
bhImageInfo.SizeKB = sizekb;
bhImageInfo.SizeMB = sizemb;
}



It will return image width, height, filesize (in bytes, kilobytes, and
megabytes)


-Original Message-
From: DRE [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 11:29 AM
To: CF-Talk
Subject: Re: Cool things about cf

Ben,
I've instantiated java before using cf but its not been all that simple.
What would be a good example of a simple but very useful java instantiation
suitable for a tutorial?

DRE

On 11/8/06, Ben Nadel <[EMAIL PROTECTED]> wrote:
>
> I looked through the other responses, and I might have missed it, but
> the ability to instantiate Java objects, call underlying Java methods,
> and write your own Java classes... That's pretty freakin' nifty.
>
>
> ..
> Ben Nadel
> Certified Advanced ColdFusion MX7 Developer
> www.bennadel.com
>
> Need ColdFusion Help?
> www.bennadel.com/ask-ben/
>
> -Original Message-
> From: DRE [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 07, 2006 7:01 PM
> To: CF-Talk
> Subject: Cool things about cf
>
> Hey, I'm writing a short article about the cool things that cf comes
> with that most others dont. I've got so far:
>
> qoq
> groupd output (Hey, I think its cool)
> charting
> cfdocument
>
> I'm thinking of adding a section on custom tags but not cfc's because
> you can write classes easily in most other languages.  Flash forms seem
> mostly annoying and I dont like cfform all that much.
>
> So, stuff that is very useful but only comes with cf.  Any others you
> can think of?  I'm sure there is much that I have'nt thought of.
>
> Thanks for the moment.
>
> --
> DRE
> www.webmachineinc.com
> www.theanticool.com
>
>
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259668
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Time Out Error....HELP!!!!!

2006-11-08 Thread Brad Wood
Error Executing Database Query.
Timed out trying to establish connection

Sounds like your database or your network is hiccupping.

~Brad

-Original Message-
From: Russell Christiansen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 9:40 AM
To: CF-Talk
Subject: ColdFusion Time Out ErrorHELP!

I'm getting these sporadic time-out errors on this web application that
is supposed to be a very sophisticated assessment tool. It uses quite a
few ColdFusion queries. It's not failing at exactly the same spot, it's
been sporadic and I'm not sure what the cause is. I'm wondering if I
might have too many queries or too much cfscript. Here's one of the
errors in detail:

Error Occurred While Processing Request
Error Executing Database Query.
Timed out trying to establish connection
 
The error occurred in E:\Web Sites\Manners
Matrix\www\MMS\P\S1\Q3\qF.cfm: line 17
Called from E:\Web Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm: line 1
Called from E:\Web Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm: line 17
Called from E:\Web Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm: line 1

15 : SELECT JHQTY3, EQTY3
16 : FROM ParQuestions
17 : WHERE District = '#District#'
18 : 
19 : 

SQLSELECT JHQTY3, EQTY3 FROM ParQuestions WHERE District = '999'
DATASOURCEILOut1
Please try the following:

* Check the ColdFusion documentation to verify that you are using
the correct syntax.
* Search the Knowledge Base to find a solution to your problem.

Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7
Remote Address  67.167.112.135
Referrer
http://www.mannersmatrix.com/mms/P/S1/Q3/qE.cfm?State=Illinois&District=
999&SchoolID=ILMN999J01&DSNOut=ILOut1&DSNIn=IL999In&RandPK=E3SD5GX6TJ&qY
N=NN&QTY3L=+e+g+i+k&QTY3TPW=2&QTY3IOY=+b+&QTY3D=+m+o+q&QTY3BW=&Q
TY3R=
Date/Time   30-Oct-06 01:24 PM
Stack Trace
at cfqF2ecfm629700511._factor2(E:\Web Sites\Manners
Matrix\www\MMS\P\S1\Q3\qF.cfm:17) at cfqF2ecfm629700511.runPage(E:\Web
Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm:1) at
cfqF2ecfm629700511._factor2(E:\Web Sites\Manners
Matrix\www\MMS\P\S1\Q3\qF.cfm:17) at cfqF2ecfm629700511.runPage(E:\Web
Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm:1)

java.sql.SQLException: Timed out trying to establish connection
at
coldfusion.server.j2ee.sql.pool.JDBCPool.requestConnection(JDBCPool.java
:750)
at
coldfusion.server.j2ee.sql.pool.JDBCManager.requestConnection(JDBCManage
r.java:123)
at
coldfusion.server.j2ee.sql.JRunDataSource.getConnection(JRunDataSource.j
ava:138)
at
coldfusion.server.j2ee.sql.JRunDataSource.getConnection(JRunDataSource.j
ava:125)
at
coldfusion.sql.CFDataSource.getConnection(CFDataSource.java:37)
at
coldfusion.sql.DataSrcImpl.getCachedConnection(DataSrcImpl.java:149)
at
coldfusion.sql.DataSrcImpl.getConnection(DataSrcImpl.java:103)
at coldfusion.sql.SqlImpl.execute(SqlImpl.java:214)
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:498)
at cfqF2ecfm629700511._factor2(E:\Web Sites\Manners
Matrix\www\MMS\P\S1\Q3\qF.cfm:17)
at cfqF2ecfm629700511.runPage(E:\Web Sites\Manners
Matrix\www\MMS\P\S1\Q3\qF.cfm:1)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
at
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
at
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersist
enceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257
)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527
)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:
204)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.j
ava:349)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java
:457)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.jav
a:295)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)



~

ColdFusion Time Out Error....HELP!!!!!

2006-11-08 Thread Russell Christiansen
I'm getting these sporadic time-out errors on this web application that is 
supposed to be a very sophisticated assessment tool. It uses quite a few 
ColdFusion queries. It's not failing at exactly the same spot, it's been 
sporadic and I'm not sure what the cause is. I'm wondering if I might have too 
many queries or too much cfscript. Here's one of the errors in detail:

Error Occurred While Processing Request
Error Executing Database Query.
Timed out trying to establish connection
 
The error occurred in E:\Web Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm: line 
17
Called from E:\Web Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm: line 1
Called from E:\Web Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm: line 17
Called from E:\Web Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm: line 1

15 : SELECT JHQTY3, EQTY3
16 : FROM ParQuestions
17 : WHERE District = '#District#'
18 : 
19 : 

SQLSELECT JHQTY3, EQTY3 FROM ParQuestions WHERE District = '999'
DATASOURCEILOut1
Please try the following:

* Check the ColdFusion documentation to verify that you are using the 
correct syntax.
* Search the Knowledge Base to find a solution to your problem.

Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.7) 
Gecko/20060909 Firefox/1.5.0.7
Remote Address  67.167.112.135
Referrer
http://www.mannersmatrix.com/mms/P/S1/Q3/qE.cfm?State=Illinois&District=999&SchoolID=ILMN999J01&DSNOut=ILOut1&DSNIn=IL999In&RandPK=E3SD5GX6TJ&qYN=NN&QTY3L=+e+g+i+k&QTY3TPW=2&QTY3IOY=+b+&QTY3D=+m+o+q&QTY3BW=&QTY3R=
Date/Time   30-Oct-06 01:24 PM
Stack Trace
at cfqF2ecfm629700511._factor2(E:\Web Sites\Manners 
Matrix\www\MMS\P\S1\Q3\qF.cfm:17) at cfqF2ecfm629700511.runPage(E:\Web 
Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm:1) at 
cfqF2ecfm629700511._factor2(E:\Web Sites\Manners 
Matrix\www\MMS\P\S1\Q3\qF.cfm:17) at cfqF2ecfm629700511.runPage(E:\Web 
Sites\Manners Matrix\www\MMS\P\S1\Q3\qF.cfm:1)

java.sql.SQLException: Timed out trying to establish connection
at 
coldfusion.server.j2ee.sql.pool.JDBCPool.requestConnection(JDBCPool.java:750)
at 
coldfusion.server.j2ee.sql.pool.JDBCManager.requestConnection(JDBCManager.java:123)
at 
coldfusion.server.j2ee.sql.JRunDataSource.getConnection(JRunDataSource.java:138)
at 
coldfusion.server.j2ee.sql.JRunDataSource.getConnection(JRunDataSource.java:125)
at coldfusion.sql.CFDataSource.getConnection(CFDataSource.java:37)
at coldfusion.sql.DataSrcImpl.getCachedConnection(DataSrcImpl.java:149)
at coldfusion.sql.DataSrcImpl.getConnection(DataSrcImpl.java:103)
at coldfusion.sql.SqlImpl.execute(SqlImpl.java:214)
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:498)
at cfqF2ecfm629700511._factor2(E:\Web Sites\Manners 
Matrix\www\MMS\P\S1\Q3\qF.cfm:17)
at cfqF2ecfm629700511.runPage(E:\Web Sites\Manners 
Matrix\www\MMS\P\S1\Q3\qF.cfm:1)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at 
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:105)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseo

Re: CFREPORT problem: Report compilation error. Error at (158, 21: null

2006-11-08 Thread Kris Jones
Found the issue on the Adobe forums (although the forums were erroring
with every click for awhile until I figured out that it didn't like an
unmatched parenthesis in my search terms).

And just for sake of the archives: CF 7.0.2 updater doesn't always
remove the older version of the commons-digester jar. Here is the
explanation and resolution:
http://www.cfreport.org/index.cfm/2006/7/3/702-update-error

Cheers,
Kris

> Yesterday, we finally updated our QA servers to 7.02 (from 7.0). Some
> reports which were running before the upgrade (with a couple of little
> visual issues), now fail to run at all, generating this type of error:
> Report compilation error. Error at (158, 21: null

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259663
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Cool things about cf

2006-11-08 Thread Dan Plesse
I looked at how java works with web services i.e axis and the fact that you
don't have to do extra work in CF to ship/send/ or receive any kind of
object is truly amazing. In java land its yet another issue. For java web
service on CF I have to WDDX each object before its sent and before its
received and decompile back again.  It's a real pain and an extra step. You
can't put a price tag
on all the "magic" its priceless and its not just a bunch cool stuff to list
off either taken in total its a step ahead.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259666
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Something Stronger Than Verity

2006-11-08 Thread Robertson-Ravo, Neil (RX)
How can a collection become "too big"?

The only limit should be the limit imposed on the OEM version of Verity
which ships with ColdFusion - I think it is 250,000 docs with Enterprise.

A search engine tool will be way faster and provide more features for sure
but they do cost :-~








"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Rey Bango
To: CF-Talk
Sent: Wed Nov 08 16:25:47 2006
Subject: Re: Something Stronger Than Verity

Rob & Dave,

Thanks for your help. It looks like the Verity collection that I was 
building had either become too big or the info was corrupted in some form.

I changed the CFINDEX action to "Refresh" and the performance was 
incredibly faster. That did the trick.

Rey...



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259662
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Turning the XML Contents of a SOAP Envelope into a Structure ?

2006-11-08 Thread Sung Woo
Just wanted to correct one thing:


', 'ALL')>

In the actual code, there is no space between & lt and & gt, but in order for 
it to display properly here, I added the spaces.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259664
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFREPORT problem: Report compilation error. Error at (158, 21 : null

2006-11-08 Thread Dave Watts
> Yesterday, we finally updated our QA servers to 7.02 (from 
> 7.0). Some reports which were running before the upgrade 
> (with a couple of little visual issues), now fail to run at 
> all, generating this type of error:
> 
> Report compilation error. Error at (158, 21: null
> 
> Is there some previously compiled report cached away 
> somewhere that could be causing this? Any clues?

I ran into a similar problem about two weeks ago. I think the fix was to
reinstall the latest Report Builder, open the reports with that, and resave
them.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259658
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Turning the XML Contents of a SOAP Envelope into a Structure ?

2006-11-08 Thread Dave Watts
> Thanks for all your help.  By the way, I took your CF 
> Advanced course in NYC when it was still Allaire.  It was 
> without a doubt the best CF class I took, so thank you for 
> that and for all your help here, too!

You're welcome!

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259655
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Turning the XML Contents of a SOAP Envelope into a Structure ?

2006-11-08 Thread Sung Woo
Ooops...looks like HTML rendered my code to junk status.  Here's the revised:


', 'ALL')>

Except in the real code, there aren't spaces between & and lt or gt (I just did 
it here so it'll display on the post).

- sung

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259660
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Class Decompiler

2006-11-08 Thread Dan Plesse
Thanks Tony I just made a utility for this problem. Next would be a runtime
utility. Now we are talking.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259659
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Cool things about cf

2006-11-08 Thread Dave Watts
> Hey, I'm writing a short article about the cool things that 
> cf comes with that most others dont.

Working with XML is a lot easier in CF. Most environments force you to use
the XML DOM API, but CF exposes XML document objects as nested arrays and
structures.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259661
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Clustering for load balancing

2006-11-08 Thread Rick Root
Dave Watts wrote:
> 
> If both cluster instances are on the same physical machine, and both
> instances will be connected with a single virtual web server, you don't need
> to copy your CFM files. You don't even need to go through creating and
> deploying an EAR file at all; it's just a simple way of making sure that
> both servers are configured identically. You could create a CAR file with
> just server settings, then deploy that after creating the new instance.

I've gone back and done things this way... but I can't figure out if 
it's working or not.

I had to go back and edit the jrun.xml to change the deactivated value 
of the ProxyService node to false in the new instance... then I 
recreated the cluster, and re-ran the web server configuration utility.. 
   looks like I'm good to go now.

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259657
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cool things about cf

2006-11-08 Thread DRE
Andy,
I learned a bunch of php lately and was stunned by this lack of application
scope as well.

I do think tho that .net and java both have similar structures so I'm a bit
wary of including it.

DRE

On 11/8/06, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
> The Application scope, and Application.cfm/cfc.
>
> I was talking with my two co-workers who program in PHP which doesn't have
> anything like an Application scope.
>
>  andy matthews
> web developer
> certified advanced coldfusion programmer
> ICGLink, Inc.
> [EMAIL PROTECTED]
> 615.370.1530 x737
> --//->
>
> -Original Message-
> From: DRE [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 07, 2006 6:01 PM
> To: CF-Talk
> Subject: Cool things about cf
>
>
> Hey, I'm writing a short article about the cool things that cf comes with
> that most others dont. I've got so far:
>
> qoq
> groupd output (Hey, I think its cool)
> charting
> cfdocument
>
> I'm thinking of adding a section on custom tags but not cfc's because you
> can write classes easily in most other languages.  Flash forms seem mostly
> annoying and I dont like cfform all that much.
>
> So, stuff that is very useful but only comes with cf.  Any others you can
> think of?  I'm sure there is much that I have'nt thought of.
>
> Thanks for the moment.
>
> --
> DRE
> www.webmachineinc.com
> www.theanticool.com
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259653
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Something Stronger Than Verity

2006-11-08 Thread Rey Bango
Rob & Dave,

Thanks for your help. It looks like the Verity collection that I was 
building had either become too big or the info was corrupted in some form.

I changed the CFINDEX action to "Refresh" and the performance was 
incredibly faster. That did the trick.

Rey...

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259654
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Cool things about cf

2006-11-08 Thread exH
It's not just it reads like English, the tag based markup sits perfectly 
with HTML/XHTML.

To get a list of cool things about CF, just reference the docs index and 
remove the odd uncool thing(s?)

;)

- Original Message - 
From: "Mike Kear" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, November 08, 2006 3:21 AM
Subject: Re: Cool things about cf


> Dont forget the syntax itself  - it almost reads like english.
>

>
>
> On 11/8/06, DRE <[EMAIL PROTECTED]> wrote:
>> Hey, I'm writing a short article about the cool things that cf comes with
>> that most others dont. I've got so far:
>>
>> qoq
>> groupd output (Hey, I think its cool)
>> charting
>> cfdocument
>>
>> I'm thinking of adding a section on custom tags but not cfc's because you
>> can write classes easily in most other languages.  Flash forms seem 
>> mostly
>> annoying and I dont like cfform all that much.
>>
>> So, stuff that is very useful but only comes with cf.  Any others you can
>> think of?  I'm sure there is much that I have'nt thought of.
>>
>> Thanks for the moment.
>>
>> --
>> DRE
>> www.webmachineinc.com
>> www.theanticool.com
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259652
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Cool things about cf

2006-11-08 Thread DRE
Ben,
I've instantiated java before using cf but its not been all that simple.
What would be a good example of a simple but very useful java instantiation
suitable for a tutorial?

DRE

On 11/8/06, Ben Nadel <[EMAIL PROTECTED]> wrote:
>
> I looked through the other responses, and I might have missed it, but
> the ability to instantiate Java objects, call underlying Java methods,
> and write your own Java classes... That's pretty freakin' nifty.
>
>
> ..
> Ben Nadel
> Certified Advanced ColdFusion MX7 Developer
> www.bennadel.com
>
> Need ColdFusion Help?
> www.bennadel.com/ask-ben/
>
> -Original Message-
> From: DRE [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, November 07, 2006 7:01 PM
> To: CF-Talk
> Subject: Cool things about cf
>
> Hey, I'm writing a short article about the cool things that cf comes
> with that most others dont. I've got so far:
>
> qoq
> groupd output (Hey, I think its cool)
> charting
> cfdocument
>
> I'm thinking of adding a section on custom tags but not cfc's because
> you can write classes easily in most other languages.  Flash forms seem
> mostly annoying and I dont like cfform all that much.
>
> So, stuff that is very useful but only comes with cf.  Any others you
> can think of?  I'm sure there is much that I have'nt thought of.
>
> Thanks for the moment.
>
> --
> DRE
> www.webmachineinc.com
> www.theanticool.com
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259656
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Cool things about cf

2006-11-08 Thread Will Tomlinson
Somebody told me .net doesn't have anything like a 

Is that true? 

Will

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259651
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: see my query - watch it fail

2006-11-08 Thread daniel kessler
>If you are letting a user browse through pages of result, it might be
>useful to store the result set in session so you don't have to re-run it
>every time they switch pages.  This would be most useful if it is a long
>query which taxes your database.  

hmm, hadn't thought of that.  It's not a big query and I suspect it doesn't 
take much resources, but hmmm.

thank you.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259647
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Something Stronger Than Verity

2006-11-08 Thread Dave Watts
> One of the sites that I manage is very DB intensive with very 
> little static pages. I've been using the built-in Verity 
> search engine to index a query of products and build a 
> collection accordingly. But when searching for a product, its 
> just way too slow for the amount of results that it pulls 
> back. The same engine, when pulling back a collection of 
> static page info on another site, is substantially quicker.

Are you sure this is a Verity problem, or when you pull back database
results are you doing anything else along the way?

> So, I'm wondering if there's a way to speed up the collection 
> results or if there's a better alternative for DB-intensive 
> search capabilities.

Your database may provide full-text indexing functionality, which may well
work better than Verity - SQL Server's full-text indexing works very nicely.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259650
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Something Stronger Than Verity

2006-11-08 Thread Robertson-Ravo, Neil (RX)
Hey Rey,

Remember that Verity is not searching against your DB on each call, this is
aready done as part of your indexing into a collection (usually out of
hours).

If the results are taking an age to appear it is no doubt a result of the
actual ColdFusion code to display them, I would look at these pages before
looking at Verity or a replacement as the VDK you get with ColdFusion saves
you a lot of time and effort which otherwise you would have to code, say in
Lucene.

I am currently going through a ColdFusion integration with FAST ESP so I
know how much effort it required over and above a simple cfsearch call.

Hth

N

 



"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Rey Bango
To: CF-Talk
Sent: Wed Nov 08 15:53:08 2006
Subject: Something Stronger Than Verity

Hi all,

One of the sites that I manage is very DB intensive with very little 
static pages. I've been using the built-in Verity search engine to index 
a query of products and build a collection accordingly. But when 
searching for a product, its just way too slow for the amount of results 
that it pulls back. The same engine, when pulling back a collection of 
static page info on another site, is substantially quicker.

So, I'm wondering if there's a way to speed up the collection results or 
if there's a better alternative for DB-intensive search capabilities.

Any advice would be appreciated.

Rey...



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259649
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Tomcat SES url mapping

2006-11-08 Thread John Wilker
well all of none of that made sense to me :) Fairly new to tomcat/apache so
maybe in laymens terms?

Thanks!

On 11/8/06, Tom Chiverton <[EMAIL PROTECTED]> wrote:
>
> On Tuesday 07 November 2006 20:18, John Wilker wrote:
> > Has any one crossed this bridge on tomcat?
>
> Run Apache as a front end proxy and use mod_rewrite ?
>
> --
> Tom Chiverton
> Helping to apprehensively facilitate transparent meta-services
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England
> and Wales under registered number OC307980 whose registered office address
> is at St James's Court Brown Street Manchester M2 2JF.  A list of members is
> available for inspection at the registered office. Any reference to a
> partner in relation to Halliwells LLP means a member of Halliwells LLP.
> Regulated by the Law Society.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged.  If you are not the addressee you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents.  If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 8008.
>
> For more information about Halliwells LLP visit www.halliwells.com.
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259646
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: see my query - watch it fail

2006-11-08 Thread daniel kessler
>Daniel,
>
>If you put the "result" attribute in the query tag:
>
>...
>
>And then dump out the result:
>
> 

Your right, I want the SQL.  This and other suggestions mentioned seem to be 
able to do the trick.  Thanks!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259648
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFREPORT problem: Report compilation error. Error at (158, 21: null

2006-11-08 Thread Kris Jones
Yesterday, we finally updated our QA servers to 7.02 (from 7.0). Some
reports which were running before the upgrade (with a couple of little
visual issues), now fail to run at all, generating this type of error:

Report compilation error. Error at (158, 21: null

Is there some previously compiled report cached away somewhere that
could be causing this? Any clues?

Thanks,
Kris

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259645
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Turning the XML Contents of a SOAP Envelope into a Structure ?

2006-11-08 Thread Sung Woo
Hi Dave,

I found my error, and I took care of it with the following snippet:


', 'ALL')>



What happened was that the last three bits of code were demoralized, so I 
remoralized them, and now it works fine!

Thanks for all your help.  By the way, I took your CF Advanced course in NYC 
when it was still Allaire.  It was without a doubt the best CF class I took, so 
thank you for that and for all your help here, too!

- Sung

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259644
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: see my query - watch it fail

2006-11-08 Thread Bryan F Hogan
Correct, he can also use the result attribute of cfquery on CF7.

-Original Message-
From: Russ [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 08, 2006 10:51 AM
To: CF-Talk
Subject: RE: see my query - watch it fail


I think that will just dump the results of the query, I think he wants to
see the actual SQL.  

Just enable debugging and the query will show up in debugging info. 

Russ

> -Original Message-
> From: Bryan F Hogan [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 10:34 AM
> To: CF-Talk
> Subject: RE: see my query - watch it fail
> 
> 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259643
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: see my query - watch it fail

2006-11-08 Thread RichL
Daniel not sure exactly what you want to see but you could try this:


select * from tblbcplayer
  





xxx will dump the results

yyy will show you the following attributes:

cached?, columnlist, exectiontime, recordcount, SQL executed

(not sure when this 'result' attribute became active - cf 6 or 7 )

Not sure if any of that helps you?

On 11/8/06, Bryan F Hogan <[EMAIL PROTECTED]> wrote:
> 
>
> -Original Message-
> From: Daniel Kessler [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 08, 2006 10:31 AM
> To: CF-Talk
> Subject: see my query - watch it fail
>
>
> I have a really cool query for a SEARCH form.  It has an AND/OR radio
> button between fields.  It is a paged query and when I click on page
> 2, it gives me fewer hits than when I was on page one.  Very wrong.
>
> I'd like to see the query as it's being performed or before it's
> performed, whichever, to diagnose the problem.  Is there a way to
> output the query to see what it's asking?
>
> --
>
> Daniel Kessler
>
> College of Health and Human Performance
> University of Maryland
> Suite 2387 Valley Drive
> College Park, MD  20742-2611
> Phone: 301-405-2545
> http://hhp.umd.edu
>
>
>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259638
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Cool things about cf

2006-11-08 Thread Kevin Aebig
- Webservice implementation
- Application scope
- File Handling and Permissions and...

Includes. I know this might seem weird so some, but anyone who's dealt with
PHP knows what a major PITA it can be to handle include paths that aren't
within the relative scope underneath the calling file.

!k

-Original Message-
From: DRE [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 07, 2006 6:01 PM
To: CF-Talk
Subject: Cool things about cf

Hey, I'm writing a short article about the cool things that cf comes with
that most others dont. I've got so far:

qoq
groupd output (Hey, I think its cool)
charting
cfdocument

I'm thinking of adding a section on custom tags but not cfc's because you
can write classes easily in most other languages.  Flash forms seem mostly
annoying and I dont like cfform all that much.

So, stuff that is very useful but only comes with cf.  Any others you can
think of?  I'm sure there is much that I have'nt thought of.

Thanks for the moment.

-- 
DRE
www.webmachineinc.com
www.theanticool.com




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259642
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Turning the XML Contents of a SOAP Envelope into a Structure ?

2006-11-08 Thread Dave Watts
> Thanks, Dave.  I did just as you suggested and it looks good 
> except it doesn't seem to go beyond a certain point.  When I 
> CFDUMPed the SOAP structure via XMLParse, the last bit (and 
> of course, the most important), looks like this:
> 
> CreateServiceRequestResult -> XmlText 1S001The Service 
> request was submitted successfully
> 
> The XML looks like this:
> 
> 1
> S001
> The Service request was submitted 
> successfully
> 
> Why does it choose to concatenate those last three sets of data?
> 
> When I tried to CFOUTPUT this:
> 
> myxmlobj.Envelope.Body.CreateServiceRequestResponse.ServiceRes
> ponse.CreateServiceRequestResult.xmlText
> 
> it works fine, but if I try
> 
> myxmlobj.Envelope.Body.CreateServiceRequestResponse.ServiceRes
> ponse.CreateServiceRequestResult.ServiceRequestID.xmlText
> 
> it chokes...

OK, I tried working with your SOAP envelope, but it contains an error:


http://tempuri.org/";>

1
S001
The Service request was submitted
successfully



The CreateServiceRequestResponse element is not closed.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259641
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >