Re: CFC question

2006-10-03 Thread Robertson-Ravo, Neil (RX)
And the rest of them :-) "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 t

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread John C. Bland II
lol Ben, Michael D., and Aaron. :-) On 10/3/06, James Holmes <[EMAIL PROTECTED]> wrote: > > We are just now upgrading to CF7, which should give you a rough answer... > > On 10/4/06, John C. Bland II <[EMAIL PROTECTED]> wrote: > > How soon, after release of CF 8, will you upgrade to CF 8? > > > > N

verity spider

2006-10-03 Thread George Lu
Currently I'm using K2 server to index and search our intranet. Indexing and searching is very slow and it is not working with dynamic content such as .cfm. I've found very limited documentation using Google. Anyway, I've managed to create and index a collection using vspider. e.g. Vspider -col

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread Aaron Rouse
Where I do the bulk of my work there are no CF7 boxes however it still did not stop me from testing out CF7 as soon as MACR made it available to me, I will do the same for CF8, it just allows me to keep up with new feature sets. On 10/4/06, James Holmes <[EMAIL PROTECTED]> wrote: > > We are just

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread James Holmes
We are just now upgrading to CF7, which should give you a rough answer... On 10/4/06, John C. Bland II <[EMAIL PROTECTED]> wrote: > How soon, after release of CF 8, will you upgrade to CF 8? > > Note: This is for research, not just a curious question. -- CFAJAX docs and other useful articles: ht

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread Matt Robertson
On 10/3/06, Mike Kear <[EMAIL PROTECTED]> wrote: > Not until after release, and a reasonable period to see if any > unforseen problems emerge. I'm talking production servers here. Ditto. Anyone have any thoughts as to whether or not folks on CF 6.1 will be able to upgrade to 8? I've got two CF6

Re: accordion css control?

2006-10-03 Thread James Holmes
http://www.indiankey.com/mxajax/examples/mxRicoAccordion1.cfm On 10/3/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > Yea, that would be a good example. I'll look into it further. I'd still > love some more examples that others have used so I can present more than one > solution -- CFAJAX d

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread Mike Kear
Not until after release, and a reasonable period to see if any unforseen problems emerge. I'm talking production servers here. I have long had a policy of staying near the cutting edge, but behind it. "Let someone else be the pioneer when it comes to production stuff" is the painful lesson I lea

Re: CFIF statement in query

2006-10-03 Thread Adrian Wagner
No typo. We're using an SQL Server 8. >>> [EMAIL PROTECTED] 4/10/2006 12:28 pm >>> He wants it when the ucDescription contains that value and is not just equal to it or was that a typo in his CFIF? The case when then method may not work depending on what DB he is using and the version of it. On

Re: CFIF Statement

2006-10-03 Thread Mike Kear
Actually, my sorry. No i came into this thread late.Looks like i missed a great argument. Oh woe I'm so sad to have missed an argument! Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP, ASP, ASP.NET ho

Re: CFIF statement in query

2006-10-03 Thread Mike Kear
Another way to do the same thing if you dont want to put a IF statement in the SQL (which is the better way to do it but just suppose you dont want to do that) you coudl do something like this: SELECT ucDescription, ucTitle, 1 AS seq FROM testtable ORDER BY ucDescription

Re: CFC question

2006-10-03 Thread Aaron Rouse
If this change is made just make sure and var myReturnVar first. On 10/3/06, Alan Rother <[EMAIL PROTECTED]> wrote: > > Seems like this is a way to do it. I would suggest, without tetsing it... > that instead of doing this > > > > > > > > > Do this... > > > > > > > > > > > > Are

Re: CFC question

