CFHTTP POST only results in Connection Failures.

2003-11-04 Thread Nick Baker
Using CF 5.0 on a local single user development system.

A simple CFHTTP POST below results in Connection Failures. Same results 
for any CFHTTPPARAM type. CFHTTP GET works!

Is there some kind of Administrative or CFAPPLICATION setting that is required?

CFHTTP url="">
	resolveurl=FALSE
	method=post
	cfhttpparam type=FORMFIELD name=formField1 value=11
	cfhttpparam type=FORMFIELD name=formField2 value=22
/CFHTTP

Thanks,

Nick

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




RE: Might be OT: MVDB -- UniData etc.

2003-11-04 Thread Joe Eugene
Don,

RedBack is a Business Object Server. You can write Business Objects/Rules in
RedBack
that talks to U2 Database. Basically, you can consider RedBack as an
Advanced Level
of SQL Server Stored Procedure Programming, a little object oriented...takes
care of
connection pooling and all that stuff. Well MS-SQL Server T-SQL is not all
that great
compared to capabilities of Oracle PL/SQL Or Java Procedure capabilities
Joe Eugene

-Original Message-
From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED]
Sent: Monday, November 03, 2003 2:46 PM
To: CF-Talk
Subject: Re:Might be OT: MVDB -- UniData etc.

Joe,

My client uses UniData (Pick type of people say not much different from
Unverse), they'd like to export their UniData data to SQL Server or the like
for easy view etc.I've set up an ODBC connection to the UniData server,
then used VSG (Visual Schema Generators) to map UniData mv data into
relational data set, then DTS it to SQL Server.All works, almost beautiful
except that, by default, VSG makes all columns nullable.Well, in my data
transformation process, I can take care of that, but I thought it would be a
better way/more efficient way to be able to configure column nullability
from VSG, it looks like it can't but that's OK.

Thanks though.BTW, what does RedBack do? schema translation?

Regards,

Don Li

We run U2(Universe) MVDB. I dont understand your question though.
Our Configurations are (U2 + RedBack + CF5.0 and U2 + JDBC + CFMX)

What are you trying to accomplish?

Joe Eugene

- Original Message -

From: Chunshen (Don) Li

To: CF-Talk

Sent: Sunday, November 02, 2003 5:24 PM

Subject: Might be OT: MVDB -- UniData etc.



Hi,


I hope this is not OT since it is really another type of database that
required CF as a middleperson.Something weird.I couldn't find two
postings and others' followups on this subject posted a few weeks ago.
Try do a key word search of MVDB or UniData, it won't find
anything while my previous postings has included them in the subject
line.


Related question for those who followed up on the topic, I'd
appreciate your thought/input.VSG v3.1, for any view created, each
column is set to NULLABLE, well, my requirement is such that I want
the [ID] column to be NONNULLABLE or NULLABLE value set to N | 0.
This version of VSG does not seem to have the feature of resetting
NULLABLE value.Is this understanding correct?


If so, how could I achieve the same thing from UDT?VOC file?Help
me to beat this beast :)


Thanks.


Don Li

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




Query to Stored Proc

2003-11-04 Thread Tangorre, Michael
How would you rework the logic in the WHERE clause to get this query put
into a stored proc?
Can you put conditional logic in the WHERE clause inside a stored proc?

SQL 2K Enterprise

cfquery name=selectOpportunityResults datasource=otis
SELECT
	O.opportunityId,
	O.title,
	O.lastUpdateUserId,
	O.lastUpdateOn,
	O.createDate,
	U1.firstName AS creatorFirstName,
	U1.lastName AS creatorLastName,
	U1.emailAddress AS creatorEmailAddress,
	U2.firstName AS updaterFirstName,
	U2.lastName AS updaterLastName,
	U2.emailAddress AS updaterEmailAddress,
	P.phaseName
FROM
	tbl_opportunity O
	LEFT JOIN tbl_user U1 ON (O.createUserId = U1.userId)
	LEFT JOIN tbl_user U2 ON (O.lastUpdateUserId = U2.userId)
	LEFT JOIN tbl_phase P ON (O.phaseId = P.phaseId)
WHERE
	1=0
	cfif form.rfpNumber NEQ 
		OR O.rfpNumber = '#form.rfpNumber#'
	/cfif
	cfif form.title NEQ 
		OR O.title = '#form.title#'
	/cfif
	cfif form.naicsCode NEQ 
		OR O.naicsCode = '#form.naicsCode#'
	/cfif
	cfif form.costCenterLocation NEQ -1
		OR O.costCenterId = '#form.costCenterLocation#'
	/cfif
	cfif form.procurementType NEQ -1
		OR O.procurementTypeId = '#form.procurementType#'
	/cfif
	cfif form.awardType NEQ -1
		OR O.awardTypeId = '#form.awardType#'
	/cfif
	cfif form.classification NEQ -1
		OR O.classificationId = '#form.classification#'
	/cfif
	cfif form.phase NEQ -1
		OR O.phaseId = '#form.phase#'
	/cfif
	cfif form.clientAgency NEQ -1
		OR O.agencyId = '#form.clientAgency#'
	/cfif
	cfif form.clientBureau NEQ -1
		OR O.bureauId = '#form.clientBureau#'
	/cfif
	cfif form.clientBureauOther NEQ -1
		OR O.bureauOtherId = '#form.clientBureauOther#'
	/cfif
ORDER BY
	O.createDate DESC
/cfquery

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




RE: Query to Stored Proc

2003-11-04 Thread Mike Townend
afaik you will need to build a VARCHAR of IF statements something like

 
DECLARE @sSQL VARCHAR(1000)
SET @sSQL = 'select * from foo where '
IF (@bar = 1)
BEGIN
 SET @sSQL = @sSQL + ' bar = 1'
END
ELSE
BEGIN
 SET @sSQL = @sSQL + ' 1=1'
END

 
exec (@sSQL)

HTH

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 4, 2003 10:57
To: CF-Talk
Subject: Query to Stored Proc

How would you rework the logic in the WHERE clause to get this query put
into a stored proc?
Can you put conditional logic in the WHERE clause inside a stored proc?

SQL 2K Enterprise

cfquery name=selectOpportunityResults datasource=otis
SELECT
O.opportunityId,
O.title,
O.lastUpdateUserId,
O.lastUpdateOn,
O.createDate,
U1.firstName AS creatorFirstName,
U1.lastName AS creatorLastName,
U1.emailAddress AS creatorEmailAddress,
U2.firstName AS updaterFirstName,
U2.lastName AS updaterLastName,
U2.emailAddress AS updaterEmailAddress,
P.phaseName
FROM
tbl_opportunity O
LEFT JOIN tbl_user U1 ON (O.createUserId = U1.userId)
LEFT JOIN tbl_user U2 ON (O.lastUpdateUserId = U2.userId)
LEFT JOIN tbl_phase P ON (O.phaseId = P.phaseId)
WHERE
1=0
cfif form.rfpNumber NEQ 
OR O.rfpNumber = '#form.rfpNumber#'
/cfif
cfif form.title NEQ 
OR O.title = '#form.title#'
/cfif
cfif form.naicsCode NEQ 
OR O.naicsCode = '#form.naicsCode#'
/cfif
cfif form.costCenterLocation NEQ -1
OR O.costCenterId = '#form.costCenterLocation#'
/cfif
cfif form.procurementType NEQ -1
OR O.procurementTypeId = '#form.procurementType#'
/cfif
cfif form.awardType NEQ -1
OR O.awardTypeId = '#form.awardType#'
/cfif
cfif form.classification NEQ -1
OR O.classificationId = '#form.classification#'
/cfif
cfif form.phase NEQ -1
OR O.phaseId = '#form.phase#'
/cfif
cfif form.clientAgency NEQ -1
OR O.agencyId = '#form.clientAgency#'
/cfif
cfif form.clientBureau NEQ -1
OR O.bureauId = '#form.clientBureau#'
/cfif
cfif form.clientBureauOther NEQ -1
OR O.bureauOtherId = '#form.clientBureauOther#'
/cfif
ORDER BY
O.createDate DESC
/cfquery

_


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




RE: News Feed for NFL games

2003-11-04 Thread Thane Sherrington
At 04:12 PM 11/03/03 -0500, Tony Weeg wrote:
although cbs.sportsline.com has the games, updated very VERY frequently, and
our lead developer here @ navtrak has built a dope little app that grabs
changes, and text messages me the outcomes of quarters, games, etc...all
sports, mlb/nba/nfl :) tis nice!

There must be some live feed somewhere - otherwise how would fantasy 
football live scoring programs work?

T

Tired of your bookmarks/favourites being limited to one computer?Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 

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




Re: CFMX + Linux-shared = not stable?

2003-11-04 Thread Thomas Chiverton
On Tuesday 04 Nov 2003 03:13 am, Mauricio Giraldo wrote:
 1- is it true that CFMX is not as stable under Linux (RedHat here) as in
 other platforms?

It's been rock solid here. Longer uptime than our Apache :-)

 2- did the hosting provider make the right choice, or were they just not
 proficient enough on CF? (as far as I knew they even had Macromedia
 collaboration for server fine-tuning for months)

I guess the latter.

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

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

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




Re: OT: Icon

2003-11-04 Thread Thomas Chiverton
On Tuesday 04 Nov 2003 01:03 am, Parker, Kevin wrote:
 Does anyone know if there is a standard icon for rich text files?

Of course there isn't.
Under Windows, for instance, at the very least it depends on the app 
associated with it, and in any case may be overriden by the skin.

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

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

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




RE: Query to Stored Proc

2003-11-04 Thread Bill Grover
Caveat: My experience is with MS SQL so this may not apply to other flavors!

 
Yes you can do what Mike say, just be careful where you place your spaces.In Mike's example the trailing space after the where would be truncated off so your where clause could end up looking like wherebar=1 which would be invalid.It is better to put the space at the beginning of your string something like ' bar=1' to result in a string of where bar=1

 
You can also do what you want without having the string with case statements in your where clause.You would need to pass all of your form fields as parameters in the stored procedure.Your statement would then be like:

 
SELECT
O.opportunityId,
O.title,
O.lastUpdateUserId,
O.lastUpdateOn,
O.createDate,
U1.firstName AS creatorFirstName,
U1.lastName AS creatorLastName,
U1.emailAddress AS creatorEmailAddress,
U2.firstName AS updaterFirstName,
U2.lastName AS updaterLastName,
U2.emailAddress AS updaterEmailAddress,
P.phaseName
FROM
tbl_opportunity O
LEFT JOIN tbl_user U1 ON (O.createUserId = U1.userId)
LEFT JOIN tbl_user U2 ON (O.lastUpdateUserId = U2.userId)
LEFT JOIN tbl_phase P ON (O.phaseId = P.phaseId)
WHERE 1=0
 OR 1 = CASE
WHEN FormrfpNumber  '' AND o.rfpNumber = FormrfpNumber THEN 1
ELSE 0
 END
OR 1 = CASE
WHEN FormTitle  '' AND o.title = FormTitle THEN 1
 ELSE 0
END
OR 1 = CASE
WHEN FormAwardType  -1 AND o.awardtypeid = FormAwardType THEN 1
ELSE 0
END
ORDER BY
O.createDate DESC

__ 

file:///E:/EUColor.gif 	

 Bill Grover 

Supervisor MIS 

Phone: 

301.424.3300 x3324	

 EU Services, Inc. 

FAX: 

301.424.3696	

 649 North Horners Lane 

E-Mail: 

[EMAIL PROTECTED]	

 Rockville, MD 20850-1299 

WWW: 

 http://www.euservices.com/ http://www.euservices.com 	

__ 

