RE: CFHTTP, SSL and Certificates (Obligatory Oh My)

2006-11-02 Thread Kola Oyedeji \(E-mail\)
Well that did the trick!

I was reluctant to start updating the JVM given nothing had changed
(including the third parties certificate) - however I did install a new JVM
(1.4.2_09) on the machine *but didn't set ColdFusion to use it* then:

- copied the keystore to this new JVM
- added the certificate to the keystore 
- then copied the keystore back to ColdFusion and restarted ColdFusion

That did the trick. I'm still bemused as to why it would suddenly stop
working?

You can download 1.4.2_09 and most JDKs/JVMS from here:

http://java.sun.com/products/archive/

Hope that works for you

Kola

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: 01 November 2006 22:59
 To: CF-Talk
 Subject: RE: CFHTTP, SSL and Certificates (Obligatory Oh My)
 
 Hi
 
 I came across this post:
 

http://www.talkingtree.com/blog/index.cfm?mode=entryentry=25AA75A4-45A6-284
 4-7CA3EECD842DB576
 
 There is possibly a bug with the version of the JVM 1.4.2-b28. I've tried
 everything except this - which I'll try in the morning when I get back
into
 the office...
 
 Let you know how I get on
 
 
  -Original Message-
  From: Rob Wilkerson [mailto:[EMAIL PROTECTED]
  Sent: 01 November 2006 16:29
  To: CF-Talk
  Subject: Re: CFHTTP, SSL and Certificates (Obligatory Oh My)
 
  On 11/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED]
 wrote:
  
   What version of CF?
 
  MX 7.0.2
 
   What error message are you getting...
 
  There is no error message beyond the Status code unavailable error
  returned by the CFHTTP call.  Nothing in any log file.
 
   you said other
   HTTPS sites are working - I'm assuming you mean other cfhttp calls?
 
  That's correct.  Once I import the cert, I can CFHTTP to several (3)
  other SSL-enabled URIs.
 
   Are
   there differences in the types of the certificate?
 
  Not that I'm aware of.  All were exported in the same manner and I
  didn't notice any difference (although, admittedly, I'm not sure what
  I'd have been looking for).
 
   When you attempt to
   import the certificate it should confirm that its been added
 
  It does.  I can list them after importing and, sure enough, they're in
  place and trusted.
 
 
 ~
 
 
 ~
 

~|
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:258809
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Selenium Testing with CF (?)