2006-10-03 Thread Aaron Rouse
Yes, you could do that. On 10/3/06, Michael Hughes <[EMAIL PROTECTED]> wrote: > > > > Couldn't I conceivably add a function that would query the database and > return the role for the specific user id, assign that role as a variable, > and rewrite the getTestCount() function so that if the test co

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread Aaron Rouse
As soon as they give me a copy to test. On 10/3/06, John C. Bland II <[EMAIL PROTECTED]> wrote: > > How soon, after release of CF 8, will you upgrade to CF 8? > > Note: This is for research, not just a curious question. > > Thanks, > > -- > John C. Bland II > Chief Geek > Katapult Media, Inc. - ww

Re: CFIF Statement

2006-10-03 Thread Aaron Rouse
Sorry, figured it was obvious that I was just beating a dead horse and being sarcastic especially considering the other things I typed in there to also always check. On 10/3/06, Mark Henderson <[EMAIL PROTECTED]> wrote: > > Aaron Rouse wrote: > > and lets not even get started on the fact you are >

Re: CFIF statement in query

2006-10-03 Thread Aaron Rouse
He wants it when the ucDescription contains that value and is not just equal to it or was that a typo in his CFIF? The case when then method may not work depending on what DB he is using and the version of it. On 10/3/06, Jim Wright <[EMAIL PROTECTED]> wrote: > > Adrian Wagner wrote: > > Use a CA

Re: CFIF Statement

2006-10-03 Thread Aaron Rouse
heh ... I guess you did not read the 62 or so replies with this subject, I was being sarcastic, sorry. On 10/3/06, Mike Kear <[EMAIL PROTECTED]> wrote: > > On 10/4/06, Aaron Rouse <[EMAIL PROTECTED]> wrote: > << > treating a record count on a query like a boolean.>>> > > What's the matter with tre

Re: CFIF statement in query

2006-10-03 Thread Jim Wright
Adrian Wagner wrote: > Hi all, > > Here's the deal. I need to order a query by a particular sequence that is not > in the database, nor can it be implemented in the database (the data is > imported daily from a third party which does not provide this sequence). So, > the solution my co-worker c

RE: CFIF statement in query

2006-10-03 Thread Ben Forta
Looks like you are confusing CF processing and DBMS processing. You'll want to do that if test in the DBMS itself, and CFML does not execute in the DBMS. The exact syntax for an if or case statement can vary by DBMS, so hard to give you exact syntax, but take a look at SQL if and case statements fo

CFIF statement in query

2006-10-03 Thread Adrian Wagner
Hi all, Here's the deal. I need to order a query by a particular sequence that is not in the database, nor can it be implemented in the database (the data is imported daily from a third party which does not provide this sequence). So, the solution my co-worker came up with is to actually assign

RE: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread Ben Forta
Long before it ships, heck, probably before it'll go beta ;-) --- Ben -Original Message- From: John C. Bland II [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 11:53 PM To: CF-Talk Subject: CF 8 Upgrade Cycle: What's yours? How soon, after release of CF 8, will you upgrade t

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread Michael Dinowitz
First stable Beta, as usual. Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Adobe Community Expert > How soon, after release of CF 8, will you upgrade to CF 8? > > Note: This is for research, not just a

CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread John C. Bland II
How soon, after release of CF 8, will you upgrade to CF 8? Note: This is for research, not just a curious question. Thanks, -- John C. Bland II Chief Geek Katapult Media, Inc. - www.katapultmedia.com --- Biz Blog - http://blogs.katapultmedia.com/jb2 Personal Blog - http://blog.blandfamilyonline

Quicky question re: cfdocument and fonts

2006-10-03 Thread Lawrence B. Afrin, M.D.
Howdy -- I'm making my first use of cfdocument (no jokes about being behind the times, please -- I've been busy with other things), and it seems that no matter what I specify in the tag inside the cfdocument, the resulting PDF displays the content in the same Times Roman font in whatever the de

RE: CFIF Statement

2006-10-03 Thread Mark Henderson
Aaron Rouse wrote: > and lets not even get started on the fact you are > treating a record count on a query like a boolean. I could be mistaken, but hasn't that been the crux of most of this debate? Mark -- This message has been scanned for viruses and dangerous content by ISPNZ's automated

Re: CFIF Statement