-Original Message-
From: Mike Townend [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 6:07 AM
To: CF-Talk
Subject: RE: Query to Stored Proc

afaik you will need to build a VARCHAR of IF statements something like

DECLARE @sSQL VARCHAR(1000)
SET @sSQL = 'select * from foo where '
IF (@bar = 1)
BEGIN
 SET @sSQL = @sSQL + ' bar = 1'
END
ELSE
BEGIN
 SET @sSQL = @sSQL + ' 1=1'
END

exec (@sSQL)

HTH

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 4, 2003 10:57
To: CF-Talk
Subject: Query to Stored Proc

How would you rework the logic in the WHERE clause to get this query put
into a stored proc?
Can you put conditional logic in the WHERE clause inside a stored proc?

SQL 2K Enterprise

cfquery name=selectOpportunityResults datasource=otis
SELECT
O.opportunityId,
O.title,
O.lastUpdateUserId,
O.lastUpdateOn,
O.createDate,
U1.firstName AS creatorFirstName,
U1.lastName AS creatorLastName,
U1.emailAddress AS creatorEmailAddress,
U2.firstName AS updaterFirstName,
U2.lastName AS updaterLastName,
U2.emailAddress AS updaterEmailAddress,
P.phaseName
FROM
tbl_opportunity O
LEFT JOIN tbl_user U1 ON (O.createUserId = U1.userId)
LEFT JOIN tbl_user U2 ON (O.lastUpdateUserId = U2.userId)
LEFT JOIN tbl_phase P ON (O.phaseId = P.phaseId)
WHERE
1=0
cfif form.rfpNumber NEQ 
OR O.rfpNumber = '#form.rfpNumber#'
/cfif
cfif form.title NEQ 
OR O.title = '#form.title#'
/cfif
cfif form.naicsCode NEQ 
OR O.naicsCode = '#form.naicsCode#'
/cfif
cfif form.costCenterLocation NEQ -1
OR O.costCenterId = '#form.costCenterLocation#'
/cfif
cfif form.procurementType NEQ -1
OR O.procurementTypeId = '#form.procurementType#'
/cfif
cfif form.awardType NEQ -1
OR O.awardTypeId = '#form.awardType#'
/cfif
cfif form.classification NEQ -1
OR O.classificationId = '#form.classification#'
/cfif
cfif form.phase NEQ -1
OR O.phaseId = '#form.phase#'
/cfif
cfif form.clientAgency NEQ -1
OR O.agencyId = '#form.clientAgency#'
/cfif
cfif form.clientBureau NEQ -1
OR O.bureauId = '#form.clientBureau#'
/cfif
cfif form.clientBureauOther NEQ -1
OR O.bureauOtherId = '#form.clientBureauOther#'
/cfif
ORDER BY
O.createDate DESC
/cfquery

_

_


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




RE: Dynamic query escaping quotes?

2003-11-04 Thread C. Hatton Humphrey
 That's what the PreserveSingleQuotes() function was made
 for - it should fix you right up.

Thank you for jogging my memory on that, it did the trick perfectly.

 As an aside you may want to do some research on how you can
 access variables in CF - I think it'll save you a lot of
 effort here.
 snip...
 You could probably get rid of the CFIF as well if you use
 CFQUERYPARAM instead of building raw SQL.You'll also
 get a (small) performance boost and the ability to check
 datatypes.

 Don't take this the wrong way - what you have will work
 just fine and there's nothing wrong with it.I just
 thought since you're talking about creating this is as
 toolbox code that you might be interested.

As I continue to get myself up to speed with the new complexities of
ColdFusion MX I am taking things in baby steps.My progress as a
ColdFusion developer was slightly hindered at my last job because they were
running CF 4.0 and CF 4.5 on their servers even after 5.0 came out.There
are things that I didn't even know existed in CF that I need to comprehend,
such as CFC's, custom objects, etc.

I have two goals right now - the first is to get my site (which is what
these admin functions are for) built and the second is to then learn how
things like CFC's and the like can be used to create a 100% portable toolbox
that I can use for any number of sites.

Thanks for the advice and keep it coming, I'm a few years behind and need to
catch myself up to speed pretty darn fast!I *thought* I was pretty good at
CF and for the most part I can still hold my own, it's just a matter of
teaching this dog the new tricks!

Until Later!
Hatton

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




createdate() how screwy is this

2003-11-04 Thread Gabriel Robichaud
For the longest time I have been struggling to figure out why on certain
pages, all my French characters are turned into question marks (?).I have
my encoding done correctly, and the only characters that seem affected are
those that are stored into a database.They are stored correctly; they are
just not retrieved correctly.Well, last night I figured out that the if I
use the createdate() function anywhere in those cfm pages... ALL accents
magically turn into question marks.But this could be a problem since I
can't use the createdate() function in my calendering app!

 Has anyone run into this before and if so, how did you handle it?

 
Windows 2k
Mysql DB
CFMX

 
Thanks y'all!
Gabriel

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




RE: Query to Stored Proc

2003-11-04 Thread Bill Grover
On further thought,The where clause could possibly even be simplified to the following.

 
WHERE 1 = CASE
WHEN FormrfpNumber  '' AND o.rfpNumber = FormrfpNumber THEN 1
WHEN FormTitle  '' AND o.title = FormTitle THEN 1
WHEN FormAwardType  -1 AND o.awardtypeid = FormAwardType THEN 1
ELSE 0
END
__ 
file:///E:/EUColor.gif 	

 Bill Grover 

Supervisor MIS 

Phone: 

301.424.3300 x3324	

 EU Services, Inc. 

FAX: 

301.424.3696	

 649 North Horners Lane 

E-Mail: 

[EMAIL PROTECTED]	

 Rockville, MD 20850-1299 

WWW: 

 http://www.euservices.com/ http://www.euservices.com 	

__ 


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




RE: (CF 6 reliability) from Re: Memory Leak on Win2k/CMX6.1

2003-11-04 Thread Bill Grover
We are running 6.1 and have seen a memory leak, not severe.We seem to run fine for a couple of weeks before things begin to slow down.We've found that simply stopping and restarting the service will fix the issue.

 
We might try the Microsoft JDBC drivers to see if that doesn't help us.

__ 

file:///E:/EUColor.gif 	

 Bill Grover 

Supervisor MIS 

Phone: 

301.424.3300 x3324	

 EU Services, Inc. 

FAX: 

301.424.3696	

 649 North Horners Lane 

E-Mail: 

[EMAIL PROTECTED]	

 Rockville, MD 20850-1299 

WWW: 

 http://www.euservices.com/ http://www.euservices.com 	

__ 

-Original Message-
From: Ryan Sabir [mailto:[EMAIL PROTECTED]
Sent: Monday, November 03, 2003 8:46 PM
To: CF-Talk
Subject: Re:(CF 6 reliability) from Re: Memory Leak on Win2k/CMX6.1

Hi all,

I have recently installed CFMX 6.1 in a high traffic production
environment, and I can say that I haven't experienced this memory leak
problem.

I am getting quite a few deadlock errors and service too busy error,
but I suspect thats an issue with the questionable code that we
inherited.

By high traffic I mean around 70,000 page views per day.

My machine configuration is:
Intel Xeon 2.4GHz cache
1024 MB RAM
36 G Hard Drive

It was a completely fresh install of MS Windows 2000 Server, fully
patched, and a completely fresh install of CFMX.

I'm using the JDBC drivers provided by Microsoft and installed as
described in this technote:
http://www.macromedia.com/support/coldfusion/ts/documents/cfmx_config_mssql2000.htm

Hope this helps someone get to the bottom of their problem...

Tuesday, November 4, 2003, 12:08:46 PM, you wrote:

KW Might be easier to ask how many people are having serious problems with MX.

KW Ken

KW Boldacious Web Design wrote:
 What are other people's views on this - how many people are using
 MX with no problems?
 
 
  You wrote 
 
 
 
I suggest the user with problems with the server product, to
 
 uninstall it completely and revert to CF 5.0, until Macromedia
 gets its act 
 
together.While a lot was accomplished with the 6.1 release
 
 over previous editions, it still is not a stable product., and
 IMHO should not even be on the market.
 
 
 Seamus CampbellBoldacious WebDesign
 http://www.boldacious.com[EMAIL PROTECTED]
 ph 02 6297 4883fax02 6297 4883mob 0410 609 267
 
 
 
KW 
_


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




RE: CFMX install error

2003-11-04 Thread Yves Arsenault
Thanks for the response,
I followed the instructions, but I still have a connector error. Before the
CFIDE/administrator/ would should encrypted code, now I get a configuration
error.

The connector error is given when I do: service coldfusionmx start

I'm wondering if I should try to reinstall CFMX over

Does anyone have any idea what the problem could be?

TIA,

Yves Arsenault
5, Acadian Dr
Charlottetown, PEI
C1C 1M2
902.368.1895 ext.227
902.566.5989 FAX
ICQ # 117650823

-Original Message-
From: Pete Freitag [mailto:[EMAIL PROTECTED]
Sent: November 3, 2003 9:06 PM
To: CF-Talk
Subject: Re: CF on RedHat9?

yes I've got CF running on Redhat 9 with CF MX 6.1, and Apache 2.0.47

A few months back I wrote up some instructions:
http://www.cfdev.com/apache/apache2src.cfm
http://www.cfdev.com/apache/apache2cfmx.cfm


Pete Freitag
http://www.cfdev.com/
Author of CFMX Developers Cookbook
http://www.amazon.com/exec/obidos/ASIN/0672324628/netgig-20

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




Archiving CF 5.0 log files

2003-11-04 Thread Earl, George
Is there a way to archive just part of a CF 5.0 log file while retaining the
rest of it? My app log is 15MB and my webserver log is 11MB. I'd like to cut
them down in size without archiving the last couple of weeks . . . Thanks!

George
[EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: Macromedia Images

2003-11-04 Thread Eric Creese
Where are the Macromedia Product image links located. If that sounds confusing, what I am looking for are the Powered By ColdFusion MX images that Macromedia makes for display on your website.


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




A href replace sort of thing :)

2003-11-04 Thread Ryan Mitchell
Hello

I'm trying to provide html + plain text versions of the same email using
6.1's mailpart.. Its all good so far.

I want to be able to do the following with links...

Say I have a href="" here/a

In the plain text format I want to replace the click here text with the
page.cfm link... Is there a regex to do this?

Thanks,
Ryan

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




RE: Archiving CF 5.0 log files

2003-11-04 Thread Robertson-Ravo, Neil (RX)
why dont you just copy them out of the log files out of the CFUSION/LOG
folder into an archive and then delete the existing ones..CF will
automatically create new .log files.

_

From: Earl, George [mailto:[EMAIL PROTECTED] 
Sent: 04 November 2003 14:52
To: CF-Talk
Subject: Archiving CF 5.0 log files

Is there a way to archive just part of a CF 5.0 log file while retaining the
rest of it? My app log is 15MB and my webserver log is 11MB. I'd like to cut
them down in size without archiving the last couple of weeks . . . Thanks!

George
[EMAIL PROTECTED] 
_


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




RE: Macromedia Images

2003-11-04 Thread Ben Forta
I think this is what you want:
http://www.macromedia.com/macromedia/style_guide/buttons/

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 9:56 AM
To: CF-Talk
Subject: OT: Macromedia Images

Where are the Macromedia Product image links located. If that sounds
confusing, what I am looking for are the Powered By ColdFusion MX
images that Macromedia makes for display on your website.

_


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




RE: Macromedia Images

2003-11-04 Thread Dan Phillips \(CFXHosting.com\)
http://www.macromedia.com/cfusion/search/index.cfm?loc=en_usterm=logos


-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 9:56 AM
To: CF-Talk
Subject: OT: Macromedia Images

Where are the Macromedia Product image links located. If that sounds
confusing, what I am looking for are the Powered By ColdFusion MX
images that Macromedia makes for display on your website.


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




RE: Anybody have an opinion on hostmysite.com?

2003-11-04 Thread Ron Eis
I agree with all the positive comments people have posted re:
hostmysite.com.

 
They are extremely fast to respond to any emails that I send whenever I
have a tech support issue (which is not very often).

 
Also, I'm not sure when they restructured their advanced hosting plans
but they recently increased the Power Developer plan from 100M to 300M
of storage space.An early Christmas present for me as I am getting
close to the (previous) 100M limit. 

	-Original Message-
	From: Candace Cottrell [mailto:[EMAIL PROTECTED] 
	Sent: Friday, October 31, 2003 8:29 AM
	To: CF-Talk
	Subject: Re:Anybody have an opinion on hostmysite.com?
	
	
	I have three sites with them. I like them a lot, their customer
service is excellent. However, I recently found a cheaper plan with
another company, and am considering moving one of my sites to there just
to see what happens.
	
	Candace K. Cottrell, Web Developer 
	The Children's Medical Center 
	One Children's Plaza 
	Dayton, OH 45404 
	937-641-4293 
	http://www.childrensdayton.org
	
	[EMAIL PROTECTED]
	
	 [EMAIL PROTECTED] 10/31/2003 7:25:35 AM 
	I have had several CF sites at HostMySite, two with SQL Server.
Customer service was excellent; all hours you could always call and get
a quick response. Site performance/uptime was generally very good, only
a very few times when a server went down briefly -- attributable mostly
to early CFMX issues I think. 
	
	I moved these sites only when I got a dedicated server, which I
wanted to have closer to home. But I would definitely recommend them for
shared hosting. Excellent value based on my experience.
	
	
	
_

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




RE: CFMX install error

2003-11-04 Thread Yves Arsenault
Hello

To be a bit more precise, I'm getting 500 internal server error when I try
to access /CFIDE/administrator/

Any help is greatly appreciated.

YVes
-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: 4 novembre 2003 10:43
To: CF-Talk
Subject: RE: CFMX install error

Thanks for the response,
I followed the instructions, but I still have a connector error. Before
the
CFIDE/administrator/ would should encrypted code, now I get a
configuration
error.

The connector error is given when I do: service coldfusionmx start

I'm wondering if I should try to reinstall CFMX over

Does anyone have any idea what the problem could be?

TIA,

Yves Arsenault
5, Acadian Dr
Charlottetown, PEI
C1C 1M2
902.368.1895 ext.227
902.566.5989 FAX
ICQ # 117650823

-Original Message-
From: Pete Freitag [mailto:[EMAIL PROTECTED]
Sent: November 3, 2003 9:06 PM
To: CF-Talk
Subject: Re: CF on RedHat9?

yes I've got CF running on Redhat 9 with CF MX 6.1, and Apache 2.0.47

A few months back I wrote up some instructions:
http://www.cfdev.com/apache/apache2src.cfm
http://www.cfdev.com/apache/apache2cfmx.cfm


Pete Freitag
http://www.cfdev.com/
Author of CFMX Developers Cookbook
http://www.amazon.com/exec/obidos/ASIN/0672324628/netgig-20


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




what do I need to know about CF 4.5

2003-11-04 Thread Michael Hodgdon
I have picked up a project and the client does not want to move from 4.5 to
MX.I am used to coding under 5.0 and MX and was wondering some of the know
bugs and differences between these environments.Could anyone give some
general guidelines?

thank you


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




FW: Not Subscribed: OT: SQL Server to Oracle migration

2003-11-04 Thread Michael Hodgdon
I have an Off Topic question for the list.

I have a few databases that I was thinking of migrating from SQL 2000 to
Oracle 8.1.7.1.5 .I am wondering two things:

1) Will the SQL in my CF Templates still work after the migration?

2) Are there any major pitfalls or recommendations you could give me in
terms of the actual migration?

Any help is appreciated.

Michael


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




Re: [Reply To] (CF 6 reliability) from Re: Memory Leak on Win2k/CMX6.1

2003-11-04 Thread Tom Kitta
The only problem we have with CFMX is the scheduler application under administrator. When we put scheduled events in MX they don't seam to run on the schedule we assign to them (don't run at all or run at different times). We were unable to fix this problem and thus all scheduled events are stuck on 5.0 server. Other than that there have been no major issues with the stability of the MX servers. 

As for the language itself, I admit that there are some bugs in CFMX, but I am hoping that MM will fix most of them in the next release.

TK
- Original Message - 
From: Boldacious Web Design 
To: CF-Talk 
Sent: Tuesday, November 04, 2003 11:53 AM
Subject: [Reply To] (CF 6 reliability) from Re: Memory Leak on Win2k/CMX6.1

What are other people's views on this - how many people are using
MX with no problems?

 You wrote 

I suggest the user with problems with the server product, to
uninstall it completely and revert to CF 5.0, until Macromedia
gets its act 
 together.While a lot was accomplished with the 6.1 release
over previous editions, it still is not a stable product., and
IMHO should not even be on the market.

Seamus CampbellBoldacious WebDesign
http://www.boldacious.com[EMAIL PROTECTED]
ph 02 6297 4883fax02 6297 4883mob 0410 609 267


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




RE: Not Subscribed: OT: SQL Server to Oracle migration

2003-11-04 Thread Gabriel Robichaud
Yeah... good luck.

 
I recently did analysis on a ms sql 2000 to oracle 8i and 9i migration...
the oracle migration tool on the oracle website is where you need to start,
it will identify all the stuff in your DB that cannot be converted
automatically and provided a good starting point.It also identifies all
incompatibilities in table names and column names, etc, etc, etc...

 
Your cfqueries might not work depending on how you have written them.Other
than testing them one by one, I did not find any solution to this.Another
big issue is stored procedures, as PL/SQL is very different than T-SQL.
Some stored procedures are converted automatically with the Oracle Migration
Workbench, but most need some level of human intervention.So your efforts
are going to be greater depending on the complexity of your stored procs,
and how your sql db was designed.

 
Gabriel

 
-Original Message-
From: Michael Hodgdon [mailto:[EMAIL PROTECTED]
Sent: November 4, 2003 10:16 AM
To: CF-Talk
Subject: FW: Not Subscribed: OT: SQL Server to Oracle migration

 
I have an Off Topic question for the list.

I have a few databases that I was thinking of migrating from SQL 2000 to
Oracle 8.1.7.1.5 .I am wondering two things:

1) Will the SQL in my CF Templates still work after the migration?

2) Are there any major pitfalls or recommendations you could give me in
terms of the actual migration?

Any help is appreciated.

Michael

_


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




SOT: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
Thought this was interesting:

http://www.suse.com/us/company/press/press_releases/archive03/novell_suse.html

With RedHat ending their free distros (well, at least the free versions that 
won't change every 2 weeks), and now this acquisition, seems like 
cost-benefit of Linux is slowly dying. While Novell hasn't announced plans 
to stop providing free versions of SUSE, I don't see why they wouldn't 
follow RedHat's lead at some point.

The execs at Microsoft must have big smiles on their collective faces.

I know this doesn't exactly pertain to CF directly, but the recent decisions 
by these major Linux vendors may effect some decisions about what OS to 
deploy CFMX on.

Regards,
Dave.


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




Re: Not Subscribed: OT: SQL Server to Oracle migration

2003-11-04 Thread Nick de Voil
 1) Will the SQL in my CF Templates still work after the migration?

Most likely not. Depends how standards-compliant your SQL is.

Date functions, string functions, data type conversions may give you a
problem.

SEQUENCEs will need to be changed to IDENTITY columns.

Nick


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




RE: Macromedia Images

2003-11-04 Thread Eric Creese
THANK YOU

-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 8:59 AM
To: CF-Talk
Subject: RE: Macromedia Images

I think this is what you want:
http://www.macromedia.com/macromedia/style_guide/buttons/

-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 9:56 AM
To: CF-Talk
Subject: OT: Macromedia Images

Where are the Macromedia Product image links located. If that sounds
confusing, what I am looking for are the Powered By ColdFusion MX
images that Macromedia makes for display on your website.

_

_


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




Re: what do I need to know about CF 4.5

2003-11-04 Thread Tomo Smith
first off don't use query of query, UDFs, or components.Xml features are
sorely lacking also.There are probably other things, but this is off the
top of my head :)
- Original Message - 
From: Michael Hodgdon [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 3:14 PM
Subject: what do I need to know about CF 4.5

 I have picked up a project and the client does not want to move from 4.5
to
 MX.I am used to coding under 5.0 and MX and was wondering some of the
know
 bugs and differences between these environments.Could anyone give some
 general guidelines?

 thank you


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




RE: Novell to acquire SUSE

2003-11-04 Thread Adam Hope
Redhat are not ending their free distros in fact they are extending the free distro into a new release called Fedora. See http://fedora.redhat.com.

 
I have been eagerly awaiting its first release which was due out today. All Redhat have said is that they will no longer sell the personal version of Redhat Linux and if you want to buy a version it will have to be from the Advanced/Enterprise fold.

 
Adam.

	-Original Message-
	From: Dave Carabetta [mailto:[EMAIL PROTECTED] 
	Sent: 04 November 2003 15:23
	To: CF-Talk
	Subject: SOT: Novell to acquire SUSE
	
	
	Thought this was interesting:
	
	http://www.suse.com/us/company/press/press_releases/archive03/novell_suse.html
	
	With RedHat ending their free distros (well, at least the free versions that 
	won't change every 2 weeks), and now this acquisition, seems like 
	cost-benefit of Linux is slowly dying. While Novell hasn't announced plans 
	to stop providing free versions of SUSE, I don't see why they wouldn't 
	follow RedHat's lead at some point.


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




Valid e-mail address characters and format

2003-11-04 Thread Kenneth Ketsdever
I ran into a problem the other day whereby a dynamically created e-mail
using cfmail died in the spooler. 
The user of the form entered [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]for the from email address.That is
not a typo.They entered a . (dot) after their lastname and before the @
symbol. 

 
Is [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]a valid
e-mail address?
What about [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]?

 
If these are valid, why am I having trouble with them entered as the from
address in my form which is used in as the from address in the cfmail

 
cfmail type=HTML to= [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
from=#trim(form.email)# subject=A new Message port=25 timeout=60

 
Upon trying to recreate this problem I cannot jam up the spooler again.But
the [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]is
being sent to the E:\CFusionMX\Mail\Undelivr folder.

Any help would be appraciated. 

Confidentiality Notice:This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.


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




RE: what do I need to know about CF 4.5

2003-11-04 Thread Jim Davis
Um.

 
No Functions
No Query of Queries
No CFCs
No CFSAVEDCONTENT
Fewer scopes available as Structs
You MUST lock shared scopes

 
There are others, but that's what I've got off the top of my head.

 
Jim Davis

 
-Original Message-
From: Michael Hodgdon [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 10:15 AM
To: CF-Talk
Subject: what do I need to know about CF 4.5

 
I have picked up a project and the client does not want to move from 4.5
to
MX.I am used to coding under 5.0 and MX and was wondering some of the
know
bugs and differences between these environments.Could anyone give some
general guidelines?

thank you

_


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




OT: Orphaned Files

2003-11-04 Thread Bryan F. Hogan
Please forgive the OT post. I really need some insight. I have a project review after the fact kind of project that I'm
involved in. Basically what I'm doing is getting the far from competent programmers to follow standards and such. It has been
amazingly frustrating. Their site has thousands of files that are not used in the site. They are just sitting there not being
used. One of their tasks is to remove these orphaned files.

How I do it is with Dreamweaver, if when you hit delete it asks you to update the links to that file than it is being used,
if not delete it. I don't have the patience or the time to set them up with Dreamweaver. Can someone please let me know if
there is a easy way for them to be able to find out what files are in use and what files are not?

Thanks for your time!

Bryan


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




Re:Might be OT: MVDB -- UniData etc.

2003-11-04 Thread Don
Joe,

Though I've not spent enough time and effort on Oracle DBMS I would agree Oracle has more capabilities than MS SQL Server.However, I would bet Oraclewould be a big, heavy gorilla (so easy to spell it as guerilla for non-native tongue speakers :) vs. MS SQL Server, cost and management wise among others.
My client definitely would not go for Oracle at this point, as a matter of fact, they are still using Access for their substantial business.

I hope, as I get to know UniData (beast) a bit more in the next few days, this particular problem would flush itself out.

Regards,

Don
Don,

RedBack is a Business Object Server. You can write Business Objects/Rules in
RedBack
that talks to U2 Database. Basically, you can consider RedBack as an
Advanced Level
of SQL Server Stored Procedure Programming, a little object oriented...takes
care of
connection pooling and all that stuff. Well MS-SQL Server T-SQL is not all
that great
compared to capabilities of Oracle PL/SQL Or Java Procedure capabilities
Joe Eugene

-Original Message-
From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED]
Sent: Monday, November 03, 2003 2:46 PM
To: CF-Talk
Subject: Re:Might be OT: MVDB -- UniData etc.


Joe,

My client uses UniData (Pick type of people say not much different from
Unverse), they'd like to export their UniData data to SQL Server or the like
for easy view etc.I've set up an ODBC connection to the UniData server,
then used VSG (Visual Schema Generators) to map UniData mv data into
relational data set, then DTS it to SQL Server.All works, almost beautiful
except that, by default, VSG makes all columns nullable.Well, in my data
transformation process, I can take care of that, but I thought it would be a
better way/more efficient way to be able to configure column nullability
from VSG, it looks like it can't but that's OK.

Thanks though.BTW, what does RedBack do? schema translation?

Regards,

Don Li

We run U2(Universe) MVDB. I dont understand your question though.
Our Configurations are (U2 + RedBack + CF5.0 and U2 + JDBC + CFMX)

What are you trying to accomplish?

Joe Eugene

- Original Message -

From: Chunshen (Don) Li

To: CF-Talk

Sent: Sunday, November 02, 2003 5:24 PM

Subject: Might be OT: MVDB -- UniData etc.



Hi,


I hope this is not OT since it is really another type of database that
required CF as a middleperson.Something weird.I couldn't find two
postings and others' followups on this subject posted a few weeks ago.
Try do a key word search of MVDB or UniData, it won't find
anything while my previous postings has included them in the subject
line.


Related question for those who followed up on the topic, I'd
appreciate your thought/input.VSG v3.1, for any view created, each
column is set to NULLABLE, well, my requirement is such that I want
the [ID] column to be NONNULLABLE or NULLABLE value set to N | 0.
This version of VSG does not seem to have the feature of resetting
NULLABLE value.Is this understanding correct?


If so, how could I achieve the same thing from UDT?VOC file?Help
me to beat this beast :)


Thanks.


Don Li

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




RE: News Feed for NFL games

2003-11-04 Thread Haggerty, Mike
If Mike Dinowitz isn't here to remind us it's OT, it's not OT.

Was anyone else blown away by the genius behind that safety last night?

M

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: Monday, November 03, 2003 5:12 PM
To: CF-Talk
Subject: RE: News Feed for NFL games

Er, is this topic necessary fro CF-Talk?


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




Re: Orphaned Files

2003-11-04 Thread Massimo Foti
Check DW's Help for orphaned files.

The report DW creates isn't totally realible, because it's unable to
properly track dynamically generated links.

Hope it may help


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



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




RE: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
Redhat are not ending their free distros in fact they are extending the 
free distro into a new release called Fedora. See http://fedora.redhat.com.


Yes, I know about Fedora. Perhaps the most important sentence on the page 
you refer to is this:

It is not a supported product of Red Hat, Inc.

This is public domain version of Linux that Red Hat is supporting so that 
they can claim to still be providing a free version to the community. It's 
not meant to be used in a production server environment. This version is a 
proving ground for features that may or may not make it into their 
hardened server versions.

Are you willing to run mission-critical applications on this sort of 
version? I'm not.

Regards,
Dave.


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




Re:FW: Not Subscribed: OT: SQL Server to Oracle migration

2003-11-04 Thread Jeremy Brodie
Michael,

Here are a few gotachas you want to look at:

1) Dates.Not only is the syntax different, but also the functions are quite a bit differnt as well. The getdate() function is sysdate() for example. Functions for adding and manipulating dates are different as well. 

2) Join syntax: SQL Server will often add SQL Server specific text when you create a join through its wizards. As long as you're writing toward the ANSI SQL spec you should be OK.

3) Stored Proceedures. You will need to rewrite all stored proceedures as referential cursors. (Referenal coursor is a special type of Oracle package). You will also need to change the way CF accesses the stored proceedure as well.

4)Views,Indexes, Triggers and Primary (and forgien)Key Columns: You will need to create those as well. If you're using SQL+ you need to programatcally use the alter table command to deal with these items.