2006-09-04 Thread Kola Oyedeji \(E-mail\)
We've started using it ..primarily as a result of watching the same demo at
cfunited

 -Original Message-
 From: Will Tomlinson [mailto:[EMAIL PROTECTED]
 Sent: 03 September 2006 13:17
 To: CF-Talk
 Subject: Re: Selenium Testing with CF (?)
 
 Has anyone used Selenium ( http://www.openqa.org/selenium/ ) to test any
 scripts, if not CF apps itself. I just came across it earlier and have
been
 curious.
 
 I watched John paul Ashenfelter demo selenium at cfunited. It looked
pretty wicked.
 
 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:251978
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Converting query to comma separated list

2004-09-23 Thread Kola Oyedeji
Mark,

Not sure if I understand your question but maybe ValueList()
May be of some help?

Kola

-Original Message-
From: Mark Henderson [mailto:[EMAIL PROTECTED] 
Sent: 23 September 2004 10:07
To: CF-Talk
Subject: Converting query to comma separated list

My first question, though I suspect this might not be the best approach
. Is it possible to turn a query (cfdirectory in this case) into a comma
separated list?

The reason I ask is bcos currently I have a hardcoded list of folders in
my action file, and I loop through and pull all the files from each.
Like so...

cfloop 
  index = thisItem 
  list = maps,districtPlans,mgmtPlans 

cfdirectory 
  name=getAllFiles 
  action="">
  directory=#serverdir##thisItem#  
  sort=name ASC

cfquery dbtype=query name=getAllFiles_#thisItem#
  SELECT *  
  FROM getAllFiles
/cfquery 

/cfloop 

and in the display page something like...
ol
cfoutput query=getAllFiles_maps
#replace(listFirst(name), _,  , ALL)#br /
/cfoutput
/ol
ol
cfoutput query=getAllFiles_mgmtPlans
#replace(listFirst(name), _,  , ALL)#br /
/cfoutput
/ol etc etc


This is all working fine. BUT, instead of hardcoding the list, I can do
another directory call like so...

cfdirectory 
name=getAllFolders
action="">
directory=#serverdir#
sort=name ASC

which will give me all the folders that are in the above list (ie
maps,districtPlans etc). So, how to get the query to a list so I don't
need to hardcode? OR, is this the wrong approach and is it possible to
use the getAllFolders query directly in some fashion?

TIA
Mark
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Kola Oyedeji
Mike

 
Most CMS systems I have come across have the same or similar
functionality so picking anyone off the shelf - commonspot, farcry,
ShadoMX should give you an idea of common functionality - one thing
which is still lacking in many of the cms systems I have come across is
*decent* support for multilingual content. I believe the latest version
of farcry may support this but I haven't played with it yet.

 
Oh yeh. and I would avoid re-inventing the wheel and look at existing
solutions unless you have a strong business case for creating one.

 
Regards,

 
Kola

 
-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: 17 September 2004 15:23
To: CF-Talk
Subject: Content Management System (CMS) Wishlist

 
I'm currently doing a spec for a new CMS I'm building for my own use. 
(I'll think about making it available commercially later).

I'm making it for CFMX, and all the presentation stuff is going to be
in CSS. The CMS will output valid XHTML and because no layout code
wiill be in the output from the CMS,the look of hte site will
entirely be in the CSS Style sheets (see the Zen Garden project to get
an idea of what you can do withCSS!http://www.csszengarden.com/ )

Can I pick the collective brain of this list again for a wish list
while I'm building the specs ...

What features do you wish were in the CMS you're using or have looked
at, that arent there now?

What things are in the CMS you use, that you never use and think are a
waste of time?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
AFP Webworks
http://afpwebworks.com
.com,.net,.org domains from AUD$20/Year
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Kola Oyedeji
Paul

 
Micha summed up exactly what I was referring to when I meant decent.
Most CMS systems approach this by creating a separate branch or mirror
site as you mentioned. I would be interested to see how farcry handles
this. Ideally I'd want to work with a language aware system such that I
can change languages in the cms to see the alternative version of the
content in a different language.

 
Kola

 
-Original Message-
From: Paul Hastings [mailto:[EMAIL PROTECTED] 
Sent: 17 September 2004 16:16
To: CF-Talk
Subject: Re: Content Management System (CMS) Wishlist

 
 for multilingual content = not just creating a separate branche for
 other languages.

yeah that was the first thing folks suggested when we started discussing
this for farcry. i'm not for that technique (1 new language = 1 new
site).
we'll see how this plays out w/farcry.

 Creating a system being able to handle multilingual content, on object
 bases, is not a simple task.

perhaps but i've known it to be done ;-)
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Java Import - CF

2004-09-17 Thread Kola Oyedeji
If you have the package available as a jar you should be able to
reference it in the administrator under the classpath settings.

 
Kola

 
-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: 17 September 2004 16:07
To: CF-Talk
Subject: RE: Java Import - CF

 
Okay, I have the terminology figured out a little better now, so lets
see if
this helps.

The JSP page is including a package which apparently instantiates the
CommunityAccessLevel class on import.So, in ColdFusion, how can you
import a
Java package?

I could just create a new object based upon this class, I am just not
sure that
is the best answer.

Thanks
-- Jeff

Quoting Jeff Chastain [EMAIL PROTECTED]:

 Okay, maybe with some more context, you can help me out with this
then.I
 have the following JSP code that I am attempting to convert to CF.

 % page language=java import=com.plumtree.remote.portlet.* %
 %
IPortletContext context =
 PortletContextFactory.createPortletContext(request, response);
IPortletUser portletUser = context.getUser();

if ( CommunityAccessLevel.Edit ==
 portletUser.getCurrentCommunityAccessLevel() ) {


 I have the CF code that handles the first two object declarations (via
 cfobject).Where I am running into problems is in the IF statement
with the
 'CommunityAccessLevel.Edit'.There is nothing in the page before this
that
 declares a CommunityAccessLevel object.In reading the documentation
for
 this API, CommunityAccessLevel is a class in the
plumtree.remote.portlet
 namespace that has a static field called Edit.

 So, how would I translate this into CF?

 Thanks for your help.
 -- Jeff
 
_
 
 From: Samuel Neff [mailto:[EMAIL PROTECTED] 
 Sent: Friday, September 17, 2004 8:13 AM
 To: CF-Talk
 Subject: RE: Java Import - CF
 
 
 Import in Java doesn't instatiate anything, all it does is make a
reference
 used by the compiler to use shorthand access to packages so you don't
have
 to write out the whole package name every time you reference a class
in that
 package.
 
 The closest equivalent in CF would be:
 
 cfset portlet = com.plumtree.remote.portlet.
 cfset homePortlet = createObject(java, #portlet#HomePortlet)
 
 Sam
 
 --
 Blog:http://www.rewindlife.com
 Chart: http://www.blinex.com/products/charting
 -- 
 
 -Original Message-
 From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
 Sent: Friday, September 17, 2004 8:45 AM
 To: CF-Talk
 Subject: Java Import - CF
 
 When you see the following line in a JSP file ...
 % page language=java import=com.plumtree.remote.portlet.* %
 ... is there a way to duplicate this functionality in CFMX?Is it
possible
 it import an entire library like this rather than instantiating every
class
 individually with cfobject?
 
 Thanks
 -- Jeff 
_
 
 
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Content Management System (CMS) Wishlist

2004-09-17 Thread Kola Oyedeji
Well that's the million dollar question, when I asked and basically need
to create a duplicate site, I can't recall if there was any facility to
keep them in sync, they may have been.

 
It may have moved on since then.

 
Kola

 
-Original Message-
From: Micha Schopman [mailto:[EMAIL PROTECTED] 
Sent: 17 September 2004 17:30
To: CF-Talk
Subject: Re: Content Management System (CMS) Wishlist

 
How does one manage multilingual content in ShadoMX, I am interested in
this specific feature. Do you have screens showing how it works?
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: OT- NEWS - cfcertification.com

2004-09-17 Thread Kola Oyedeji
*LOL* you're not implying anything are you Jochem ;-)

 
-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: 14 September 2004 16:51
To: CF-Talk
Subject: Re: OT- NEWS - cfcertification.com

 
Micha Schopman wrote:

 What pron?

Overprised porn :)

 It has articles about CFMX and components. I don't know
 what site you are visiting right now? Maybe some cache browser
history?

Since dig and telnet don't cache I think it is more likely you 
are the one having caching issues.

Jochem
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Java Import - CF

2004-09-17 Thread Kola Oyedeji
Jeff AFAIK there is no way to do this in CF, you're stuck with using
create object. 

 
KOla

 
-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
Sent: 17 September 2004 17:19
To: CF-Talk
Subject: RE: Java Import - CF

 
Okay, a better reply is that it appears that the following JSP package
import ...

% page language=java import=com.plumtree.remote.portlet.* %

... is actually comparable to ...

cfobject action="" type=java
class=com.plumtree.remote.portlet.AggregationMode
name=AggregationMode
cfobject action="" type=java
class=com.plumtree.remote.portlet.CommunityAccessLevel
name=CommunityAccessLevel
cfobject action="" type=java
class=com.plumtree.remote.portlet.HostedDisplayMode
name=HostedDisplayMode

... etc. for all 15 classes in this package.

So, is there a simpler way to do this?It would be ideal, as it is in
JSP, to
have all of the objects already created and ready to use without having
to
perform N cfobject calls at the top of a template.

Thanks
- Jeff

Quoting Kola Oyedeji [EMAIL PROTECTED]:

 If you have the package available as a jar you should be able to
 reference it in the administrator under the classpath settings.

 Kola


-
This mail sent through IMP: http://horde.org/imp/
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: for all you gmail users

2004-08-20 Thread Kola Oyedeji
Perhaps to create a wap front end?

 
Plenty of uses.

 
Kola

 
-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: 20 August 2004 14:56
To: CF-Talk
Subject: Re: for all you gmail users

 
Outside of archival, why would you want to use outlook? Is the
searching and organization of gmail to efficient?

-Adam

- Original Message -
From: John Beynon [EMAIL PROTECTED]
Date: Fri, 20 Aug 2004 14:04:27 +0100
Subject: Re: for all you gmail users
To: CF-Talk [EMAIL PROTECTED]

yeah, I blogged about that just before (www.beynon.org.uk) but if you
look at the gmail feature list they're working on that have POP3 as
'we're working on it'

jb.

On Fri, 20 Aug 2004 09:06:04 -0400, Tangorre, Michael
[EMAIL PROTECTED] wrote:
 Don't forget the gmail popper
 
 Pop Goes the Gmail is a program that sits between the
http://gmail.com
 web server and your email client, converting messages from web format
 into POP3 format that a program such as Outlook Express or Thunderbird
 can understand?
 
 http://jaybe.org/downloads.htm
 
 Michael T. Tangorre
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CFX Tag help

2004-08-10 Thread Kola Oyedeji
Send it to me off list and I'll have a look

 
Kola

 
-Original Message-
From: Ketan Patel [mailto:[EMAIL PROTECTED] 
Sent: 09 August 2004 18:18
To: CF-Talk
Subject: CFX Tag help

 
Hi All,
I am using CFX_google on one of the application I am working on. I have
downloaded the tag from CFDEV website
http://www.cfdev.com/xml/soap/google/

It comes in open source so you can pretty much change it. I want to know
if
any body can help me to change the max results in the class file and the
generate the JAR file for me. I have no knowledge at all of JAVA so any
help
is appreciated. I want to retrieve up to 1000 results instead of 10
which
come standard with the downloaded version. Thanks in advance.

Ketan Patel
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Getting an image.. before display

2004-08-09 Thread Kola Oyedeji
Could you perhaps use FileExists() ?

 
Kola

 
-Original Message-
From: Mark Drew [mailto:[EMAIL PROTECTED] 
Sent: 09 August 2004 16:44
To: CF-Talk
Subject: Re: Getting an image.. before display

 
The URL IS on the same server... I shall look at converting the
location... the problem is that from the database I would get
something like
../somthing/somthin/image.jpg and it would be converting that to a
path

MD

On Mon, 09 Aug 2004 11:31:32 -0400, Claude Schneegans
[EMAIL PROTECTED] wrote:
  I have the url not the path
 
 Is the url phisically on the same server?
 If not, then CFHTTP is you only (and time consuming) solution.
 
 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.
 
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Resources for CF MX Enterprise

2004-07-22 Thread Kola Oyedeji
Sean

 
While not a problem specifc to my situation bug 56262 could cause some
cause for concern

 
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
69
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid
=69threadid=806965 threadid=806965

 
KOla

-Original Message-
From: Sean Corfield [mailto:[EMAIL PROTECTED] 
Sent: 22 July 2004 06:01
To: CF-Talk
Subject: Re: Resources for CF MX Enterprise

 I would also look at deploying against Websphere or another J2EE
package if you go the
 Enterprise route. JRun is fine, but as you scale you may want
something more robust.

JRun is what powers CFMX on macromedia.com and we find it scalable and
robust. I'd be very interested to hear any specific problems you think
JRun has?
-- 
Sean A Corfield -- http://www.corfield.org/blog/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: jdbc settings???

2004-07-22 Thread Kola Oyedeji
Doug

 
What driver are you using?

 
Kola

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED] 
Sent: 22 July 2004 04:41
To: CF-Talk
Subject: RE: jdbc settings???

yeah, maybe, but if that did work, wrap over 100 cfquery tags in this?
not!
The DBA feels this

SET TRANSACTION ISOLATION LEVEL READ COMMITTED

isn't really neccessary and he wants to see what SQL is actually getting
executed via Oracle

Doug...of the jealous non gmail clan;)

-Original Message-
From: Qasim Rasheed [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 21, 2004 11:25 PM
To: CF-Talk
Subject: Re: jdbc settings???

I guess you can use cftransaction tag with changing the isolation
attribute.

Qasim

- Original Message -
From: Douglas Knudsen [EMAIL PROTECTED]
Date: Wed, 21 Jul 2004 22:57:39 -0400
Subject: jdbc settings???
To: CF-Talk [EMAIL PROTECTED]

My DBA is saying that 

SET TRANSACTION ISOLATION LEVEL READ COMMITTED

is executed by CF on each query. Any way to turn this off?

---

Douglas Knudsen

http://www.cubicleman.com/ http://www.cubicleman.com

If you don't like something, change it. If you can't change it, change
your
attitude. Don't complain. - Maya
Angelou 
_ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CFECLIPSE/Eclipse/databases?

2004-07-21 Thread Kola Oyedeji
Mark

 
Other than having to re-start Eclipse, I have never had this problem.
Could it be something to do with the OS/version of Eclipse you are
using?

 
Kola

 
-Original Message-
From: Mark Drew [mailto:[EMAIL PROTECTED] 
Sent: 19 July 2004 15:05
To: CF-Talk
Subject: Re: CFECLIPSE/Eclipse/databases?

 
Ok
So you all know, I have installed some plugins and restarting eclipse
doesnt always show them. So what you have to do (acroding to the
readme) is to launch eclipse with the following startup params:
eclipse.exe -vmargs -Dosgi.checkConfiguration=true

Hope that helps

MD

On Mon, 19 Jul 2004 13:58:38 -, Eric Dawson [EMAIL PROTECTED]
wrote:
 apparently putting your link between  works to prevent URL loss from
wrapping. ie
 

http://eclipse-plugins.2y.net/eclipse/index.jsp;jsessionid=3449A839B17F
F31A29614A961C033A12
 
 Eric
 
 - Original Message -
From: Thomas Chiverton
To: CF-Talk
Sent: Monday, July 19, 2004 12:15
Subject: Re: CFECLIPSE/Eclipse/databases?
 
On Friday 16 Jul 2004 16:11 pm, Robertson-Ravo, Neil (RX) wrote:

http://eclipse-plugins.2y.net/eclipse/index.jsp;jsessionid=3449A839B17FF
31A
 29614A961C033A12
 
Can you post a link that works ?
 
--
Tom Chiverton
Advanced ColdFusion Programmer
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: UDF within a Custom Tag

2004-07-21 Thread Kola Oyedeji
I believe this is a known bug - stumbled across it myself a while back.
Since then I have resorted to declaring udfs outside a tag

 
Kola

-Original Message-
From: Jamie Jackson [mailto:[EMAIL PROTECTED] 
Sent: 21 July 2004 17:17
To: CF-Talk
Subject: Re: UDF within a Custom Tag

On Wed, 21 Jul 2004 12:11:13 -0400, in cf-talk you wrote:

On Wed, 21 Jul 2004 10:45:21 -0500, Raymond Camden [EMAIL PROTECTED]
wrote:

Are you still running 6.0? I believe they fixed this in 6.1.

Nope, running 6.1. Any ideas with that in mind? Might I be doing
something wrong?

Whoops, I forgot for a moment which environment this app's in. Our
CFMX boxes are all 6.1, but this old site happens to be on _CF5_, not
MX at all.

Thanks,
Jamie 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: java objects and cfmx

2004-07-13 Thread Kola Oyedeji
Ummm.

 
I think he was referring to the versions of java ;-)

 
KOla

 
-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: 08 July 2004 19:06
To: CF-Talk
Subject: RE: java objects and cfmx

 
 and I have learned that, in Java:
 
1 == 1.0
1 == 1.1
 
2 == 1.2
2 == 1.3
2 == 1.4
 
 All of the above are true -- what could be more clear?:)

I don't know what the heck you're learning from, but that's all kinds of
wrong.Here's a sample class:

public class test {

public static void main(String[] args) {
runTest(1, 1.0);
runTest(1, 1.1);
runTest(2, 1.2);
runTest(2, 1.3);
runTest(2, 1.4);
runTest(2, 1.5);
runTest(2, 2.0);
}

private static void runTest(int i, double f) {
System.out.println( + i +  ==  + f +  =  + (i == f));
}

}

And the output it generates:

1 == 1.0 = true
1 == 1.1 = false
2 == 1.2 = false
2 == 1.3 = false
2 == 1.4 = false
2 == 1.5 = false
2 == 2.0 = true

Which is exactly as you'd expect.

Cheers,
barneyb
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Multiple columns via CSS with position:relative?

2004-07-07 Thread Kola Oyedeji
Try

 
Posting it on http://www.css-discuss.org/ those guys may have a
suggestion or two.

 
KOla

 
-Original Message-
From: Damien McKenna [mailto:[EMAIL PROTECTED] 
Sent: 06 July 2004 20:55
To: CF-Talk
Subject: OT: Multiple columns via CSS with position:relative?

 
I'm attempting to set up web pages with multiple columns.Right now, 
to get it working I have to have them set to position:absolute except 
for the longest one which gets position:relative (so the footer is 
correctly aligned).Is there a better way of doing this?Thanks.
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Nothing endures but change. - Heraclitus
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: SOT: Learning Java for a CF Developer - a possible solution?

2004-07-07 Thread Kola Oyedeji
Dick, I would second simeon's recommendation, 

 
Head first Java is probably unlike any programming book you've read
before and should also be available on Safari as its by O'reilly

 
Kola

 
-Original Message-
From: simeon [mailto:[EMAIL PROTECTED] 
Sent: 07 July 2004 16:37
To: CF-Talk
Subject: Re: SOT: Learning Java for a CF Developer - a possible
solution?

 
A book that is a great Java primer is Head First Java its not a big 
book and it doesnt cover every aspect of java life, but I has a great 
approach to helping you remeber the things that are important when 
starting out.

sim
Dick Applebaum wrote:

 I've been getting a lot of (some not so)
 gentle suggestions, lately, that CF may
 not be the best solution for what I want
 to do.

 So, I decided, I would learn Java (I had
 tried several times before -- even
 bought a 500 lbbook  CD -- Learn
 Java in 551 weeks, or somesuch.

 Well, a long weekend was coming,  I had
 some time -- give it a go!

 But where to start:

 I probably needed a more robust IDE 
 this list recommended eclipse.

 Eclipse is quite an involved
 application, but it is wrtitten in and
 for Java and has some CF plugins too.

 After about 1 day, I was comfortable
 enough with eclipse, that I could
 address my main objective: Learn Java.*

 * I don't expect that I will become a
 Java expert, nor even a Java programmer.
 But I will have the ability to write
 acceptable Java applications (or Java
 extensions to CF applications) when
 needed.And, I should be able to read
 and understand Java programs written by
 others.

 So, I googled around for a Java
 tutorial.One obvious site was Sun. But
 the Sun site, is like Microsoft's site
 -- very difficult to navigate or search
 unless you already know the lingo.

 And the articles always seen to be part
 of a long-term agenda -- I always feel
 like I came in in the middle and that
 they are trying to teach/sell me a lot
 of stuff I don't want or need,

 I did not want to start learning Java
 with a sales pitch or delving into the
 advantages and nuances of OOP.

 I did find an online book, that claims
 not to be a tutorial.It also claims
 not to be a book on Java, rather An
 introduction to programming, Using
 Java.It was reasonably up to date,
 July 2002, so let's have a look.

 At first, it seems a little basic, but I
 resisted the temptation to skim ahead.
 And I forced myself to try all the
 examples (learn both Eclipse and Java at
 the same time).

 Well, it is more like a class lecture
 than a book or tutorial.The instructor
 covers what needs to be covered, defers
 complexity until you are ready to absorb
 it, and moves right along.I found that
 the early chapters, while conceptually
 nothing new to an experienced
 programmer, did put me in a comfort zone
 with Java terminology and the Java way
 of doing things.

 Exactly what I was looking for!

 If you want to introduce a little Java
 into your life, have a look:

 http://www.faqs.org/docs/javap/index.html

 And, as I learn, I am resisting the temptation
to go off and experiment (too much), but to
 stay focused and complete the course.

 HTH

 Dick

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Dumping a CFHTTP call?

2004-07-05 Thread Kola Oyedeji
Also there is a built in utility which will help you view the http
response and request,

 
See
http://www.macromedia.com/support/coldfusion/ts/documents/tcpmonitor.htm

 
For more details

 
KOla

 
-Original Message-
From: Mark Drew [mailto:[EMAIL PROTECTED] 
Sent: 05 July 2004 12:05
To: CF-Talk
Subject: Re: Dumping a CFHTTP call?

 
cfdump var=#CFHTTP# ?

On Mon, 5 Jul 2004 06:46:45 -0400, C. Hatton Humphrey
[EMAIL PROTECTED] wrote:
 I'm working on a generic internal screen-scraper to export reports to
 Excel.In the process of building my call I generate a structure that
 stores the parameters and such and then parse it all out in the CFHTTP
 call.
 
 Is there a way that I can see exactly what is being passed via the
 CFHTTP call (like in a debug results) without modifying the page that
 is called?
 
 Thanks!
 
 --
 UntiL Later!
 C. Hatton Humphrey
 [EMAIL PROTECTED]
 
 ... evolution wise whenever you create something your
 brain give you a little endorphine buzz... why do
 you think Einstein looked that way? - Robin Williams
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Build JAVA request and response scopes in CF

2004-07-05 Thread Kola Oyedeji
Stavros

 
Coldfusion pages are JSP servlets so you can access the request and
response objects using the pageContext which every coldfusion page has:

 
tst = GetPageContext().getRequest();

 
See
http://livedocs.macromedia.com/coldfusion/6/Developing_ColdFusion_MX_App
lications_with_CFML/Java2.htm

 
For more info.

 
HTH

 
Kola

-Original Message-
From: Stavros Tekes [mailto:[EMAIL PROTECTED] 
Sent: 05 July 2004 13:16
To: CF-Talk
Subject: Build JAVA request and response scopes in CF

 
Hi all,I am building an application in CF that uses a Java API (I do
not have the source for the API)The problem I am facing, is that I
can't call some of the API functions which use the request and response
scope as parameteres ( for example a function existing in a SERVLET
which is declared as : protected void FunctionName(HttpServletRequest
request, HttpServletResponse response) ).This is done cause there is
not something (to my knowledge of course) in CF that can represent the
request and response scope the way Java does and for that, the function
is not recognized and called properly. I tried to use Javacast() but I
didnt know how to build the CFRequest and CFResponse variablesIs
there any solution to this problem? Maybe someone has faced the same
problem in the past and built a wrapper function that takes the URL and
SESSION scope of CF and form it the way JAVA builds its request scope.
Any help will be significant to me as I seem to be running out of
ideas SCARY!Cheers!Stavros

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: JRUN and ColdFusion MX

2004-06-22 Thread Kola Oyedeji
Troy

 
Don't forget, there are a number of books online at livedocs

 
http://livedocs.macromedia.com/jrun/4/index.html

 
The getting started one is a good introduction if you're not familiar
J2EE application servers

 
KOla

 
-Original Message-
From: Troy Simpson [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 22:29
To: CF-Talk
Subject: JRUN and ColdFusion MX

 
All,

Is there another list for JRUN or would this be the list for JRUN?
Does anyone have a recommendation for a book on JRUN so that I can get 
up and running soon as possible.

Thanks,
Troy

-- 
Troy Simpson
Applications Analyst/Programmer, OCPDBA, MCSE, SCSA
North Carolina State University Libraries
Campus Box 7111 | Raleigh | North Carolina
ph.919.515.3855 | fax.919.513.3330
E-mail: [EMAIL PROTECTED]
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: cleaning up a word file

2004-06-22 Thread Kola Oyedeji
Dave

 
This may be of some help

 
http://www.cflib.org/udf.cfm?ID=319

 
Reformats special chars typically found when copying and pasting from
Word. 

 
HTH

 
KOla

 
-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED] 
Sent: 22 June 2004 06:43
To: CF-Talk
Subject: cleaning up a word file

 
i have a user that will be using a mac and copying  pasting code from
word files, any good tags to make sure that code is cleaned up good?
I remember seeing something somewhere but cant remember where

ty!
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: JRUN and ColdFusion MX

2004-06-22 Thread Kola Oyedeji
I don't think there are any recent books specifically on JRun, Drew
Falkman wrote a book but I believe its quite dated now.

 
Kola

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 23:51
To: CF-Talk
Subject: RE: JRUN and ColdFusion MX

 
 Is there another list for JRUN or would this be the list
 for JRUN?

There is a separate JRun list hosted by houseoffusion.com.

 Does anyone have a recommendation for a book on JRUN so 
 that I can get up and running soon as possible.

To the best of my knowledge, there are no books specifically about the
latest version of JRun. In general, writing applications for JRun
doesn't
seem to be much different than writing them for any other J2EE
application
server, so if that's what you're looking for you might just pick up a
book
on that general topic.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Help with CF5 Queued Requests

2004-06-21 Thread Kola Oyedeji
Frank

 
Did you try using the timeout attribute of cfquery?

 
KOla

 
-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 21:36
To: CF-Talk
Subject: Re: Help with CF5 Queued Requests

 
Mark,

I found the processes that lockup in SQL Server. When I kill them it
returns to normal. What I don't understand is why the query timeout set
in CFADMIN doesn't take care of this automatically? 

Our DBA is looking at the offending queries in the meantime.

Thanks for your tips!

-Frank
- Original Message - 
From: Mark A. Kruger - CFG 
To: CF-Talk 
Sent: Friday, June 18, 2004 3:23 PM
Subject: RE: Help with CF5 Queued Requests

Frank,

You should be looking for code that waits for a response from a
third party process. Culprits are (typically) db
access, ftp, ldap, pop, file access (cffile), cfhttp etc.All of
these services must connect to a service or process
outside the CF engine - cf awaits their response... sometimes
indefinitely if its set up that way. That's why such
tags often include a timeout value.Slow pages is a good place to
start. Also look at the scheduled task folder and
find out if there's a regular data import or web scraping
application or some other ap put there for utility reasons.
Sometimes these tasks run for years with no one noticing them and then
suddenly start hanging.

-Mark

 -Original Message-
 From: Frank Mamone [mailto:[EMAIL PROTECTED]
 Sent: Friday, June 18, 2004 12:06 PM
 To: CF-Talk
 Subject: Help with CF5 Queued Requests

 I have been tasked with stabilizing a legacy CF 5 application which
had several problems including CF restarts and
loss of client variables etc.

 I managed to solve most of the issues -- many caused by application
variables not being locked.

 There is one issue which I need help with. Using Perfmon, I notice
that, at times, ColdFusion requests stay queued and
are not processed. They just stay there - forcing me to restart CF.

 I am tryng to track down what in the code could be causing this by
looking at the log entries showing slow page
warnings.

 Is there any known causes for this symptom? What else should I be
looking for?

 Thanks for your help.

 Frank
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Java-CF MX 6.1 (Enterprise edition) integration

2004-06-21 Thread Kola Oyedeji
Stavros

 
Can you clarify? Do you mean importing JSP tag libraries with CFIMPORT?
You should be able to call the api directly as long as the class files
are somewhere on the classpath. Bear in mind if you have any classes
with an init() method you may have to make some changes or introduce a
wrapper as CFMX uses this method name to call a constructor. AFAIK you
shouldn't have any problems.

 
KOla

 
-Original Message-
From: Stavros Tekes [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 05:24
To: CF-Talk
Subject: Java-CF MX 6.1 (Enterprise edition) integration

 
Hi all! I would like to ask whether anyone has faced any problems by
importing java files into CF MX 6.1 (using CFIMPORT) and calling
functions from the java file.We are trying to develop an application
based on an existing java api, but I would like to know beforehand,
whether there might be any problems I believe the other possibility
would be to use CFX tags through cold fusion, but I think this is a
totally different way to approach things and it demands a wider java
knowledge.Any help will be appeciated, as it will help us on deciding
how to procceedThanks!Stavros 

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CFPOP streamlining

2004-06-21 Thread Kola Oyedeji
James you could well be right, it may actually be quicker to download
and then ignore the additional emails as opposed to constantly
opening/closing connections to the mail server - I would test both
options and see which one performs better.

 
Kola

 
-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 11:06
To: CF-Talk
Subject: CFPOP streamlining

 
I have a template that retrieves mail and processes it to extract order
information using cfpop.At any one time it can be retrieving up to 300
emails of which around 200 will be orders, the rest will be a mixture of
junk and correspondence aimed at the human who reads the account.

I am currently doing a cfpop to retrieve the headers only, then looping
over
these doing another cfpop for each to get the message body resulting in
200+
pop connections in total.

Would it be better to just do one connection, retrieve everything, and
simply ignore to 100 message bodies I am not interested in?

--
James Smith
[EMAIL PROTECTED]

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 15/06/2004
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CFPOP streamlining

2004-06-21 Thread Kola Oyedeji
James 

 
I just had a look at the livedocs for CFMX
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-b14.htm#wp11
01854 
(assuming you are on cfmx) and message number can actually be a comma
separated list of all the messages you would like to retrieve, this
should save you having to call cfpop for each email and allow you to
re-use the connect.

 
Not sure if the getHeaderOnly action correctly only gets the header but
you can look at the commands being sent to the mail server in the mail
logs which should give you some indication of whatPOP commands are
being sent to the mail server

 
HTH

 
KOla

 
-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 11:37
To: CF-Talk
Subject: RE: CFPOP streamlining

 
Thanks, that is what I am in the process of doing now, I was more
wondering
if there were any protocol issues here where one method would be
considered
more propper than the other.

_

From: Kola Oyedeji [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 11:32
To: CF-Talk
Subject: RE: CFPOP streamlining

James you could well be right, it may actually be quicker to download
and then ignore the additional emails as opposed to constantly
opening/closing connections to the mail server - I would test both
options and see which one performs better.

Kola

-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 11:06
To: CF-Talk
Subject: CFPOP streamlining

I have a template that retrieves mail and processes it to extract order
information using cfpop.At any one time it can be retrieving up to 300
emails of which around 200 will be orders, the rest will be a mixture of
junk and correspondence aimed at the human who reads the account.

I am currently doing a cfpop to retrieve the headers only, then looping
over
these doing another cfpop for each to get the message body resulting in
200+
pop connections in total.

Would it be better to just do one connection, retrieve everything, and
simply ignore to 100 message bodies I am not interested in?

--
James Smith
[EMAIL PROTECTED]

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.707 / Virus Database: 463 - Release Date: 15/06/2004
_ 
_
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Kevin Roche is Lame

2004-06-21 Thread Kola Oyedeji
On average it stops about 82% of all incoming mail

 
You mean people don't mind not receiving 82% of their email? ;-)

 
KOla

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 16:42
To: CF-Talk
Subject: Re: Kevin Roche is Lame

 
If you have your own mail server, try ASSP
(http://assp.sourceforge.net).Its unbeatable, but like all Bayesian
systems you have to train it for a week or so.Been running it for
about 4 months.and I have zero complaints from customers.YMMV.

-- 
--Matt Robertson--
MSB Designs, Inc.
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: cfmail only works internally

2004-06-21 Thread Kola Oyedeji
Christy

 
Is the from address a valid from address? Have you checked the undelivr
folder and the mail logs? These will normally give you a good clue as to
what the problem is.

 
KOla

 
-Original Message-
From: Christy Carter [mailto:[EMAIL PROTECTED] 
Sent: 21 June 2004 17:37
To: CF-Talk
Subject: cfmail only works internally

 
I use cfloop and cfmail to send a mass auto-email to all the users in my
database. Or I try to anyway! :)

It goes through to all users on our local email server - i.e. anyone
with the same email extension (for example [EMAIL PROTECTED]).But nobody
else seems to get it - nobody with a yahoo or hotmail account, and
nobody with a different ISP account...and I have no idea why.

Here's my code...any ideas?

Thanks,
Christy

cfloop query=getlist 
cfmail from=[EMAIL PROTECTED] type=HTML
server=#application.mailserver# to=#email# subject=#form.subject#

Dear #getlist.Username#,brbr

#form.body#brbrbr

Sincerely,
The Company

/cfmail
/cfloop
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Musings CFAnywhere, Bandwidth, RIAs Part 1

2004-06-18 Thread Kola Oyedeji
Also how portable is it? Its always annoyed me that it doesnt have the
print capabilites that powerpoint has and that you can't simply download
a presenatation 

 
Kola

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: 17 June 2004 20:47
To: CF-Talk
Subject: RE: Musings CFAnywhere, Bandwidth, RIAs Part 1

   Why can't Hal's site have a richer UI -- think of it 
   -- Hal's voice, explaining the animated preso?
 
  There's already a great answer for this, though - 
  Macromedia Breeze. It's a really good product for this 
  sort of thing, and it makes building presentations very 
  easy.
 
 Isn't it a little pricey for most users?

It's well worth the price, if you want to publish training materials
online.
Yes, it's pricey, but I suspect it's cheaper than building your own
infrastructure to do the same thing.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: ColdFusion on Mac OS X

2004-06-18 Thread Kola Oyedeji
Jeff

 
You can get some more info here:
http://www.macromedia.com/support/coldfusion/j2ee/cfmx-mac-onjrunandtomc
at.html

 
I followed the above instructions and hada painless install on OS X.
Note that I opted to remain using the built in server as opposed to
Apache so I don't know if there are any issues with it but from what
I've heard, I don't think so.

 
KOla

 
-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: 13 June 2004 19:16
To: CF-Talk
Subject: Re: ColdFusion on Mac OS X

 
 Hi all, I just got an Apple laptop, and I'm running 10.3 on it. I've 
 got StudioMX for it, and I really want to learn how to use Dreamweaver

 on OS X. If I understand everything correctly, I can run Apache on my 
 Mac by just using Web Sharing just like I can run IIS on my PC at 
 work. If I want to run ColdFusion, I'm going to first need to install 
 and configure JRun, then get the single user version of CF running on 
 top of JRun. At that point, I'll be basically all set up just like I 
 am at work...now if I've messed any of that up, correct me now.
 
 But, as you can tell, I'm a real newbie at digging into the Unix and 
 Apache stuff, and definitely a newbie at setting up and configuring 
 JRun...but I'm up to the task. So what I'm wondering is, where would 
 one go to get information specific to learning about setting up and 
 running that stuff under OS X? More specific, the whole Apache with 
 JRun and CF solution running on OS X...are there any good websites 
 dealing with just this kind of thing?

Another alternative I'd like to mention is using BlueDragon as opposed
to JRun/CFMX.I've run both on Macs and BlueDragon is far easier to
install and deal with in general.You would need to check to make sure
the very few incompatibilities between BlueDragon and CFMX wouldn't
cause you any problems, but I've been using BlueDragon for development
on my PowerBook for quite a while and haven't had any trouble.

http://www.newatlanta.com/products/bluedragon/index.cfm
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CHARTFX ColdFusion MX

2004-06-18 Thread Kola Oyedeji
This may or may not be of any help as it seems dated now (April 1998)
but there is a presentation here -
http://www.figleaf.com/figleafhome/cfug/cfugnews.cfm

 
HTH

 
Kola

 
-Original Message-
From: Asim Manzur [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 15:25
To: CF-Talk
Subject: Re: CHARTFX  ColdFusion MX

 
:-(

Someone would have responded :-)

 no one???
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CHARTFX ColdFusion MX

2004-06-18 Thread Kola Oyedeji
Have you tried it with SQL server?

 
Try this
Replacing 

 
I think you need to change the connection string so it will be something
like the following:

 
Provider=SQLOLEDB; Data Source = (local); Initial Catalog = Northwind;
User Id = sa; Password=

 
You willneed to change the datasource/username etc

 
Kola

-Original Message-
From: Asim Manzur [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 15:53
To: CF-Talk
Subject: Re: CHARTFX  ColdFusion MX

 
Thanks Kola,
that article is a way back when CHARTFX was introduces, now their all
syntax have been changed.

The main thing which I am looking for is to find the way to run the
query in ADODB syle in coldFusion.
!---Create the ADODB Connection and query the database--- 
CFOBJECT ACTION="" NAME=Conn CLASS=ADODB.Connection 
!---Open the ODBC data source--- 
CFSET Conn.open(DSN=CfxSrv;UID=guest;,,0,0) 
!---Execute the SQL statement that will return the data--- 
CFSET RS=Conn.Execute(SELECT Month,Sales,Projected From
CIEDemoSales,,0) 

the above query is connected with Access db, how can I use the same
style query with SQL server.

Thanks
asim

:-(

Someone would have responded :-)

 no one???
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CHARTFX ColdFusion MX

2004-06-18 Thread Kola Oyedeji
Are you logging in with the correct username and password - also are you
simply querying a sql server database to provide data to chartFX?

 
Its not clear.

 
Kola

 
-Original Message-
From: Asim Manzur [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 16:52
To: CF-Talk
Subject: Re: CHARTFX  ColdFusion MX

 
the following code i tried and it throw me the error

!--- Set the connection variables ---
cfset serverIP = 192.168.1.11
cfset dbName = infiniti_adbuilder
cfset username = _infiniti_
cfset password = infiniti123
cfset sqlString = select region, id, Buildprovince from dealers
!--- Create the connection to the server --- !---cfset
ConnectString=Provider=MSDASQL;DSN=infiniti;UID=_infiniti_;PWD=infiniti
123;---

cfset ConnectString=Provider='SQLOLEDB';Server='#serverIP#';Initial
Catalog='#dbName#' cfobject type=COM name=ConnectionObject
class=ADODB.Connection action="" cfset discard =
ConnectionObject.Open(ConnectString,#username#,#password#,0)
!--- Run the query ---
cfset myResultSet = ConnectionObject.Execute(#sqlString#,0,8)
!--- Get the column names ---
cfset Columns = 
cfloop collection=#myResultSet.Fields# item=thisField
cfset Columns = listappend(Columns, thisField.name) /cfloop
!--- Populate a newly made query with Columns --- cfset MyRecords =
querynew(Columns)
!--- Go to the first row of the recordset --- cfset
myResultSet.movefirst()
!--- And populate the recordset... --- cftry
cfloop from=1 to=25 index=i
 cfif NOT myResultSet.EOF
cfset queryaddrow(MyRecords, 1)
 /cfif
 cfloop collection=#myResultSet.Fields# item=this
cfset querysetcell(MyRecords, trim(this.name), this.value, i)
 /cfloop
 cfset myResultSet.movenext()
/cfloop
cfcatch/cfcatch
/cftry

!--- Output the data ---

table border=1
!--- output the columns ---
tr cfoutput
cfloop index=thisColumn list=#MyRecords.columnList# 
th#thisColumn#/th
/cfloop
 /cfoutput /tr
!--- output the rows ---
cfoutput query=MyRecords
 tr
cfloop list=#MyRecords.columnlist# index=this
td#evaluate(this)#/td
/cfloop
 /tr
/cfoutput
/table
!--- Close the ODBC connection (like you do in asp)--- cfset
ConnectionObject.Close()

the error I got is 

An exception occurred when executing a Com method.
The cause of this exception was that: AutomationException: 0x80004005 -
[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or
access denied. in 'Microsoft OLE DB Provider for SQL Server'.

The error occurred in C:\Inetpub\wwwroot\dev\test2.cfm: line 12

10 :cfset
ConnectString=Provider='SQLOLEDB';Server='#serverIP#';Initial
Catalog='#dbName#'
11 : cfobject type=COM name=ConnectionObject
class=ADODB.Connection action="">
12 : cfset discard =
ConnectionObject.Open(ConnectString,#username#,#password#,0)
13 : !--- Run the query ---
14 : cfset myResultSet = ConnectionObject.Execute(#sqlString#,0,8)

thanks
asim
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: ColdFusion on Mac OS X

2004-06-18 Thread Kola Oyedeji
I agree Jeff, Sometimes it can be useful if the client wants to run a
small report herself etc.

 
KOla

 
-Original Message-
From: Jeff Small [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 16:49
To: CF-Talk
Subject: Re: ColdFusion on Mac OS X

 
 I guess if it is small amount of traffic it is ok, I do disagree on
 principle though! use mySQL as it is for freebut I can see your
 point.. and it scares me :)

Remember though, a lot of times the clients have Access as well, and
they
like just going and downloading the access file themselves and doing
whatever little funky mass mailer or promotion they're into with the
list
without doing anything else fancy to it...lol, but I see your
point...it's
just too bad that every client on earth just about (well, at least that
we
deal with) all have a million copies of Office distributed all thruout
their
respective businesses...
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: QoQ type comparison bug

2004-06-18 Thread Kola Oyedeji
Did you try using cfqueryparam? I've seen this suggested as a possible
solution elsewhere

 
Kola

 
-Original Message-
From: Doug James [mailto:[EMAIL PROTECTED] 
Sent: 15 June 2004 18:03
To: CF-Talk
Subject: Re: QoQ type comparison bug

 
Steve,
Thanks for the suggestion, it got me closer. I ended up having to put 
everything into a date format to get it to work.
cfquery name=Meeting_Dates dbType=query
select Meeting_Date
 from Possible_Meeting_Dates
 where 
'#DateFormat(Possible_Meeting_Dates.Meeting_Date,mm/dd/)#' = 
'#DateFormat(now(),mm/dd/)#'
and 
'#DateFormat(Possible_Meeting_Dates.Meeting_Date,mm/dd/)#'  
'#DateFormat(query1.meeting_date,mm/dd/)#'
 order by Meeting_Date
/cfquery

If there is a better way please let me know.

Doug

Steve Nelson wrote:

It's probably because it's treating it like a string instead of a
datetime
since you used dateformat in the querysetcell. Is tmp_date already a
date?
Try removing the dateformat().

 

Steve Nelson

 

_

From: Doug James [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 15, 2004 12:01 PM
To: CF-Talk
Subject: QoQ type comparison bug

 

Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166693
---
HELP!
I am getting the old:
Query Of Queries runtime error.
Unsupported type comparison.

I have a db query then I build a QoQ using 
DateFormat(tmp_Date,mm/dd/) in the QuerySetCell().

I then have a QoQ:
cfquery name=Meeting_Dates dbType=query
select Meeting_Date
 from Possible_Meeting_Dates
 where Meeting_Date = '#DateFormat(now(),mm/dd/)#'
and Meeting_Date  '#query1.Meeting_Date#'
 order by Meeting_Date
/cfquery

The error is tagging the and Meeting_Date  '#query1.Meeting_Date#' 
line. I have tried everything I can think of including cfqueryparam.
The 
query1.meeting_date column is a SQL Server smalldatetime column.

Please help!
Thank you.

Doug

_




_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: cfmx and CAPTCHA

2004-06-18 Thread Kola Oyedeji
Apparently Blue dragon can but I haven't tried it ;-)

 
KOla

 
-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 13:43
To: CF-Talk
Subject: RE: cfmx and CAPTCHA

 
 why don't CFC instances go across cluster members?

I don't really know why they don't, just that they don't. I suspect that
JRun has some sort of serializer to write its own session variables to
strings, and that this serializer doesn't know what to do with CFC
instances, but I really don't know for certain.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: problems using ADODB (was CHARTFX ColdFusion MX)

2004-06-18 Thread Kola Oyedeji
IS there a particular reason why you need to run the query that way? 

 
As its fairly trivial to retrieve information from a SQL server database
I would actually concentrate on getting chartFX up and running - you can
create a mock/fake query to test chartfx if that's what you're trying to
achieve?

 
KOla

-Original Message-
From: Asim Manzur [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 17:38
To: CF-Talk
Subject: Re: CHARTFX  ColdFusion MX

 
write now I am just using the ADODB style query, I am not interacting
with CHARTFX for now. If I get success to run the query in that way then
I will implement it with CHARTFX.

Yes I double check that I put the right username password.

I think its a bug
http://support.microsoft.com/default.aspx?kbid=315159

not sure what to do now.
thanks
asim
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Musings CFAnywhere, Bandwidth, RIAs Part 1

2004-06-18 Thread Kola Oyedeji
I think it would be useful - often you want to print off some slides and
hand them out or read them on the train - with breeze you get huge full
screen prints - perhaps they should consider this or maybe adding
support for printer friendly pages

 
KOla

 
-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 17:54
To: CF-Talk
Subject: RE: Musings CFAnywhere, Bandwidth, RIAs Part 1

 
 Also how portable is it? Its always annoyed me that it doesnt 
 have the print capabilites that powerpoint has and that you 
 can't simply download a presenatation

It's an online application. It uses Flash. While it could perhaps be
engineered to work as a local application, I suppose, that's simply not
what
it's for.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: request scope in cfc... really so bad?

2004-06-18 Thread Kola Oyedeji
Simon 

 
Generally its good for your cfc to be well encapsulated such that it
doesn't know anything about its environment. This will make it more
re-useable. Consider this - what happens if you need to call the cfc as
a web service in future you've just lost that flexibility. If you have
no plans to do this and you know that these variables will always be
available in *every application* you write then its not a problem. But
if you plan to re-use it I would pass the variables in, remember you can
put them in a structure and pass them into an initialization function
using attributesCollection (I think) although you loose the type
checking of cfarguement.

 
Hope that helps

 
Kola

 
-Original Message-
From: Simon Stanlake [mailto:[EMAIL PROTECTED] 
Sent: 18 June 2004 17:59
To: CF-Talk
Subject: RE: request scope in cfc... really so bad?

 
yep, though I guess my question is really, why not use request scope,
rather than how to work around it. There are probably lots of ways to do
it without using request scope, but request seems like the least
overhead.



From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 18, 2004 9:36 AM
To: CF-Talk
Subject: RE: request scope in cfc... really so bad?

Why not make a configuration CFC (basically an encapsulated
struct), that
you can pass to all the various CFCs?Instantiate that CFC into
the
application scope, initialize it with the parameters, and then
pass that
single course-grained view of the configuration data to each
individual CFC
that needs it.

Cheers,
barneyb

 -Original Message-
 From: Simon Stanlake [mailto:[EMAIL PROTECTED] 
 Sent: Friday, June 18, 2004 9:29 AM
 To: CF-Talk
 Subject: request scope in cfc... really so bad?
 
 Thoughts?
 
 If CFCs were EJBs, you would have external config info that
you would
 look up using JNDI (or something, I'm not quite up to snuff on
J2EE).
 Let's say I am careful and create well named variables like...
 
 request.cfcname.datasource = MyDatasource;
 request.cfcname.timeout = 300;
 
 etc, all in one file called cfcname.cfm that is included in
 application.cfm. Contract with the developer is you have to
include
 cfcname.cfm in your application.cfm before calling the CFC. 
 Am I such
 a bad guy?
 
 I guess worst case scenario is Macromedia decides not to 
 support it one
 day, but I haven't heard anything about that. It's just such a
pain if
 there's 10 variables in your app that are required by 10 
 different CFCs,
 passing them in as args to the constructor seems awkward.
 
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: FW. www.FairFuelTax.co.uk

2004-06-15 Thread Kola Oyedeji
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166632---Jeez, it was a joke!

-Original Message-
From: Philip Arnold [mailto:[EMAIL PROTECTED] 
Sent: 14 June 2004 16:23
To: CF-Talk
Subject: Re: FW. www.FairFuelTax.co.uk

On Mon, 14 Jun 2004 14:55:40 +0100, Kola Oyedeji wrote:
 
 Its powered by coldfusion ;-)

So when did this become an I can advertise my site because it's
powered by CF list? 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: FW. www.FairFuelTax.co.uk

2004-06-14 Thread Kola Oyedeji
Its powered by coldfusion ;-)

 
Kola

-Original Message-
From: Philip Arnold [mailto:[EMAIL PROTECTED] 
Sent: 14 June 2004 13:33
To: CF-Talk
Subject: Re: FW. www.FairFuelTax.co.uk

On Mon, 14 Jun 2004 13:23:15 +0100, Ben Scammell wrote:
 
 http://www.fairfueltax.co.uk
 
 This sounds like a good idea, finally someone doing something
intelligent about the rude fuel prices we have in this country.
 
 Let's face it the US were kicking up about $2 a gallon.I wonder
how they would cope with the equivilent $8 we get to pay in the UK!
 
 Anyway, pass it on to the drivers you know!

I'm looking for the ColdFusion related question, but I just can't see it

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




download cf5

2004-05-28 Thread Kola Oyedeji
Anyone have the link to the CF5 download? I can't find it on the MM
site.

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: download cf5

2004-05-28 Thread Kola Oyedeji
Howard 

 
I remembered and tried searching but couldn't find it!

 
Koal

 
-Original Message-
From: Howard Fore [mailto:[EMAIL PROTECTED] 
Sent: 28 May 2004 17:15
To: CF-Talk
Subject: Re: download cf5

 
Kola,

If you search the list archives at houseoffusion.com you'll find this 
was answered not too long ago. Sorry, don't remember the answer off the 
top of my head.

--
Howard Fore, [EMAIL PROTECTED]

On May 28, 2004, at 12:02 PM, Kola Oyedeji wrote:

 Anyone have the link to the CF5 download? I can't find it on the MM
 site.
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: download cf5

2004-05-28 Thread Kola Oyedeji
Ah, that's the one I was looking for, I'll bookmark it this time,

 
Thanks Simon

 
Kola

 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 28 May 2004 17:17
To: CF-Talk
Subject: Re: download cf5

 
http://www.macromedia.com/support/coldfusion/downloads.html
3rd link from the bottom.

~Simon

 
 This is a multi-part message in MIME format.
 
 
 
 
 Anyone have the link to the CF5 download? I can't find it on the MM
 site.
 
 Thanks
 
 Kola Oyedeji
 Certified Advanced Coldfusion Developer,
 ICLP London
 DDI: +44 (0) 208 256 9034 (Ex.2204)
 
 www.iclployalty.com
 
 
 
 

_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Currency converter webservice

2004-04-23 Thread Kola Oyedeji
Can anyone recommend a free or commercial currency conversion
webservice. I realize google throws up a few, however I'm looking for
some recommendations from personal experience. I'm particularly
interested in any which can guarantee a certain level of accuracy and up
time. 

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Currency converter webservice

2004-04-23 Thread Kola Oyedeji
Doug 

 
Thanks for the links but as Phillip pointed out I don't think they are
all webservices, also have you used any of them?

 
Kola

 
-Original Message-
From: Doug White [mailto:[EMAIL PROTECTED] 
Sent: 23 April 2004 13:16
To: CF-Talk
Subject: Re: Currency converter webservice

 
http://www.oanda.com/convert/classic

http://www.xe.com/ucc/

http://finance.yahoo.com/m3?u

http://www.x-rates.com/calculator.html

http://money.cnn.com/markets/currencies/

http://jazconvert.com/This one you can put on your web site - (cost:
$19.95)

http://www.bloomberg.com/analysis/calculators/currency.html

http://homeusers.brutele.be/alexSofts/

http://dmoz.org/Computers/Software/Currency_Conversion/

==
We can get rid of spam on your domain! , Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
For hosting solutions http://www.clickdoug.com
==

- Original Message - 
From: Kola Oyedeji
To: CF-Talk
Sent: Friday, April 23, 2004 6:53 AM
Subject: Currency converter webservice

Can anyone recommend a free or commercial currency conversion
webservice. I realize google throws up a few, however I'm looking for
some recommendations from personal experience. I'm particularly
interested in any which can guarantee a certain level of accuracy and
up
time.

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Currency converter webservice

2004-04-23 Thread Kola Oyedeji
Thanks 

 
I will look into them as well

 
-Original Message-
From: Nathan C. Smith [mailto:[EMAIL PROTECTED] 
Sent: 23 April 2004 14:43
To: CF-Talk
Subject: RE: Currency converter webservice

 
We use Oanda regularly in our law practice, not as a webservice,
however.

-Nate

-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 23, 2004 8:38 AM
To: CF-Talk
Subject: RE: Currency converter webservice

Doug 

Thanks for the links but as Phillip pointed out I don't think they are
all webservices, also have you used any of them?

Kola

-Original Message-
From: Doug White [mailto:[EMAIL PROTECTED] 
Sent: 23 April 2004 13:16
To: CF-Talk
Subject: Re: Currency converter webservice

http://www.oanda.com/convert/classic

http://www.xe.com/ucc/

http://finance.yahoo.com/m3?u

http://www.x-rates.com/calculator.html

http://money.cnn.com/markets/currencies/

http://jazconvert.com/This one you can put on your web site - (cost:
$19.95)

http://www.bloomberg.com/analysis/calculators/currency.html

http://homeusers.brutele.be/alexSofts/

http://dmoz.org/Computers/Software/Currency_Conversion/

==
We can get rid of spam on your domain! , Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
For hosting solutions http://www.clickdoug.com
==

- Original Message - 
From: Kola Oyedeji
To: CF-Talk
Sent: Friday, April 23, 2004 6:53 AM
Subject: Currency converter webservice

Can anyone recommend a free or commercial currency conversion
webservice. I realize google throws up a few, however I'm looking for
some recommendations from personal experience. I'm particularly
interested in any which can guarantee a certain level of accuracy and
up
time.

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com
_ 
_
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: More on Laszlo

2004-03-19 Thread Kola Oyedeji
Does it provide support for file uploads ?

 
Kola

 
-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED] 
Sent: 16 March 2004 16:54
To: CF-Talk
Subject: More on Laszlo

 
I have been playing around with Laszlo and here is what I found.

Laszlo is a Flash competitor and may also be a competitor to MM Flex 
nee Royale.

I am not sure of the latter because I have not seen either Flex or 
Royale.

Laszlo is used, like Flash, to create the client side of RIA apps.

Laszlo code is written in XML and _javascript_ as opposed to the 
Movie/ActionScript construct of Flash.

Laszlo code is compiled into a Flash swf file and imbedded into an HTML 
page just as Flash is.

The Laszlo client app can make requests of a server-side app written in 
almost anything (including CFMX).

Server requests are made with a standard URL with optional name/value 
pairs -- so far, I have not determined if data can be passed as form 
variables.

Data returned to a Laszlo client consists of a single, valid XML packet.

The XML packet is trivial to create in CFMX with standard output 
functions -- you don't need to do any XML parsing, etc -- just create 
XML tags around your data -- similar to placing HTML tags around your 
data.

One tutorial takes you through creating a simple (and quite nice) data 
maintenance application -- The RIA client side is 72 lines of XML code. 
Thish creates a Flash movie that:

-- initially displays all the records in the db in tabular form.

-- if you click on a record, the space beneath the row of data expands 
to show a pre-filled update/delete form

-- if you click on the heading row, the space below expands to show an 
Add Record form

-- this is all done clientside.

-- if you click on the add/up/delet buttons the data entry display 
disappears and the space for it contracts  the data is passed to the 
server.

Nothing special here, except it is intuitive, pleasant and written in 1 
page of readable, maintainable code,

I think I like it.

It is much more intuitive (to me) than the Flash paradigm.

They have a very nice sample shopping cart ala PetStore with a few 
added goodies -- you can drag and drop items (images)to the cart or 
wish list.

you can expand or collapse the catalog display to show the cart, 
wishlist, and or checkout form.

If these areas are collapsed, there is feedback when addinc items to 
the cart or wishlist -- the expansion bar briefly changes color

Now the negatives:

I found a bug in the client side of the data maintenance example 
(above) that I can't resolve -- their debugger isn;t much help.

Performance appears to be a little sluggish

The client-side code is 163K (gzipped) which seems high -- I have not 
used their optimizer

I hate typing Laszlo

Anyway, this might be a good alternative to Flash for those of us who 
are uneasy with Flash model.

HTH

Dick
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: cfqueryparam, cfcatch 'n cftry

2004-03-10 Thread Kola Oyedeji
Stuart

 
Hi, a couple of things. First of all if you are checking ifform fields
have a value - either trim all your form fields before your validation
or trim then when testing e.g.

 
cfif trim(form.PropertyDataVillageTown) is 

 
or even cfif len(trim(form.PropertyDataVillageTown)) eq 0 

 
Second thing is as in essence you're building up a list so you could do
this for each validation clause to make your code a bit more readable 

 
cfif trim(form.PropertyDataVillageTown) is 
cfsetMessageAlert = listAppend(MessageAlert,font
color='b23f3f'bVillage/Town/b/font must have a value. ,br)
 
/cfif

 
Using br as the delimiter . 

 
Also you may want to wrap the field names in a style sheet class 
span class='fieldHighlight'' Village/Town/span which would mean you
wont have to change your code (only your stylesheet) when the designer
decides to use #b23f3f as the background colour ;-)

 
Then you need only check the length of the list once at the end to see
if an error occurred 

 
cfif listLen(MessageAlert) 
cfset ErrorFound = yes 
/cfif

 
Finally you would have to add additional validation before reaching the
SQL statement if you want to ensure a field has a minimum length, this
can be done on the database but I wouldn't do it that way!

 
Hope that helps

 
Kola

-Original Message-
From: Stuart Kidd [mailto:[EMAIL PROTECTED] 
Sent: 10 March 2004 15:54
To: CF-Talk
Subject: cfqueryparam, cfcatch 'n cftry

 
Hi guys,

In my cfcatch i've got a bunch of cfif's checking to make sure all
parts of my form were correct.

e.g.:

cfif form.PropertyDataVillageTown is cfset MessageAlert =
MessageAlert  font color='b23f3f'bVillage/Town/b/font must
have a value.brcfset ErrorFound = yes/cfif
cfif form.PropertyDataCountyState is cfset MessageAlert =
MessageAlert  font color='b23f3f'bCounty/State/b/font must
have a value.brcfset ErrorFound = yes/cfif
cfif form.PropertyDataPostcodeZip is cfset MessageAlert =
MessageAlert  font color='b23f3f'bPostcode/Zip/b/font must
have a value.brcfset ErrorFound = yes/cfif

However, all these actions will only take place if there is an error
triggered.

I have one field which is a description and i'd like to trigger an error
if it is less than 10 characters in length and more than 120.When i am
using cfqueryparam in my SQL i noticed i can have such a line:

cfqueryparam cfsqltype=cf_sql_longvarchar maxlength=120

Will this the right thing to trigger an error in case it's more than 120
characters??How about if i want to trigger the error if it's less than
10 characters too, can that not be done.

BTW: i just chucked in that cf_sql_longvarchar because i didn't know
what to use.

Thanks,

Stu
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Can you reset row numbers in a DB after deleting all rows?

2004-03-04 Thread Kola Oyedeji
Try compacting and repairing the db, that used to work in earlier
versions not sure if it still does

 
Kola

 
-Original Message-
From: Nick Baker [mailto:[EMAIL PROTECTED] 
Sent: 01 March 2004 02:19
To: CF-Talk
Subject: Can you reset row numbers in a DB after deleting all rows?

 
MS Access
CF 5

Can you reset rows numbers back to starting at row number 1 in a DB,
after 
deleting all rows?

The goal is to totally erase and restore DB, on the fly, from time to
time. 
New info will have the same columns, but a different number of rows each

time. The Delete Row function of a CFQUERY will do this, but the new row

number starts where the delete row numbers left off. We will eventually
run 
out of row numbers.

Or is there another way to do this, e.g., delete and regenerate the
table 
anew on the fly?

Thanks,

Nick
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: How to know when you have the last record?

2004-02-26 Thread Kola Oyedeji
Are you looping over the recordset? If so you could do 

cfif myquery.currentrow eq myquery.recordcount 
	last image
/cfif

HTH

Kola

-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2004 15:26
To: CF-Talk
Subject: How to know when you have the last record?

Hey,

I'm outputting a query as a list. Visually, I'm inserting an image
between each record. It looks great until the last record, and I get the
image at the very end.

What would be the best way to know that I'm at the end of my record set
and not show the image?

Something like: cfif not lastrecord(myquery.recordcount)
 img src="">
    /cfif

Is there an easy way to accomplish this?

-Jeff
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: JRun has closed connection

2004-02-25 Thread Kola Oyedeji
As others have pointed out, it could be a number of issues, 

I searched through a number of forums and found some people got this
message when using COM objects, or when calling
getPageContext.forward(). Also this can also appear if CF has just
restarted due to reaching x amount of unresponsive threads. Finally I
came across this Jrun technote 

http://www.macromedia.com/support/jrun/ts/documents/tn18176.htm

Which appears to be a bit dated but reading up on the section
“Connection reset by peer” highlighted that this can be caused when Jrun
is waiting on a third party. Once it has waited a specified period
(which can be changed in the xml config files) it returns a message to
the peer (in this case the web server). In our case this message was
caused by long running queries repeatedly being executed which resulted
in the number of available simultaneous requests being used up. Jrun
would give up waiting and return this error message. 

Finally this could also be related to the use of the odbc-bridge driver
which should be disabled if not used. (which it shouldn’t be in
production anyway).

HTH

Kola

-Original Message-
From: Critter [mailto:[EMAIL PROTECTED] 
Sent: 25 February 2004 14:54
To: CF-Talk
Subject: JRun has closed connection

oi CF-Talk,!!

  We've  recently moved a couple of our applications from CF5 to MX. We
are randomly, yet repeatedly
  getting  JRUN  errors  that  say  there  was  an  internal  server  er
ror. and JRUN has closed the
  connection. A refresh of the page, seems to clear the error
sometimes

  any ideas / suggestions?

  /critz

-- 

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFMX and CF5 on same server

2004-02-25 Thread Kola Oyedeji
Marlon 

 
If you're using IIS, this can be done quite easily by installing cf5,
making a note of the dll the cf extensions map to and then installing
cfmx. You can set up virtual directories and determine which version of
the cf dll. Is used for each directory. Its explained in detail here 

 
http://www.sys-con.com/coldfusion/articleprint.cfm?id=647

 
and works like a charm.

 
HTH

 
Kola

 
-Original Message-
From: Marlon Moyer [mailto:[EMAIL PROTECTED] 
Sent: 25 February 2004 16:12
To: CF-Talk
Subject: CFMX and CF5 on same server

 
Has anyone deployed a server with both CF5 and CFMX on it.I've got a
live
server with CF5 applications running on them.I haven't tested all the
legacy apps on CFMX yet, but mgmt wants to test out a new CFMX app on
the
server.Any suggestions?

Marlon
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Email Headers listing?

2004-02-25 Thread Kola Oyedeji
You should be able to find more information here

 
http://livinginternet.com/e/em_rfc.htm

 
or more specifically here

 
http://www.faqs.org/rfcs/rfc2076.html

 
HTH

 
Kola

 
-Original Message-
From: Burns, John [mailto:[EMAIL PROTECTED] 
Sent: 20 February 2004 20:30
To: CF-Talk
Subject: RE: Email Headers listing?

 
Not bad.I am curious though if there is some kind of a standard list
that is handled by most email clients (Hotmail, yahoo, aol, outlook,
etc)I'm especially curious when it comes to Priority and things like
that. I'd like to use headers that are the most common and be able to
see the possible values for those headers.I'm also considering doing a
custom email program using CFPOP and want to know what headers and
values to look for.Anyone with detailed information like that, please
share.Thanks!

John Burns

-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 20, 2004 3:25 PM
To: CF-Talk
Subject: Re: Email Headers listing?

Here's a page with some good info:

http://www.stopspam.org/email/headers.html

Regards,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server
(iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus
scanning for ColdFusion applications
 Find out how iMS Stacks up to the competition: 
 http://www.coolfusion.com/imssecomparison.cfm

- Original Message - 
From: Burns, John 
To: CF-Talk 
Sent: Friday, February 20, 2004 3:18 PM
Subject: Email Headers listing?

Can anyone tell me where I can find a list of all of the standard and
optional email headers?I'd like to know what all I can set by
playing
with those in CFMAIL.Thanks!

John Burns
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Dreamweaver - split document

2004-02-24 Thread Kola Oyedeji
Me too! Thecloset you can get is to hit F11 or F10 (one of those 2)
for the code inspector.

 
Kola

 
-Original Message-
From: Sparrow-Hood, Walter [mailto:[EMAIL PROTECTED] 
Sent: 23 February 2004 22:47
To: CF-Talk
Subject: Dreamweaver - split document

 
Does anybody know how to get DW to split a document the way HomeSite
does?
I really miss that feature.

Walt
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: New Book

2004-02-24 Thread Kola Oyedeji
Well done Jeff, Just one question, which versions of CF does it cover?

 
Kola

 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 24 February 2004 17:19
To: CF-Talk
Subject: New Book

 
This message is an advertisement of sorts, and something of a birth
announcement as well. I 
hope you don't mind my taking a bit of your bandwidth with it:

***
My new book--ColdFusion Lists, Arrays,  Structures--is available for
ordering online.You can 
pick it up here:

http://www.protonarts.com

The book is intended to answer all those questions about complex
datatypes that 
Macromedia's documentation leaves unanswered (assuming you've read all
the 
documentation!).If you're new to CF, it will give you a rapid and
thorough introduction to lists, 
arrays, and structures.If you're an old hand, you might still be
surprised at what you find.
There are plenty of examples and illustrations, and lots of code.

If you buy the book, please do me a couple of favors:

1.Write me a note and let me know what you think about the book, its
quality, content, price, 
etc.Good or bad, I'd like to hear your thoughts.Also tell me about
your experience with 
ordering, delivery, etc.I'm not working with a major publishing house
this time, so I want
to make sure the process works smoothly.

2.If you like the book, tell your friends, colleagues, CFUG cohorts,
etc.You'll notice the book 
is not on Amazon.com.There's a reason for that: Amazon wanted %55 of
the cover price as 
their commission!That means we would have had to jack up the cover
price just to break even 
if we wanted to be on Amazon.But I wanted to keep the price as
affordable as possible for 
you.Consequently, the book is only available through the Proton Arts
website.I'm hoping for 
a balance between outstanding service and an affordable product,
courtesy of Internet 
technology.Let me know if we've succeeded.

Thanks,
- Jeff Peters
[EMAIL PROTECTED]
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Question regarding CFMX 6.2

2004-02-23 Thread Kola Oyedeji
Ben

 
Correct me if I'm wrong but aren't there still bugs and known issues
with 6.1. Are you suggesting that there are no immediate plans to
address these?

 
Thanks

 
Kola

 
-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: 23 February 2004 16:29
To: CF-Talk
Subject: RE: Question regarding CFMX 6.2

 
CFMX 6.2? I don't believe that version numbers and editions have been
discussed at all, actually.

Generally, maintenance releases have been free upgrades (as 6.1 was)
whereas
full product releases have been paid upgrades (and included in
subscriptions, of course).

The next planned version of ColdFusion is codenamed Blackstone, and
version numbers, pricing, etc., have yet to be discussed at all.

But, and this is my own opinion here, I doubt that there will be another
maintenance release for CFMX any time soon. CFMX needed updates, which
is
why we released service packs and then v6.1, But 6.1 has proven to be
reliable and solid and arguably one of the best ColdFusion's ever, and
so a
maintenance release is unlikely.

Bottom line, use 6.1 now, and stay tuned for announcements from MM.

--- Ben

_

From: Tom Kitta [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 23, 2004 11:16 AM
To: CF-Talk
Subject: RE: Question regarding CFMX 6.2

I am wondering, will CF 6.2 be a free upgrade from 6.1 or will MM want
us to
pay for it? And if $$$ is involved, how much?

TK
-Original Message-
From: Thomas Chiverton [mailto:[EMAIL PROTECTED]
Sent: Monday, February 23, 2004 10:21 AM
To: CF-Talk
Subject: Re: Question regarding CFMX 6.2

On Monday 23 Feb 2004 09:21 am, Jochem van Dieten wrote:
 Macromedia is thinking about:
 http://mxeurope.org/go/objectid/CAAA4C2A-50DA-4D01-876C3488A0F5D98A

simpler ways to create compelling UIs, 
Does that sound like shiping some sort of cut-down Flex to anyone else
?
In
the same way they implemented cfchart by shipping a cut down version
of
their
own stand alone graphing app ?

Increasing productivity
Could be anything !

new ways for deploying your apps
As MX is a J2EE system, I hope that means jar/ear/war type stuff :-)

source code protection.
Intresting. Just a better front end to cfencrypt, or something more
industrial ?

When is pricing etc. info for MAXEurpoe going to be announced ? Is
there
an
annoucements mailing list for it yet ?

--
Tom Chiverton
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result
from
this e-mail until such time as a written document is signed on behalf
of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted
over
public networks.*** 
_
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Stuck on CF5 :Structure to XML

2004-02-13 Thread Kola Oyedeji
Neil

 
There is a custom tag on the exchange:
http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131
http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=1
002218 extID=1002218

You can use the xml tools created for Fusebox 4 which I believe mirror
the xml functions found in CFMX.
http://xml.fusebox.org/

 
HTH

 
Kola

 
-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 13 February 2004 09:49
To: CF-Talk
Subject: Stuck on CF5 :Structure to XML

 
Hey,

What are the options (Custom Tags or whatever) or converting a valid
ColdFusion Structure to an XML document?

TIA

N

This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.It 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
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Reversing a list

2004-02-09 Thread Kola Oyedeji
If is a list which consists of single values as in your example, you
could use the built in coldfusion reverse function.

 
Kola

 
-Original Message-
From: G [mailto:[EMAIL PROTECTED] 
Sent: 09 February 2004 15:41
To: CF-Talk
Subject: Reversing a list

 
What is the simplest way to reverse a list? 

i.e A,B,C becomes C,B,A. Need it to work in both CF 5 and MX.

Thanks
Brian
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Catching Up: UDF's and CFC's

2004-02-05 Thread Kola Oyedeji
Also there is a mailing list at www.cfczone.org dedicated to discussing
CFCs and Application design using CFCs.

Regards,

Kola

 
-Original Message-
From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2004 20:38
To: CF-Talk
Subject: RE: Catching Up: UDF's and CFC's

 
 Thanks for the title and I've added it to my wish list (which I'm 
 slowly getting).However, are there any online resources I could at 
 least start off with?

Wow, thanks for all the links and information!

I've got my printer spitting out quite a few of the pages so I can
peruse
them and get the ideas stuck in my head.I'm really looking forward to
the
idea of being able to create a good set of personal tools!

Until Later!
Hatton

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.572 / Virus Database: 362 - Release Date: 1/27/2004
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Null pointers error on CFMX 6.1

2004-01-21 Thread Kola Oyedeji
Hi

We are using CFMX 6.1 (an upgrade from 6) and the following code: 

cfif isdefined(form.test)
	CFQUERY NAME=q_insert DATASOURCE=#Request.datasource#
		insert into table1 (thetest) values ('#form.thetest#')
	/CFQUERY
/cfif

CFQUERY NAME=q_get_all DATASOURCE=#Request.datasource#
	select thetest from table1
/CFQUERY

form name=d action="" method=post
	textarea name=thetest rows=20 cols=50/textarea
	br
	input type=Submit
/form

Produces the following error:

The system has attempted to use an undefined value, which usually
indicates a programming error, either in your code or some system code. 

Null Pointers are another name for undefined values.
Produces the following error.

I have trawled through numerous archives and found numerous references
to this prior to 6.1 but none of them seem to be exactly the same as
this.

Any pointers (excuse the pun) appreciated

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Null pointers error on CFMX 6.1

2004-01-21 Thread Kola Oyedeji
By the way form.thetest was a typo in my email, even with this
corrected to form.test the error still occurs!

Kola

-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED] 
Sent: 21 January 2004 16:27
To: CF-Talk
Subject: Null pointers error on CFMX 6.1

Hi

We are using CFMX 6.1 (an upgrade from 6) and the following code: 

cfif isdefined(form.test)
CFQUERY NAME=q_insert DATASOURCE=#Request.datasource#
insert into table1 (thetest) values ('#form.thetest#')
/CFQUERY
/cfif

CFQUERY NAME=q_get_all DATASOURCE=#Request.datasource#
select thetest from table1
/CFQUERY

form name=d action="" method=post
textarea name=thetest rows=20 cols=50/textarea
br
input type=Submit
/form

Produces the following error:

The system has attempted to use an undefined value, which usually
indicates a programming error, either in your code or some system code. 

Null Pointers are another name for undefined values.
Produces the following error.

I have trawled through numerous archives and found numerous references
to this prior to 6.1 but none of them seem to be exactly the same as
this.

Any pointers (excuse the pun) appreciated

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Null pointers error on CFMX 6.1

2004-01-21 Thread Kola Oyedeji
Nope, typo. Error still occurs with corrected code

 
Kola

 
-Original Message-
From: Gaulin, Mark [mailto:[EMAIL PROTECTED] 
Sent: 21 January 2004 16:51
To: CF-Talk
Subject: RE: Null pointers error on CFMX 6.1

 
In the first if block I see an isdefined() test for form.test but a
usage
of the variable form.thetest. Is this intentional?

-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED]
Sent: Wednesday, January 21, 2004 11:27 AM
To: CF-Talk
Subject: Null pointers error on CFMX 6.1

Hi

We are using CFMX 6.1 (an upgrade from 6) and the following code: 

cfif isdefined(form.test)
CFQUERY NAME=q_insert DATASOURCE=#Request.datasource#
insert into table1 (thetest) values ('#form.thetest#')
/CFQUERY
/cfif

CFQUERY NAME=q_get_all DATASOURCE=#Request.datasource#
select thetest from table1
/CFQUERY

form name=d action="" method=post
textarea name=thetest rows=20 cols=50/textarea
br
input type=Submit
/form

Produces the following error:

The system has attempted to use an undefined value, which usually
indicates a programming error, either in your code or some system code. 

Null Pointers are another name for undefined values.
Produces the following error.

I have trawled through numerous archives and found numerous references
to this prior to 6.1 but none of them seem to be exactly the same as
this.

Any pointers (excuse the pun) appreciated

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com 
_
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Null pointers error on CFMX 6.1

2004-01-21 Thread Kola Oyedeji
No I removed extraneous code , request.datasource is set correctly - as
a test I have hardcoded it. 

 
However we have tried an updated (for CFMX 6.1) driver from Caribou Lake
which has solved the problem.

 
Thanks anyway

 
Kola

 
-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: 21 January 2004 16:40
To: CF-Talk
Subject: RE: Null pointers error on CFMX 6.1

 
I'd guess it might be that request.datasource (or form.thetest) contains
something other than what it should. Is the code below exactly as you
have
it in your page?

Ade

-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED]
Sent: 21 January 2004 16:27
To: CF-Talk
Subject: Null pointers error on CFMX 6.1

Hi

We are using CFMX 6.1 (an upgrade from 6) and the following code: 

cfif isdefined(form.test)
CFQUERY NAME=q_insert DATASOURCE=#Request.datasource#
insert into table1 (thetest) values ('#form.thetest#')
/CFQUERY
/cfif

CFQUERY NAME=q_get_all DATASOURCE=#Request.datasource#
select thetest from table1
/CFQUERY

form name=d action="" method=post
textarea name=thetest rows=20 cols=50/textarea
br
input type=Submit
/form

Produces the following error:

The system has attempted to use an undefined value, which usually
indicates a programming error, either in your code or some system code. 

Null Pointers are another name for undefined values.
Produces the following error.

I have trawled through numerous archives and found numerous references
to this prior to 6.1 but none of them seem to be exactly the same as
this.

Any pointers (excuse the pun) appreciated

Thanks

Kola Oyedeji
Certified Advanced Coldfusion Developer,
ICLP London
DDI: +44 (0) 208 256 9034 (Ex.2204)

www.iclployalty.com 
_
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFDJ isn't exactly kicking bootay

2004-01-08 Thread Kola Oyedeji
Not to mention that your subscription gives you access to the archives
which means for the price of a years subscription you actually are
getting more than a years worth of content ;-)

 
Kola

 
-Original Message-
From: Howard Fore [mailto:[EMAIL PROTECTED] 
Sent: 08 January 2004 13:22
To: CF-Talk
Subject: Re: CFDJ isn't exactly kicking bootay

 
So the Design Pattern series was invaluable. How much time did that 
series save you to be able to work on extra projects? How much is your 
time worth per hour? I'd bet that over the course of the subscription 
year, the product of number of hours saved multiplied by your hourly 
rate is more than the cost of the subscription. And if properly 
applied, those techniques won't save you time and money just this year, 
but in the future as well.

That's how I justify it at least.

--
Howard Fore, [EMAIL PROTECTED]
Much of life is Dutch one-digit operations in which legions of big 
robust people crouch behind badly cracked dike systems attached by the 
thumbs their wide balloon-pantsed rumps up-ended to the northern sun 
while, back in town, little black-suspendered tulip magnates stride 
around. - Dutch, Kay Ryan

On Jan 8, 2004, at 1:26 AM, Dave Carabetta wrote:

 Your monthly column
 contribution is useful (along with your papers on www.how2cf.com/),
and
 Brendan O'Hara's Design Patterns series was invaluable (at least, to 
 me).
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CF Administration Best Practices on Production Servers

2004-01-07 Thread Kola Oyedeji
Also one other thing to note -try as you might - your development
environment may not always exactly matchyour hosted account, which
means in some circumstances it may be beneficial to be able to switch
debugging on/off programmatically to ensure your application is doing
what you think it is doing.

 
Kola

 
-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: 02 January 2004 00:46
To: CF-Talk
Subject: RE: CF Administration Best Practices on Production Servers

 
The problem is that unless the hosting provider automatically provides a
testing environment which is a duplicate of production, you have no
choice but
do a certain amount of debugging in production.I've asked for a
testing
environment with each of the providers I've used, and none so far
maintain a
separate environment dedicated to testing.

Andy
-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 01, 2004 3:36 PM
To: CF-Talk
Subject: RE: CF Administration Best Practices on Production Servers

 It would be considered a best practice to turn off debugging on
 production servers, correct? My host has it turned on to help
 developers test their code. They insist I must turn it off using
 cfsetting. I've been arguing, unsuccessfully, that they should not
 allow people to test/develop their sites on production servers.

 So, am I completely off-base or is this considered bad?

I would agree that it's a best practice to turn off debugging on
production
servers. I'm not sure that a shared server is necessarily a
production
server, though. After all, the hosting provider is basically giving
you a
place to do more or less whatever you want, right?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CMS Solutions (Friendly URL's)

2004-01-07 Thread Kola Oyedeji
While we're on the subject - does anyone know of any good
resources/mailings lists - I've been out of the SEO loop for a while

 
Thanks

 
Kola

 
-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: 02 January 2004 21:02
To: CF-Talk
Subject: Re: CMS Solutions (Friendly URL's)

 
Good points all, John.

I was indeed taking a very simplistic view of the length of the string.
And something I haven't given a lot of thought to was the depth of the
folders.Very interesting.

p.s. it would also help if you repeat that
info in the title tag as well as in a h1 near the top of the page.

By and large we're doing that, but we've played around with alternatives
on non-critical pages.It *seems* -- and take this single-source
anecdotal experience for what its worth -- that keywords in the filename
alone are the single largest determining factor in elevating placement.
Maybe a top-10 ranking on that alone.

Add in the meta title and you're a solid candidate for #1.Make it the
title of the page as well (we use a named style rather than tying a
style to h1, but thats a *great* idea) and, so far, we're hitting #1
consistently.

And as I'm sure you know this won't happen for hotly contested keywords.
ColdFusion, for example.The trick is of course to pick something
attainable, useful to the client and searched-upon.

Your points on SE marketing are right on.I think the marketing side
gets short shrift from the tech side, but marketing is very often the
reason a commercial site exists in the first place.

--
---
Matt Robertson,[EMAIL PROTECTED]
MSB Designs, Inc. http://mysecretbase.com
---

--
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: fusebox

2003-12-11 Thread Kola Oyedeji
I'd also agree there seems to be a lack of documentation of FB3 and 4. I
would also agree that it seems that you are expected to buy the books to
get any real info - the fusebox site (other than forums) is next to
useless. 

 
There is actually more useful information on
http://bombusbee.com/downloads.main.htm (check out the newbie guide)
than there is on the fusebox site.

 
That said, If you are set on learning FB3 and not FB4 (which I would
recommend instead) then grab a copy of discovering fusebox 3 with
coldfusion.

 
Finally as there has been plenty discussion of FB recently and its pros
and cons I would strongly advise anyone evaluating a framework to
actually evaluate it by using it and *not* by soliciting opinions. For
every argument against using fusebox there is one for using it!

 
HTH

 
Kola

 
-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: 11 December 2003 07:52
To: CF-Talk
Subject: Re: fusebox

 
 Hello all,

 I am looking into the FB framework and, well, I am just
 getting confused.There seems to be very little
 documentation on the fb website and I can really find any
 resources.Where should I be looking?

 Gabriel

I've had the same issue -- i.e. when you download the core files for
FB3, there's no explanation of how to build your fbx_circuits.cfm
template. There is a forum on the FB site, although that hardly counts
as documentation. It seems like they largely want you to buy the books
or take their classes. Just my impression of it anyway. Granted I'm
somewhat biased -- see the onTap framework in my sig below.

s. isaac dealey 214-823-9345

team macromedia volunteerhttp://www.macromedia.com/go/team

chief architect, tapestry cmshttp://products.turnkey.to

onTap is open sourcehttp://www.turnkey.to/ontap
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Adalon

2003-11-13 Thread Kola Oyedeji
Have not used it but have heard many good things about it - try on one
of the fusebox lists for more info

 
Kola

 
-Original Message-
From: Candace Cottrell [mailto:[EMAIL PROTECTED] 
Sent: 13 November 2003 17:27
To: CF-Talk
Subject: Adalon

 
Do any of you folks use Adalon for CF or FB?
What have your experiences been? What version(s) are you using? Are you
using it in a single developer environment of with a team of
developers.

I am looking for some good selling points for the boss.

TIA! 

Candace K. Cottrell, Web Developer 
The Children's Medical Center 
One Children's Plaza 
Dayton, OH 45404 
937-641-4293 
http://www.childrensdayton.org

[EMAIL PROTECTED]

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Alternatives to Verity

2003-10-13 Thread Kola Oyedeji
Perhaps for non documents - SQL server's full text search may be another
suggestion? Its *reported* to be easier to maintain.

 
Kola

 
-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: 13 October 2003 15:39
To: CF-Talk
Subject: RE: Alternatives to Verity

 
Have you found there to be any downsides to it?

Ade

-Original Message-
From: Ryan Emerle [mailto:[EMAIL PROTECTED]
Sent: 13 October 2003 14:41
To: CF-Talk
Subject: RE: Alternatives to Verity

Mainly i will cite that it is open source which allows for nearly
limitless
flexibility.Indexing and searching can be crafted to your application.
Outside of that, check out the lucene website (posted earlier) for a
breakdown of what Lucene can do.

I have found the following to be true of lucene and not necessarily with
Verity:
* Free/open source
* Limitless indexed entities
* Cross-platform compatibility
* Full control over searching and indexing
* Index portablility (can create an index anywhere and use it anywhere -
web,cdrom,locally,etc)

Verity is very flexible, i just happen to happen to enjoy the level of
control and portability of Lucene over it.Use whatever works for you
and
your applications, though..I prefer to have an engine that works with
my
application, rather than an application that works with my search
engine.

I do urge anyone interested to draw their own conclusions based on their
experiences :)

HTH

-Ryan

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: OT:Bots / spiders finding unlinked pages... How?

2003-10-09 Thread Kola Oyedeji
I agree with Craig, this is probably how they were found, one thing
those that user the google toolbar should be aware of that in some
instances it returns data on the pages you have accessed back to
google:-

 
http://toolbar.google.com/privacy.html

 
Do you have a robots.txt? Perhaps that also includes pointers to parts
of the site to be indexed.

 
Kola

 
-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: 09 October 2003 11:41
To: CF-Talk
Subject: RE: OT:Bots / spiders finding unlinked pages... How?

 
If a user who has accessed those files has googlebar running in their
browser, then google knows about those files and may very well start
indexing them.

-Original Message-
From: Thomas Chiverton [mailto:[EMAIL PROTECTED] 
Sent: 09 October 2003 10:18
To: CF-Talk
Subject: Re: OT:Bots / spiders finding unlinked pages... How?

On Wednesday 08 Oct 2003 17:42 pm, Mark W. Breneman wrote:
 How is it possible that it found these unlinked pages?

robots.txt ?
Guess work ?

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East,
Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the
addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy
this
communication if received in error. No binding contract will
result from
this e-mail until such time as a written document is signed on
behalf of
the company. BlueFinger Limited cannot accept responsibility for
the
completeness or accuracy of this message as it has been
transmitted over
public networks.***

_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CF + Flash list

2003-10-09 Thread Kola Oyedeji
 
Apparently 

 
The fig leaf lists are quite good

 
http://chattyfig.figleaf.com/

 
Kola

 
-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: 09 October 2003 04:39
To: CF-Talk
Subject: RE: CF + Flash list

 
if its about cfmx and how to use with flashmx or the other 
way flashmx and cfmx, then i would say its pertinent? right?

as long as its cf related? and its programming?

you should be good, although i can say, not many talk
about too much flashmx here tho'

i assume you know about flashpro? 

http://flash-list.com/ http://flash-list.com/

tony

-Original Message-
From: CFMXKICKSASS [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 08, 2003 11:36 PM
To: CF-Talk
Subject: CF + Flash list

Hello,

I'm looking for a good CF + flash development list. Also whats the
protocol 
regarding posting FlashMX + CFMX related questions to this list?

Brook Davies

_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: QoQ and Like

2003-10-09 Thread Kola Oyedeji
Also what version are you using? I believe QoQ may have been enhanced
for MX. In CF5 there may also have been a bug due to using mixed case
IIRC there is a technote which contains more details

 
Kola

 
-Original Message-
From: Suyer, Ed [PRD Non-JJ] [mailto:[EMAIL PROTECTED] 
Sent: 08 October 2003 23:12
To: CF-Talk
Subject: QoQ and Like

 
Hi Folks,

I'm encountering a problem with queries of queries and the like
statement:

This works:
cfquery name=results dbtype=query
select *
from assets
WHERE STATUSID = 6
AND ASSETTYPEID = 1
AND WORKSTATIONNAME = 'abcd'
/cfquery

but this doesn't:

cfquery name=results dbtype=query
select *
from assets
WHERE STATUSID = 6
AND ASSETTYPEID = 1
AND WORKSTATIONNAME LIKE 'abcd'
/cfquery

(notice the addition of LIKE)

This generates the following error:

The system has attempted to use an undefined value, which usually
indicates
a programming error, either in your code or some system code. 

Null Pointers are another name for undefined values. 

I also tried some variations:

AND WORKSTATIONNAME LIKE 'abcd%'
AND WORKSTATIONNAME LIKE '%abcd'
AND WORKSTATIONNAME LIKE '%abcd%'
AND WORKSTATIONNAME LIKE #preservesinglequotes('abcd')#
AND WORKSTATIONNAME LIKE #preservesinglequotes(abcd)#
and wrapping the entire WHERE class in preservesinglequotes

None of which worked.

Help!

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFHTTP Posts with Bluedragon free

2003-10-08 Thread Kola Oyedeji
Craig could it perhaps be something to do with the size? I noticed you
said the packets are quite large. Does it work with smaller packets?
Does it work for non XML calls? Also have you tried adjusting the
timeout to a larger value?

 
Kola

 
-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: 07 October 2003 13:44
To: CF-Talk
Subject: RE: CFHTTP Posts with Bluedragon free

 
Thanks for the suggestion Kola,

Have tried it on 5.0 and 6.1 , it works without issue.

Craig.

-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED] 
Sent: 07 October 2003 13:45
To: CF-Talk
Subject: RE: CFHTTP Posts with Bluedragon free

As a suggestion, why don't you try the same portion of code on a
Coldfusion to 
See if the error is Blue Dragon related or some other issue.

Kola

-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: 07 October 2003 12:56
To: CF-Talk
Subject: CFHTTP Posts with Bluedragon free

While I never usually use cfhttp, a particular client wishes to
use
Bluedragon 3.0 free edition as a bridge for his internal system
and our
web server, I'm formatting xml packets form his queries and
posting to
our box, or trying to.

I simply cannot get CFHTTP to POST at all, GET's work fine but
the
packets are far too big for a url.

Code as below...

cfhttp url="" url port=80 method=POST timeout=15
cfhttpparam type=FORMFIELD name=test
value=#urlencodedformat(test)#
/cfhttp

This just returns Failed to connect with a HTTP staus code of
100
which is continue, this sounds to me as if BD is connecting with
the web
server but not actually doing the post. I'm more or less sure
status
code 100 is the web server basically saying go on then, do your
post.

Anyone use CFHTTP with BD? Ever got a POST to work? Am I missing
a BD
specific attribute or something?

If this doesn't work I'm going to have to write some XML
handling code
for Access97, and that's not going to be pretty. Unfortunatley
the
client isn't going to stump up for CFMX of the more advanced
version of
BD ( so I can use cfobject/java cfx's ), at least not yet.

Craig Dudley
Senior Developer
Netstep Corporate Communications Ltd
Direct Line: +44(0) 1422 319712
Phone: +44(0) 1422 200308
Fax: +44(0) 1422 200306
e-mail: [EMAIL PROTECTED]
MS Messenger: [EMAIL PROTECTED]
www: www.netstep.co.uk
_

_

_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Kola Oyedeji
I'm pretty sure that this was recently raised on this list so you may
find it in the archives, IRC I think its been reported that the web
edition of Win2003 does not support SQlserver2000. (it may support MSDE
though).

 
Kola

 
-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED] 
Sent: 08 October 2003 14:04
To: CF-Talk
Subject: Re: SQLServer2000 and Win2003? any issues?

 
It may or may not work but I don't think that the web edition license
allows for it.

Regards,

Howie
- Original Message - 
From: Mike Kear 
To: CF-Talk 
Sent: Wednesday, October 08, 2003 8:57 AM
Subject: OT: SQLServer2000 and Win2003? any issues?

A question on behalf of my web hosting provider . are there any
limitations
in installing MS SQLServer2000 with the web edition of Win2003? 

He says he has heard there are issues but hasn't heard details.Has
anyone
done it?

Cheers,

Michael Kear

Windsor, NSW, Australia

AFP Webworks.



_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Dreamweaver 2004 MX - Issues

2003-10-07 Thread Kola Oyedeji
As others have pointed out DWMX does save files, it just doesn't appear
to. So many users have mentioned this I'm surprised its not listed as a
known issue

 
Kola

 
-Original Message-
From: Massimo Foti [mailto:[EMAIL PROTECTED] 
Sent: 07 October 2003 10:14
To: CF-Talk
Subject: Re: Dreamweaver 2004 MX - Issues

 
 1) The files probably do save, just DW isn't reporting it.

I've seen this happening too, I am just unable to reproduce it
consistently

 2) Are you searching in text mode for something in the source code?
Change
 Search In to Source Code instead of Text.

I've seen Find  Replace failing searching for specific tags if the tags
are
inside cfsavecont or other CFML tags. I heard other users reporting
issues, but we need a set of reproducible steps

 3) There's some orphan references in the CF Help, but shouldn't be a
 problem generally.

DW's integrated Reference is useless anyway :-)))


Massimo Foti
Certified Dreamweaver MX Developer
Certified Advanced ColdFusion MX Developer
http://www.massimocorner.com/



_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFHTTP Posts with Bluedragon free

2003-10-07 Thread Kola Oyedeji
As a suggestion, why don't you try the same portion of code on a
Coldfusion to 
See if the error is Blue Dragon related or some other issue.

 
Kola

-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: 07 October 2003 12:56
To: CF-Talk
Subject: CFHTTP Posts with Bluedragon free

 
While I never usually use cfhttp, a particular client wishes to use
Bluedragon 3.0 free edition as a bridge for his internal system and our
web server, I'm formatting xml packets form his queries and posting to
our box, or trying to.

I simply cannot get CFHTTP to POST at all, GET's work fine but the
packets are far too big for a url.

Code as below...

cfhttp url="" url port=80 method=POST timeout=15
cfhttpparam type=FORMFIELD name=test
value=#urlencodedformat(test)#
/cfhttp

This just returns Failed to connect with a HTTP staus code of 100
which is continue, this sounds to me as if BD is connecting with the web
server but not actually doing the post. I'm more or less sure status
code 100 is the web server basically saying go on then, do your post.

Anyone use CFHTTP with BD? Ever got a POST to work? Am I missing a BD
specific attribute or something?

If this doesn't work I'm going to have to write some XML handling code
for Access97, and that's not going to be pretty. Unfortunatley the
client isn't going to stump up for CFMX of the more advanced version of
BD ( so I can use cfobject/java cfx's ), at least not yet.

Craig Dudley
Senior Developer
Netstep Corporate Communications Ltd
Direct Line: +44(0) 1422 319712
Phone: +44(0) 1422 200308
Fax: +44(0) 1422 200306
e-mail: [EMAIL PROTECTED]
MS Messenger: [EMAIL PROTECTED]
www: www.netstep.co.uk
_


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: CFC's

2003-10-03 Thread Kola Oyedeji
Just a FYI. There is a mailing list at cfc.org
 http://www.cfczone.org/ http://www.cfczone.org/ where cfcs are
discussed in depth. I think Raycamden also posted a link to an archive
somewhere. Finally to the original poster - what version of CF are you
using?
 
Kola
 
-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED] 
Sent: 03 October 2003 06:59
To: CF-Talk
Subject: RE: CFC's
 
Just starting to mess around with CFC's and have a few questions:

1) Can the template set a session variable and the CFC read the values
from that session?And can a CFC set a session variable and the
template then read those variables .. I have been having some trouble
with this and wanted to clarify.

Yes, it can - what kind of trouble have you been having?

2) We have two session variables that somewhat interact.One is an
array populated with structs while the other is just a struct.relating
to my 1st question, can you manipulate both of those session variables
in one function and then return back the output?

Yup.I'm not sure exactly what you mean by return back the output
however.Are you passing the session variables into the method or are
you manipulating them directly from with it?What are you returning?
Once you make your return, what are you doing with it?

3) Is there a good website that gets into the heavy details of CFC's,
with some good examples of manipulating sessions and other variables ...
dealing with queries is easy enough.

Well - I'm going through them myself now so while I think I may a little
ahead you can still me clearly.;^)Once I figure it out myself I'd
like to publish some of what I've found - but that doesn't help you at
all.

There are some sites that touch on them more or less.One to keep an
eye on is www.cfoop.com http://www.cfoop.com/
http://www.cfoop.com/%3e - its a little light
right now, but has the focus.Many of the MM folks blogs are also CFC
heavy (to a greater or lesser extent).

Right now one of the best places to go is the MM support/developer's
area.Even that's a still light however.

Even this list, normally chock-full of responses tends to peter-out when
CFCs are mentioned.Or maybe it's just my questions.;^)

It seems to me that many of us (myself included) waited until RedSky to
even look at CFCs and we are now, as a community, going through a large
learning process.

I fully expect CFC information to explode sooner than later as the
user-base gets more and more familiar with them.

Jim Davis



_

[Todays 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Nesting CFTRANSACTION?

2003-10-03 Thread Kola Oyedeji
One possible solution would be to have a version of the delete method,
which does not wrap the delete in cftransaction, e.g.
deleteNoTransaction(). You could then call this version. I know its not
ideal as it leads to code duplication and I'm not sure if transactions
can even span cfc calls but its just an idea.
 
Kola
 
-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED] 
Sent: 03 October 2003 06:14
To: CF-Talk
Subject: Nesting CFTRANSACTION?
 
I'm in a position where a component can have a parent/child relationship
with other components of the same type.

When I delete a single component, no problem - the method starts a
transaction, deletes the component information from the database, cleans
up references to it in several join tables and updates a couple of
administrative tables.

When a component has Children I would like to delete them as well in the
same transaction.The best way to do this, of course, is to loop
through the children and call their delete() methods.

However when I do this (as I am) from with the parents delete() method
(making the call sorta recursive-like) I get the error we all know and
love: Cannot nest CFTRANSACTIONS

In short I don't want to really nest a transaction (that makes no real
sense) I simply want a way to include all the work in a single
transaction.Some way to determine if I'm in a transaction already and
not try to start a new one.

I'm trying to find some way to do this, perhaps by catching and using
the nesting error itself - but nothing remotely elegant is presenting
itself.

Any solutions, ideas or workarounds?

Jim Davis



_

[Todays 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: mx 6.1 upgrade

2003-09-25 Thread Kola Oyedeji
 -Original Message-
 From: John McCosker [mailto:[EMAIL PROTECTED]
 Sent: 25 September 2003 13:55
 To: CF-Talk
 Subject: RE: mx 6.1 upgrade
 
 Ok,
 
 problem seems to have been solved,
 I had to delete all datasources in admin and set them back up again.
 
 That Migration ran well...,
 
 I'm now have having strange problems with my code,
 using FBX 3.0 and inside a case block I do the following,
 
 CFPARAM NAME=Attributes.WithinInBox DEFAULT=
 then I call CFMODULE,
 CFMODULE TEMPLATE=#Request.fbxarc_Path#act_archivedDirectories.cfm
 RECURSIVE=YES
 I'm looking for the lowest directory so I recurse through until I get
it,
 
 then inside act_archivedDirectories.cfm
 
 CFIF ISDEFINED(Attributes.RECURSIVE)
  CFSET CALLER.Attributes.WithinInBox=WithinInBox
 /CFIF

I noticed you're not passing WithinInBox to the custom tag
act_archivedDirectories. IIRC fusebox places url and form vars in the
attributes scope However the attributes scope is not visible from a
further nested custom tag and needs to be either passed in or placed in
the request scope to be visible to the custom tag.

Also if this worked correctly under CF6 then I would check the redsky
documentation for any changes which may effect your custom tag.

Kola

~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138417
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

ColdFusion MX 6.1, now 2.5 times faster. 
http://www.macromedia.com/software/coldfusion/productinfo/upgrade/jump/introducing.html?trackingid=ColdFusion_468x60g_HouseofFusion_carat_082803


RE: Verifying an email address exists

2003-09-25 Thread Kola Oyedeji
I suspect some of these tools are only checking if the email is from a
valid domain. Hence the uproar when verisign decided that all
unregistered domains would resolve to one of their pages.

Kola

 -Original Message-
 From: Claude Schneegans [mailto:[EMAIL PROTECTED]
 Sent: 25 September 2003 05:08
 To: CF-Talk
 Subject: Re: Verifying an email address exists
 
 The best I found is
 http://www.cab.kabissa.org/emt.htm
 
 It says [EMAIL PROTECTED] is a valid deliverable e-mail
box
 address.
 but [EMAIL PROTECTED] is not a valid deliverable e-mail box
 address.
 Others I tried said it was valid.
 
 However, it also says that [EMAIL PROTECTED] is a
valid
 deliverable e-mail box address.
 Your server is cheating ;-)
 
 The source code is available in PHP. I'm going to test it.
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138418
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://affiliates.macromedia.com/t.asp?id=2439p=go/dr_text_aff1


RE: Looking for CFMX on Jrun Performance Tuning Resources

2003-09-25 Thread Kola Oyedeji
There was the recent article posted on MM..

http://www.macromedia.com/devnet/java/articles/jrun_perf.html

Also there is a fairly active Yahoo group as well as one at house of
fusio,n posting there may dig up more sources.

Finally I believe there is a chapter on performance tuning in

http://www.amazon.com/exec/obidos/ASIN/0789726009/drewfalkmanco-20/103-3
200061-3427019

In fact I imagine there is a wealth of Jrun specific resources available
which may be of more use.

HTH

Kola

 -Original Message-
 From: Calvin Ward [mailto:[EMAIL PROTECTED]
 Sent: 25 September 2003 10:53
 To: CF-Talk
 Subject: Looking for CFMX on Jrun Performance Tuning Resources
 
 Greetings all,
 
 I'm looking for some solid resources on Performance Tuning for CFMX
on
 Jrun, does anyone know of any?
 
 Thanks,
 
 Calvin


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138420
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Help with Transact SQL

2003-09-25 Thread Kola Oyedeji
Perhaps I'm missing something here but shouldn't a simple update
statement suffice e.g.

Update sometable
Set pathField = '/path1/path2/rest_of_path'
Where pathField = 'http://an_absolute_path/new_path_1/path2/rest_of_path
'

Or is there more to it?

Kola

 -Original Message-
 From: Frank Mamone [mailto:[EMAIL PROTECTED]
 Sent: 24 September 2003 23:38
 To: CF-Talk
 Subject: Help with Transact SQL
 
 Hi,
 
 I need help with an update query using transact SQL.
 
 I need to modify the data in record set in the following way.
 
 The field contains a URL like this:
 
 /path1/path2/rest_of_path
 
 I need to change it to:
 
 http://an_absolute_path/new_path_1/path2/rest_of_path
 
 So everything stays the same from path2 on.
 
 Thanks in advance for your help.
 
 Frank Mamone
 
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138422
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: ColdFusion MX 6.1 Caching

2003-09-24 Thread Kola Oyedeji
Is this running on Jrun?

Kola

 -Original Message-
 From: Jeffry Houser [mailto:[EMAIL PROTECTED]
 Sent: 24 September 2003 03:50
 To: CF-Talk
 Subject: Re: ColdFusion MX 6.1 Caching
 
 Yes Sir, I did...
 
   Anyone else have any ideas?
 
 At 08:01 PM 9/23/2003 -0500, you wrote:
 Subject: ColdFusion MX 6.1 Caching
 From: [EMAIL PROTECTED]
 Date: Tue, 23 Sep 2003 14:56:45 -0500
 Thread:

http://www.houseoffusion.com/cf_lists/index.cfm?method=messagesthreadi
d
 =27363forumid=4#138211
 
 did you uncheck Save Class Files in the CFAdmin tool?  Yeah, this is
new
 to 6.1..IIRC.  just a thought
 
 Doug
 
 --
 Jeffry Houser, Web Developer mailto:[EMAIL PROTECTED]
 Aaron Skye, Guitarist / Songwriter mailto:[EMAIL PROTECTED]
 --
 AIM: Reboog711  | Phone: 1-203-379-0773
 --
 My Books: http://www.instantcoldfusion.com
 Recording Music: http://www.fcfstudios.com
 Original Energetic Acoustic Rock: http://www.farcryfly.com
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138254
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: copying from one datasource to another

2003-09-23 Thread Kola Oyedeji
  
Richard 
  
You should be able to create linked tables in access containing all the 
data then run a sql statement along the lines of. 
  
Create table myCopy as  
( 
select ...from ... etc. 
  
) 
  
HTH 
Kola 
  
-Original Message- 
From: Richard Meredith-Hardy [mailto:[EMAIL PROTECTED]  
Sent: 23 September 2003 10:40 
To: CF-Talk 
Subject: copying from one datasource to another 
  
I have 2 datasources, AccessLocal and WeirdRemote, this latter is some  
sort of bespoke DB on a Unix box down a leased line somewhere the other  
side of London, but I can get at it from CF via ODBC, and for that  
matter from Access (on the server) via ODBC.  
  
What I want to do is copy various tables on WeirdRemote into  
AccessLocal, basically to get a local copy of various tables on  
WeirdRemote, but not all records (so there has to be a query of some  
sort).  
  
Now I could do this by doing a query on WeirdRemote in CF and then  
looping over it with a load of Inserts into AccessLocal, but this would  
be rather complicated, and quite likely very slow.  
  
A better option seems to me to have a set of 'Make table queries' saved  
in my AccessLocal datasource and then I simply 'run' them from CF and  
the entire thing is then done in the background between WeirdRemote and  
AccessLocal, and in fact this can be done manually in Access, but  
because of WeirdRemote's licencing setup, only from the server.  
  
How to call the 'make table queries'?  I don't seem to be able to do it  
via CFQUERY but I expect this can be done via COM into AccessLocal...  
anyone have an example code?  
  
  
--  
Regards;  
  
Richard Meredith-Hardy  
-  
[EMAIL PROTECTED]  
Tel: + 44 (0)1462 834776 FAX: + 44 (0)1462 732668 

~|
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]



RE: [ OT] Special security Alert!

2003-09-23 Thread Kola Oyedeji
Out of interest what criteria did you use to trap this virus 
specifically? 
  
Thanks 
  
Kola 
  
-Original Message- 
From: Thomas Chiverton [mailto:[EMAIL PROTECTED]  
Sent: 23 September 2003 15:35 
To: CF-Talk 
Subject: Re: [ OT] Special security Alert! 
  
On Tuesday 23 Sep 2003 15:18 pm, you said:  
> I just wanted to know if others here are receiving about 250 copies a 
day  
> of that virus?  
  
Maybe 5 or 10.  
I've just set up a rule to bin 'em.  
  
--   
Tom Chiverton (sorry 'bout sig.)  
Advanced ColdFusion Programmer  
  
Tel: +44(0)1749 834997  
email: [EMAIL PROTECTED]  
BlueFinger Limited  
Underwood Business Park  
Wookey Hole Road, WELLS. BA5 1AF  
Tel: +44 (0)1749 834900  
Fax: +44 (0)1749 834901  
web: www.bluefinger.com  
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple  
Quay, BRISTOL. BS1 6EG.  
*** This E-mail contains confidential information for the addressee  
only. If you are not the intended recipient, please notify us  
immediately. You should not use, disclose, distribute or copy this  
communication if received in error. No binding contract will result from 
 
this e-mail until such time as a written document is signed on behalf of 
 
the company. BlueFinger Limited cannot accept responsibility for the  
completeness or accuracy of this message as it has been transmitted over 
 
public networks.***  

~|
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]



RE: dreamweaver stuff

2003-09-22 Thread Kola Oyedeji
Yes this is one of the features I quite liked in CFstudio anyone know if
this has been included in the new Dreamweaver?

Kola

 -Original Message-
 From: cfhelp [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 14:20
 To: CF-Talk
 Subject: RE: dreamweaver stuff
 
 While we are on DW subject...
 
 I just started using it last week now that I have multiple sites and
 different developers working on them Studio just didn't seem like the
way
 to
 go.
 
 One thing I miss or can't seem to find is the Split View. Is this
gone?
 It
 was really helpful to look at 2 areas of code on a page at once.
 
 Rick
 
 -Original Message-
 From: Calvin Ward [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 22, 2003 7:43 AM
 To: CF-Talk
 Subject: Re: dreamweaver stuff
 
 I do know the answer to the first question is definitely no.
 
 Part of the problem with the title bar is that it is not a relative
path
 based on the Site, it's relative to the document and only goes one
 directory, so a file that looks like this:
 
 C:\MySites\myCoolSite\mySubDir\myOtherDir\myChildDir\myfile.cfm where
 myCoolSite is the DW site root, will display like this in both DWMX
and
 2004:
 
 myCoolSite (myChildDir/myfile.cfm)
 
 If indeed DWMX DID show the entire path relative to the site, then it
 would
 be reasonable :)
 
 I have partially written an extension to show the full file path
(Windows
 only) in a toolbar...
 
 HTH,
 Calvin
 
 - Original Message -
 From: Dave Watts [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Monday, September 22, 2003 8:38 AM
 Subject: RE: dreamweaver stuff
 
 
   I'm trying to acclimatize to dreamweaver and I'm hoping
   somebody on the list can tell me if theres a way to do
   these 2 things:
  
   1) display the entire file path in the dreamweaver title
   bar. Having only the file name and the last directory visible
   and not being able to get the full path from file properties,
   etc. makes it really difficult for me to keep track of what
   I'm doing, especially when I've got more than one site with
   the same directory and I need to know which site I'm editing.
  
   2) eliminate the Update Files: Scan site for links to renamed
   files? dialog when I remove or rename files.
 
  First, let me preface this by saying I haven't worked much with
DWMX
 2004;
 I
  have worked quite a bit with DWMX 6.1, though.
 
  Unfortunately, I don't have definitive answers for either question,
and
  suspect that for both of them, the answer is no, you can't do
that.
  However, within the site-based work style encouraged by
Dreamweaver,
 these
  behaviors make sense.
 
  When you create a site, one of the benefits of this is that you
don't
 have
  to deal with file paths directly, when working with that site.
 Dreamweaver
  provides a site-relative path in the title bar, and in theory, you
 shouldn't
  have to worry too much about where on the filesystem the site files
 actually
  are - after all, you may have local and remote site information
within
 your
  site definition, and those paths may well change between the two.
It
 would
  be nice, though, if the Site panel updated to show the site
containing
 the
  file you're actually working on.
 
  Also, when you move or rename a file through Dreamweaver, the
Update
 files
  dialog box is one of the benefits - it automatically fixes any
 references
 to
  that file. If you do these operations through your filesystem
browser
  instead of through Dreamweaver, you won't get a prompt within
 Dreamweaver,
  though.
 
  A lot of the Site stuff is best suited to a specific way of
working,
 and
  if you work that way, it's very helpful. If you don't, though, it
may
 be
  less helpful. I find it very useful for working with static HTML,
and
 for
  managing Contribute users. For application development, I find it
less
  helpful, although I still typically use it anyway. DWMX 2004
 deemphasizes
  the reliance on setting up sites, as I understand it, so you may
want
 to
  take a look at it.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  voice: (202) 797-5496
  fax: (202) 797-5444
 
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137889
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: dreamweaver stuff

2003-09-22 Thread Kola Oyedeji
Massimo 

Before I cast my vote - not having the opportunity to yet download DWMX
2004 does anyone know if any of the following features are now
supported?

.   Split code view
.   Collapsible code
.   Code templates
.   Bookmarks
.   Search and save as a file

Kola

 -Original Message-
 From: Massimo Foti [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 14:18
 To: CF-Talk
 Subject: Re: dreamweaver stuff
 
  One thing I miss or can't seem to find is the Split View. Is this
gone?
 It
  was really helpful to look at 2 areas of code on a page at once.
 
 Cast your vote:
 
 http://www.macromedia.com/support/email/wishform/
 
 
 Massimo Foti
 Certified Dreamweaver MX Developer
 Certified Advanced ColdFusion MX Developer
 http://www.massimocorner.com/
 
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137890
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: dreamweaver stuff

2003-09-22 Thread Kola Oyedeji
 
  . Code templates

Associating code to keywords as in cfstudio - e.g. if you have a code
template associated with the word header after typing the keyword
header and hitting ctrl-j the code will be inserted. In my view this
is much more flexible than assigning code to shortcut key combinations.

  . Bookmarks

In cfstudio - ctrl-k will place a numbered marker at that particular
line. Ctrl-shift-k will then jump to all numbered markers. Allows you to
quickly jump to a section of code without doing a search.

  . Search and save as a file

If you do an extended find in cfstudio as well as being able to open
results in a browser, you can also export to a text file. Very useful
when you need a hardcopy of someone's unlocked session variables to show
them. ;-)

Kola

 
 Do you mind explnain the 3 above?
 
 
 Massimo Foti
 Certified Dreamweaver MX Developer
 Certified Advanced ColdFusion MX Developer
 http://www.massimocorner.com/
 
 
 
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137895
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Not able to start the ColdFusion MX Application Server from servi ces.

2003-09-22 Thread Kola Oyedeji
Also what version of CF are you using? IIRC there were some pre red-sky
issues which would result in the service not starting. Had this myself.

Kola



 -Original Message-
 From: Tyler Clendenin [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 15:01
 To: CF-Talk
 Subject: RE: Not able to start the ColdFusion MX Application Server
from
 servi ces.
 
 I have gotten this error many times, each time I have solved it by
 rebooting
 several times.
 
 You should check your cf default log for a more specific error should
be
 in
 [drive]:\[cf dir]\runtime\logs
 
 Tyler Clendenin
 GSL Solutions
 
 -Original Message-
 From: Ramesh Deva [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 22, 2003 7:58 AM
 To: CF-Talk
 Subject: Not able to start the ColdFusion MX Application Server from
 servi
 ces.
 
 Hi,
 
 I am not able to start the coldfusion application service.
 
 Giving following error..
 
 The ColdFusion MX Application Server service terminated with
 service-specific error 2.   Could not start ColdFusion MX
Application
 Server  on local computer..
 
 
 Any ideas ?
 
 
 Thanks
 ramesh
 
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137905
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: Parsing XML in ColdFusion - Help!!

2003-09-22 Thread Kola Oyedeji
Another suggestion which may or may not be possible - depending on the
source of the xml document is to have an empty xml element passed
through if there is no logo as opposed to not having the element present
at all. This should negate the need to check for the element existence.

Kola 

 -Original Message-
 From: Bailey, Neal [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 14:48
 To: CF-Talk
 Subject: RE: Parsing XML in ColdFusion - Help!!
 
 Hey Guys,
 
 Thanks for the help... I was finally able to get it working. But now
I
 have
 a new problem. The xml pages are built dynamically and are regularly
 updated. I am running into an error where if I call for an Element
called
 logo and it does not exist I will receive an error. The error
message
 reads as:
 
 Element Logo.XMLTEXT is undefined
 in a Java object of type class coldfusion.xml.XmlNodeMap
 
 The reason I get the error is because the logo element is sometimes
not
 there because there might not be a logo for the particular document.
 
 I cannot seem to figure out how to look for the Element and check if
it
 exists before processing and then if it does not exist don't process.
 
 If anyone has any ideas on how to do this I would be grateful.
 
 Sorry if this seems like noobi stuff, I know nothing of xml. But I'm
 learning...
 
 Thanks,
 - Neal
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 18, 2003 5:34 PM
 To: CF-Talk
 Subject: Re: Parsing XML in ColdFusion - Help!!
 
 Here's an example of getting the name out:
 
 cffile action=read file=C:\cfusionmx\wwwroot\test.xml
 variable=XMLFileText
 
 cfset myXMLDocument=XmlParse(XMLFileText)
 
 cfset name = xmlSearch(myXMLDocument, //benefitDocument/Name)
 
 cfoutput
 #name[1].XmlText#
 /cfoutput
 
 BTW, that XML file is horribly malformed.
 
 - Original Message -
 From: Bailey, Neal [EMAIL PROTECTED]
 Date: Thursday, September 18, 2003 2:37 pm
 Subject: Parsing XML in ColdFusion - Help!!
 
  Hello everyone...
 
  This is my first post to the list...
 
  Hopefully someone here can help me out. I'm pretty new to XML and
  I need to
  parse an xml page so that I can extract the information out of it
and
  include this information into a different page using ColdFusion MX
  6.1.
 
  I think my main problem is just understating how it all works using
  ColdFusion. I cannot fine many resources on the net that can help
  explainhow to do this. All I need to do is extract very little
  data out of a XML
  file. Almost like a news feed.
 
  Does anyone know of any useful resources that explain Parsing XML
  usingColdFusion MX 6.1?
 
  The file I'm trying to parse is below. The only information I need
to
  extract is the Name, TagLine and Details. I then want to show this
  information on a new page. If possible can some one give me an
  example of
  how to do this?
 
  Thanks,
  Neal
 
 
  ?xml version=1.0 encoding=utf-16 standalone=yes ?
  -!--
  This file represents benefit content
   --
 
 
  - benefitDocument
   CategoryBusiness/Category
   NameAssociation 105(tm) HRA/Name
   TagLinebThe premier tax break for your small
  business/b/TagLine
   Icon FREE65.gif/Icon
   DetailiOver $47 million in Member savings since April 1999.
  /ibrbr This is a call you can't afford not to make. You may
  alreadyqualify for the Association 105 Health Reimbursement
  Arrangement (HRA), and
  by enrolling now, the service is absolutely bFREE/b to new
  NASE Members
  in the year 2003. bYou must call to enroll./bbrbr Deduct
  100% of
  your family health insurance premiums and other medical expenses.
  bEnjoyhundreds, even thousands of dollars in real tax
  savings!/b A typical
  customer who pays $4,000 for health insurance and $2,000 for other
  medicalexpenses can save between $1,800 and $2,500 in taxes.
  brbr Under the new
  tax law, small-business owners will be able to deduct their health
  insurancepremiums at 100% from a federal and state income tax
  standpoint. However,
  the Association 105 HRA will go a step further by allowing the
  small-business owner a bself-employment/b tax savings as well.
In
  addition, Association 105 HRA customers will also be able to
  deduct 100% of
  their non-insured medical expenses from bstate, federal, and
  self-employment tax./bbrbr The Association 105 HRA offers you
  increased flexibility, along with the ability to carry forward
unused
  benefits to the next plan year!brbr Do you pay for any of the
  followingmedical-related expenses? brbr ulliHealth
  Insurance Premiums/li
  liCo-Pays/li liDeductibles/liliLong Term Care
Premiums/li
  liDental/li liVision/li liChiropractic/li liDoctors
  OfficeVisits/li liPrescriptions/li/ulbrIf you answered
  yes, you may
  qualify for the Association 105 program./Detail
   Call2Action /
   TeaserDeduct 100% of your family health insurance premiums and
  othermedical expenses/Teaser
 
 
CrossSellullishow_benefit.asp?benefit=105SamplePaySamplePay/li
 

RE: dreamweaver stuff

2003-09-22 Thread Kola Oyedeji
So 

Out of those 5 developer-centric features only 1 of them is possible in
DWMX? I don't believe in knocking things before you've tried it but this
isn't a good start is it? Perhaps I'm the only one using those features.

I'll add them to the wish list. 

Kola

 -Original Message-
 From: Massimo Foti [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 15:06
 To: CF-Talk
 Subject: Re: dreamweaver stuff
 
. Code templates
 
  Associating code to keywords as in cfstudio - e.g. if you have a
code
  template associated with the word header after typing the keyword
  header and hitting ctrl-j the code will be inserted. In my view
this
  is much more flexible than assigning code to shortcut key
combinations.
 
 I see, I almost never use keyborad shortcuts, that's why I missed it.
 Anyway, it's missing in DW 2004
 
 
. Bookmarks
 
  In cfstudio - ctrl-k will place a numbered marker at that
particular
  line. Ctrl-shift-k will then jump to all numbered markers. Allows
you
 to
  quickly jump to a section of code without doing a search.
 
 Same as above
 
 
. Search and save as a file
 
  If you do an extended find in cfstudio as well as being able to
open
  results in a browser, you can also export to a text file. Very
useful
  when you need a hardcopy of someone's unlocked session variables to
 show
  them. ;-)
 
 In DW, both MX and 2004, you can save the results of Site Reports,
not
 Search  Replace. I agree, it's an handy feature
 
 
 Massimo Foti
 Certified Dreamweaver MX Developer
 Certified Advanced ColdFusion MX Developer
 http://www.massimocorner.com/
 
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137920
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: [ OT] Special security Alert!

2003-09-22 Thread Kola Oyedeji
Gosh, I thought this was old news - I was receiving this email *all*
last week. The thing to be aware of is that if you have not updated your
version of IE (assuming you are using IE) and assuming you are using
Outlook - this virus can be launched just by viewing the email in the
preview pane!

Kola

 -Original Message-
 From: Doug White [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 15:05
 To: CF-Talk
 Subject: Re: [ OT] Special security Alert!
 
 This is a question for those that have already become familiar with
these
 worm
 e-mails.
 
 Is it possible that the propagation is via totally spoofed IP
numbers?  I
 did
 not think this would be possible.
 
 The end result is that my mail server is receiving around 100 of
these
 per hour,
 from three general geographic areas, but never the same IP number.
(it,
 de and
 au)   The destination is to a single address in one of the domains I
 serve as a
 gateway for.  So far Amavis+AntiVir has been catching them and
generates
 a lot
 of email to the postmaster account.  I wanted to try to see if I
could
 create
 some rules in the Linux Firewall to drop these connections, but am a
bit
 overwhelmed by the sheer quantity.
 
 I did note that some of the infected email have made it past the
virus
 scanner,
 however the attachment on those is only either a zero-byte or a 2
byte
 size,
 These are not a problem as the fragmented attachment is of no danger.
 
 I have advised all clients to disable the instant view as well as to
 disable
 iframe execution in their mail client, which seems to be preventing
the
 ones
 that are crafted as a bounce, but contain an iframe command to infect
the
 unwary
 user.
 
 
 
 ==
 Stop spam on your domain, use our gateway!
 For hosting solutions http://www.clickdoug.com
 Featuring Win2003 Enterprise, RedHat Linux, CFMX 6.1 and all
databases.
 ISP rated: http://www.forta.com/cf/isp/isp.cfm?isp_id=772
 Suggested corporate Anti-virus policy:
 http://www.dshield.org/antivirus.pdf
 ==
 If you are not satisfied with my service, my job isn't done!
 
 - Original Message -
 From: Claude Schneegans [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Monday, September 22, 2003 8:53 AM
 Subject: Re: [ OT] Special security Alert!
 
 
 | There is  a new virus threat introduced to the internet
yesterday,
 which
 | Symantec identifies as the [EMAIL PROTECTED]  worm.
 |
 | This is unbelievable: since last friday I'm receiving about
half/dozen
 copies
 of it every hour!
 | Suscribing to a list like this makes your email address present in
 thousands
 of computers.
 | If the virus is able to find addresses in mail inbox, it might
explain
 I
 receive so many of them.
 |
 | Are you some of you also receiving so many message about a so
called
 microsoft
 update
 | or a message delivery failure ?
 |
 |


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137922
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: dreamweaver stuff

2003-09-22 Thread Kola Oyedeji
A Now I see what MM is up to - we're supposed to buy both
products and use Dreamweaver side by side with CF studio ;-)

Kola

 -Original Message-
 From: Massimo Foti [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 15:29
 To: CF-Talk
 Subject: Re: dreamweaver stuff
 
  Out of those 5 developer-centric features only 1 of them is
possible in
  DWMX? I don't believe in knocking things before you've tried it but
 this
  isn't a good start is it? Perhaps I'm the only one using those
 features.
 
 I never suggested DW MX can replace Homesite/CF Studio, not here, not
 ever.
 Personally I am happy using both side by side (plus TopStyle)
 
 
 Massimo Foti
 Certified Dreamweaver MX Developer
 Certified Advanced ColdFusion MX Developer
 http://www.massimocorner.com/
 
 
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137926
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: Not able to start the ColdFusion MX Application Server from servi ces.

2003-09-22 Thread Kola Oyedeji
This is also what I was referring to.

Kola

 -Original Message-
 From: Mike Brunt [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 15:41
 To: CF-Talk
 Subject: RE: Not able to start the ColdFusion MX Application Server
from
 servi ces.
 
 Ramesh we have some information on this is our blog, here: -
 

http://www.webapper.net/index.cfm?fuseaction=Fuseblog.ShowCommentsArtic
l
 eID
 =20030906092538
 
 Hth.
 
 Kind Regards - Mike Brunt
 Webapper Services LLC
 Web Site http://www.webapper.com
 Blog http://www.webapper.net
 
 Webapper Web Application Specialists
 
 -Original Message-
 From: Jesse Houwing [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 22, 2003 7:01 AM
 To: CF-Talk
 Subject: Re: Not able to start the ColdFusion MX Application Server
from
 servi ces.
 
 Ramesh Deva wrote:
 
 Hi,
 
 I am not able to start the coldfusion application service.
 
 Giving following error..
 
 The ColdFusion MX Application Server service terminated with
 service-specific error 2.   Could not start ColdFusion MX
Application
 Server  on local computer..
 
 
 
 Thsi usually means that something is wrong with the XML config files
or
 the Java runtime (settings).
 
 try looking at the plain text log files in your coldfusion directory.
 Usually they give you a clue where to start.
 
 Jesse
 
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137928
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: [ OT] Special security Alert!

2003-09-22 Thread Kola Oyedeji
Thing is, as I pointed out, simply previewing the email has the
potential to launch it.


Kola

 -Original Message-
 From: Claude Schneegans [mailto:[EMAIL PROTECTED]
 Sent: 22 September 2003 15:21
 To: CF-Talk
 Subject: Re: [ OT] Special security Alert!
 
 so I am curious how in the
 WORLD I am getting them??
 
 Well, if it is able to read Outlook database of messages, it can get
all
 our addresses.
 If any one in this list cliqued on the attachement, he probably sent
the
 worn to all of us.
 This list is supposed to be used by professionals, so apparently
people
 knowing
 that one should not be cliquing on anything attached, but who knows?
;-)
 


~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137940
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: DWMX 2004 Impressions

2003-09-11 Thread Kola Oyedeji
Does it now support book marks that you can jump to as Studio did?

Kola

 -Original Message-
 From: Calvin Ward [mailto:[EMAIL PROTECTED]
 Sent: 11 September 2003 09:30
 To: CF-Talk
 Subject: Re: DWMX 2004 Impressions
 
 Here's a few things:
 
 Snippets for shorcuts are a definite improvement.
 On Windows the performance is improved.
 I find the layout is a bit easier to work with.
 The CSS support is the best there is, but that may not apply to many.
 There is built in support for sftp.
 The search and replace is much stronger than DWMX or CFS.
 
 - Calvin
 
 - Original Message -
 From: Stacy Young [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, September 10, 2003 12:52 PM
 Subject: DWMX 2004 Impressions
 
 
  I have to be honest, I'm using the trial here and I just don't see
a
  whole lot for coding developers. Not to mention the buggy
panel/screen
  refreshing . My only motivation to buying this would be the hope of
 less
  crashes than the original MX version...and maybe the fact u get an
  updated homesite+...which I think I'm going to switch back to.
 
  Stace
 
 
  AVIS IMPORTANT:
  ---
  Les informations contenues dans le present document et ses pieces
 jointes
 sont strictement confidentielles et reservees a l'usage de la (des)
 personne(s) a qui il est adresse. Si vous n'etes pas le destinataire,
 soyez
 avise que toute divulgation, distribution, copie, ou autre
utilisation de
 ces informations est strictement prohibee. Si vous avez recu ce
document
 par
 erreur, veuillez s'il vous plait communiquer immediatement avec
 l'expediteur
 et detruire ce document sans en faire de copie sous quelque forme.
 
  WARNING:
  ---
  The information contained in this document and attachments is
 confidential
 and intended only for the person(s) named above. If you are not the
 intended
 recipient you are hereby notified that any disclosure, copying,
 distribution, or any other use of the information is strictly
prohibited.
 If
 you have received this document by mistake, please notify the sender
 immediately and destroy this document and attachments without making
any
 copy of any kind.
 
 


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: Load Testing Tools

2003-09-04 Thread Kola Oyedeji
Really?

I just went to www.opensta.org and the website was fine!

Kola


 -Original Message-
 From: Philipp Cielen [mailto:[EMAIL PROTECTED]
 Sent: 02 September 2003 19:11
 To: CF-Talk
 Subject: RE: Load Testing Tools
 
 OpenSTA is dead - or at least their website is, obviously due to
patent
 violations.
 
 best,
 
 philipp
 
 
 --
 cielen.com
 
 


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


  1   2   3   4   5   >