2006-10-03 Thread Mike Kear
On 10/4/06, Aaron Rouse <[EMAIL PROTECTED]> wrote: << treating a record count on a query like a boolean.>>> What's the matter with treating a recordcount like a boolean? It's either zero (equivalent to false) or non-zero (equivalent to true) and since ColdFusion works like that, what's the mat

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Dave Watts
> If it's either, it's a router considering the steps that need > be taken to accomplish the attack and sniff information that > the client is sending/receiving from outside the network. The word "router" has a pretty specific meaning. This isn't it. > But w/e... you are just being flippant now

Re: CFC question

2006-10-03 Thread Alan Rother
Seems like this is a way to do it. I would suggest, without tetsing it... that instead of doing this Do this... Are you getting an error or anything, or was this more of theorhetical question? On 10/3/06, Michael Hughes <[EMAIL PROTECTED]> wrote: > > Hey folks - I'm b

CFC question

2006-10-03 Thread Michael Hughes
Hey folks - I'm brand new to Cold Fusion and inherited an application from an advanced developer. I'm trying to change a function in a cfc to allow an online test to be taken multiple times based on the user's role and how many times they've already taken the test:

Re: CFIF Statement

2006-10-03 Thread Aaron Rouse
Are you insane? I am just supposed to assume that getitem exists and that it is a query and that itemvalue is a column name within it? Sorry but that is just bad coding right there, you are not checking for the proper existance of things and lets not even get started on the fact you are treating

The beginnings -- YahooAPI for BBAuth and YahooPhotos

2006-10-03 Thread Dov Katz
I quickly built the beginnings of a CF wrapper around the new Yahoo Auth API and barely started the same for the Yahoo Photos API. http://developer.yahoo.com/auth/ http://developer.yahoo.com/photos/ Here's what I wrote. It can auth you and sets up the request for ListAlbums but it fails on the

Re: SQL 2005 using .sql file for new db

2006-10-03 Thread Jim Wright
Dave Watts wrote: >> Thanks Dave. You said "open Query Analyzer and run the file". >> I don't see where in QA I can open a file... > > I don't have it in front of me, but I'm pretty sure there's an option to > open a text file. If you can't find it, you could open the file in Notepad, > then copy

ANNOUNCE: Webinar - Ensure a Flawless ColdFusion Rollout 10/17/06

2006-10-03 Thread Michael Smith
Join TeraTech and Opendemand for a Webinar on October 17 Organizations embarking on new ColdFusion implementations or updating existing systems often suffer from a number of performance related problems during deployment. These issues could be prevented by testing for load and scalability prior

Re: CFIF Statement