5) Identety Columns are called sequences and are created programatcally if you're using SQL+ using the CREATE SEQUENCE command

6) SQL +. Although there are GUIs such as Toad out there that will help manage your database, one fine day you might encounter a project that can only be accessed in SQL+. Incomparison MS Query Analizer is more feature rich. (I'm sure that a few of my fellow CF Talkers will say how wonderful SQL+ is and how it provides hard access to everything on e needs from a simple command line)

7) Security: SQL Server provides the options of using NT authentication for development machines... No such option for Oracle. 

8) Loading data. Loading data into oracle is always intesting if you're using SQL Loader. If you're using SQL+ you will need to create a package to load data from a comma delimited file and use SQL Loader to interpret the data.

Oracle is a great database (and sometimes expensive)for high traffic sites that works on many differnet platforms besides for windows however, its not for the feight of heart... and requires a long term commitment to the product. 

Jeremy

I have an Off Topic question for the list.

I have a few databases that I was thinking of migrating from SQL 2000 to
Oracle 8.1.7.1.5 .I am wondering two things:

1) Will the SQL in my CF Templates still work after the migration?

2) Are there any major pitfalls or recommendations you could give me in
terms of the actual migration?

Any help is appreciated.

Michael


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




RE: Orphaned Files

2003-11-04 Thread Bryan F. Hogan
Thanks I have tried that but don't use it because of in not being 100% reliable. Even the delete method is not 100% but it
seems a little better.

