Re: CFC weirdness - cannot find the file specified

2006-01-31 Thread Kay Smoljak
Thanks James - we're having some issues here, between our heads (which
seemingly aren't working at all) and our server which is working
intermittently. As well as calling the CFC with the wrong path like
you pointed out, sometimes the server throws an error when there's
?wsdl on the invoke call and sometimes it doesn't.

Time to go home for the day I think!

On 1/31/06, James Holmes [EMAIL PROTECTED] wrote:
 Have you tried with test instead of testServices (since that's the
 name of the cfc)?

 On 1/30/06, Kay Smoljak [EMAIL PROTECTED] wrote:
  I have a cfc in the following setup:
 
  http://www.example.com/cfctest/test.cfc
  http://www.example.com/cfctest/index.cfm
 
  The cfc looks like this:
 
  cfcomponent displayname=testServices
  cffunction access=remote name=getStatus returntype=string
  output=false
  cfset returnStatus = available
  cfreturn returnStatus/
  /cffunction
  /cfcomponent
 
  Invocation in index.cfm looks like this:
 
  cfinvoke component=cfctest.testServices?wsdl method=getStatus
  returnvariable=foo
  /cfinvoke
  cfdump var=#foo#
 
  
 
  The above setup worked fine last night and hasn't been changed. Now
  this morning
  I get the following error when invoking with 'cfctest.testServices?wsdl':
 
  'The system cannot find the file specified'
 
  If I change the invocation to 'cfctest.testServices' I get :
 
  'Could not find the ColdFusion Component cfctest.testServices'
 
  The weird thing about all this is that when I go directly to:
 
  http://www.somedomain.com/cfctest/test.cfc?wsdl
 
  I get the WSDL printout fine.
 
  Anyone have any ideas what might have made it stop working over night?
  As far as I know the server hasn't been updated, rebooted or anything.
  Any server settings to check in particular?
  Any caching issues that I might have overlooked?

 --
 CFAJAX docs and other useful articles:
 http://jr-holmes.coldfusionjournal.com/

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230807
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL Server Monitoring with CF

2006-01-31 Thread Gert Franz
Hi John,

what you could do ist to write some sql-statements that retrieve exactly 
the values you need. In general I use the SQL-Profiler to record the 
statements I need. Therefore I open the Enterprise Manager and Display 
the properties of a certain database while having the SQL-Profiler 
recording every SQL-Statement. From the resulted Statements I extract 
the ones important to me. For example retrieving every Table or view 
from a certain database:

Select Name from SysObjects Where XType = 'U'

It's a little complicated to find the statements you need, but much 
easier than writing the statements yourself searching the SQL-Server 
help. You then could run a scheduled task on the cf-server in order to 
monitor the activity on the server. (But not too often, since it could 
hurt performance).

BTW: Here two statements that returns the size of a certain database:

Use [Databasename]
SELECT o.fileid, o.name, o.filename, o.groupid, o.size, o.maxsize, 
o.growth, o.status FROM dbo.sysfiles o WHERE o.groupid = (SELECT 
u.groupid FROM dbo.sysfilegroups u WHERE u.groupname = N'PRIMARY') and 
(o.status  0x40) = 0
Go
SELECT fileid, name, filename, size, growth, status, maxsize FROM 
dbo.sysfiles WHERE (status  0x40)  0
Go

But you need to have access to the master database in order to retrieve 
this information.

If you need any further information, just contact me off the list.

cfgreetings name=Gert Franz location=Switzerland 
email=[EMAIL PROTECTED] function=Railo Core Developer

John Lucania schrieb:

I want to monitor the sql server connected to CFMX.

What I want is:

- the total sizes the sql server drives
- free sizes the drives
- size of each database

in cfmail.

Any ideas?

Please advise.

jl



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230808
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Who is using a large scale CMS?

2006-01-31 Thread Robertson-Ravo, Neil (RX)
Sounds good - the kind of load I am looking to support is 500-1000
simultaneous.






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

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Fri Jan 27 16:32:28 2006
Subject: Re: Who is using a large scale CMS?

We run a bespoke CMS based on CF.  6.5 million content objects (I think we
generate around 50K objects per day these days), around 150-200 users
(generally about 100 simultaneous users).  We've been developing it for
about 9 years now since CF2.0  

We use Oracle as the database system, content is delivered to the delivery
system as XML (generally fragements, the delivery system assembles the
fragments into xml pages where are xslt transformed into html).  The
delivery system is not CF, but instead, a custom version of Apache.


All,

How many of you are currently working and deploying on a large scale CF CMS
such as CommonSpot or Hot Banana?  

N



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230809
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


NOF and BOM

2006-01-31 Thread cf
Hi there,

after switching to CFMX a client comlained that all his special characters were 
broken. A short invetigation showed that he is using NetObjects Fusion to 
generate CFM files. 

Now, CFMX relies on the BOM (Byte Order Mark) to detemine the page encoding. 
NOF, on the other hand, does not seem to set the BOM to UTF-8. 

I have not found a trial version of NOF to play around with, and my client is 
about 300 miles away. I'd rather avoid going there just to change an editor 
setting. ;-)

So is there any of you familiar with NOF and can show me how to change the page 
encoding? 

TIA,

Chris



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230810
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Gert Franz
Hi Mike,

here's what Joe Celko proposes:
Assuming lftValue is the left value of a certain record.
Since all parents of the current record have left values that are 
smaller than lftValue and right values that ar larger than lftValue, you 
could use the following statement:

Select Count(*) From categories Where cat_lft = #leftValueOfRecord# AND 
cat_rgt = #leftValueOfRecord#

So if you have the inheritance: A  B  C  D then D will return a count 
of 4 if you use = and =, and 3 if you use  and ...

Hope it helps.

cfgreetings name=Gert Franz location=Switzerland email=[EMAIL PROTECTED] 
function=Railo Core Developer


Mike | NZSolutions Ltd schrieb:

Hi there,

I have the following category table which utilises a nested set model...

CREATE TABLE [dbo].[categories] (
   [cat_id] [int] IDENTITY (1, 1) NOT NULL ,
   [dModified] [datetime] NULL ,
   [dCreated] [datetime] NULL ,
   [cat_parent_id] [int] NULL ,
   [cat_lft] [int] NULL ,
   [cat_rgt] [int] NULL ,
   [cat_image] [varchar] (255) COLLATE Latin1_General_CI_AS NULL ,
   [cat_sort_order] [int] NULL 
) ON [PRIMARY]
GO

What I wish to add to the table is a level column, eg. the top most
parent nodes would be level 1, their children level 2 and so on...

I am a bit stumped as to how to create a query (I am using SQL Server
2000) that will determine what level a particular record is in the
hierarchy?

Any help would be really appreciated.

mike





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230811
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF-Talk: Digest every 4 hours

2006-01-31 Thread Pedro Mendes
What I'd like, is for the aspx be run on it's own server, and then grab
the results, as an include. In this particular case, it would be the
Header and Left menu includes. 

I'm not sure if I'm being clear enough. Feel free to respond privately,
if you feel inclined to lend me a hand. Thank you so much.

Pedro



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230812
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF-Talk: Digest every 4 hours

2006-01-31 Thread cf
Hi,

 What I'd like, is for the aspx be run on it's own 
 server, and then grab
 the results, as an include. In this particular 
 case, it would be the
 Header and Left menu includes. 

that can not be done with cfinclude. You could use cfhttp for that:
cfhttp method=get url=http://asp-server/dir/header.aspx;
cfoutput#cfhttp.filecontent/cfoutput

HTH,

Chris




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230813
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: ot: dreamweaver expression builder

2006-01-31 Thread Robertson-Ravo, Neil (RX)
Years ago, I built this...not sure if it will work with DW 8 though..

http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn121extID=450887
#loc=en_usview=sn121extID=450887viewName=Dreamweaver%20Extensionavm=1





-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: 31 January 2006 01:19
To: CF-Talk
Subject: Re: ot: dreamweaver expression builder

I'm not aware of a plugin for that but some of that functionality is
built into different parts of DW. Press F1 when the cursor is on a tag
or function and the docs come up; start typing a function and the
arguments show; type a tag and the attribute list pops up.

On 1/31/06, Michael Dinowitz [EMAIL PROTECTED] wrote:
 In homesite there is a wonderful little popup called the expression
builder. It gives access to all the CF functions, docs for the same and
attributes. It also gives the return values for various tags. Is there such
a plug in for dreamweaver? I'm trying to get into using dreamweaver and the
lack of an expression builder is bothersome. The lack of it in cfeclipse is
also a major reason why I have not moved fully to that editor either.

--



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230814
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Disable Verity on Linux?

2006-01-31 Thread Thomas Chiverton
On Monday 30 January 2006 23:26, [EMAIL PROTECTED] wrote:
 How can I disable verity on Linux? It's spawned a whole lot of

Find out what's running it (cron ?).
We don't use it I'm afraid, so can't be much more help, but as no one else has 
piped up :-)

-- 

Tom Chiverton 
Advanced ColdFusion Programmer

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230815
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFX_IMAP4 Problem

2006-01-31 Thread Jennifer Gavin-Wear
has anyone else had problems with imap taking forever to just read a folder?

was working fine on one server, say 2 secs for 200 mails, and now it times
out over 600 secs.

Am wondering if I'd be better off just using cfx_pop as all I need to do for
this project is read off the mail and there's no need for the extended
features imap would give?

Jenny



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230816
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFX_IMAP4 Problem

2006-01-31 Thread Thomas Chiverton
On Tuesday 31 January 2006 11:26, Jennifer Gavin-Wear wrote:
 was working fine on one server, say 2 secs for 200 mails, and now it times
 out over 600 secs.

If you try it by hand does it say anything helpful ?
Maybe the mail spool is locked on the server.
-- 

Tom Chiverton 
Advanced ColdFusion Programmer

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230817
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFEclipse - Good Beginner documentation.

2006-01-31 Thread DURETTE, STEVEN J \(AIT\)
Nathan,

Your site is easy to read.  Rob's videos are great.  I never found out
about them before because youtube is blocked at work by our corporate
security team.  I looked at them at home.  Just what I needed.

What I originally was looking for was something like Rob's videos only
in document form.

Sometimes it is just easier when you work full time (60+ hours a week),
go to school full time (12 credit hours and yes I know that is the
minimum for full time school!), have a family (two wonderful little boys
ages 2 and 4 and a wonderful wife), and you still want to push forward
in your craft, to just have something you can print out and read as you
have a spare minute.  [Wow was that a big run on sentence or what]

Thanks for the help.

Steve