2006-10-03 Thread Claude Schneegans
>>The reason is sometimes we want default values on a create screen. Easy, then just use VALUE="#getItem.itemValue#" VALUE="some default"> Back on subject, ah ah! ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customta

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Bobby Hartsfield
If it's either, it's a router considering the steps that need be taken to accomplish the attack and sniff information that the client is sending/receiving from outside the network. But w/e... you are just being flippant now anyway. Enjoy. -Original Message- From: Dave Watts [mailto:[EMAI

Re: Buy Now Paypal integration workflow

2006-10-03 Thread Rick King
So I tried implementing IPN, made all the preference changes on Payapl, read up on the lastest IPN tutorial over at easycfm by Mike Daugherty (http://tutorial468.easycfm.com/), and am using the code below. Unfortunately, I'm only receiving the contents of the statement which means it's not re

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Dave Watts
> A MItM attack is more or less making your self the router... > not a proxy. I don't think that's correct. Routers separate networks, and forward traffic from one network to another, not from one host to another. And, for what it's worth, most of the "Mallory" tools I've seen are called proxies.

Re: I hate SSIS!

2006-10-03 Thread Mike Kear
G'day Chris, Thats terrific for migrating something that's already written in SQL2000. But you can't write DTS packages for SQL2005 - you have to use the "new improved, far more flexible" SSIS for anything new, so far as I know. (if anyone knows different, I'd be delighted to hear so!) And doi

RE: CFIF Statement

2006-10-03 Thread Dave Watts
> I've taken way too many shots to the head to debate this with > you. I'm sure you're right, but I just don't see it yet. I don't think it matters that much one way or the other. I simply think we should be more careful about how we define "best practices" generally. Dave Watts, CTO, Fig Leaf S

RE: accordion css control?

2006-10-03 Thread Mark Henderson
Rey Bango wrote > The guys at Mad4Milk have a new version which doesn't rely on > Prototype. > You can catch it here: > > http://mootools.net/ The moo menu is pretty damned good & one of the best you'll get for free in my opinion. Here's another one that's up there: http://onlinetools.org/to

Bad use of DAOs and Gateways?

2006-10-03 Thread Justin Holzer
I will not bore everyone with all the details of my conundrum, but suffice it to say, even though I would like to, I cannot implement my DAOs and Gateways as shared CFC objects in the application scope in the existing systems that I am enhancing at work. The simple reason is that the production sup

Re: Placing a pointer in cfchart

2006-10-03 Thread James Mc
Actually, you can go the the XML style tab and select all; copy and paste and save that as an xml file in the save it in the /charting/styles/ directory. If for example you name the file "mystyle.xml" , in the cfchart call, specify style="mystyle" and that should apply the style to your chart.

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-03 Thread Mark Mandel
Without the error, and/or some sort of testbed to look at, it becomes hard to debug. Regards, Mark On 10/4/06, Dan Plesse <[EMAIL PROTECTED]> wrote: > It could be the order in which you loaded everything. You have to load the > jars first then the classes. > > The second issue could be the level

Re: open new window

2006-10-03 Thread Richard Dillman
Not strictly an answer but if pages are going to be refreshing and submitting and you need side by side comparrison. Why not make it a frames page? On 10/3/06, Richard White <[EMAIL PROTECTED]> wrote: > thanks teddy ill check it out > > ~

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Bobby Hartsfield
A MItM attack is more or less making your self the router... not a proxy. I never said anything about sending a user to any site other than the real one. Sorry, I don’t know where you get that from. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03,

Re: CFIF Statement

2006-10-03 Thread Greg Luce
I've taken way too many shots to the head to debate this with you. I'm sure you're right, but I just don't see it yet. On 10/3/06, Dave Watts <[EMAIL PROTECTED]> wrote: > > > I'm with Neil on this one. Don't we usually try to do things > > as "correct" as possible? Just because CF sees 23 as a > >

Re: OT: CFEclipse Installation Woes

2006-10-03 Thread Justin Holzer
Trey, I had a similar problem with Eclipse a while back. For me, I had the Oracle 9i client tools installed, which comes packaged with JRE 1.3, and even though I had the JDK 1.5 directory in my path, the directory for 1.3 was in my path before 1.5 It was something like: "c:\oracle\path\to\jre1.3;

Re: Java ClassLoader / JavaLoader.cfc Question

2006-10-03 Thread Dan Plesse
It could be the order in which you loaded everything. You have to load the jars first then the classes. The second issue could be the level or depth of the classloader might be too shallow. ~| Introducing the Fusion Authority Qu

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Dave Watts
> Not quite sure where I would have lost you at. MiTM... SSL... > fake certs... no prompts... Right there between "fake certs" and "no prompts"? In this thread, you've said two things: 1. You can trick users into visiting your SSL site instead of someone else's, and they'll click through the "w

Re: Buy Now Paypal integration workflow

2006-10-03 Thread Rick King
Thanks guys...I didn't know about the IPN method. I'll look into it tonight. Rick ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your

RE: CFIF Statement

2006-10-03 Thread Dave Watts
> I'm with Neil on this one. Don't we usually try to do things > as "correct" as possible? Just because CF sees 23 as a > boolean true doesn't mean we should use that as a shortcut. CF is a typeless language, isn't it? We rely on implicit casting all the time. What makes this any different? Dav

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Bobby Hartsfield
Hmm I never tried it with the wrong domain name in the cert. That may or may not work but I personally never said it would or wouldn't ;-) -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 7:33 PM To: CF-Talk Subject: RE: Break it down for n00bs: sec

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Bobby Hartsfield
> I wasn't sure whether you mean access to a local machine or access > to a local network segment. I was under the impression we were all on the same page there since the thread was about an intranet. > It's worth pointing out that network administrators can disable > the ability of It's worth

RE: Buy Now Paypal integration workflow

2006-10-03 Thread Rick Faircloth
Hi, Rick... Sorry I don't have an answer for you, because I have no experience with ecommerce...however, I have thought of creating a virtual "Mall" for our area and allowing local merchants to sell their wares on the site. Is that what you're doing...or something similar? Rick -Original Me

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Snake
I'd like to see that too. I have never seen an invalid cert that doesn't match the domain NOT prompt you with that information. That is the whole point in having them. Russ === Dave said I think I'll move on with my life in either case, thanks for asking. I simply wanted you to point out some

Re: CFIF Statement

2006-10-03 Thread Greg Luce
I'm with Neil on this one. Don't we usually try to do things as "correct" as possible? Just because CF sees 23 as a boolean true doesn't mean we should use that as a shortcut. What about scoping variables? It'll "work" if you reference a variable without a scope on it, but isn't it "more correct" t

Re: js problem in safari

2006-10-03 Thread Dave Lyons
The code actually came from an old dw extension that i had from dwfaq, i just changed some names around and I had put it into a snippet so i just used it but its been awhile (aka pre-my osx days) so I had never tried it in safari till now. Thanks, to those that responded, i'll try them out and

RE: CFIF Statement

2006-10-03 Thread Snake
I just pass a mode attribute to my forms. Mode=edit Or mode=insert I have cfparams defining all form fields with default values (blank in most cases), so the same form can be used for edit and insert, and can also redisplay itself pre-filled with the previous entries if any form validation fails

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Dave Watts
> What do you mean... what do I mean by local access? :-) > > I mean local access as in opposite of remote access... as in > physically plugged into the network in question. I wasn't sure whether you mean access to a local machine or access to a local network segment. > Now if you can fake a c

Re: CFIF Statement

2006-10-03 Thread Aaron Rouse
But then you want to only do a specific action if that form field or action exists, correct? So it would still not need the checking of if the query exists but if that specific variable exists. On 10/3/06, Snake <[EMAIL PROTECTED]> wrote: > > Simple. > > You may only want to run the query if a sp

Re: CFIF Statement

2006-10-03 Thread Aaron Rouse
This is how our POS inhouse RAD tool works for the CRUD screens. I personally tend to stray away on forms built outside of it to some degree. The reason is sometimes we want default values on a create screen. On 10/3/06, Claude Schneegans <[EMAIL PROTECTED]> wrote: > > >>if it exists, then I know

Re: reports reports reports

2006-10-03 Thread Teddy Payne
Chris, you are not wrong and it is a viable solution. I have used cfhttp to scrape some of the pre-rendered. Teddy On 10/3/06, Peterson, Chris <[EMAIL PROTECTED]> wrote: > > Tell me if I am wrong, but cant you just cfhttp with CF to the simple > SQL reports and dump em back to the user? Maybe y

Re: OT: CFEclipse Installation Woes

2006-10-03 Thread Teddy Payne
Trey, Eclipse does have proxy settings. If you are usng windows, you need to change the properties of the shortcut to Eclipse. The target would look like: "C:\pathToEclipse\eclipse.exe" -Dproxy.httpHost=www.proxy.com - Dproxy.httpPort=8080 You change out the www.proxy.com and the port. Is you

RE: CFHTTP over HTTPS

2006-10-03 Thread Snake
Ah ok thanks dave, I'll look at that. If that is the case I can expect it to affect all servers then a sthe cert will have expire don them all. Eek! -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 03 October 2006 22:06 To: CF-Talk Subject: RE: CFHTTP over HTTPS > Are

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Bobby Hartsfield
What do you mean... what do I mean by local access? :-) I mean local access as in opposite of remote access... as in physically plugged into the network in question. You are thinking of vulnerabilities in the make up of certs/SSL and there aren’t any (that I know of) and that plays into it as we