Thanks for your reply.

-Original Message-
From: Massimo Foti [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 10:45 AM
To: CF-Talk
Subject: Re: Orphaned Files

Check DW's Help for orphaned files.

The report DW creates isn't totally realible, because it's unable to
properly track dynamically generated links.

Hope it may help


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

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




RE: News Feed for NFL games

2003-11-04 Thread Tony Weeg
for me, I couldn't believe it until johnny madden told us how bright mr
belichick was...man was that good.also I put $50 on new england getting 3,
so at first I was like WOAH, then I was like, THANKS DELTHA!

:)

...tony

tony weeg
senior web applications architect
navtrak, inc.
www.navtrak.net
[EMAIL PROTECTED]
410.548.2337

-Original Message-
From: Haggerty, Mike [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 10:43 AM
To: CF-Talk
Subject: RE: News Feed for NFL games

If Mike Dinowitz isn't here to remind us it's OT, it's not OT.

Was anyone else blown away by the genius behind that safety last night?

M

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Monday, November 03, 2003 5:12 PM
To: CF-Talk
Subject: RE: News Feed for NFL games

Er, is this topic necessary fro CF-Talk?


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




RE: CFMX install error

2003-11-04 Thread Paul Vernon
Turn off the Show friendly errors option in IE and try again. The error
message you receive will be far more useful then.

 
Paul

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




Re:FW: Not Subscribed: OT: SQL Server to Oracle migration

2003-11-04 Thread Dave Carabetta
2) Join syntax: SQL Server will often add SQL Server specific text when you 
create a join through its wizards. As long as you're writing toward the 
ANSI SQL spec you should be OK.


As he mentioned that he's porting to Oracle 8i, it's worth noting that 8i 
does not support ANSI outer join syntax from what I understand. You'll need 
to use Oracle's proprietary way until you move to 9i.

Regards,
Dave.


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




RE: what do I need to know about CF 4.5

2003-11-04 Thread Sandy Clark
Don't use duplicate() on query recordsets.Nasty nasty bug there. (works
fine in CF5 and MX)

_