-Original Message-
From: Nathan Strutz [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 30, 2006 12:08 PM
To: CF-Talk
Subject: Re: CFEclipse - Good Beginner documentation.


I thought my page was pretty easy to read:

http://www.dopefly.com/pages/cfeclipse.cfm

Also, Rob's got some videos, on the right column of his blog, in an
iframe.

http://www.robrohan.com/client/

-nathan strutz
http://www.dopefly.com/


On 1/30/06, DURETTE, STEVEN J (AIT) [EMAIL PROTECTED] wrote:
 All,

 I have considered using CFEclipse in the past.  Even installed it
once,
 but I couldn't find any tutorials or such that could get me up and
 running quickly.

 Recently I decided to try again.  I have Eclipse and the CFEclipse
 plug-in installed.  Are there any good beginner tutorials out there?

 Last time I tried it looked like everything was...  Go through all of
 the tutorials built into Eclipse, then come back and find out about
 CFEclipse.

 Also, a lot of the docs were in help file format that I saw.  I
 generally print out tutorials, read them as I have a chance (sitting
at
 the Dr. office etc) and then try out the stuff I read in the tutorial.
 Help file format generally means REAMS of paper or being tied to a
 computer.

 If CFEclipse really wants to pick up speed, I think more beginner
 tutorials need to be out there.

 Thanks,
 Steve



 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230819
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OpenSource Business Services Call For Comments

2006-01-31 Thread Cutter
Andy,

Good call. Could you put this up in the File or Docs section of the 
SourceForge site though? That way people could discuss it in our Forum 
and maybe we can get some healthy debate/feedback for all of us to see.

Cutter

Andy wrote:
 Call for comments.  This link is to a first cut at a design document for the
 Open Source Business Services.  
 http://www.omygoodness.com/osbsv1.doc
  
 Any and all comments are appreciated, ranging from you are missing this
 whole section, to that won't work because..., even here is something on
 this area that you can adapt.  Also, if anyone has a block of design
 considerations that can provide some framework for use of CSS, I'd really
 appreciate it.  I am especially clueless in this area.
  
 Email me off list, on list, update the doc directly and send to me, whatever
 technique works for you
  
 Thanks.
  
 Andy




 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230818
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Suggestions For dedicated Server hosting - VIVIOTECH

2006-01-31 Thread Rick Root
applemicro wrote:
 Does anyone have any suggestions for a dedicated hosting provider?

I've been VERY happy with Vivio Technologies.  Good service, good prices.

I have a dedicated server with them, and several of my clients have 
their own VPS accounts as well.

http://www.viviotech.net/hosting.cfm?rid=rickroot

(yea yeah yeah I'm an affiliate ;)

Rick



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230820
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFFM update

2006-01-31 Thread Rick Root
CFFM has been updated with PNG manipulation support and I fixed a little 
bug that was in 1.12.

Previous versions of CFFM only allowed manipulation of JPG images.

http://www.cfopen.org/projects/cffm

As a side note, I'm preparing to release a new image CFC based on Jim 
Dew's original work.  It will be more robust, and I'm playing with java 
renderinghints and jpeg compression to try to increase the quality of 
the output.  Please email me off list if you are interested in either 
knowing when it's done or in helping.  This new image manipulation 
component will be free and open source under the BSD license like all 
the stuff I do, so you can do whatever you want with it.

Rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230821
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Suggestions For dedicated Server hosting

2006-01-31 Thread Burns, John D
Glad I'm not the only one with that experience. 


John Burns
Certified Advanced ColdFusion MX Developer
Wyle Laboratories, Inc. | Web Developer
 

-Original Message-
From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 30, 2006 6:33 PM
To: CF-Talk
Subject: RE: Suggestions For dedicated Server hosting

I've always stuck with Pentiums and it has saved me a few times when
Application providers have tried to blame the processor, hard for them
to say they didn't test on an Intel.  My impression of Celeron is that
they are terribly slow.

Jenny

-Original Message-
From: Jordan Michaels [mailto:[EMAIL PROTECTED]
Sent: 30 January 2006 22:19
To: CF-Talk
Subject: Re: Suggestions For dedicated Server hosting


Burns, John D wrote:

Ewww, a celeron! :-) I don't think I could bear to host anything on 
that. That's just me though. Lots of bad experiences with celeron 
processors.

So what CPU type do you prefer? Just a curiosity question really. I see
a lot of celerons in low-end servers these days - you can get them
almost anywhere and their prices are hard to beat.

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





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230822
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Including a remote aspx page

2006-01-31 Thread Eric Roberts
What about a cfc...aren't you supposed to be able to make an object that can
communicate between cf and other web dev languages?

Eric 

-Original Message-
From: Robert Munn [mailto:[EMAIL PROTECTED] 
Sent: Monday, 30 January 2006 13:54
To: CF-Talk
Subject: Re: Including a remote aspx page

You would need to use BlueDragon .NET edition to execute .aspx pages inside
your .cfm pages.


Pedro wrote:

 I wonder if this is possible:
 
 I need to use several include files on my .cfm pages. These files are 
 in aspx, and are located on a different server in the network. I've 
 tried using a mapping, but I guess it only works with local files.
 
 It is possible to include a remote file, isn't it? Thanks in advance. 
 This may be obvious, but I just can't see it :-)
 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230823
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Disable Verity on Linux?

2006-01-31 Thread David Livingston
/etc/init.d/cfmx7search stop

I don't ever see it spawn a bunch of processes but the actual  
coldfusion app does.

Dave

On Jan 30, 2006, at 5:26 PM, [EMAIL PROTECTED] wrote:



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230824
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Including a remote aspx page

2006-01-31 Thread Burns, John D
You'd still have to use cfhttp or something to make a call to the aspx
page over http to make the code execute and then the results would be
passed back to the cf page in the cfhttp struct. As others have
mentioned, you'd have to have BlueDragon .NET to locally just include
an aspx file and have it execute. 


John Burns
Certified Advanced ColdFusion MX Developer
Wyle Laboratories, Inc. | Web Developer
 

-Original Message-
From: Eric Roberts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 8:20 AM
To: CF-Talk
Subject: RE: Including a remote aspx page

What about a cfc...aren't you supposed to be able to make an object that
can communicate between cf and other web dev languages?

Eric 

-Original Message-
From: Robert Munn [mailto:[EMAIL PROTECTED]
Sent: Monday, 30 January 2006 13:54
To: CF-Talk
Subject: Re: Including a remote aspx page

You would need to use BlueDragon .NET edition to execute .aspx pages
inside your .cfm pages.


Pedro wrote:

 I wonder if this is possible:
 
 I need to use several include files on my .cfm pages. These files are 
 in aspx, and are located on a different server in the network. I've 
 tried using a mapping, but I guess it only works with local files.
 
 It is possible to include a remote file, isn't it? Thanks in advance. 
 This may be obvious, but I just can't see it :-)
 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Alternative Oracle JDBC Driver For Standard Edition

2006-01-31 Thread Lonny Eckert
It's funny you say that, one of our clients is going to make the
opposite migration: from ColdFusion to Oracle Portal.

Why did you client dump Oracle Portal?
We may still be able to convince ours to stick with ColdFusion. :-)

I believe the license costs are considerably higher for one thing. We
did find it difficult to develop and maintain the application, but that
may well be reflective of inexperience with Portal compared to our level
of experience with CF. It may also be reflective that Portal was
relatively new at the time and not nearly as mature as its alternatives.

I had not worked on the Portal project so I can't give you any
comparitive insight wrt  how easy it is to develop in CF versus Portal.
My group was not part of the development of the original Portal project
design specs so I can't give you any real insight as to why Portal other
than the client wanted Portal and that is that is what they got

Sorry that my answer isn't so helpful.


Lonny Eckert 
Mi Services Group, Inc. 
Work Phone: 610-230-2544
E-mail: [EMAIL PROTECTED] 
www.mi-services.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230826
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX_IMAP4 Problem

2006-01-31 Thread Paul Vernon
Hi Jennifer,

If you need support for CFX_IMAP4 please contact me off list.

Yours

Paul Vernon
http://www.newmediadevelopment.net
t: 0871 425 4260
m: +44 (0)7887 952591
f: 0871 425 4261
e: mailto:[EMAIL PROTECTED] 
 
The information contained in this e-mail and any attachment is intended only
for the named addressee(s). If you are not the named addressee(s), please
notify the sender immediately and do not disclose, copy or distribute the
contents to any other person other than the intended addressee(s).   

 -Original Message-
 From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, 31 January 2006 11:27
 To: CF-Talk
 Subject: CFX_IMAP4 Problem
 
 has anyone else had problems with imap taking forever to just 
 read a folder?
 
 was working fine on one server, say 2 secs for 200 mails, and 
 now it times out over 600 secs.
 
 Am wondering if I'd be better off just using cfx_pop as all I 
 need to do for this project is read off the mail and there's 
 no need for the extended features imap would give?
 
 Jenny
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230827
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Nested Set Model

2006-01-31 Thread Brad Wood
Be careful with recursion in MS SQL server 2000.  There is a limit of 32
proc calls deep.  Not sure about functions, though.  This would have
obvious limitations of your structure was more than 32 levels deep.

I can cook up a coded sample of the iterative method if you want.

I'm not sure what you wish to do with this level count, but be careful
if you plan on storing it in the original table.  The level count is
already stored inherently in the table through its structure.
Populating a column with that number would be de-normalizing that piece
of data (for understandable performance reasons).  Now if any of the
cat_parent_id values are allowed to change, you will effectively be
cutting and pasting a branch of your tree to a different location with
different ancestor nodes.  This will change your level counts for the
changed node and all it's descendants.  

Still doable, just overhead to consider.

~Brad


I will see what i can find on recursion that might help me out.




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230828
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Phil Cruz
Check out this article:
Implementing the nested set model in ColdFusion
http://coldfusion.sys-con.com/read/42123.htm

hth,
Phil

Hi there,

I have the following category table which utilises a nested set model...

CREATE TABLE [dbo].[categories] (
   [cat_id] [int] IDENTITY (1, 1) NOT NULL ,
   [dModified] [datetime] NULL ,
   [dCreated] [datetime] NULL ,
   [cat_parent_id] [int] NULL ,
   [cat_lft] [int] NULL ,
   [cat_rgt] [int] NULL ,
   [cat_image] [varchar] (255) COLLATE Latin1_General_CI_AS NULL ,
   [cat_sort_order] [int] NULL 
) ON [PRIMARY]
GO

What I wish to add to the table is a level column, eg. the top most
parent nodes would be level 1, their children level 2 and so on...

I am a bit stumped as to how to create a query (I am using SQL Server
2000) that will determine what level a particular record is in the
hierarchy?

Any help would be really appreciated.

mike

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230829
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Including a remote aspx page

2006-01-31 Thread Andy Matthews
It doesn't sound like he wants to communicate with other servers so much as
just include the contents of an ASP page into a CF page.

As myself and others have mentioned, the only way (that I know of) to do
this is to use cfhttp to scrape the page into the CF template.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Eric Roberts [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 7:20 AM
To: CF-Talk
Subject: RE: Including a remote aspx page


What about a cfc...aren't you supposed to be able to make an object that can
communicate between cf and other web dev languages?

Eric


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230830
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX_IMAP4 Problem

2006-01-31 Thread Dawson, Michael
If you can filter it to pull only unread messages, it will certainly
help.  However, we found that Exchange is very slow using IMAP.  I
confirmed this using Outlook Express with an IMAP connection.  The
clients want to pull the data quickly, the server is just too sluggish.

M!ke 

-Original Message-
From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 5:27 AM
To: CF-Talk
Subject: CFX_IMAP4 Problem

has anyone else had problems with imap taking forever to just read a
folder?

was working fine on one server, say 2 secs for 200 mails, and now it
times out over 600 secs.

Am wondering if I'd be better off just using cfx_pop as all I need to do
for this project is read off the mail and there's no need for the
extended features imap would give?

Jenny

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230831
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: NOF and BOM

2006-01-31 Thread Claude Schneegans
This is because CFMX forces the character set to UTF-8 by default.

Another annoyance of this is when you have Javascript files with special 
characters in messages.
The problem is that when the browser receives a document decalred in 
UTF-8, it also expects
Javascript files included in it to be in encoded in UTF-8.
If, like in my case, you have customers under CF 5 and CFMX, you must 
then maintain Javascript libraries
in both formats ISO-8859 and UTF-8.

So finally UTF-8 is not a handy solution whan all you need is ISO.

I solved the problem with the following code in Application.cfm, which 
makes all my applications
ISO-8859-1 compatible under CF 5 or CFMX :

CFSET CFversion = listGetAt(server.coldfusion.productVersion, 1)
CFIF CFversion GT 5
cfcontent type=text/html; charset=ISO-8859-1
cfset setEncoding(url,ISO-8859-1)
cfset setEncoding(form,ISO-8859-1)
/CFIF

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


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230832
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL Server Monitoring with CF

2006-01-31 Thread Gert Franz
Hi JL,

you could also use some or a special stored proc:

cfquery name=GetDatabases datasource=DatasourceWithSaRights
sp_databases
/cfquery
!--- This is a global stored procedure which returns you exactly what 
you need ---

cfdump var=#GetDatabases#

Returns the databasename, the size and remarks of the database

cu Gert Franz
Technical Support
[EMAIL PROTECTED]
www.railo.ch


John Lucania schrieb:


Gert,

Thank you for the tips.  I have  40 databases.   Is there a way to use 
'loop'?
If not, it seems I need to repeat the query for each database.

Please advise.

Thank you,

jl

-- Forwarded message --
From: Gert Franz [EMAIL PROTECTED]
Date: Jan 31, 2006 3:45 AM
Subject: Re: SQL Server Monitoring with CF
To: CF-Talk cf-talk@houseoffusion.com


Hi John,

what you could do ist to write some sql-statements that retrieve exactly
the values you need. In general I use the SQL-Profiler to record the
statements I need. Therefore I open the Enterprise Manager and Display
the properties of a certain database while having the SQL-Profiler
recording every SQL-Statement. From the resulted Statements I extract
the ones important to me. For example retrieving every Table or view
  

from a certain database:


Select Name from SysObjects Where XType = 'U'

It's a little complicated to find the statements you need, but much
easier than writing the statements yourself searching the SQL-Server
help. You then could run a scheduled task on the cf-server in order to
monitor the activity on the server. (But not too often, since it could
hurt performance).

BTW: Here two statements that returns the size of a certain database:

Use [Databasename]
SELECT o.fileid, o.name, o.filename, o.groupid, o.size, o.maxsize,
o.growth, o.status FROM dbo.sysfiles o WHERE o.groupid = (SELECT
u.groupid FROM dbo.sysfilegroups u WHERE u.groupname = N'PRIMARY') and
(o.status  0x40) = 0
Go
SELECT fileid, name, filename, size, growth, status, maxsize FROM
dbo.sysfiles WHERE (status  0x40)  0
Go

But you need to have access to the master database in order to retrieve
this information.

If you need any further information, just contact me off the list.

cfgreetings name=Gert Franz location=Switzerland
email=[EMAIL PROTECTED] function=Railo Core Developer

John Lucania schrieb:

  

  

I want to monitor the sql server connected to CFMX.

What I want is:

- the total sizes the sql server drives
- free sizes the drives
- size of each database

in cfmail.

Any ideas?

Please advise.

jl









~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230833
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX_IMAP4 Problem

2006-01-31 Thread Jennifer Gavin-Wear
Hi Paul,

I have sent you two or three emails over the last few days and not heard
back.

Have you not received them?

Jenny


-Original Message-
From: Paul Vernon [mailto:[EMAIL PROTECTED]
Sent: 31 January 2006 14:51
To: CF-Talk
Subject: RE: CFX_IMAP4 Problem


Hi Jennifer,

If you need support for CFX_IMAP4 please contact me off list.

Yours

Paul Vernon
http://www.newmediadevelopment.net
t: 0871 425 4260
m: +44 (0)7887 952591
f: 0871 425 4261
e: mailto:[EMAIL PROTECTED]

The information contained in this e-mail and any attachment is
intended only
for the named addressee(s). If you are not the named addressee(s), please
notify the sender immediately and do not disclose, copy or distribute the
contents to any other person other than the intended addressee(s).

 -Original Message-
 From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, 31 January 2006 11:27
 To: CF-Talk
 Subject: CFX_IMAP4 Problem

 has anyone else had problems with imap taking forever to just
 read a folder?

 was working fine on one server, say 2 secs for 200 mails, and
 now it times out over 600 secs.

 Am wondering if I'd be better off just using cfx_pop as all I
 need to do for this project is read off the mail and there's
 no need for the extended features imap would give?

 Jenny







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230834
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Coldfusion and Active Directory

2006-01-31 Thread Ian Vaughan
I have a form to search the Active Diretory shown below, searching the
account name, name, title, e-mail and telephone number attributes for an
Intranet Phone Directory
 
How can I modify the filter query of the CFLDAP statement to cater for
this ?
 
filter=((objectClass=user)(sAMAccountName=#Form.sAMAccountName#)(cn=#F
orm.cn#)(title=#Form.title#)(email=#Form.email#))
 
I have tried using | instead of  but that just brings back all results
??
 
 
cfform method=POST action=cfldap1.cfm name=form 
 
cfinput type=text name=sAMAccountName size=22 br
cfinput type=text name=cn size=22 br
cfinput type=text name=title size=22 br
cfinput type=text name=email size=22 br
input type=image src=search.gif border=0 style=cursor:hand
width=49 height=18 
/cfform


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230835
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Disable Verity on Linux?

2006-01-31 Thread Jason
Hmmn... That command tells me:
[EMAIL PROTECTED] [~]# /etc/init.d/cfmx7search stop
There is no process ID in the file 
/opt/coldfusionmx7/verity/Data/host/log/k2admin.pid
No k2admin process to stop

But, I'm still seeing a bunch of these in running processes:

2732(k2index)   /opt/coldfusionmx7/verity/k /opt/coldfusionmx7/verity/k2
/opt/coldfusionmx7/verity/k2/_ilnx21/bin/k2index -ualias
ColdFusionK2_indexserver1


Any ideas?

David Livingston wrote:
 /etc/init.d/cfmx7search stop

 I don't ever see it spawn a bunch of processes but the actual  
 coldfusion app does.

 Dave

 On Jan 30, 2006, at 5:26 PM, [EMAIL PROTECTED] wrote:



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230836
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFUNITED-06 Early bird ends today Tuesday 1/31/06

2006-01-31 Thread Michael Smith
The Early bird price on the CFUNITED ColdFusion conference ends today 
Tuesday 1/31/06 at midnight EST.
The 8th annual CFUNITED is the largest ColdFusion web developer 
conference worldwide
and is held near Washington DC June 28-July 1st 2006. Don't miss out!

Price expires4-day   3-day   Saturday-only
Early Bird   01/31/2006  $649$549$249
Timely Bird  03/31/2006  $749$649$299
Regular  06/16/2006  $849$749$349
Late 06/28/2006  $949$849$399
Door 06/29/2006  $1049   $949$449

Discounts for CFUNITED alumii, CFUG mangers, CFUG members, government, 
unemployed and students - email liz (at) teratech.com for your discount 
code.

Save up to $400 by registering now!
  http://www.cfunited.com/
If you can't stay 4 days Wed - Sat? Then optional 3-day and Saturday 
only packages are
available too. Saturday will consist of repeats the most popular sessions
from the week - something many attendees asked for last year.

Here is what an attendees from last year said:

I attended CFUNITED along with a number of my colleagues from the
university. Some were experienced developers, some were novices, some
were IT managers or server admins. The consistent thread of all our
post-conference conversations regarding CFUNITED was the number of ideas
we came away with. Whether it was a new solution to an old problem or
just having the possibilities of ColdFusion opened up before us, we all
felt it was well worth the trip. Of course our blood sugar levels after
eating that CF birthday cake might have contributed some to that feeling
as well.

- Bob Flynn, Indiana University MMUG

* Speakers include top names like Simon Horwith, Charlie Arehart,
Hal Helms, Michael Dinowitz, Ray Camden and many more respected
CF authors and presenters.

* Sponsors include Adobe, Microsoft, New Atlanta, TeraTech Programming 
and Hostmysite.

* Great tracks:
 * Bootcamp - Basic ColdFusion and Flash topics
 * Advanced - Advanced ColdFusion topics
 * Manager/Empowered - Fusebox and Project management topics
 * Flex/RIA - Flash, Flex and other technologies integrated with CF topics
 * Accessibility / usability - section 508, CSS and disabled access
 * Deployment/Platform - tuning, install issues, OS, picking a database

* Included in your full conference registration is the following:

   * Attendance for 4 days (6/28/2006-7/1/2006)
   * Keynote and General Sessions
   * All conference sessions including repeat sessions on Saturday
   * Entrance to Expo Area
   * Networking Events
   * Badge and Badge holder with bar scan code
   * Free Lunch for each show day (Dinner is not included)
   * Access to all presentations after the event, including all the 
recordings.
   * CFUNITED bag with materials including show guide, CD, coupons, etc.
   * Opportunity to participate in all raffle drawings

-- 
Due to TeraTech's growth we are seeking winning sales people 
to sell custom software. For more details:
http://www.teratech.com/index.cfm?go=About.JobDetailJobID=3

Michael Smith, TeraTech, Inc
405 E Gude Dr Ste 207, Rockville MD 20850
Voice: +1-301-424-3903 x110 Fax:301-762-8185
Web: http://www.teratech.com/sig/
Email:  mailto:[EMAIL PROTECTED] ICQ: 66057682
Winner in CFDJ awards Best Consulting. Member Team Fusebox.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230837
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SOT: Credit Card Merchant questions.

2006-01-31 Thread J W
Whats everyones favorite preferred Gateway, like Payflow pro or
authorize.net? What the most Cold Fusion Friendly?  Does anyone have any
good merchant account reccomendations as well?

Thanks.
Jeff


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230838
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Credit Card Merchant questions.

2006-01-31 Thread Adkins, Randy
I used Linkpoint / CardServices in the past. Easy to setup and use.
Sorry never tried PayFlow or authorize.net but hear a lot of people
mention them.
 

-Original Message-
From: J W [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 11:17 AM
To: CF-Talk
Subject: SOT: Credit Card Merchant questions.

Whats everyones favorite preferred Gateway, like Payflow pro or
authorize.net? What the most Cold Fusion Friendly?  Does anyone have any
good merchant account reccomendations as well?

Thanks.
Jeff




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230839
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Credit Card Merchant questions.

2006-01-31 Thread Ray Champagne
Authorize.NET is my fav.  Very CF friendly, too.  There's a custom tag 
out there that integrates easily into any cf app.

Adkins, Randy wrote:
 I used Linkpoint / CardServices in the past. Easy to setup and use.
 Sorry never tried PayFlow or authorize.net but hear a lot of people
 mention them.
  
 
 -Original Message-
 From: J W [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 31, 2006 11:17 AM
 To: CF-Talk
 Subject: SOT: Credit Card Merchant questions.
 
 Whats everyones favorite preferred Gateway, like Payflow pro or
 authorize.net? What the most Cold Fusion Friendly?  Does anyone have any
 good merchant account reccomendations as well?
 
 Thanks.
 Jeff
 
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230840
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Jave Image Manipulation Quality

2006-01-31 Thread Rick Root
I know there are some of you out there who have been unhappy with the 
quality of images produced by the available java manipulation libraries, 
although the Alagad image component seems to do a fine job.

I've been toying with various methods and pouring over java 
documentation the last 24 hours trying to get better image quality, and 
I think I've made some good progress.

If you have a discerning eye and you're one of the people unhappy with 
java's output quality for thumbnails and such, please take a look here:

http://www.webworksllc.com/imagecfc/

I think the third thumbnail looks pretty good if you load it into 
photoshop and blow it up 5x,

I took a screen shot of the three thumbnails at 500% and you can see the 
difference here:

http://www.webworksllc.com/imagecfc/comparison.jpg

rick



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230841
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Credit Card Merchant questions.

2006-01-31 Thread Andy Matthews
I've worked several times with Authorize.net and it's pretty simple. I've
got some code if you need it.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: J W [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 10:17 AM
To: CF-Talk
Subject: SOT: Credit Card Merchant questions.


Whats everyones favorite preferred Gateway, like Payflow pro or
authorize.net? What the most Cold Fusion Friendly?  Does anyone have any
good merchant account reccomendations as well?

Thanks.
Jeff




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230842
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Credit Card Merchant questions.

2006-01-31 Thread Dawson, Michael
We really like Verisign's PFP.  We just switched banks and the PFP was
very easy to change.  We are currently running this using ASP, but will
soon change to CF as soon as I get a chance to work on it.

We are our own merchant account.  We formerly used Vital for the
processor.  Now, because of our bank change, we switched to Nova.  No
problems yet.

M!ke 

-Original Message-
From: J W [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 10:17 AM
To: CF-Talk
Subject: SOT: Credit Card Merchant questions.

Whats everyones favorite preferred Gateway, like Payflow pro or
authorize.net? What the most Cold Fusion Friendly?  Does anyone have any
good merchant account reccomendations as well?

Thanks.
Jeff

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230843
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Credit Card Merchant questions.

2006-01-31 Thread Paul
I have used authorize.net and linkpoint.  I can't stand linkpoint
(reliability issues) and I love authorize.net.  It's so simple you don't
even need to use that custom tag.

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 9:23 AM
To: CF-Talk
Subject: Re: Credit Card Merchant questions.

Authorize.NET is my fav.  Very CF friendly, too.  There's a custom tag 
out there that integrates easily into any cf app.

Adkins, Randy wrote:
 I used Linkpoint / CardServices in the past. Easy to setup and use.
 Sorry never tried PayFlow or authorize.net but hear a lot of people
 mention them.
  
 
 -Original Message-
 From: J W [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 31, 2006 11:17 AM
 To: CF-Talk
 Subject: SOT: Credit Card Merchant questions.
 
 Whats everyones favorite preferred Gateway, like Payflow pro or
 authorize.net? What the most Cold Fusion Friendly?  Does anyone have any
 good merchant account reccomendations as well?
 
 Thanks.
 Jeff
 
 
 
 
 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230845
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Password Strength Graphic

2006-01-31 Thread Barney Boisvert
Should be easy to do.  You check the password for various criteria,
and then do a JS rollover to change the image out.  Some basic
criteria are the number of character classes (uppercase, lowercase,
numbers, punctuation) the password uses, the length of the password,
whether it has dictionary words in it (apple), whether it's based on
dictionary words (4pp13).  You can probably figure out what
Hotmail's algorithm is by some simple trial and error, or maybe even
looking at the source.

cheers,
barneyb

On 1/31/06, Eric J. Hoffman [EMAIL PROTECTED] wrote:
 I was just signing up for a Hotmail account (yikes) because someone
 mentioned the password strength graphic on it and I wanted to see it.

 It is a graphical representation of how strong of a password you are
 creating.  Low Medium Strong

 Has anyone created something like this before?  Any pointers on where to
 start?

 Thanks.
 


 Eric J. Hoffman

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230846
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Credit Card Merchant questions.

2006-01-31 Thread Ray Champagne
So - are you using their form implementation?  (I forget what they 
call it).

I'm actually using both, and IMO, the custom tag is easier.  But, to 
each their own, and I guess it depends on how customizable you'd like 
the response to be.  To each their own, I guess.  Point is that they are 
easy to use - but if you ever need Customer Service's help, look out!  :)

Paul wrote:
 I have used authorize.net and linkpoint.  I can't stand linkpoint
 (reliability issues) and I love authorize.net.  It's so simple you don't
 even need to use that custom tag.
 
 -Original Message-
 From: Ray Champagne [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 31, 2006 9:23 AM
 To: CF-Talk
 Subject: Re: Credit Card Merchant questions.
 
 Authorize.NET is my fav.  Very CF friendly, too.  There's a custom tag 
 out there that integrates easily into any cf app.
 
 Adkins, Randy wrote:
 I used Linkpoint / CardServices in the past. Easy to setup and use.
 Sorry never tried PayFlow or authorize.net but hear a lot of people
 mention them.
  

 -Original Message-
 From: J W [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 31, 2006 11:17 AM
 To: CF-Talk
 Subject: SOT: Credit Card Merchant questions.

 Whats everyones favorite preferred Gateway, like Payflow pro or
 authorize.net? What the most Cold Fusion Friendly?  Does anyone have any
 good merchant account reccomendations as well?

 Thanks.
 Jeff





 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230847
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
The main advantage of the nested set model is that you don't have to
use recursion or loops to get data out.  Consequently it's very fast
to recall stuff.  Reorganizing the tree is more expensive than other
storage mechanisms, but pulling stuff out is hella fast.  By and
large, you can get any piece of data out with a single query (possibly
using a subquery as well).

cheers,
barneyb

On 1/30/06, Brad Wood [EMAIL PROTECTED] wrote:
 1. Recursion
 or
 2. A while loop over a table variable

 ~Brad



--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230848
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Coldfusion and Active Directory

2006-01-31 Thread Dawson, Michael
First, we need to know which fields are optional or required.  I don't
see anything wrong with this LDAP filter.

It says:
MUST BE
objectClass = user
AND
sAMAccountName = form.sAMAccountName
AND
cn = form.cn
AND
title = form.title
AND
email = form.email

For this filter to work, you must specify a valid value for each of
these attributes of or you will not get any results.

Are you sure you want to filter on the title?  What if someone doesn't
type the title correctly?  You may need to use a wildcard in your filter
and let them search for a partial match.

If you have optional fields, then you would need to dynamically build
your LDAP filter string and leave those fields out.

M!ke 

-Original Message-
From: Ian Vaughan [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 9:48 AM
To: CF-Talk
Subject: RE: Coldfusion and Active Directory

I have a form to search the Active Diretory shown below, searching the
account name, name, title, e-mail and telephone number attributes for an
Intranet Phone Directory
 
How can I modify the filter query of the CFLDAP statement to cater for
this ?
 
filter=((objectClass=user)(sAMAccountName=#Form.sAMAccountName#)(cn=#F
orm.cn#)(title=#Form.title#)(email=#Form.email#))
 
I have tried using | instead of  but that just brings back all results
??
 
 
cfform method=POST action=cfldap1.cfm name=form 
 
cfinput type=text name=sAMAccountName size=22 br cfinput
type=text name=cn size=22 br cfinput type=text name=title
size=22 br cfinput type=text name=email size=22 br input
type=image src=search.gif border=0 style=cursor:hand
width=49 height=18
/cfform

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230849
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Bluedragon 6.1

2006-01-31 Thread Andy Jarrett
Hi,

Does anybody have a copy of BD 6.1 (the free edition) which they could
let me download please?

Cheers

Andy J
--
www.andyjarrett.co.uk

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230850
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Storing Multiselect values in database

2006-01-31 Thread Tim Claremont
I have a multiselect list box on a flash form, which relays the IDNo to the 
submission form. My problem is that the results that get stored in my table 
look like this 2001   ,2004, with the extra spaces. I can't seem to use 
the Trim function to get rid of them. Any ideas?

cfselect name=Other_Participants
  size=6
  width=200
  label=Other Part.
  query=ParticipantList
  value=IDNo
  display=FullName
  selected=ClientNum
  visible=Yes
  enabled=Yes
  multiple=Yes
option value= selected.../option
/cfselect

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230851
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Bluedragon 6.1

2006-01-31 Thread Rick Root
Andy Jarrett wrote:
 Hi,
 
 Does anybody have a copy of BD 6.1 (the free edition) which they could
 let me download please?

Technically speaking, that would be illegal because you cannot 
redistribute the free edition.

That being said, why would you want 6.1?  Many bugs.

Rick


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230852
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Password Strength Graphic

2006-01-31 Thread Eric J. Hoffman
I was just signing up for a Hotmail account (yikes) because someone
mentioned the password strength graphic on it and I wanted to see it.

It is a graphical representation of how strong of a password you are
creating.  Low Medium Strong
 
Has anyone created something like this before?  Any pointers on where to
start?
 
Thanks.



Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: www.ejhassociates.com
tel: 651.207.1526
fax: 651.207.1536
mob: 651.245.2717



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230844
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Jave Image Manipulation Quality

2006-01-31 Thread Andy Matthews
Rick...

I took a close look at the provided images and they get better in quality as
you scroll downwards, with the third one being the best quality. Places to
look include any area containing a sharp color transition. The area around
each of the turrets is a perfect example. This is generally where you're
going to get artifacts and imperfect pixelation.

In the largest image using explicit JPG compression the artifacting around
the turrets is almost invisible to the naked eye.

The truth though lies in the image size. Here's the file size for each of
them:

Original: 547,549

LARGE
Nearest: 107,395
Bicubic: 107,395
Explicit: 716,705

SMALL
Nearest: 5,580
Bicubic: 5,566
Explicit: 28,309

So while the final image looks better, it's because less image data is being
thrown away. The best test would be to get the quality of image generated by
the explicit code as close as possible to the other two then check for file
size.


!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 10:29 AM
To: CF-Talk
Subject: Jave Image Manipulation Quality


I know there are some of you out there who have been unhappy with the
quality of images produced by the available java manipulation libraries,
although the Alagad image component seems to do a fine job.

I've been toying with various methods and pouring over java
documentation the last 24 hours trying to get better image quality, and
I think I've made some good progress.

If you have a discerning eye and you're one of the people unhappy with
java's output quality for thumbnails and such, please take a look here:

http://www.webworksllc.com/imagecfc/

I think the third thumbnail looks pretty good if you load it into
photoshop and blow it up 5x,

I took a screen shot of the three thumbnails at 500% and you can see the
difference here:

http://www.webworksllc.com/imagecfc/comparison.jpg

rick





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230854
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Storing Multiselect values in database

2006-01-31 Thread Munson, Jacob
You could use a regular expression:
ReReplace(Other_Participants,\s,,all)

 From: Tim Claremont
 
 I have a multiselect list box on a flash form, which relays 
 the IDNo to the submission form. My problem is that the 
 results that get stored in my table look like this 2001   
 ,2004, with the extra spaces. I can't seem to use the 
 Trim function to get rid of them. Any ideas?
 
 cfselect name=Other_Participants
   size=6
   width=200
   label=Other Part.
   query=ParticipantList
   value=IDNo
   display=FullName
   selected=ClientNum
   visible=Yes
   enabled=Yes
   multiple=Yes
 option value= selected.../option
 /cfselect

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230855
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFC weirdness - cannot find the file specified

2006-01-31 Thread Qasim Rasheed
Have you tried using webservice attributes like this

cfinvoke webservice=cfctest.testServices.test.cfc?wsdl method=getStatus
returnvariable=foo
/cfinvoke

HTH

On 1/31/06, Kay Smoljak [EMAIL PROTECTED] wrote:

 Thanks James - we're having some issues here, between our heads (which
 seemingly aren't working at all) and our server which is working
 intermittently. As well as calling the CFC with the wrong path like
 you pointed out, sometimes the server throws an error when there's
 ?wsdl on the invoke call and sometimes it doesn't.

 Time to go home for the day I think!

 On 1/31/06, James Holmes [EMAIL PROTECTED] wrote:
  Have you tried with test instead of testServices (since that's the
  name of the cfc)?
 
  On 1/30/06, Kay Smoljak [EMAIL PROTECTED] wrote:
   I have a cfc in the following setup:
  
   http://www.example.com/cfctest/test.cfc
   http://www.example.com/cfctest/index.cfm
  
   The cfc looks like this:
  
   cfcomponent displayname=testServices
   cffunction access=remote name=getStatus
 returntype=string
   output=false
   cfset returnStatus = available
   cfreturn returnStatus/
   /cffunction
   /cfcomponent
  
   Invocation in index.cfm looks like this:
  
   cfinvoke component=cfctest.testServices?wsdl method=getStatus
   returnvariable=foo
   /cfinvoke
   cfdump var=#foo#
  
   
  
   The above setup worked fine last night and hasn't been changed. Now
   this morning
   I get the following error when invoking with 'cfctest.testServices
 ?wsdl':
  
   'The system cannot find the file specified'
  
   If I change the invocation to 'cfctest.testServices' I get :
  
   'Could not find the ColdFusion Component cfctest.testServices'
  
   The weird thing about all this is that when I go directly to:
  
   http://www.somedomain.com/cfctest/test.cfc?wsdl
  
   I get the WSDL printout fine.
  
   Anyone have any ideas what might have made it stop working over night?
   As far as I know the server hasn't been updated, rebooted or anything.
   Any server settings to check in particular?
   Any caching issues that I might have overlooked?
 
  --
  CFAJAX docs and other useful articles:
  http://jr-holmes.coldfusionjournal.com/
 
 

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230856
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


M$ index server CF

2006-01-31 Thread Beru
Hello,

I am trying to find a CF script that can query a given catalog on our index
server (you know, that thing that is supposed to make your searches faster).
There are of course lots of scripts in asp, but did not find any in CF...

Do you know where I can find such a script? Even a beginning of idea of how
to proceed will help...

Thanks,
Albert


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230857
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Nested Set Model

2006-01-31 Thread Brad Wood
What you say is true.  Initially I thought he was using an adjacent list
model when I saw his cat_parent_id column. 

Where I work we all but phased out all of our implementations of the
nested set model (left right node) in favor of the adjacent list model
(predecessor_id).  We were using them to store relationships which
changed frequently.  When we have a table with over a million records,
we couldn't afford to update half a million records just to insert a
single node near the top of our tree.  It would bring our production
environment to a grinding halt.  :)

~Brad



-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 10:42 AM
To: CF-Talk
Subject: Re: Nested Set Model

The main advantage of the nested set model is that you don't have to
use recursion or loops to get data out.  Consequently it's very fast
to recall stuff.  Reorganizing the tree is more expensive than other
storage mechanisms, but pulling stuff out is hella fast.  By and
large, you can get any piece of data out with a single query (possibly
using a subquery as well).

cheers,
barneyb

On 1/30/06, Brad Wood [EMAIL PROTECTED] wrote:
 1. Recursion
 or
 2. A while loop over a table variable

 ~Brad




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230858
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
Oh, I totally understand that one.  It's definitely a cumbersome
problem to solve, because the execution profiles are so different.  If
data isn't changing too frequently, aggressive caching can pretty much
negate the cost of the adjacency list, but again, that's not
applicable in all situations either.

cheers,
barneyb

On 1/31/06, Brad Wood [EMAIL PROTECTED] wrote:
 What you say is true.  Initially I thought he was using an adjacent list
 model when I saw his cat_parent_id column.

 Where I work we all but phased out all of our implementations of the
 nested set model (left right node) in favor of the adjacent list model
 (predecessor_id).  We were using them to store relationships which
 changed frequently.  When we have a table with over a million records,
 we couldn't afford to update half a million records just to insert a
 single node near the top of our tree.  It would bring our production
 environment to a grinding halt.  :)

 ~Brad


--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230859
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Calling DB2/400 stored procedures with CF

2006-01-31 Thread Smith, Daron [PA]
Anyone have any experience calling stored procedures with CF?  I can get
the procedure to run, but I'm running into snags passing parameters.

Thanks,
Daron Smith
PSEA


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230860
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX_IMAP4 Problem

2006-01-31 Thread Paul Vernon
Hi Jenny 

 I have sent you two or three emails over the last few days 
 and not heard back.
 
 Have you not received them?

Not one... :( I'll check the logs on the SMTP server... In the meantime, use
paul.vernon@ the g mail . com domain :)

Paul



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230861
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX_IMAP4 Problem

2006-01-31 Thread Paul Vernon
 If you can filter it to pull only unread messages, it will 
 certainly help.  However, we found that Exchange is very slow 
 using IMAP.  I confirmed this using Outlook Express with an 
 IMAP connection.  The clients want to pull the data quickly, 
 the server is just too sluggish.

That is always a problem when people confuse IMAP with MAPI which Outlook
uses to integrate with Exchange... MAPI is so much faster than IMAP in an
Exchange environment... 

Paul



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230862
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Nested Set Model

2006-01-31 Thread Brad Wood
If data isn't changing too frequently, aggressive caching can pretty
much
negate the cost of the adjacency list, but again, that's not
applicable in all situations either.

Yeah, we used to have a lot of static data which accounted for a lot of
our database hits every page load (like security).  We started caching
the whole query in the application scope and pulling out what we needed
with a q of q.  That took about as long to retrieve the data, but the
database was freed up a whole lot in the process. 

~Brad


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230863
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Jave Image Manipulation Quality

2006-01-31 Thread Rick Root
Andy Matthews wrote:
 Rick...
 
 SMALL
 Nearest: 5,580
 Bicubic: 5,566
 Explicit: 28,309
 
 So while the final image looks better, it's because less image data is being
 thrown away. The best test would be to get the quality of image generated by
 the explicit code as close as possible to the other two then check for file
 size.

Yeah I noticed that too.  The optimum compression for the small images 
seems to be somewhere between 0.8 and 1.0 ... 0.8 creates a file about 
5.5k ..  0.9 creates a file about 9k, and 1.0 creates the 28k file.

The 9k image was definately better than the 5k image but still not as 
good as the 28k image.. obviously...

So I'll keep playing with it and probably the image cfc will end up 
having some kind of compression options.

Curiously, when I change the compression and re-run the script, the file 
size doesn't change unless I actually delete the file first.  It's like 
java is writing new data to the existing file but leaving the the file 
the same size, even if it doesn't require as much space.

rick


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230864
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password Strength Graphic

2006-01-31 Thread Baz
Here is a UDF on cflib.org that checks complexity:
http://cflib.org/udf.cfm?ID=1072

Cheers,
Baz


-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 11:39 AM
To: CF-Talk
Subject: Re: Password Strength Graphic

Should be easy to do.  You check the password for various criteria,
and then do a JS rollover to change the image out.  Some basic
criteria are the number of character classes (uppercase, lowercase,
numbers, punctuation) the password uses, the length of the password,
whether it has dictionary words in it (apple), whether it's based on
dictionary words (4pp13).  You can probably figure out what
Hotmail's algorithm is by some simple trial and error, or maybe even
looking at the source.

cheers,
barneyb

On 1/31/06, Eric J. Hoffman [EMAIL PROTECTED] wrote:
 I was just signing up for a Hotmail account (yikes) because someone
 mentioned the password strength graphic on it and I wanted to see it.

 It is a graphical representation of how strong of a password you are
 creating.  Low Medium Strong

 Has anyone created something like this before?  Any pointers on where to
 start?

 Thanks.
 


 Eric J. Hoffman

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230853
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Jave Image Manipulation Quality

2006-01-31 Thread Jordan Michaels
Rick Root wrote:

Andy Matthews wrote:
  

Rick...

SMALL
Nearest: 5,580
Bicubic: 5,566
Explicit: 28,309

So while the final image looks better, it's because less image data is being
thrown away. The best test would be to get the quality of image generated by
the explicit code as close as possible to the other two then check for file
size.



Yeah I noticed that too.  The optimum compression for the small images 
seems to be somewhere between 0.8 and 1.0 ... 0.8 creates a file about 
5.5k ..  0.9 creates a file about 9k, and 1.0 creates the 28k file.

The 9k image was definately better than the 5k image but still not as 
good as the 28k image.. obviously...

So I'll keep playing with it and probably the image cfc will end up 
having some kind of compression options.

Curiously, when I change the compression and re-run the script, the file 
size doesn't change unless I actually delete the file first.  It's like 
java is writing new data to the existing file but leaving the the file 
the same size, even if it doesn't require as much space.

rick

  

I would be extremely interested to see how this stacks up against the GD
libraries that PHP and Perl use. So far, we've been forced to use a
combination of CFEXECUTE and command-line PHP in order to generate
thumbnails that are acceptable for high-end e-commerce sites. If you
came up with a BSD-licensed custom tag that you could pass on
compression parameters to, many many development companies would be very
much in your debt.

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

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230865
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFX_IMAP4 Problem

2006-01-31 Thread Jennifer Gavin-Wear
Have just this sec sent you an email, Paul :-)

Jenny



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230866
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: M$ index server CF

2006-01-31 Thread Paul Hastings
Beru wrote:
 Do you know where I can find such a script? Even a beginning of idea of how
 to proceed will help...

nate wiess  i (mostly nate) put one in the cf6 version of ben's 
advanced cf book. i'll see if the code is laying about.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230867
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Custom Authentication

2006-01-31 Thread Robert Everland III
I am trying to follow this process, but in CF 
http://www.zdnetasia.com/techguide/webdev/0,39044903,39298254,00.htm has anyone 
done anything like this before?




Bob

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230868
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFEclipse Vs Dreamweaver

2006-01-31 Thread PINE Phyo Z
Thanks Steven. That is really helpful. I am going to try CSS Editor,
Javascript Editor and probably colorer. 

Regards,
Pine

-Original Message-
From: Steven Brownlee [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 27, 2006 9:39 PM
To: CF-Talk
Subject: RE: CFEclipse Vs Dreamweaver


Sure, here's my list of essentials.  Takes about 15 minutes to install
these.

- CFeclipse (http://www.cfeclipse.org/)
- Subclipse  (http://subclipse.tigris.org/)
- QuickREx
(http://www.bastian-bergerhoff.com/eclipse/features/web/QuickREx/toc.htm
l)
- DBEdit* (http://sourceforge.net/projects/dbedit) 
- CSS Editor  (http://csseditor.sourceforge.net/)
- Javascript editor
(http://www.interaktonline.com/Products/Eclipse/JSEclipse/Overview/)

Other I have installed but aren't essential for CF development.

- PHP Editor  (http://www.phpeclipse.de/tiki-view_articles.php)
- Flex 2 plugin
(http://labs.macromedia.com/technologies/flexframework2/)
- Colorer  (http://colorer.sourceforge.net/eclipsecolorer/index.html)

*Note about DBEdit plugin.  The auto-install site installs the tool
buggy. Best to download the zip and install it manually (just unzip
directly to eclipse directory).

I'm familiar with all the new features in DW8.  I really do like the CSS
editor... a lot.  However, the one in Eclipse suits my needs so I never
think to open up DW for it.

-Original Message-
From: Greg Hamer [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 28, 2006 12:15 AM
To: CF-Talk
Subject: Re: CFEclipse Vs Dreamweaver

Steve,

I have Eclipse 3.1 with CFEclipse 1.2.0.  Obviously Eclipse gives me the
Java code editor, and CFEclipse the CF code editor.  Am I correct that
for me to have a config that matches yours, I have to install a few more
plugins?  e.g for DB tool, stylesheet editor, Subversion view and
regular expression builder?  Would you be so kind as to share with me
which plugins you are using?

I currently am not in a team environment.  Your sharing how you have
rolled up your configuration would be greatly appreciated :)

I anticipate I will be spending alot of time in Flex 2 starting next
month, so there is some Eclipse in my future one way or another.

Thank you for sharing how you are using Eclipse.

btw ... Lynda.com has a great 17 part (1 hour), online video training
title on Dreamweaver 8 New Features with Garrick Chow.  The first 2 on
CSS are free.  Link here:
http://movielibrary.lynda.com/html/modPage.asp?ID=173

  Best regards,

  g






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230869
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: OT: Need Site Reviewers Please

2006-01-31 Thread PINE Phyo Z
I went through it too. But just looking at them from end user's
perspective.

-Original Message-
From: Dana [mailto:[EMAIL PROTECTED] 
Sent: Friday, January 27, 2006 10:00 PM
To: CF-Talk
Subject: Re: OT: Need Site Reviewers Please


I went through the sites. Mainly looking at the layout/color perspective

On 1/27/06, C. Hatton Humphrey [EMAIL PROTECTED] wrote:
 I'm teaching Web Scripting  Authoring and have about 10 sites that
 need reviewing folks that are in the web industry.   Last time I sent
 out a word doc via email and sincerely appreciate the time everyone 
 took to review the sites.

 This time I have an easier method that will take less time for anyone 
 willing to fill out a small survey on the sites that have been 
 submitted.  I have built a small application that wraps the student 
 site, survey and assignment description in one page.  In addition the 
 application remmebers the last site you filled out a survey on and 
 takes you to the next site, so if you don't have time to go through 
 all the sites you can come back later.

 If you're interested in participating simply go to 
 http://chumphrey.guardian-web.com/index.cfm and sign in using your 
 email address and putting in your name (if you feel like it).  All 
 surveys are reported to the students confidentially and names are 
 optional.  Please drop me an email and let me know so I can have an 
 idea of a participation count.

 The current asignment is to build a static business website.  These 
 students are multimedia students so they've been spending a lot of 
 time working with flash, director, 3D Studio max but not much with 
 HTML.  The sites being presented with this assignment have been built 
 using Notepad to hammer in HTML tag concepts.  They were told that an 
 element of wow would be incorperated into the surveys.  I know that 
 there are a few that are text only... and their surveys need to 
 reflect the fact that they did not take any graphics into account.

 I'll be closing out this assignment's surveys on Thursday, February 2 
 by 1 or 2 pm.  There are more assignments coming soon!

 Thanks for your time!
 Hatton

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230870
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Server Problems

2006-01-31 Thread Jim Curran
 Anyone in the NYC area that can come onsite and diagnose CF server hangs?
 My machine gets hung once every couple of days and I am in way over my
 head as to troubleshoot the problem.
 
 - j
 
 James Curran
 Nylon Technology
 350 Seventh Avenue
 10th Floor
 New York, NY 10001
 212.691.1134 x11 
 212.691.3477 fax
 [EMAIL PROTECTED]
 www.nylontechnology.com
 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230871
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Custom Authentication

2006-01-31 Thread Jochem van Dieten
Robert Everland III wrote:
 I am trying to follow this process, but in CF 
 http://www.zdnetasia.com/techguide/webdev/0,39044903,39298254,00.htm has 
 anyone done anything like this before?

http://vandieten.net/jochem/coldfusion/customtags/login/login.cfm
For more info see RFC 2617.

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230872
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Migrating from CF5.0

2006-01-31 Thread Scott Stewart
All, 

 

Were getting ready to migrate our client's production boxes from CF5.0 to
CF6.1 (I know, I know, 7.0 will come in the summer, baby steps) I want to
save as much time as possible in the migration, is there a way to either
migrate or export the settings from CF5 to CF6.1

 

Thanks

 

sas

 

Scott A. Stewart

Webmaster/Developer

 



11820 Parklawn Dr

Rockville, MD 20852

(301) 770-9610

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230873
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: M$ index server CF

2006-01-31 Thread Jerry Johnson
A year or two ago we got this working (never used it in production) by
using SQL Server to query the index server, and using CF to query the
SQL Server.

I seem to remember something about hooking the index server up as a
view in SQL Server.

Not much help, but maybe a google path...

On 1/31/06, Beru [EMAIL PROTECTED] wrote:
 Hello,

 I am trying to find a CF script that can query a given catalog on our index
 server (you know, that thing that is supposed to make your searches faster).
 There are of course lots of scripts in asp, but did not find any in CF...

 Do you know where I can find such a script? Even a beginning of idea of how
 to proceed will help...

 Thanks,
 Albert


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230874
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Custom Authentication

2006-01-31 Thread Robert Everland III
That's awesome. I saw right away what my issue is. I totally missed the 
statuscode option in cfheader. Thank you.



Bob

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230875
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Dave Ross
we hit similar issues with nested sets... the costs of inserts, moves and 
deletes became too great. We use a pushdown-stack (which mimics recursion) 
stored proc in MSSQL and it's pretty snappy depending on the number of nodes 
selected (actually more important is how deep the nodes are). In general I'm a 
fan of adjacency list over nested sets. I think the nested set model can 
quickly get out wack as systems grow. The *wow* factor of pulling any branch 
with a simple query quickly wears off. Either way, it's important to look at 
the hierarchical problem you are trying to solve rather than blindly choosing 
one approach over the other.

-Dave Ross


If data isn't changing too frequently, aggressive caching can pretty
much
negate the cost of the adjacency list, but again, that's not
applicable in all situations either.

Yeah, we used to have a lot of static data which accounted for a lot of
our database hits every page load (like security).  We started caching
the whole query in the application scope and pulling out what we needed
with a q of q.  That took about as long to retrieve the data, but the
database was freed up a whole lot in the process. 

~Brad

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230876
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
One important consideration, particularly with sensitive data, is that
a nested set tree lacks the ability to generate orphans.  With
adjacency lists, the best case scenario is you suddenly have a record
that's not in the tree, but worst case is a cascade delete.  That can
be very bad, if you have a bug in your app that fails to prevent this.
 With a nested set, losing an ancestor doesn't remove you from the
family, it just removes one of the intervening layers.

There's a more than just ease of access vs. performance to consider in
the equation.  Nested sets also require twice the extra space (two
keys per record, rather than one).

cheers,
barneyb

On 1/31/06, Dave Ross [EMAIL PROTECTED] wrote:
 we hit similar issues with nested sets... the costs of inserts, moves and 
 deletes became too great. We use a pushdown-stack (which mimics recursion) 
 stored proc in MSSQL and it's pretty snappy depending on the number of nodes 
 selected (actually more important is how deep the nodes are). In general I'm 
 a fan of adjacency list over nested sets. I think the nested set model can 
 quickly get out wack as systems grow. The *wow* factor of pulling any branch 
 with a simple query quickly wears off. Either way, it's important to look at 
 the hierarchical problem you are trying to solve rather than blindly choosing 
 one approach over the other.


--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230877
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Migrating from CF5.0

2006-01-31 Thread Claude Schneegans
 I know, I know, 7.0 will come in the summer

?... It even came a couple of summers ago ;-/

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


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230878
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


PGP with CF

2006-01-31 Thread Russ
We have a need to integrate with another vendor who doesn't have a web
service.  They said that what they usually do is have the other business
store the information in a csv file which is encrypted with PGP.  

 

What options are out there for PGP encryption with CF?  I did a search and
found some information about CFX_PGP,  which is a few hundred $, and also
Dave Watts mentioning something about having to pay for the license to use
PGP on the server.  

 

There is a free version of PGP called GnuPG, which is based on the openPGP
standard.  Theoretically, it should be compatible with PGP.  Are there any
CF tags or CFCs that exist to work with this?  It should be possible to just
do it with CFEXECUTE, if a tag is not available, correct?

 

Are there any other secure options besides PGP?  One option would be to use
a zip file with a password, but as with any password scheme, this is a
problem if somebody can get access to the server (they can grab the password
from your code and decrypt the files).  

 

Russ  



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230879
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Migrating from CF5.0

2006-01-31 Thread Scott Stewart
Unfortunately our client is a large government agency, getting them to move
from 5 to 6 was like pulling teeth, they weren't about to make the skip from
5 to 7.

sas

Scott A. Stewart
ColdFusion Developer
 
GNSI
11820 Parklawn Dr
Rockville, MD 20852
(301) 770-9610  

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 2:49 PM
To: CF-Talk
Subject: Re: Migrating from CF5.0

 I know, I know, 7.0 will come in the summer

?... It even came a couple of summers ago ;-/

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




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230880
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Session.SESSIONID

2006-01-31 Thread Steve Logan
I was (maybe incorrectly) under the impression that if session management is 
enabled in cfapplication, then session.sessionid should be available for all 
users?

What's happen is that it's being set inconsistently - sometimes it gets set, 
sometimes not - and I can't seem to figured out why.

My application tag is:

cfapplication name=testMFY 
clientmanagement=Yes 
clientstorage=ClientStore
sessionmanagement=Yes
setclientcookies=Yes 
sessiontimeout=#CreateTimeSpan(0,0,30,0)#
applicationtimeout=#CreateTimeSpan(0,1,0,0)#


I've currently got a Firefox browser open, and an IE open - after a fresh 
restart, and I'm dumping the session scope and IE shows the session.sessionID 
and firefox doesn't:

IE:
SESSIONID TESTMFY_27_75871719  
URLTOKEN CFID=27CFTOKEN=75871719 

Firefox doesn't show that either of those session vars exist.

It seems to maybe be related to my 'logout page' which clears the session 
stucture and then redirects users back to the home page:

CFAPPLICATION NAME=testMFY
SESSIONMANAGEMENT=YES
SESSIONTIMEOUT=#CreateTimeSpan(0,0,0,0)#

CFLOCK TIMEOUT=10 scope=session
  CFSET structClear(session)
/CFLOCK
CFLOCATION URL=../index.cfm

Why is it not getting reset when they go back to index.cfm and thus hit the 
main application.cfm page?

This is CF5 on W2K.

Thanks.
Steve

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230881
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: PGP with CF

2006-01-31 Thread Russ
Looks like there are some java implementations as well.  Has anyone
successfully used them with CF?

 -Original Message-
 From: Russ [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 31, 2006 2:48 PM
 To: CF-Talk
 Subject: PGP with CF
 
 We have a need to integrate with another vendor who doesn't have a web
 service.  They said that what they usually do is have the other business
 store the information in a csv file which is encrypted with PGP.
 
 
 
 What options are out there for PGP encryption with CF?  I did a search and
 found some information about CFX_PGP,  which is a few hundred $, and also
 Dave Watts mentioning something about having to pay for the license to use
 PGP on the server.
 
 
 
 There is a free version of PGP called GnuPG, which is based on the openPGP
 standard.  Theoretically, it should be compatible with PGP.  Are there any
 CF tags or CFCs that exist to work with this?  It should be possible to
 just
 do it with CFEXECUTE, if a tag is not available, correct?
 
 
 
 Are there any other secure options besides PGP?  One option would be to
 use
 a zip file with a password, but as with any password scheme, this is a
 problem if somebody can get access to the server (they can grab the
 password
 from your code and decrypt the files).
 
 
 
 Russ
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230882
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX Server Monitoring

2006-01-31 Thread Patrick Quinn
Greetings, John. You could use our SeeFusion product for this type of 
monitoring. Built-in notifications are coming in the next version, but in the 
meantime it would be very simple to monitor our XML or database dumps for 
memory or running request thresholds, and send off an email when needed. More 
info is at http://www.seefusion.com. Let us know if you have any questions at 
all.

Best,
Patrick Quinn
www.seefusion.com

I want to monitor the CPU and Memory usage of CFMX Server when the CPU
(i.e. 30%) and Memory (i.e. 100,000K) usage hits certain threshold so
that I can know who runs heavy duty jobs and which process takes
resources.
I want this info in cfmail.
Any ideas?

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230883
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Jochem van Dieten
Dave Ross wrote:
 we hit similar issues with nested sets... the costs of inserts, moves and 
 deletes became too great.

Why would you need to change any numbers on deleting an element?

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230884
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Nested Set Model

2006-01-31 Thread Andy Matthews
If you deleted an element, any children (and children of children) would
become orphans. So you'd at least have to change the association of the
child of the deleted record.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 2:15 PM
To: CF-Talk
Subject: Re: Nested Set Model


Dave Ross wrote:
 we hit similar issues with nested sets... the costs of inserts, moves and
deletes became too great.

Why would you need to change any numbers on deleting an element?

Jochem


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230885
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Jochem van Dieten
Andy Matthews wrote:
 If you deleted an element, any children (and children of children) would
 become orphans. So you'd at least have to change the association of the
 child of the deleted record.

True for the adjacency list model. But the nested set model does 
not have any problems with gaps.

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230886
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
Not with a nested set, only with an adjacency list.  With a nested
set, if you delete an ancestor, the decendants just move up a level
with no DB modification.

cheers,
barneyb

On 1/31/06, Andy Matthews [EMAIL PROTECTED] wrote:
 If you deleted an element, any children (and children of children) would
 become orphans. So you'd at least have to change the association of the
 child of the deleted record.


--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230887
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Session.SESSIONID

2006-01-31 Thread Nathan Strutz
Yeah, My bet is it's the way you log users out. Instead of all that
junk, try this:

http://www.cflib.org/udf.cfm/SessionClear

Remove the cfapplication tag, assuming it's in your application
already, and the structclear, and just call this sessionClear
function.

Another thing you can do is grab the CFID and CFTOKEN from the cookie
scope (I assume it's probably there), and piece together your
session.sessionID from those, as it appears to just be a combination
of the two.

-nathan strutz
http://www.dopefly.com/


On 1/31/06, Steve Logan [EMAIL PROTECTED] wrote:
 I was (maybe incorrectly) under the impression that if session management is 
 enabled in cfapplication, then session.sessionid should be available for all 
 users?

 What's happen is that it's being set inconsistently - sometimes it gets set, 
 sometimes not - and I can't seem to figured out why.

 My application tag is:

 cfapplication name=testMFY
 clientmanagement=Yes
 clientstorage=ClientStore
 sessionmanagement=Yes
 setclientcookies=Yes
 sessiontimeout=#CreateTimeSpan(0,0,30,0)#
 applicationtimeout=#CreateTimeSpan(0,1,0,0)#
 

 I've currently got a Firefox browser open, and an IE open - after a fresh 
 restart, and I'm dumping the session scope and IE shows the session.sessionID 
 and firefox doesn't:

 IE:
 SESSIONID TESTMFY_27_75871719
 URLTOKEN CFID=27CFTOKEN=75871719

 Firefox doesn't show that either of those session vars exist.

 It seems to maybe be related to my 'logout page' which clears the session 
 stucture and then redirects users back to the home page:

 CFAPPLICATION NAME=testMFY
 SESSIONMANAGEMENT=YES
 SESSIONTIMEOUT=#CreateTimeSpan(0,0,0,0)#

 CFLOCK TIMEOUT=10 scope=session
   CFSET structClear(session)
 /CFLOCK
 CFLOCATION URL=../index.cfm

 Why is it not getting reset when they go back to index.cfm and thus hit the 
 main application.cfm page?

 This is CF5 on W2K.

 Thanks.
 Steve

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230888
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Nested Set Model

2006-01-31 Thread Andy Matthews
It does when you retrieve data based on those dependancies. If you're trying
to connect 2 records and the middle record has been deleted then you're out
of luck unless you've made updates.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 2:35 PM
To: CF-Talk
Subject: Re: Nested Set Model


Andy Matthews wrote:
 If you deleted an element, any children (and children of children) would
 become orphans. So you'd at least have to change the association of the
 child of the deleted record.

True for the adjacency list model. But the nested set model does
not have any problems with gaps.

Jochem


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230889
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Jochem van Dieten
Andy Matthews wrote:
 It does when you retrieve data based on those dependancies. If you're trying
 to connect 2 records and the middle record has been deleted then you're out
 of luck unless you've made updates.

Could you elaborate with an example?

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230890
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


IE 7 beta is available

2006-01-31 Thread Stan Winchester
Let the fun begin!

http://www.microsoft.com/windows/ie/default.mspx 
 
Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
[EMAIL PROTECTED]  
http://www.aftershockweb.com/   
Phone 503-244-3440
Fax 503-244-3454
 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230891
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: IE 7 beta is available

2006-01-31 Thread Aaron Roberson
Oh Yeah Baby

I just fired off an email this morning to a college who has an MSDN
subscription asking him to download the IE 7 beta since up until now
that was required. I also send an email to the IE 7 blog asking them
if I could use my academic MSDN subscription to access the download.

Now I don't have to wait for my friends or for a response form
Microsoft. I am downloading it in the background as I type!

I can't wait until the day that we no longer have to write css hacks for IE!

Thanks,
Aaron

On 1/31/06, Stan Winchester [EMAIL PROTECTED] wrote:
 Let the fun begin!

 http://www.microsoft.com/windows/ie/default.mspx

 Thank you,
 Aftershock Web Design, Inc.
 by: Stan Winchester
 President/Developer
 [EMAIL PROTECTED]
 http://www.aftershockweb.com/
 Phone 503-244-3440
 Fax 503-244-3454





 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230892
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: IE 7 beta is available

2006-01-31 Thread Michael T. Tangorre
 From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
 I can't wait until the day that we no longer have to write 
 css hacks for IE!

don't hold your breathe!



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230893
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: IE 7 beta is available

2006-01-31 Thread Jennifer Gavin-Wear
More intelligent design from ms ;) ?

-Original Message-
From: Stan Winchester [mailto:[EMAIL PROTECTED]
Sent: 31 January 2006 21:34
To: CF-Talk
Subject: IE 7 beta is available


Let the fun begin!

http://www.microsoft.com/windows/ie/default.mspx 
 
Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
[EMAIL PROTECTED]  
http://www.aftershockweb.com/   
Phone 503-244-3440
Fax 503-244-3454
 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230894
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cf6 and cf7 on the same box

2006-01-31 Thread Russ
We're upgrading our servers from cf6 to cf7, so on our dev box, I'm trying
to set them up concurrently.  We already have 6.1 running fine, and I'm
installing MX, which seems to install fine, but fails to install the
connectors for some reason.  I'm running wsconfig manually, but it won't
detect anything on the local server. 

 

Has anyone run into anything like this before? 

 

Russ



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230895
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Nested Set Model

2006-01-31 Thread Andy Matthews
Ah...

Not with the setup I have then. I'm not using triggers or stored procs.

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 31, 2006 2:36 PM
To: CF-Talk
Subject: Re: Nested Set Model


Not with a nested set, only with an adjacency list.  With a nested
set, if you delete an ancestor, the decendants just move up a level
with no DB modification.

cheers,
barneyb

On 1/31/06, Andy Matthews [EMAIL PROTECTED] wrote:
 If you deleted an element, any children (and children of children) would
 become orphans. So you'd at least have to change the association of the
 child of the deleted record.


--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230896
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cf6 and cf7 on the same box

2006-01-31 Thread CF
Hi,

 We're upgrading our servers from cf6 to cf7, so on our dev box, I'm
 trying to set them up concurrently.  We already have 6.1 running
 fine, and I'm installing MX, which seems to install fine, but fails
 to install the connectors for some reason.  I'm running wsconfig
 manually, but it won't detect anything on the local server. 

you can only do this when you configure different virtual hosts for cf6
and cf7.

In case you are using Apache web server, here is a little tutorial I
wrote on how to configure name based virtual hosts with different CF
versions (CF5, CF6.1, CF7.0, BD6.2):
http://www.procept.net/index.cfm?fuseaction=tut.multiServer

Dan Switzer posted a similar tutorial for IIS:
http://blog.pengoworks.com/blogger/index.cfm?action=blog:475

HTH,

Chris


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230897
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cf6 and cf7 on the same box

2006-01-31 Thread Russ
I understand that I need to configure different virtual hosts... But I am
unable to add the connector at all using wsconfig.  It will not detect any
cf servers on the local machine.  

I'm using single server installation of cf 7.0.1

Russ

 -Original Message-
 From: CF [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 31, 2006 6:08 PM
 To: CF-Talk
 Subject: Re: cf6 and cf7 on the same box
 
 Hi,
 
  We're upgrading our servers from cf6 to cf7, so on our dev box, I'm
  trying to set them up concurrently.  We already have 6.1 running
  fine, and I'm installing MX, which seems to install fine, but fails
  to install the connectors for some reason.  I'm running wsconfig
  manually, but it won't detect anything on the local server.
 
 you can only do this when you configure different virtual hosts for cf6
 and cf7.
 
 In case you are using Apache web server, here is a little tutorial I
 wrote on how to configure name based virtual hosts with different CF
 versions (CF5, CF6.1, CF7.0, BD6.2):
 http://www.procept.net/index.cfm?fuseaction=tut.multiServer
 
 Dan Switzer posted a similar tutorial for IIS:
 http://blog.pengoworks.com/blogger/index.cfm?action=blog:475
 
 HTH,
 
 Chris
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230898
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: IE 7 beta is available

2006-01-31 Thread Brad Wood
Dang it-- I wanted to try it out on my work computer... but it is not
compatible with 2000.  One of my co-workers tried it on his XP machine,
and apparently our site license for XP doesn't authenticate as a valid
install.

Microsoft must not want me to see IE 7!

Tricksy Hobbits'!

~Brad


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230899
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
Really, there's nothing to change.  No triggers, procs, magic, or
anything.  Delete a record, and nothing in the tree gets orphaned. 
Say you've got a table like this:

Name Left Right
food 1 8
fruit 2 7
apple 3 4
banana 5 6

That is, food has a child fruit, which has two children apple and
banana.  Now delete fruit.  Apple and banana are still inside the food
set, without changing anything.

Say you have the same tree, but with an adjacency list:

name parent
food NULL
fruit food
apple fruit
banana fruit

Now if you delete fruit, apple and banana are suddenly parentless, and
they have no connection to food at all.  Or they might have been
inadvertantly deleted as well, if you've got a FOREIGN KEY with
CASCADE DELETE set on the parent field.

cheers,
barneyb

On 1/31/06, Andy Matthews [EMAIL PROTECTED] wrote:
 Ah...

 Not with the setup I have then. I'm not using triggers or stored procs.

 !//--
 andy matthews
 web developer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-

 -Original Message-
 From: Barney Boisvert [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 31, 2006 2:36 PM
 To: CF-Talk
 Subject: Re: Nested Set Model


 Not with a nested set, only with an adjacency list.  With a nested
 set, if you delete an ancestor, the decendants just move up a level
 with no DB modification.

 cheers,
 barneyb

 On 1/31/06, Andy Matthews [EMAIL PROTECTED] wrote:
  If you deleted an element, any children (and children of children) would
  become orphans. So you'd at least have to change the association of the
  child of the deleted record.
 

 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/

 Got Gmail? I have 100 invites.



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230900
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Viewing Cflog files

2006-01-31 Thread PINE Phyo Z
Hi all,

I'm just wondering whether there is a way to view the log files that are
created in the application using cflog to be able to view
programmatically. For my case, the ColdFusion servers and logfiles
directories are out of bounds for developers, so I would like to know
whether I can access back the log files I have written in the
application something like this:

cflog file=#APPLICATION.myAppLog# text=Some log messages here!

So, from another part of my application (admin's portion), I would like
to run some code to view my log files contents. Is there a way to do
this?

Thanks in advance.

Regards,
Pine

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230901
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: IE 7 beta is available

2006-01-31 Thread Munson, Jacob
It requires XP SP2. 

 -Original Message-
 From: Brad Wood [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 31, 2006 4:27 PM
 To: CF-Talk
 Subject: RE: IE 7 beta is available
 
 Dang it-- I wanted to try it out on my work computer... but it is not
 compatible with 2000.  One of my co-workers tried it on his 
 XP machine,
 and apparently our site license for XP doesn't authenticate as a valid
 install.
 
 Microsoft must not want me to see IE 7!
 
 Tricksy Hobbits'!
 
 ~Brad

This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. A1.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230902
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Solved: cf6 and cf7 on the same box

2006-01-31 Thread Russ
Looks like I was able to connect by specifying additional arguments... 

C:\CFusionMX7\runtime\libjava -DWSConfig.PortScanStartPort=2920
-DWSConfig.Port
ScanCount=5 -jar wsconfig.jar

Where 2920 is the jndi port from jndi.properties.  

Russ

 -Original Message-
 From: Russ [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 31, 2006 6:14 PM
 To: CF-Talk
 Subject: RE: cf6 and cf7 on the same box
 
 I understand that I need to configure different virtual hosts... But I am
 unable to add the connector at all using wsconfig.  It will not detect any
 cf servers on the local machine.
 
 I'm using single server installation of cf 7.0.1
 
 Russ
 
  -Original Message-
  From: CF [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, January 31, 2006 6:08 PM
  To: CF-Talk
  Subject: Re: cf6 and cf7 on the same box
 
  Hi,
 
   We're upgrading our servers from cf6 to cf7, so on our dev box, I'm
   trying to set them up concurrently.  We already have 6.1 running
   fine, and I'm installing MX, which seems to install fine, but fails
   to install the connectors for some reason.  I'm running wsconfig
   manually, but it won't detect anything on the local server.
 
  you can only do this when you configure different virtual hosts for cf6
  and cf7.
 
  In case you are using Apache web server, here is a little tutorial I
  wrote on how to configure name based virtual hosts with different CF
  versions (CF5, CF6.1, CF7.0, BD6.2):
  http://www.procept.net/index.cfm?fuseaction=tut.multiServer
 
  Dan Switzer posted a similar tutorial for IIS:
  http://blog.pengoworks.com/blogger/index.cfm?action=blog:475
 
  HTH,
 
  Chris
 
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230903
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: PGP with CF

2006-01-31 Thread Robert Munn
I am not the security guru, but the standard way to deal with encryption in 
CFMX is using the Java Cryptography Extension (JCE), which is included as part 
of J2SE 1.4 and later.


Looks like there are some java implementations as well.  Has anyone
successfully used them with CF?



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230904
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Nested Set Model

2006-01-31 Thread Brad Wood
Ok, but let try and move a large branch of a nested set somewhere else
in the hierarchy.  :)

I'll begin with the adjacency list model:

Step 1: Update predecessor_id of the top of the branch

Done.

And now I'll start us off with the nested set model (Turn page over and
write on back if you need more room)

Step 1: 
Step 2:
Step 3:
Step 4:
Step 5:
Step 6:
Step 7:
Step 8:
Step 9:
Step 10:
Step 11:
Step 12:

(yes, yes, I know.. we were talking about deletion, NOT moving-- I just
couldn't help myself :] )

~Brad

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 31, 2006 5:31 PM
To: CF-Talk
Subject: Re: Nested Set Model

Really, there's nothing to change.  No triggers, procs, magic, or
anything.  Delete a record, and nothing in the tree gets orphaned. 
Say you've got a table like this:

Name Left Right
food 1 8
fruit 2 7
apple 3 4
banana 5 6

That is, food has a child fruit, which has two children apple and
banana.  Now delete fruit.  Apple and banana are still inside the food
set, without changing anything.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230905
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Nested Set Model

2006-01-31 Thread Barney Boisvert
Actually, it's only three steps (extract the branch, slide the
interval, inject the branch).  Just that rather than a single record,
an average of roughly (N / 2 ) + 2M records need to be updated (where
N is the number of records in the table, and M is the size of the
subtree).

cheers,
barneyb

On 1/31/06, Brad Wood [EMAIL PROTECTED] wrote:
 Ok, but let try and move a large branch of a nested set somewhere else
 in the hierarchy.  :)

 I'll begin with the adjacency list model:

 Step 1: Update predecessor_id of the top of the branch

 Done.

 And now I'll start us off with the nested set model (Turn page over and
 write on back if you need more room)

 Step 1:
 Step 2:
 Step 3:
 Step 4:
 Step 5:
 Step 6:
 Step 7:
 Step 8:
 Step 9:
 Step 10:
 Step 11:
 Step 12:

 (yes, yes, I know.. we were talking about deletion, NOT moving-- I just
 couldn't help myself :] )

 ~Brad


--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230906
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   >