RE: CFIF Statement

2006-10-03 Thread Bobby Hartsfield
Ditto -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 4:15 PM To: CF-Talk Subject: Re: CFIF Statement >>if it exists, then I know I am on an edit or view page and to output the query, the other side would be to create a blank query to

RE: Placing a pointer in cfchart

2006-10-03 Thread Dave Watts
> how do i do it without the .jsp? You'll need to read the JSP code and write CF code that does the same thing. Fortunately, that should be pretty straightforward, since most of the work will presumably be done by the JAR files. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf

Re: Placing a pointer in cfchart

2006-10-03 Thread Richard White
hi james, in the pdf that come with the charts, it says to build the chart in the wizard they provide then it says to go to the view code tab. The code is in jsp and it says to save it to a .jsp page and save it on my web root. it tells me to go to the file > startup and deploy the jar files (We

RE: CFEclipse Installation Woes

2006-10-03 Thread Dave Watts
> I spent about a half hour looking around for a way to > download a 1.4.x(recent version) to try reverting my JRE > (something I'd rather not do), but had no luck locating that > link on sun's monolithic website. http://java.sun.com/products/archive/index.html Dave Watts, CTO, Fig Leaf Softwa

OT: CFEclipse Installation Woes

2006-10-03 Thread Trey Rouse
I've installed in the past with no problem, but I'm having absolutely nothing but trouble now. 1. Installed Eclipse 3.2.1 2. Try clicking eclipse.exe - I get and error "Version 1.3.1_01 of the JVM is not suitable for this product. Version 1.4.1 or greater is required. - This is cute, as I'm runn

RE: CFHTTP over HTTPS

2006-10-03 Thread Dave Watts
> Are you saying that there is a default cert on the cfserver > that would have allowed https calls to work up until now ? Yes, there should be a bunch of existing trusted root certificates. Go to the URL from the previous message, and scroll down to the section labelled "The cacerts Certificates

RE: Buy Now Paypal integration workflow

2006-10-03 Thread Martyn Bowis
Hi Rick, You should use the IPN (Instant Payment Notification) feature of PayPal. There is example ColdFusion code on the PayPal site for processing the IPN Post data that is returned to the page that you specify as the return page for the IPN. Essentially, the workflow could be: 1. User logs i

RE: Buy Now Paypal integration workflow

2006-10-03 Thread Snake
You need you use the IPN method, so that you have a callback that happens in the background. Here are some useful links https://www.paypal.com/IntegrationCenter/ic_documentation.html http://paypaltech.com/Stephen/test/ipntest3.htm - Snake -Original Message- From: Rick King [mailto:[

RE: Buy Now Paypal integration workflow

2006-10-03 Thread Ian Skinner
However, how can I make sure that they've completed the Paypal transaction, since their item has already been posted? I'm trying to figure out a way that their item won't be posted until after they've completed the Paypal transaction. Would session variables still work after they've left my site

RE: Buy Now Paypal integration workflow

2006-10-03 Thread Adkins, Randy
There are some utilities out there to help you with the integration. Using the Buy Now, you would send over a success_url or failed_url (I think that is correct) which would be a page within your website. Thus, you can take the appropriate actions as needed. -Original Message- From: Rick K

RE: CFHTTP over HTTPS

2006-10-03 Thread Snake
Are you saying that there is a default cert on the cfserver that would have allowed https calls to work up until now ? Russ -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 03 October 2006 21:31 To: CF-Talk Subject: RE: CFHTTP over HTTPS > Indeed, but as I said, the

Buy Now Paypal integration workflow

2006-10-03 Thread Rick King
Anyone ever have this issue when integrating a Buy Now button from Paypal? I have a site where a user posts a listing for an item, say a shirt. They are also allowed to upload 3 images for that item. I'm charge a listing fee that equals a percentage of the asking price of that item (say 5%). O

RE: CFIF Statement

2006-10-03 Thread Snake
Simple. You may only want to run the query if a specific variable exists, such as a form field, or a fuseaction. -- Snake -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: 03 October 2006 20:27 To: CF-Talk Subject: Re: CFIF Statement I have seen this done before as w

Java ClassLoader / JavaLoader.cfc Question

2006-10-03 Thread Matthew Lesko
Was wondering if anyone had worked with JavaLoader.cfc (see: www.compoundtheory.com) or the Java ClassLoaders in general. I am working with Apache Lucene and Coldfusion. I've written some Java classes that extend some of Lucene's. When I try to load my classes with JavaLoader.cfc I get an erro

RE: Preventing long strings of one character

2006-10-03 Thread Ben Nadel
It's not a look ahead or a look behind.. I am not sure what the technical term. I think it's just a "back reference". The "\1" in the regular expression is just a back reference to the first group as denoted by "(" and ")". Maybe someone else here can help with the actual name. .

Re: Placing a pointer in cfchart

2006-10-03 Thread James Mc
There is no need to deploy jsp pages. What specifically is not working ? > hi james, i have followed the instructions in the pdf file that is in > the same directory. But unfortunately it is not running. It says to > setup the server, deploy the relevant directories to the web root. and > then

RE: Preventing long strings of one character

2006-10-03 Thread Andy Matthews
Works perfect! That's a beautiful thing Ben, thanks again! -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 3:27 PM To: CF-Talk Subject: RE: Preventing long strings of one character For (strKey in FORM){ FORM[ strKey ] = REReplaceNoCase(

RE: CFHTTP over HTTPS

2006-10-03 Thread Dave Watts
> Indeed, but as I said, the cert on the site is not expired, > and I never had one on the CF server. You almost certainly did have a certificate on the CF server. I'm pretty sure that the JVM ships with a default list of trusted root certification authorities. For a certificate to be validated,

RE: Preventing long strings of one character

2006-10-03 Thread Andy Matthews
Well now. That was easy enough. So using lookaheads? Thank you Ben. -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 3:27 PM To: CF-Talk Subject: RE: Preventing long strings of one character For (strKey in FORM){ FORM[ strKey ] = REReplace

RE: CFIF Statement

2006-10-03 Thread loathe
Very nice. I like that a lot and will be stealing it in the future :) > -Original Message- > From: Claude Schneegans [mailto:[EMAIL PROTECTED] > Sent: Tuesday, October 03, 2006 4:15 PM > To: CF-Talk > Subject: Re: CFIF Statement > > >>if it exists, then I know I am on an edit or view >

RE: Preventing long strings of one character

2006-10-03 Thread Ben Nadel
For (strKey in FORM){ FORM[ strKey ] = REReplaceNoCase( FORM[ strKey ], "([\w]{1})(\1{2,})", "\1", "ALL" ); } This gets the first group (which is any letter or digit) and checks to see if that is followed by 2 or more instances of that letter. If so, then it is replaced w

RE: Preventing long strings of one character

2006-10-03 Thread Andy Matthews
As soon as I sent this I realized what was happening. It's testing for any occurence of 3 or more of ANY letter or number. So any string with 3 or more characters will always match. Do I have to loop over each string and check character by character? -Original Message- From: Andy Matthe

Preventing long strings of one character

2006-10-03 Thread Andy Matthews
I'm building an email signup form for kids. Sometimes they (or their adults) type in values with long strings of one letter: avid for example. I'd like to loop over the form fields and check for any occurrence of one character repeated more than 3 times. That should cover any legit in

RE: Headers and Footers

2006-10-03 Thread Ben Nadel
Oh, I need to get me some of that :) Installing right now! Thanks! .. Ben Nadel Certified Advanced ColdFusion Developer www.bennadel.com -Original Message- From: Crow T Robot [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 4:12 PM To: CF-Talk Subject

Re: CFIF Statement

2006-10-03 Thread Claude Schneegans
>>if it exists, then I know I am on an edit or view page and to output the query, the other side would be to create a blank query to leave the form blank, Actually, you don't have give you all this trouble. In all my edit templates, I transmit the id of the record I want to work on. When adding a

Re: CFFILE Upload problems

2006-10-03 Thread Jake Churchill
I saw this once but the server was out of Hard Drive space. Dirk Sieber wrote: > Hi everyone, > > We're still having continuing problems with uploading files to one of our > servers using: > CFFILE ACTION = "UPLOAD" > > and I'm wondering if anyone else has seen this. Files under about 100k or

RE: Headers and Footers

2006-10-03 Thread Crow T Robot
The TinyURL extension for FF rocks, you know.. :) http://tinyurl.com/jtpx6 AND http://tinyurl.com/fw97g > -Original Message- > From: Ben Nadel [mailto:[EMAIL PROTECTED] > Sent: Tuesday, October 03, 2006 4:03 PM > To: CF-Talk > Subject: RE: Headers and Footers > > Sorry, those URLs

CFFILE Upload problems

2006-10-03 Thread Dirk Sieber
Hi everyone, We're still having continuing problems with uploading files to one of our servers using: CFFILE ACTION= "UPLOAD" and I'm wondering if anyone else has seen this. Files under about 100k or so are fine - above that, things get erratic, with larger (ie 1MB+) files failing pretty

Re: reports reports reports

2006-10-03 Thread Teddy Payne
10 minutes is a candidate for an aggregate solution somewhere. I use DTS packages to schedule my aggregate reports to merge millions to tens of thousands as needed for a given report. I feel for you man. A 6000+ second timeout is brutal. Teddy On 10/3/06, Brad Wood <[EMAIL PROTECTED]> wrote: >

RE: Headers and Footers

2006-10-03 Thread Ben Nadel
Sorry, those URLs were horrible, try this: http://www.bennadel.com/index.cfm?dax=skinspider:0.viewcode&code_module= I1_2006_10_03&file_request=tags.cfm And http://www.bennadel.com/index.cfm?dax=skinspider:0.viewcode&code_module= I1_2006_10_03&file_request=extensions/includes/_header_standard.cf

RE: Break it down for n00bs: security problems of non-SSL intrane t?

2006-10-03 Thread Dave Watts
> I think the question was "are you talking about certificates > with a validating signature?" and I think I answered that... > more or less. If it wasn't clear, then "YES" I am talking > about generated certs that will validate 100% locally. I remember an exploit specific to IE around 2001 or

RE: Headers and Footers

2006-10-03 Thread Ben Nadel
A the moment, I have had a lot of good experiences with including headers and footers via CFInclude. I set some sort of variable prior to this that is reference in the header / footer to determine output. I the following example, I set REQEST.Page which is used in the header to determine navigation

RE: CFIF Statement

2006-10-03 Thread loathe
I wish I could still execute that function from time to time :) Example, very basic form: Column Header

RE: Headers and Footers

2006-10-03 Thread Jennifer Dodson
You can even get really fancy and "extend" your application.cfc in each sub-folder to include slightly different headers / footers based upon where in the site the user is. We did that and it works awesome. -Original Message- From: Teddy Payne [mailto:[EMAIL PROTECTED] Sent: Tuesday, Octo

Re: Headers and Footers

2006-10-03 Thread Teddy Payne
If you use Application.cfc, you can use the onRequest method to intercept your page loads. After the page has been intercepted, include your head, body and footer. Your header and footer would not be centralized and can recieve conditional logic if needs be. Teddy On 10/3/06, [EMAIL PROTECTED]

  1   2   3   >