From: Michael Hodgdon [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 10:15 AM
To: CF-Talk
Subject: what do I need to know about CF 4.5

I have picked up a project and the client does not want to move from 4.5 to
MX.I am used to coding under 5.0 and MX and was wondering some of the know
bugs and differences between these environments.Could anyone give some
general guidelines?

thank you

_


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




RE: CFMX install error

2003-11-04 Thread Yves Arsenault
Where would I find that?
-Original Message-
From: Paul Vernon [mailto:[EMAIL PROTECTED]
Sent: 4 novembre 2003 12:00
To: CF-Talk
Subject: RE: CFMX install error

Turn off the Show friendly errors option in IE and try again. The error
message you receive will be far more useful then.

Paul


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




RE: what do I need to know about CF 4.5

2003-11-04 Thread Raymond Camden
Wasn't that fixed by 4.5.1?


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




RE: CFMX install error

2003-11-04 Thread d.a.collie
tools  internet options  advanced then its in that list

	-Original Message-
	From: Yves Arsenault
	Sent: 04 November 2003 16:08
	To: CF-Talk
	Subject: RE: CFMX install error
	
	
	Where would I find that?
	-Original Message-
	From: Paul Vernon 
	Sent: 4 novembre 2003 12:00
	To: CF-Talk
	Subject: RE: CFMX install error
	
	Turn off the Show friendly errors option in IE and try again.
The error
	message you receive will be far more useful then.
	
	Paul


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




RE: Valid e-mail address characters and format

2003-11-04 Thread Dave Watts
 Is [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 a valid e-mail address?

Yes, it is.

 What about [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]?

I don't think that is, but I'm not absolutely sure. I'd check the
appropriate RFC, or wait for Jochem's definitive answer.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

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




RE: Might be OT: MVDB -- UniData etc.

2003-11-04 Thread John Stanley
Hello everyone. Okay I got connected to my COM object. I can view individual
server properties or results from methods that are simple objects. What I
cannot do is view the results from a Complex Object Type like the
search_stuff  variable below. I know there is a CFMX bug that does not
allow the cfdump tag to be used in this instance, but whatever method I try
gives me either the cannot display Complex Objects error message or the
there is no method called Item MX bug (Bug # 44527). I think I can do this
with a loop, but am unsure how to proceedbecause I dont know what
delimiters are being used. I have tried to test to see if the object is an
array using ArrayLen and got the following error (Object of type class
coldfusion.runtime.com.ComProxy cannot be used as an array), so that's out.

 
So i tested the object as a structutre using the isStruct function and it
came back with Yes.

 
So then I created a structure loop:

 
cfloop collection=#search_stuff# item=place
#place#br
 /cfloop

 
and get the good old error (java.lang.NoSuchMethodException: There is no
method called Item.)

 
So cold fusion recognizes the object as a structure, but cannot, at least in
the syntax I am using display it's contents. 

 
There has got to be a way to display this COM data in CF.

 
See my code below for reference.



cfif NOT isDefined(miler)
 cfobject action="" type=COM class=PCMServer.PCMServer.1
name=miler
 /cfif

 
cfset this_id = miler.ID
cfset this_name = miler.ProductName
cfset version = miler.ProductVersion
cfset valid = miler.valid
cfset errorcode = miler.errorcode
cfset numregions = miler.numregions
cfset debuglevel = miler.debuglevel
cfset defaultregion = miler.defaultregion 
cfset this_trip = miler.NewTrip(#defaultregion#)
cfset testing = miler.CalcDistance2(Belleville, Mi,Waterford, Mi,2)
cfset search_stuff = miler.GetPickList(Belleville, Mi,NA,2)

 
cfoutput

 
#this_id#br#this_name#br#version#br#valid#br#errorcode#br#numregio
ns#br#debuglevel#br#defaultregion#br#this_trip.ID#br#testing#
cfloop collection=#search_stuff# item=place
#place#br
 /cfloop 
/cfoutput


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




RE: News Feed for NFL games

2003-11-04 Thread Dave Watts
 If Mike Dinowitz isn't here to remind us it's OT, it's not 
 OT.

Ok then, by that logic, if Mike isn't at home to tell me not to take a dump
on his doorstep, it's ok for me to do so. Thanks for the clarification!
Mike, you might want to watch your step tonight, ok?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

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




COM Object Misery

2003-11-04 Thread John Stanley
Wrong subject in last postsorry about that

Hello everyone. Okay I got connected to my COM object. I can view individual
server properties or results from methods that are simple objects. What I
cannot do is view the results from a Complex Object Type like the
search_stuff  variable below. I know there is a CFMX bug that does not
allow the cfdump tag to be used in this instance, but whatever method I try
gives me either the cannot display Complex Objects error message or the
there is no method called Item MX bug (Bug # 44527). I think I can do this
with a loop, but am unsure how to proceedbecause I dont know what
delimiters are being used. I have tried to test to see if the object is an
array using ArrayLen and got the following error (Object of type class
coldfusion.runtime.com.ComProxy cannot be used as an array), so that's out.

 
So i tested the object as a structutre using the isStruct function and it
came back with Yes.

 
So then I created a structure loop:

 
cfloop collection=#search_stuff# item=place
#place#br
 /cfloop

 
and get the good old error (java.lang.NoSuchMethodException: There is no
method called Item.)

 
So cold fusion recognizes the object as a structure, but cannot, at least in
the syntax I am using display it's contents. 

 
There has got to be a way to display this COM data in CF.

 
See my code below for reference.



cfif NOT isDefined(miler)
 cfobject action="" type=COM class=PCMServer.PCMServer.1
name=miler
 /cfif

 
cfset this_id = miler.ID
cfset this_name = miler.ProductName
cfset version = miler.ProductVersion
cfset valid = miler.valid
cfset errorcode = miler.errorcode
cfset numregions = miler.numregions
cfset debuglevel = miler.debuglevel
cfset defaultregion = miler.defaultregion 
cfset this_trip = miler.NewTrip(#defaultregion#)
cfset testing = miler.CalcDistance2(Belleville, Mi,Waterford, Mi,2)
cfset search_stuff = miler.GetPickList(Belleville, Mi,NA,2)

 
cfoutput

 
#this_id#br#this_name#br#version#br#valid#br#errorcode#br#numregio
ns#br#debuglevel#br#defaultregion#br#this_trip.ID#br#testing#
cfloop collection=#search_stuff# item=place
#place#br
 /cfloop 
/cfoutput


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




RE: Valid e-mail address characters and format

2003-11-04 Thread Douglas.Knudsen
two things were left and low on my priority list: excel extracts and adding the CENTER field and code to handle this field.As the ap currently stands, it is in production already.
http://10.10.90.210/customerservice/csf

 
DK

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 11:21 AM
To: CF-Talk
Subject: RE: Valid e-mail address characters and format

 Is [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 a valid e-mail address?

Yes, it is.

 What about [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]?

I don't think that is, but I'm not absolutely sure. I'd check the
appropriate RFC, or wait for Jochem's definitive answer.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

_


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




RE: CFMX install error

2003-11-04 Thread Yves Arsenault
Thanks,

I still get 500 Internal Server Error

The server encountered an internal error or misconfiguration and was unable
to complete your request.
Please contact the server administrator, [EMAIL PROTECTED] and inform them of
the time the error occurred, and anything you might have done that may have
caused the error.

More information about this error may be available in the server error log.

Yves

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 4 novembre 2003 12:17
To: CF-Talk
Subject: RE: CFMX install error

tools  internet options  advanced then its in that list

-Original Message-
From: Yves Arsenault
Sent: 04 November 2003 16:08
To: CF-Talk
Subject: RE: CFMX install error

Where would I find that?
 -Original Message-
 From: Paul Vernon
 Sent: 4 novembre 2003 12:00
 To: CF-Talk
 Subject: RE: CFMX install error

 Turn off the Show friendly errors option in IE and try again.
The error
 message you receive will be far more useful then.

 Paul


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




RSS Web Client?

2003-11-04 Thread Suyer, Ed [PRD Non-JJ]
Hi folks,

I'd like to add these MSDN technotes to my website:

http://msdn.microsoft.com/rss.xml

Which RSS clients/readers do you recommend? CF or ASP or ASP.NET only
please.

TIA!


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




RE: News Feed for NFL games

2003-11-04 Thread Haggerty, Mike
Unless your excrement is in a burning bag and you knocked on my door
then ran off and hid behind the bushes to watch, it isn't a prank.

Just don't eat any corn before you come over.

M

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 11:24 AM
To: CF-Talk
Subject: RE: News Feed for NFL games

 If Mike Dinowitz isn't here to remind us it's OT, it's not 
 OT.

Ok then, by that logic, if Mike isn't at home to tell me not to take a
dump
on his doorstep, it's ok for me to do so. Thanks for the clarification!
Mike, you might want to watch your step tonight, ok?

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




Repeating Header/Footer

2003-11-04 Thread Tangorre, Michael
Anyone know how to get a header or footer to repeat when printing off a
webpage?
I have a webpage that when printed out is 5 pages... I would like to have a
header and footer print out on each page... Someone mentioned they thought
it could be done using CSS..

Any ideas?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: News Feed for NFL games

2003-11-04 Thread Jeff Small
On Tue, 4 Nov 2003 11:23:50 -0500
Dave Watts [EMAIL PROTECTED] wrote:
Ok then, by that logic, if Mike isn't at home to tell me 
not to take a dump
on his doorstep, it's ok for me to do so. Thanks for the 
clarification!
Mike, you might want to watch your step tonight, ok?

Great...now I've got THAT image in my head. 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: what do I need to know about CF 4.5

2003-11-04 Thread Sandy Clark
Nope, never got fixed til 5

_

From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 11:09 AM
To: CF-Talk
Subject: RE: what do I need to know about CF 4.5

Wasn't that fixed by 4.5.1?

_


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




RE: Query to Stored Proc

2003-11-04 Thread Lonny Eckert
Hi Mike,

I can't answer your question in regard to SQL 2K Enterprise, but if anyone is interested here is how I do dynamic queries in Oracle. I highly recommend that you put dynamic stored proc calls such as these in their own catch-try blocks as erroneous queries will compile and subsequently may even lock up CF. Debugging these things can be a real pain.

Basically the query is created as a string, output through a refcursor.
**

PROCEDURE get_employee_search_results
(
p_employee_idINemployees.employee_id%TYPE,
p_employer_idINemployers.employer_id%TYPE,
p_lastnameINemployees.last_name%TYPE,
p_firstnameINemployees.first_name%TYPE,
p_ssnINemployees.ssn%TYPE,
p_employer_name INemployers.name%TYPE,
cur_employee_search_results OUT REFCURSORTYPE,
p_success_flagOUT NUMBER,
p_process_messageOUT VARCHAR2
)
IS

v_1 LONG;
v_lastname VARCHAR2(40);
v_firstname VARCHAR2(40);
v_employer_name VARCHAR2(100);

BEGIN
IF instr(p_lastname,CHR(39))  0 THEN
v_lastname := REPLACE(p_lastname,CHR(39),null);
END IF;
IF instr(p_firstname,CHR(39))  0 THEN
v_firstname := REPLACE(p_firstname,CHR(39),null);
END IF;
IF instr(p_employer_name,CHR(39))  0 THEN
v_employer_name := REPLACE(p_employer_name,CHR(39),null);
END IF;

v_1 := 'SELECT /*+FIRST_ROWS */ ee.first_name, ';
v_1 := v_1 || 'ee.last_name, ';
v_1 := v_1 || 'ee.active_flag, ';
v_1 := v_1 || 'ee.employee_id, ';
v_1 := v_1 || 'TO_CHAR(ee.dob,' || CHR(39) || 'MM/DD' || CHR(39) || ') dob, ';
v_1 := v_1 || 'decode(ee.logon_name,null,' || CHR(39) || 'Not Present' || CHR(39) || ',' || CHR(39) || 'Present' || CHR(39) || ') AS logon, ';
v_1 := v_1 || 'SUBSTR(ee.ssn,LENGTH(ee.ssn) - 3, LENGTH(ee.ssn)) ssn, ';
v_1 := v_1 || 'NVL(er.name,' || CHR(39) || 'Unknown' || CHR(39) || ') AS namePart, ';
v_1 := v_1 || 'er.name ';
v_1 := v_1 || 'FROM employees ee, employers er ';
v_1 := v_1 || 'WHERE ee.employer_id = er.employer_id ';

IF p_employee_id IS NOT NULL THEN
v_1 := v_1 || ' AND ee.employee_id =' || p_employee_id;
END IF;

IF p_employer_id IS NOT NULL THEN
v_1 := v_1 || ' AND ee.employer_id =' || p_employer_id;
END IF;

IF p_lastname IS NOT NULL THEN
IF instr(p_lastname,CHR(39)) = 0 THEN
v_1 := v_1 || ' AND UPPER(ee.last_name) LIKE UPPER(' || CHR(39) || p_lastname || '%' || CHR(39) || ')';
ELSE
v_1 := v_1 || ' AND UPPER(REPLACE(ee.last_name,CHR(39),null)) LIKE UPPER(' || CHR(39) || v_lastname || '%' || CHR(39) || ')';
END IF;
END IF;

IF p_firstname IS NOT NULL THEN
IF instr(p_firstname,CHR(39)) = 0 THEN
v_1 := v_1 || ' AND UPPER(ee.first_name) LIKE UPPER(' || CHR(39) || p_firstname || '%' || CHR(39) || ')';
ELSE
v_1 := v_1 || ' AND UPPER(REPLACE(ee.first_name,CHR(39),null)) LIKE UPPER(' || CHR(39) || v_firstname || '%' || CHR(39) || ')';
END IF;
END IF;

IF p_ssn IS NOT NULL THEN
v_1 := v_1 || ' AND ee.ssn LIKE ' || CHR(39) || '%' || p_ssn || '%' || CHR(39);
END IF;

IF p_employer_name IS NOT NULL THEN
IF instr(p_employer_name,CHR(39)) = 0 THEN
v_1 := v_1 || ' AND UPPER(er.name) LIKE UPPER(' || CHR(39) || p_employer_name || '%' || CHR(39) || ')';
ELSE
v_1 := v_1 || ' AND UPPER(REPLACE(er.name,CHR(39),null)) LIKE UPPER(' || CHR(39) || v_employer_name || '%' || CHR(39) || ')';
END IF;
END IF;

OPEN cur_employee_search_results FOR v_1;
p_success_flag := 1;
p_process_message := 'Query successful';

EXCEPTION
WHEN OTHERS THEN
p_success_flag := 0;
p_process_message := 'Query failure: ' || SUBSTR(SQLERRM,1,150);
END get_employee_search_results;
***
[Lonny Eckert]-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 5:57 AM
To: CF-Talk
Subject: Query to Stored Proc

How would you rework the logic in the WHERE clause to get this query put
into a stored proc?
Can you put conditional logic in the WHERE clause inside a stored proc?

SQL 2K Enterprise

cfquery name=selectOpportunityResults datasource=otis
SELECT
O.opportunityId,
O.title,
O.lastUpdateUserId,
O.lastUpdateOn,
O.createDate,
U1.firstName AS creatorFirstName,
U1.lastName AS creatorLastName,
U1.emailAddress AS creatorEmailAddress,
U2.firstName AS updaterFirstName,
U2.lastName AS updaterLastName,
U2.emailAddress AS updaterEmailAddress,
P.phaseName
FROM
tbl_opportunity O
LEFT JOIN tbl_user U1 ON (O.createUserId = U1.userId)
LEFT JOIN tbl_user U2 ON (O.lastUpdateUserId = U2.userId)
LEFT JOIN tbl_phase P ON (O.phaseId = P.phaseId)
WHERE
1=0
cfif form.rfpNumber NEQ 
OR O.rfpNumber = '#form.rfpNumber#'
/cfif
cfif form.title NEQ 
OR O.title = '#form.title#'
/cfif
cfif form.naicsCode NEQ 
OR O.naicsCode = '#form.naicsCode#'
/cfif
cfif form.costCenterLocation NEQ -1
OR O.costCenterId = '#form.costCenterLocation#'
/cfif
cfif form.procurementType NEQ -1
OR O.procurementTypeId = '#form.procurementType#'
/cfif
cfif form.awardType NEQ -1
OR O.awardTypeId = '#form.awardType#'
/cfif
cfif form.classification NEQ -1
OR O.classificationId = '#form.classification#'
/cfif
cfif 

Win 2003 SBS

2003-11-04 Thread Jeffrey Pratte
I am buying a new box to use as a Cold Fusion server. I was thinking about buying the Microsoft Windows Small Business Server 2003 premium edition ($1499), since it comes with Win 2003, and SQL Server. Does anyone have experience with this? Is it a good choice?

Thanks, jeff
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Setting a page to not timeout

2003-11-04 Thread DeMarco, Alex
We have a process that we want to run to completion.Is there any way
to set an infinite timeout?

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




RE: CFMX install error

2003-11-04 Thread Yves Arsenault
I get this error in my cfserver.log file...

error Deployer Service failed to deploy file:/opt/coldfusionmx/
* Unable to create file path
/opt/coldfusionmx/wwwroot/WEB-INF/sessions/
* null

I'm starting to get desperate..

Yves

-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]
Sent: 4 novembre 2003 12:20
To: CF-Talk
Subject: RE: CFMX install error

Thanks,

I still get 500 Internal Server Error

The server encountered an internal error or misconfiguration and was
unable
to complete your request.
Please contact the server administrator, [EMAIL PROTECTED] and inform them
of
the time the error occurred, and anything you might have done that may
have
caused the error.

More information about this error may be available in the server error
log.

Yves

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: 4 novembre 2003 12:17
 To: CF-Talk
 Subject: RE: CFMX install error

 tools  internet options  advanced then its in that list

 -Original Message-
 From: Yves Arsenault
 Sent: 04 November 2003 16:08
 To: CF-Talk
 Subject: RE: CFMX install error

 Where would I find that?
-Original Message-
From: Paul Vernon
Sent: 4 novembre 2003 12:00
To: CF-Talk
Subject: RE: CFMX install error

Turn off the Show friendly errors option in IE and try again.
 The error
message you receive will be far more useful then.

Paul


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




RE: Win 2003 SBS

2003-11-04 Thread Dan Phillips \(CFXHosting.com\)
We have a few clients running dedicated servers with this setup. No
problems to report so far (that they have made me aware of anyway).
Careful running Win, CF, and SQL on the same box though. Load it up with
RAM and keep an eye on traffic. 

Dan Phillips
www.CFXHosting.com 
1-866-239-4678 x105
[EMAIL PROTECTED]

-Original Message-
From: Jeffrey Pratte [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 10:46 AM
To: CF-Talk
Subject: Win 2003 SBS

I am buying a new box to use as a Cold Fusion server. I was thinking
about buying the Microsoft Windows Small Business Server 2003 premium
edition ($1499), since it comes with Win 2003, and SQL Server. Does
anyone have experience with this? Is it a good choice?

Thanks, jeff

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




RE: Setting a page to not timeout

2003-11-04 Thread Dave Watts
 We have a process that we want to run to completion. Is there 
 any way to set an infinite timeout?

You have several options. You could clear the checkbox in the CF
Administrator which causes pages to timeout after a set time, although this
would apply to all pages and I really wouldn't recommend it.

If you're using CF 5 or earlier, you can specify a RequestTimeout URL
parameter within the link to the page, and give it a really large value so
that it has sufficient time to run.

If you're using CFMX, you can specify a REQUESTTIMEOUT attribute within a
CFSETTING tag:

cfsetting requesttimeout=999

The attribute in either case specifies a number of seconds, I believe.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

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




RE: Setting a page to not timeout

2003-11-04 Thread Craig Dudley
requesttimeout=0 ?

 
Might do it, you could also stick some huge number in place of the zero
if that doesn't work.

	-Original Message-
	From: DeMarco, Alex [mailto:[EMAIL PROTECTED] 
	Sent: 04 November 2003 16:55
	To: CF-Talk
	Subject: Setting a page to not timeout
	
	
	We have a process that we want to run to completion.Is there
any way
	to set an infinite timeout?
	
	- Alex 
_

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




RE: Win 2003 SBS

2003-11-04 Thread Dave Watts
 I am buying a new box to use as a Cold Fusion server. I was 
 thinking about buying the Microsoft Windows Small Business 
 Server 2003 premium edition ($1499), since it comes with Win 
 2003, and SQL Server. Does anyone have experience with this? 
 Is it a good choice?

This might be ok for internal sites at relatively small locations, but I
really wouldn't recommend it for publicly accessible sites, due to the
performance and security ramifications of having your database server and
your web/application server on the same machine.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

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




RE: News Feed for NFL games

2003-11-04 Thread Ben Densmore
That was classic. I laughed my a** off when I read that Dave.

Ben

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 11:24 AM
To: CF-Talk
Subject: RE: News Feed for NFL games

 If Mike Dinowitz isn't here to remind us it's OT, it's not 
 OT.

Ok then, by that logic, if Mike isn't at home to tell me not to take a
dump
on his doorstep, it's ok for me to do so. Thanks for the clarification!
Mike, you might want to watch your step tonight, ok?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

_


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




Re: Win 2003 SBS

2003-11-04 Thread Cutter (CF-Talk)
I haven't heard anything bad about Win 2003 SBS, in fact I've heard a 
lot of good things. If you are going to use it for in-house development 
I would think It's a deal, but I wouldn't publicly host on a machine 
that is also housing my SQL server for security purposes. Just my $.02

Cutter

Jeffrey Pratte wrote:
 I am buying a new box to use as a Cold Fusion server. I was thinking 
 about buying the Microsoft Windows Small Business Server 2003 premium 
 edition ($1499), since it comes with Win 2003, and SQL Server. Does 
 anyone have experience with this? Is it a good choice?
 
 Thanks, jeff
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Win 2003 SBS

2003-11-04 Thread Dan Phillips \(CFXHosting.com\)
Dave do you have any docs on something like that? I was discussing it
the other day with someone and they requested some documentation so that
they can show their boss. The guy wants to go to a separate SQL server
but the boss won't let him until the cost is justified. 

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:11 PM
To: CF-Talk
Subject: RE: Win 2003 SBS

 I am buying a new box to use as a Cold Fusion server. I was
 thinking about buying the Microsoft Windows Small Business 
 Server 2003 premium edition ($1499), since it comes with Win 
 2003, and SQL Server. Does anyone have experience with this? 
 Is it a good choice?

This might be ok for internal sites at relatively small locations, but I
really wouldn't recommend it for publicly accessible sites, due to the
performance and security ramifications of having your database server
and your web/application server on the same machine.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


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




RE: Win 2003 SBS

2003-11-04 Thread Tony Weeg
yeah coupled apps/os's are a bit scary 

...tony

tony weeg
senior web applications architect
navtrak, inc.
www.navtrak.net
[EMAIL PROTECTED]
410.548.2337

-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:05 PM
To: CF-Talk
Subject: Re: Win 2003 SBS

I haven't heard anything bad about Win 2003 SBS, in fact I've heard a lot of
good things. If you are going to use it for in-house development I would
think It's a deal, but I wouldn't publicly host on a machine that is also
housing my SQL server for security purposes. Just my $.02

Cutter

Jeffrey Pratte wrote:
 I am buying a new box to use as a Cold Fusion server. I was thinking 
 about buying the Microsoft Windows Small Business Server 2003 premium 
 edition ($1499), since it comes with Win 2003, and SQL Server. Does 
 anyone have experience with this? Is it a good choice?
 
 Thanks, jeff
 

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




Re: Ouch! No MX2004 support for NT?

2003-11-04 Thread Calvin Ward
Possibly more important is this: http://www.microsoft.com/ntserver/ProductInfo/Availability/Retiring.asp

For example:
January 1, 2004 Beginning on this date, non-security hotfixes are no longer available. 

- Calvin
- Original Message - 
From: [EMAIL PROTECTED] 
To: CF-Talk 
Sent: Monday, November 03, 2003 11:44 PM
Subject: Ouch! No MX2004 support for NT?

Just learned that the MX 2004 range does not support NT?

Must press them to upgrade :)

Important:This e-mail is intended for the use of the addressee and may contain information that is confidential, commercially valuable or subject to legal or parliamentary privilege.If you are not the intended recipient you are notified that any review, re-transmission, disclosure, use or dissemination of this communication is strictly prohibited by several Commonwealth Acts of Parliament.If you have received this communication in error please notify the sender immediately and delete all copies of this transmission together with any attachments.


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




RE: COM Object Misery

2003-11-04 Thread Dain Anderson
Hi John,

Give this a shot:

cfloop collection=#search_stuff# item=place
#search_stuff[place]#br
/cfloop

-Dain

-Original Message-
From:	John Stanley [mailto:[EMAIL PROTECTED]
Sent:	Tue 11/4/2003 11:18 AM
To:	CF-Talk
Cc:	
Subject:	COM Object Misery
Wrong subject in last postsorry about that

Hello everyone. Okay I got connected to my COM object. I can view individual
server properties or results from methods that are simple objects. What I
cannot do is view the results from a Complex Object Type like the
search_stuff  variable below. I know there is a CFMX bug that does not
allow the cfdump tag to be used in this instance, but whatever method I try
gives me either the cannot display Complex Objects error message or the
there is no method called Item MX bug (Bug # 44527). I think I can do this
with a loop, but am unsure how to proceedbecause I dont know what
delimiters are being used. I have tried to test to see if the object is an
array using ArrayLen and got the following error (Object of type class
coldfusion.runtime.com.ComProxy cannot be used as an array), so that's out.

 
So i tested the object as a structutre using the isStruct function and it
came back with Yes.

 
So then I created a structure loop:

 
cfloop collection=#search_stuff# item=place
#place#br
 /cfloop

 
and get the good old error (java.lang.NoSuchMethodException: There is no
method called Item.)

 
So cold fusion recognizes the object as a structure, but cannot, at least in
the syntax I am using display it's contents. 

 
There has got to be a way to display this COM data in CF.

 
See my code below for reference.



cfif NOT isDefined(miler)
 cfobject action="" type=COM class=PCMServer.PCMServer.1
name=miler
 /cfif

 
cfset this_id = miler.ID
cfset this_name = miler.ProductName
cfset version = miler.ProductVersion
cfset valid = miler.valid
cfset errorcode = miler.errorcode
cfset numregions = miler.numregions
cfset debuglevel = miler.debuglevel
cfset defaultregion = miler.defaultregion 
cfset this_trip = miler.NewTrip(#defaultregion#)
cfset testing = miler.CalcDistance2(Belleville, Mi,Waterford, Mi,2)
cfset search_stuff = miler.GetPickList(Belleville, Mi,NA,2)

 
cfoutput

 
#this_id#br#this_name#br#version#br#valid#br#errorcode#br#numregio
ns#br#debuglevel#br#defaultregion#br#this_trip.ID#br#testing#
cfloop collection=#search_stuff# item=place
#place#br
 /cfloop 
/cfoutput


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




RE: Win 2003 SBS

2003-11-04 Thread Dave Watts
 Dave do you have any docs on something like that? I was 
 discussing it the other day with someone and they requested 
 some documentation so that they can show their boss. The 
 guy wants to go to a separate SQL server but the boss 
 won't let him until the cost is justified.

I don't really have any formal documentation handy for this, but you can
pick up any book on web application security and it'll be in there
somewhere. As for whether the cost is justified, it's often hard to perform
cost-benefit analysis until it's too late.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

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




CF 6.1 Linux and dBase

2003-11-04 Thread Tyler Clendenin
Now this question is quite advanced but if anyone has any suggestions worth sharing, they don't even have to be solutions, just suggestions of where to look i would be most appreciative.

I am writing an app which needs to import data from a dbf and a mdx file quite regularly.i want to allow the user to upload the two files via a form.the issue is reading the data.i suspect the only way for me to do this is to create a datasource for it through the factory.(if anyone could give me links to show me how to do this i would be appreciative) but then i cannot find any information about coldfusion and dbase.

does anyone know where i can get jdbc drivers for dbase for linux (not sure if that qualifier is necessary).i have little experience working with linux or with dbase.so all help is welcome.once again please help no one ever responds to my questions.

Tyler Clendenin
GSL Solutions
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: OT: Flash Remoting Question

2003-11-04 Thread Calvin Ward
You'll need JRunScripts mapped in the site for Flash Remoting to work:
http://www.macromedia.com/support/flash_remoting/ts/documents/iis_gateway_connection.htm

Thanks,
Calvin
- Original Message - 
From: Brook Davies 
To: CF-Talk 
Sent: Monday, November 03, 2003 9:29 PM
Subject: Re: OT: Flash Remoting Question

I don't see anything about downloads for the server. Everything I have read 
says they are installed by default. Do I need a specific mapping in IIS 
enabled?

 Brook

At 06:04 PM 11/3/2003, you wrote:
hi brook
u need to download some more stuff
just go to www.macromedia.com  go to flash remoting ;)



  When I try to call the flash gateway on our CFMX server, I get a 404 at
  
 http://localhost/flashservices/gateway/.http://localhost/flashservices/gateway/. 
 Isn't flash remoting installed
  bydefault? I can't find any info on this!
 
  Brook
 
 
 

--
[

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




RE: Archiving CF 5.0 log files

2003-11-04 Thread Earl, George
Neil said:
 why dont you just copy them out of the log files out of the 
 CFUSION/LOG folder into an archive and then delete the 
 existing ones..CF will automatically create new .log files.
 
Because I want to save a couple of weeks' worth of the current log file
entries so they are readily available through CF Admin . . .

George
[EMAIL PROTECTED]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: COM Object Misery

2003-11-04 Thread John Stanley
Thanks Dain, but get the same there is no method called item error.

-Original Message-
From: Dain Anderson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 12:13 PM
To: CF-Talk
Subject: RE: COM Object Misery

Hi John,

Give this a shot:

cfloop collection=#search_stuff# item=place
#search_stuff[place]#br
/cfloop

-Dain

-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: Tue 11/4/2003 11:18 AM
To: CF-Talk
Cc: 
Subject: COM Object Misery
Wrong subject in last postsorry about that

Hello everyone. Okay I got connected to my COM object. I can view individual
server properties or results from methods that are simple objects. What I
cannot do is view the results from a Complex Object Type like the
search_stuff  variable below. I know there is a CFMX bug that does not
allow the cfdump tag to be used in this instance, but whatever method I try
gives me either the cannot display Complex Objects error message or the
there is no method called Item MX bug (Bug # 44527). I think I can do this
with a loop, but am unsure how to proceedbecause I dont know what
delimiters are being used. I have tried to test to see if the object is an
array using ArrayLen and got the following error (Object of type class
coldfusion.runtime.com.ComProxy cannot be used as an array), so that's out.

So i tested the object as a structutre using the isStruct function and it
came back with Yes.

So then I created a structure loop:

cfloop collection=#search_stuff# item=place
#place#br
/cfloop

and get the good old error (java.lang.NoSuchMethodException: There is no
method called Item.)

So cold fusion recognizes the object as a structure, but cannot, at least in
the syntax I am using display it's contents. 

There has got to be a way to display this COM data in CF.

See my code below for reference.

cfif NOT isDefined(miler)
cfobject action="" type=COM class=PCMServer.PCMServer.1
name=miler
/cfif

cfset this_id = miler.ID
cfset this_name = miler.ProductName
cfset version = miler.ProductVersion
cfset valid = miler.valid
cfset errorcode = miler.errorcode
cfset numregions = miler.numregions
cfset debuglevel = miler.debuglevel
cfset defaultregion = miler.defaultregion 
cfset this_trip = miler.NewTrip(#defaultregion#)
cfset testing = miler.CalcDistance2(Belleville, Mi,Waterford, Mi,2)
cfset search_stuff = miler.GetPickList(Belleville, Mi,NA,2)

cfoutput

#this_id#br#this_name#br#version#br#valid#br#errorcode#br#numregio
ns#br#debuglevel#br#defaultregion#br#this_trip.ID#br#testing#
cfloop collection=#search_stuff# item=place
#place#br
/cfloop 
/cfoutput

_


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




OT: Viewing client hard drive via web server.

2003-11-04 Thread Bushy
Hi,

I've tried everything from www.planet-source-code.com using ASP and ActiveX. The code does browse the server contents but I require to view the client hard drive.

I thought Active X would do the trick but...

Is there *anything* out there does does what I require?


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




RE: Win 2003 SBS

2003-11-04 Thread Mark W. Breneman
Dan what is considered Loaded with RAM in the context of a server with
Win, CF and SQL?





Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com
608.270.9770

-Original Message-
From: Dan Phillips (CFXHosting.com) [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 10:58 AM
To: CF-Talk
Subject: RE: Win 2003 SBS

We have a few clients running dedicated servers with this setup. No
problems to report so far (that they have made me aware of anyway).
Careful running Win, CF, and SQL on the same box though. Load it up with
RAM and keep an eye on traffic. 

Dan Phillips
www.CFXHosting.com 
1-866-239-4678 x105
[EMAIL PROTECTED]

-Original Message-
From: Jeffrey Pratte [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 10:46 AM
To: CF-Talk
Subject: Win 2003 SBS

I am buying a new box to use as a Cold Fusion server. I was thinking
about buying the Microsoft Windows Small Business Server 2003 premium
edition ($1499), since it comes with Win 2003, and SQL Server. Does
anyone have experience with this? Is it a good choice?

Thanks, jeff

_


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




Killing a session variable

2003-11-04 Thread brob
Hey guyshow do i kill a session variable so that I people can't log bck into the admin site.I just havent touched it in a long time and can't find the code I used!Thanks
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Killing a session variable

2003-11-04 Thread Bryan F. Hogan
StructDelete(structure, key [, indicatenotexisting ])

-Original Message-
From: brob [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 1:04 PM
To: CF-Talk
Subject: Killing a session variable

Hey guyshow do i kill a session variable so that I people can't log bck into the admin site.I just havent touched it in a
long time and can't find the code I used!Thanks

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




RE: Killing a session variable

2003-11-04 Thread Barney Boisvert
structDelete(session, myVarName, false)
-Original Message-
From: brob [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 10:04 AM
To: CF-Talk
Subject: Killing a session variable

Hey guyshow do i kill a session variable so that I people can't log bck
into the admin site.I just havent touched it in a long time and can't find
the code I used!Thanks

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




RE: Viewing client hard drive via web server.

2003-11-04 Thread Ben Densmore
ActiveX should have done what you needed. I know that a lot of the
online virus scanners and tools are built with ActiveX. Try looking up
the System.Management namespace in asp.net. I can't remember off the top
of my head if you can view a clients hard drive with that or not. I know
I wrote some code to view directories and files on PC's over the network
with asp.net, which you can do with CF as well.

Ben

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:39 PM
To: CF-Talk
Subject: OT: Viewing client hard drive via web server.

Hi,

I've tried everything from www.planet-source-code.com using ASP and
ActiveX. The code does browse the server contents but I require to view
the client hard drive.

I thought Active X would do the trick but...

Is there *anything* out there does does what I require?


_


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




RE: Novell to acquire SUSE

2003-11-04 Thread Joshua Miller
But if you go to the store RedHat costs what, like $30-$40? Granted the
Enterprise Version is expensive, but you can still buy the boxed version
of RedHat Linux which I'm sure will be as reliable as ever.

Personally I think that the free proving ground version is an
excellent idea, it will give users a current, up-to-date version of
Linux while not messing with currently installed Enterprise Level
applications. 

I think that constantly updating and screwing with an Enterprise server
is a bad idea - it opens the door to a lot of security issues. Install
security patches and then wait for the next industrial strength release
of RedHat Enterprise. In the meantime use the free version to evaluate
the new features.

On Tue, 2003-11-04 at 10:49, Dave Carabetta wrote:
 Redhat are not ending their free distros in fact they are extending
 the 
 free distro into a new release called Fedora. See
 http://fedora.redhat.com.
 
 
 Yes, I know about Fedora. Perhaps the most important sentence on the
 page 
 you refer to is this:
 
 It is not a supported product of Red Hat, Inc.
 
 This is public domain version of Linux that Red Hat is supporting so
 that 
 they can claim to still be providing a free version to the community.
 It's 
 not meant to be used in a production server environment. This version
 is a 
 proving ground for features that may or may not make it into their 
 hardened server versions.
 
 Are you willing to run mission-critical applications on this sort of 
 version? I'm not.
 
 Regards,
 Dave.
 
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Novell to acquire SUSE

2003-11-04 Thread Dave Watts
 But if you go to the store RedHat costs what, like $30-$40? 
 Granted the Enterprise Version is expensive, but you can 
 still buy the boxed version of RedHat Linux which I'm sure 
 will be as reliable as ever.

It is my understanding that RedHat is discontinuing all sales of RedHat
Linux, except for their Enterprise version. So, that'll leave you with two
options - download Fedora (which is completely unsupported) or buy RedHat
Enterprise.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

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




Re: Killing a session variable

2003-11-04 Thread Tom Kitta
cfset structClear(session)

TK
- Original Message - 
From: brob 
To: CF-Talk 
Sent: Tuesday, November 04, 2003 1:03 PM
Subject: Killing a session variable

Hey guyshow do i kill a session variable so that I people can't log bck into the admin site.I just havent touched it in a long time and can't find the code I used!Thanks

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




RE: Viewing client hard drive via web server.

2003-11-04 Thread Bushy
Have you made that code available on the net?

--Original Message Text---
From: Ben Densmore
Date: Tue, 4 Nov 2003 13:14:13 -0500

ActiveX should have done what you needed. I know that a lot of the
online virus scanners and tools are built with ActiveX. Try looking up
the System.Management namespace in asp.net. I can't remember off the top
of my head if you can view a clients hard drive with that or not. I know
I wrote some code to view directories and files on PC's over the network
with asp.net, which you can do with CF as well.

Ben

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:39 PM
To: CF-Talk
Subject: OT: Viewing client hard drive via web server.

Hi,

I've tried everything from www.planet-source-code.com using ASP and
ActiveX. The code does browse the server contents but I require to view
the client hard drive.

I thought Active X would do the trick but...

Is there *anything* out there does does what I require?

_


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




RE: Viewing client hard drive via web server.

2003-11-04 Thread Bushy
I've tried to do this with CF but it won't work. How did you do it?

--Original Message Text---
From: Ben Densmore
Date: Tue, 4 Nov 2003 13:14:13 -0500

ActiveX should have done what you needed. I know that a lot of the
online virus scanners and tools are built with ActiveX. Try looking up
the System.Management namespace in asp.net. I can't remember off the top
of my head if you can view a clients hard drive with that or not. I know
I wrote some code to view directories and files on PC's over the network
with asp.net, which you can do with CF as well.

Ben

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:39 PM
To: CF-Talk
Subject: OT: Viewing client hard drive via web server.

Hi,

I've tried everything from www.planet-source-code.com using ASP and
ActiveX. The code does browse the server contents but I require to view
the client hard drive.

I thought Active X would do the trick but...

Is there *anything* out there does does what I require?

_


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




Re: Novell to acquire SUSE

2003-11-04 Thread Tom Kitta
Well there is just a small problem with the enterprise edition, cost. It is very expensive solution as far as Linux goes. RH Linux 7.* was nice since it was a free download and had all the bells and whistles one needs. Now with Fedora we have not a very reliable version and Enterprise solution is hard to justify as a buy in view of MS server software or other Linux distributions. 

I guess it is time to look through Linux boards to see what the hardcore crowd is saying.

TK
- Original Message - 
From: Dave Watts 
To: CF-Talk 
Sent: Tuesday, November 04, 2003 1:28 PM
Subject: RE: Novell to acquire SUSE

 But if you go to the store RedHat costs what, like $30-$40? 
 Granted the Enterprise Version is expensive, but you can 
 still buy the boxed version of RedHat Linux which I'm sure 
 will be as reliable as ever.

It is my understanding that RedHat is discontinuing all sales of RedHat
Linux, except for their Enterprise version. So, that'll leave you with two
options - download Fedora (which is completely unsupported) or buy RedHat
Enterprise.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


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




RE: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
But if you go to the store RedHat costs what, like $30-$40? Granted the
Enterprise Version is expensive, but you can still buy the boxed version
of RedHat Linux which I'm sure will be as reliable as ever.

However, RH up to version 9 stops being supported (patches, errata, etc.) on 
Dec. 31, and RH 9 stops in April, 2004. That's not a lot of time. Then what 
happens? You're stuck with a non-supported platform. I'm not a Linux 
developer, so I don't plan on fixing security holes and bugs myself.

Personally I think that the free proving ground version is an
excellent idea, it will give users a current, up-to-date version of
Linux while not messing with currently installed Enterprise Level
applications.

I never said Fedora was a bad idea. I did say and will say that it's a bad 
idea to use it as a production server. You may disagree, but I'm not willing 
to bet my job and my business on an unsupported platform. Personal use is 
not the same as commercial use.

I think that constantly updating and screwing with an Enterprise server
is a bad idea - it opens the door to a lot of security issues. Install
security patches and then wait for the next industrial strength release
of RedHat Enterprise. In the meantime use the free version to evaluate
the new features.

This is exactly my point, however I'm not sure I agree with your security 
issues statement. I'm more inclined to argue that the need to constantly 
update my server to stay in line with supported platforms is just a pain in 
the a** and increases the risk of incompatibility with my critical software 
applications. Red Hat *used* to have a moderate release cycle back in the 
7.x days and earlier, but then hit hyperdrive when they decided to developer 
their Enterprise line and turn their regular Linux line into a more 
desktop-oriented product, where the demand for the latest and greatest 
features is much higher.

However, I was noting in my initial post that it was a shame that the 
Enterprise version of Red Hat is now cost-prohibitive for certain shops that 
are on a low budget. Further, with the Novell acquisition of SUSE, costs for 
running Linux in a commercial shop could rise significantly (pure 
speculation on my part). This seems to go completely counter to the whole 
popularity of Linux to begin with: reliable, yet free (at least, as far as 
the initial purchase, not the admin costs).

Regards,
Dave.


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




RE: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
  But if you go to the store RedHat costs what, like $30-$40?
  Granted the Enterprise Version is expensive, but you can
  still buy the boxed version of RedHat Linux which I'm sure
  will be as reliable as ever.

It is my understanding that RedHat is discontinuing all sales of RedHat
Linux, except for their Enterprise version. So, that'll leave you with two
options - download Fedora (which is completely unsupported) or buy RedHat
Enterprise.


That is correct. For more information, this link is very useful:

http://www.redhat.com/solutions/migration/rhl/rhn/

Regards,
Dave.


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




Re: Novell to acquire SUSE

2003-11-04 Thread Matt Liotta
I have blogged some commentary on this subject.

http://devilm.com/archives/62.html

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901

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




RE: Viewing client hard drive via web server.

2003-11-04 Thread Ben Densmore
Viewing directories across a network? You can just map a drive letter to
a folder on a system on the network then use cfdirectory. You need to
allow CF to have admin rights though I believe. I don't know if you
could read a users hard drive coming to your site though, unless you had
a com object written in ActiveX. I could be wrong on that, not sure.

Ben

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 1:30 PM
To: CF-Talk
Subject: RE: Viewing client hard drive via web server.

I've tried to do this with CF but it won't work. How did you do it?

--Original Message Text---
From: Ben Densmore
Date: Tue, 4 Nov 2003 13:14:13 -0500

ActiveX should have done what you needed. I know that a lot of the
online virus scanners and tools are built with ActiveX. Try looking up
the System.Management namespace in asp.net. I can't remember off the top
of my head if you can view a clients hard drive with that or not. I know
I wrote some code to view directories and files on PC's over the network
with asp.net, which you can do with CF as well.

Ben

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:39 PM
To: CF-Talk
Subject: OT: Viewing client hard drive via web server.

Hi,

I've tried everything from www.planet-source-code.com using ASP and
ActiveX. The code does browse the server contents but I require to view
the client hard drive.

I thought Active X would do the trick but...

Is there *anything* out there does does what I require?

_


_


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




RE: Novell to acquire SUSE

2003-11-04 Thread Joshua Miller
Wow, so the Workstation version will now be $179 for the basic install.
That sucks, I just switched my main computer over to RedHat from Windows
and I'm loving it, but at $179 I bet a lot of people will learn to love
Mandrake.

For workstation use however, I'm sure Fedora will be all that I (and
most others) need.

On Tue, 2003-11-04 at 13:28, Dave Watts wrote:
  But if you go to the store RedHat costs what, like $30-$40? 
  Granted the Enterprise Version is expensive, but you can 
  still buy the boxed version of RedHat Linux which I'm sure 
  will be as reliable as ever.
 
 It is my understanding that RedHat is discontinuing all sales of
 RedHat
 Linux, except for their Enterprise version. So, that'll leave you with
 two
 options - download Fedora (which is completely unsupported) or buy
 RedHat
 Enterprise.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444
 
 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Novell to acquire SUSE

2003-11-04 Thread Matt Liotta
 I never said Fedora was a bad idea. I did say and will say that it's a 
 bad
 idea to use it as a production server. You may disagree, but I'm not 
 willing
 to bet my job and my business on an unsupported platform. Personal use 
 is
 not the same as commercial use.

What is an unsupported platform anyway? Ever tried to get support from 
Microsoft for Windows? Ever found a bug in Windows and demanded that 
Microsoft fix it? There are plenty of companies that specialize in 
supporting platforms whether they be Windows, Solaris, or Linux, so its 
not like you can't get support if you want it even if you stay on Red 
Hat. Further, some of these organizations will even fix bugs in Linux 
for you if needed. Try and get that level of support with any other 
platform.

IMHO, the way to go is to bet on superior technology instead of 
superior marketing. I'll take a unsupported mature stable platform 
over a supported hole-ridden platform any day.

 This is exactly my point, however I'm not sure I agree with your 
 security
 issues statement. I'm more inclined to argue that the need to 
 constantly
 update my server to stay in line with supported platforms is just a 
 pain in
 the a** and increases the risk of incompatibility with my critical 
 software
 applications. Red Hat *used* to have a moderate release cycle back in 
 the
 7.x days and earlier, but then hit hyperdrive when they decided to 
 developer
 their Enterprise line and turn their regular Linux line into a more
 desktop-oriented product, where the demand for the latest and greatest
 features is much higher.

You don't have to upgrade your version of Red Hat to get bug fixes and 
security patches. The community releases updated RPMs very quickly for 
all combinations of kernel and glibc iterations. Further, there are 
services that allow for automatic updates of you installation if that 
is desirable.

 However, I was noting in my initial post that it was a shame that the
 Enterprise version of Red Hat is now cost-prohibitive for certain 
 shops that
 are on a low budget. Further, with the Novell acquisition of SUSE, 
 costs for
 running Linux in a commercial shop could rise significantly (pure
 speculation on my part). This seems to go completely counter to the 
 whole
 popularity of Linux to begin with: reliable, yet free (at least, as 
 far as
 the initial purchase, not the admin costs).

Linux is popular for many reasons and Red Hat's decisions won't affect 
that as Linux exists outside of Red Hat. There will always be 
distributions that are free as in beer.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901

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




Re: Novell to acquire SUSE

2003-11-04 Thread Matt Liotta
 It is my understanding that RedHat is discontinuing all sales of RedHat
 Linux, except for their Enterprise version. So, that'll leave you with 
 two
 options - download Fedora (which is completely unsupported) or buy 
 RedHat
 Enterprise.

Or use another distribution.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901

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




[Stats] CF-Talk: October 2003

2003-11-04 Thread Bill Doerrfeld
Searchable archives for this list are available at
http://www.listsearch.com/cf-talk.lasso

---
CF-Talk Stats
October, 2003
---

Note: Up/Down % as compared with September, 2003

Posts:3724 (Down 10%)
Authors:431 (Down2%)
Threads:805 (Up 8%)

Top 20 Contributors by Number of Posts

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




Using cfhttp to access FTP via IE

2003-11-04 Thread Bushy
Hi,

If I do the following from within IE I can access the server and contents

ftp://username:password@IPADDRESS/data

But within my app I'm using the following and it doesn't work.
Keeps telling me Connection Failure?

What am I doing wrong?

cfhttp url="">
method=get
username=username
password=password
resolveurl=yes


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




RE: Viewing client hard drive via web server.

2003-11-04 Thread Bushy
--Original Message Text---
From: Ben Densmore
Date: Tue, 4 Nov 2003 13:40:37 -0500

Viewing directories across a network? 

Yes but different domains.

You can just map a drive letter to
a folder on a system on the network then use cfdirectory. 

Tried that. It won't work.

You need to
allow CF to have admin rights though I believe. I don't know if you
could read a users hard drive coming to your site though, unless you had
a com object written in ActiveX. I could be wrong on that, not sure.

Ben

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 1:30 PM
To: CF-Talk
Subject: RE: Viewing client hard drive via web server.

I've tried to do this with CF but it won't work. How did you do it?

--Original Message Text---
From: Ben Densmore
Date: Tue, 4 Nov 2003 13:14:13 -0500

ActiveX should have done what you needed. I know that a lot of the
online virus scanners and tools are built with ActiveX. Try looking up
the System.Management namespace in asp.net. I can't remember off the top
of my head if you can view a clients hard drive with that or not. I know
I wrote some code to view directories and files on PC's over the network
with asp.net, which you can do with CF as well.

Ben

-Original Message-
From: Bushy [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:39 PM
To: CF-Talk
Subject: OT: Viewing client hard drive via web server.

Hi,

I've tried everything from www.planet-source-code.com using ASP and
ActiveX. The code does browse the server contents but I require to view
the client hard drive.

I thought Active X would do the trick but...

Is there *anything* out there does does what I require?

_

_


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




Re: Novell to acquire SUSE

2003-11-04 Thread Matt Liotta
 Wow, so the Workstation version will now be $179 for the basic install.
 That sucks, I just switched my main computer over to RedHat from 
 Windows
 and I'm loving it, but at $179 I bet a lot of people will learn to love
 Mandrake.

 For workstation use however, I'm sure Fedora will be all that I (and
 most others) need.

I actually think Sun will have the best chance with their Java Desktop, 
which is of course a Linux distribution.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901

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




Re: Using cfhttp to access FTP via IE

2003-11-04 Thread Jim Campbell
Is there any reason CFFTP wouldn't work for you?Does that fail as well?

- Jim

Bushy wrote:

 Hi,

 If I do the following from within IE I can access the server and contents

 ftp://username:password@IPADDRESS/data

 But within my app I'm using the following and it doesn't work.
 Keeps telling me Connection Failure?

 What am I doing wrong?

 cfhttp url="">
 method=get
 username=username
 password=password
 resolveurl=yes

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




  1   2   >