CFMX 6.1 install

2003-10-16 Thread Ryan Sabir
Hi all,

I just did a default install on Win 2000 (with IIS) of CFMX 6.1. It
didn't seem to give me an option to choose IIS as the web server, so I
chose the 'Set it up as a stand alone server'.

Now when I look at IIS, it appears that it has actually set up IIS to
serve the CFM files, as I can see the mappings to the jrun.dll files,
and the JRunScripts directory exists.

So does this mean my site is now set up with IIS as the web server,
and can be used in a production environment? Or is it using the
internal web server?

CFM pages are being served normally from the site, I don't have to at
the :8500 port number to the end of the URLs to see them.

thanks, bye!

---
Ryan Sabir
Newgency Pty Ltd
2a Broughton St
Paddington 2021
Sydney, Australia
Ph (02) 9331 2133
Fax (02) 9331 5199
Mobile: 0411 512 454
http://www.newgency.com/index.cfm?referer=rysig 

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




Managing CFC's

2003-10-16 Thread John McCosker
Hi,

I have been trying to figure out how to have my components in one central
location within an application so they are
available application wide.

Mmmm.. how do I do this,

Thanx,

J

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




RE: Is a Datasource really setup?

2003-10-16 Thread Andre Mohamed
Dwayne,

 
Try this:

 
cfscript
// Get the MX Service Factory...
factory =
CreateObject(java,coldfusion.server.ServiceFactory);
// Get the data source service...
dataSourceService = factory.dataSourceService;
// Finally, Get the datasources!
datasources = dataSourceService.getDataSources();
/cfscript

 
cfdump var=”#datasources#”

 
Might do the trick for you.

 
Andr

 
-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: 16 October 2003 02:14
To: CF-Talk
Subject: Is a Datasource really setup?

 
Is there some code that I can run to check the existance of datasource.
My code reporting that the tables in database does not exist. My host
ISP says that the Datasource has been registered with CF.This is a new
setup and I just don't think the datasource was setup correctly.Is
there any code that I can run to test it

Dwayne Cole, MS in MIS, MBA
Certified Advanced ColdFusion Developer
850-591-0212


_


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




RE: DateSubtract Like DateAdd?

2003-10-16 Thread Philip Arnold
Not to rub salt into the wound, but the documentation does say:
Number - Number of units of datepart to add to date (positive, to get
dates in the future; negative, to get dates in the past)

Sorry g

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 15, 2003 7:45 PM
To: CF-Talk
Subject: RE: DateSubtract Like DateAdd?

WOW Kinda of embarrasing.Thanks!

-- Original Message --
From: Barney Boisvert [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date:Wed, 15 Oct 2003 16:39:26 -0700

just make the interval negative.dateAdd(d, -14, now())
-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 15, 2003 4:33 PM
To: CF-Talk
Subject: DateSubtract Like DateAdd?


How about a dateSubtract function? Does anyone know it there is a
function
similar to the dateAdd Function that instead adding specified number of
days
or months it actually subtracts a specified number of days or months.
I
checked cflib.org but I could not find anything.

Dwayne Cole, MS in MIS, MBA
Florida AM University
Certified Advanced ColdFusion Developer
850-591-0212





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




Re: html emails with javascript in outlook

2003-10-16 Thread John McCosker
Thanks Thomas, thanks craig,

some very interesting points raised there.

After reading them I feel I should have known better really.

A good insight into spamming there, good in the sense that I can better
prevent it in the future.
I'll send all as HTML attachments.

Respectfully,

J

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




RE: Managing CFC's

2003-10-16 Thread Tangorre, Michael
I am not sure if this fits your style, but this is how I usually organize my
sites.

 
Root
 image
 stylesheet
 _javascript_
 udf
 cfc
 etc

 
Now, putting all your CFCs in a central location off the root of your site
will allow you straightforward access to them ( root.cfc.cfcName ).

 
HTH,

 
Mike

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 5:49 AM
To: CF-Talk
Subject: Managing CFC's

Hi,

I have been trying to figure out how to have my components in one central
location within an application so they are
available application wide.

Mmmm.. how do I do this,

Thanx,

J

_


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




RE: Managing CFC's

2003-10-16 Thread John McCosker
Thanks Mike,

 
this fits my style perfectly, although I'm confused how you are referencing
your CFC's,
e.g.root.cfc.cfcName, I tried this but I still got the same error,
//Could not find the ColdFusion Component

 
I understand how to package java classes, but where is your scope root.cfc
referenced,
is it a mapping in an xml file or somewhere else?

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 11:07
To: CF-Talk
Subject: RE: Managing CFC's

I am not sure if this fits your style, but this is how I usually organize my
sites.

Root
 image
 stylesheet
 _javascript_
 udf
 cfc
 etc

Now, putting all your CFCs in a central location off the root of your site
will allow you straightforward access to them ( root.cfc.cfcName ).

HTH,

Mike

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 5:49 AM
To: CF-Talk
Subject: Managing CFC's

Hi,

I have been trying to figure out how to have my components in one central
location within an application so they are
available application wide.

Mmmm.. how do I do this,

Thanx,

J

_

_


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




RE: Managing CFC's

2003-10-16 Thread Tangorre, Michael
assume this is the root of your site: c:\inetpub\wwwroot\testSite\

 
To access your CFCs you would use:testSite.cfc.cfcName

 
Does that clarify things at all?

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 7:10 AM
To: CF-Talk
Subject: RE: Managing CFC's

Thanks Mike,

this fits my style perfectly, although I'm confused how you are referencing
your CFC's,
e.g.root.cfc.cfcName, I tried this but I still got the same error,
//Could not find the ColdFusion Component

I understand how to package java classes, but where is your scope root.cfc
referenced,
is it a mapping in an xml file or somewhere else?

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 11:07
To: CF-Talk
Subject: RE: Managing CFC's

I am not sure if this fits your style, but this is how I usually organize my
sites.

Root
 image
 stylesheet
 _javascript_
 udf
 cfc
 etc

Now, putting all your CFCs in a central location off the root of your site
will allow you straightforward access to them ( root.cfc.cfcName ).

HTH,

Mike

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 5:49 AM
To: CF-Talk
Subject: Managing CFC's

Hi,

I have been trying to figure out how to have my components in one central
location within an application so they are
available application wide.

Mmmm.. how do I do this,

Thanx,

J

_

_

_


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




RE: Managing CFC's

2003-10-16 Thread Craig Dudley
If you don't want any of your cfc's the be web services, you could put
them outside the web root and use a CF mapping.

 
I think In Michaels example, just exclude the 'root.' and try again.

	-Original Message-
	From: John McCosker [mailto:[EMAIL PROTECTED] 
	Sent: 16 October 2003 12:10
	To: CF-Talk
	Subject: RE: Managing CFC's
	
	
	Thanks Mike,
	
	
	this fits my style perfectly, although I'm confused how you are
referencing
	your CFC's,
	e.g.root.cfc.cfcName, I tried this but I still got the same
error,
	//Could not find the ColdFusion Component
	
	
	I understand how to package java classes, but where is your
scope root.cfc
	referenced,
	is it a mapping in an xml file or somewhere else?
	
	-Original Message-
	From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
	Sent: 16 October 2003 11:07
	To: CF-Talk
	Subject: RE: Managing CFC's
	
	I am not sure if this fits your style, but this is how I usually
organize my
	sites.
	
	Root
	 image
	 stylesheet
	 _javascript_
	 udf
	 cfc
	 etc
	
	Now, putting all your CFCs in a central location off the root of
your site
	will allow you straightforward access to them ( root.cfc.cfcName
).
	
	HTH,
	
	Mike
	
	-Original Message-
	From: John McCosker [mailto:[EMAIL PROTECTED] 
	Sent: Thursday, October 16, 2003 5:49 AM
	To: CF-Talk
	Subject: Managing CFC's
	
	Hi,
	
	I have been trying to figure out how to have my components in
one central
	location within an application so they are
	available application wide.
	
	Mmmm.. how do I do this,
	
	Thanx,
	
	J
	
	_
	
	_
	
	
_

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




RE: Managing CFC's

2003-10-16 Thread Tangorre, Michael
If my virtual mapping is pointed to the mySite folder which is the root of
my default site, this works...

 
cfset application.objOnlineUsers =
CreateObject(component,mySite.cfc.CurrentUsers) /

 
Mike

-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 7:22 AM
To: CF-Talk
Subject: RE: Managing CFC's

If you don't want any of your cfc's the be web services, you could put
them outside the web root and use a CF mapping.

I think In Michaels example, just exclude the 'root.' and try again.

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: 16 October 2003 12:10
To: CF-Talk
Subject: RE: Managing CFC's

Thanks Mike,

this fits my style perfectly, although I'm confused how you are
referencing
your CFC's,
e.g.root.cfc.cfcName, I tried this but I still got the same
error,
//Could not find the ColdFusion Component

I understand how to package java classes, but where is your
scope root.cfc
referenced,
is it a mapping in an xml file or somewhere else?

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 11:07
To: CF-Talk
Subject: RE: Managing CFC's

I am not sure if this fits your style, but this is how I usually
organize my
sites.

Root
 image
 stylesheet
 _javascript_
 udf
 cfc
 etc

Now, putting all your CFCs in a central location off the root of
your site
will allow you straightforward access to them ( root.cfc.cfcName
).

HTH,

Mike

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 5:49 AM
To: CF-Talk
Subject: Managing CFC's

Hi,

I have been trying to figure out how to have my components in
one central
location within an application so they are
available application wide.

Mmmm.. how do I do this,

Thanx,

J

_

_

_

_


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




RE: Managing CFC's

2003-10-16 Thread John McCosker
Thanks guys that worked,

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 12:29
To: CF-Talk
Subject: RE: Managing CFC's

If my virtual mapping is pointed to the mySite folder which is the root of
my default site, this works...

cfset application.objOnlineUsers =
CreateObject(component,mySite.cfc.CurrentUsers) /

Mike

-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 7:22 AM
To: CF-Talk
Subject: RE: Managing CFC's

If you don't want any of your cfc's the be web services, you could put
them outside the web root and use a CF mapping.

I think In Michaels example, just exclude the 'root.' and try again.

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: 16 October 2003 12:10
To: CF-Talk
Subject: RE: Managing CFC's

Thanks Mike,

this fits my style perfectly, although I'm confused how you are
referencing
your CFC's,
e.g.root.cfc.cfcName, I tried this but I still got the same
error,
//Could not find the ColdFusion Component

I understand how to package java classes, but where is your
scope root.cfc
referenced,
is it a mapping in an xml file or somewhere else?

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 11:07
To: CF-Talk
Subject: RE: Managing CFC's

I am not sure if this fits your style, but this is how I usually
organize my
sites.

Root
 image
 stylesheet
 _javascript_
 udf
 cfc
 etc

Now, putting all your CFCs in a central location off the root of
your site
will allow you straightforward access to them ( root.cfc.cfcName
).

HTH,

Mike

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 5:49 AM
To: CF-Talk
Subject: Managing CFC's

Hi,

I have been trying to figure out how to have my components in
one central
location within an application so they are
available application wide.

Mmmm.. how do I do this,

Thanx,

J

_

_

_

_

_


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




OT: max length of a fieldname

2003-10-16 Thread Jill Robin Pascua
What'st he maximum length for fieldnames in MS SQL
Server and in Oracle?

TIA,
- JR

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




spider?

2003-10-16 Thread Tony Weeg
had all kindsa errors from a http_user_agent this morning called

Exalead NG/MimeLive Client (convert/http/0.147) 

anyone heard of this?

...tony

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

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




Re: OT: max length of a fieldname

2003-10-16 Thread Jochem van Dieten
Jill Robin Pascua said:
 What'st he maximum length for fieldnames in MS SQL
 Server and in Oracle?

This should be in the INFORMATION_SCHEMA of the database:

SELECT sizing_name, supported_value
FROMinformation_schema.sql_sizing
WHEREsizing_id = 30

Not sure if Oracle supports an INFORMATION_SCHEMA, but MS SQL Server
has one. You should check it out, it has a lot of information.

Jochem


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




RE: spider?

2003-10-16 Thread Robertson-Ravo, Neil (RX)
Hey Tony..

 
Yes it is a Spider which feeds AOL as far as I know...

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 13:37
To: CF-Talk
Subject: spider?

had all kindsa errors from a http_user_agent this morning called

Exalead NG/MimeLive Client (convert/http/0.147) 

anyone heard of this?

...tony

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

_


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




RE: spider?

2003-10-16 Thread Tony Weeg
ahhh, kinda thought

...tony

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

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 8:45 AM
To: CF-Talk
Subject: RE: spider?

Hey Tony..

Yes it is a Spider which feeds AOL as far as I know...

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 13:37
To: CF-Talk
Subject: spider?

had all kindsa errors from a http_user_agent this morning called

Exalead NG/MimeLive Client (convert/http/0.147) 

anyone heard of this?

...tony

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

_




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




WebSphere (HATS) and CFMX / J2EE questions

2003-10-16 Thread webmaster
Hi,

I've just successfully installed CF for J2EE on top of WebSphere HATS, the process of which was a little different than any installation guidelines based on the fact that HATS does not have the same configuration process as WebSphere itself. As a result, I've got some questions and issues: 

I've got my CF Administrator installed on my server at http://localhost:9080/cfmx/cfide/administrator/. The first thing I notice is that due to relative urls and that added folder in the path (cfmx), the images don’t show, nor does the style sheet does take effect. Is there any way to fix this?

These are non-terminal issues and so CF is working. I am ready to interact with WebSphere, so I thought I’d try to compile sum.class (found in Programming ColdFusion MX Second Edition, but any .class is applicable.), and I’m wondering which folder is the correct location to store it. WebSphere automatically places it in the c:\program files\ibm\websphere studio\eclipse\workspace\SAMS\webApplication\web-inf\classes\com\lrs\lrshtk folder. I don’t think that CF knows to look there for it. In regular CF Enterprise, there is a CFIDE Administrator page where you can set up your Java and JVM settings. In CFMX on top of WebSphere HATS, there is no such page to configure these settings. However, there is a summary page with a ton of Java information (which I will place at the bottom of this message). The Java Class Path item in this list of summary items shows several paths, and in each of them there are only .jar files and no .class files. Should I try pasting my sum.class file into all of those folders and see what happens? Well, I did, and instead of the error below, I get the error message that follows that (Second error). Sounds like the same error, but put differently. So where do I place the .class file so that CF can see it?

1st Error:
Object Instantiation Exception. 
Class not found: Sum 

Second error:
Object Instantiation Exception. 
An exception occurred when instantiating a java object. The cause of this exception was that: Sum (wrong name: com/lrs/lrshtk/Sum). 

My final question deals with HATS itself. HATS, or Host Access Transformation Server, converts a mainframe application into .jsp pages sweet!). We have gotten started doing so (“We” is composed of a couple of Cobol programmers and myself, a CF programmer, and none of us have experience in .jsp / java) and I was hoping I could use my CF Knowledge by building upon the pages HATS generates. I mentioned earlier that the CF application was located at http://localhost:9080/cfmx. Consultants started us off building our HATS application at http://localhost:9080/SAMS. Is there an issue of these projects (CF and SAMS) located in separate folders? How do I use CFML with HATS, or any existing jsp application? Do I have to pull the SAMS folder into and under the CFMX folder or can I reference my HATS .jsp files via my CFMX folder just fine?

I’m sorry for all of the questions but I seem to be between a rock and a hard place.

Thank you in advance for your assistance. The Java info follows.

Sincerely,
Andrew



Version Information
Server Details
Server Product ColdFusion Server 

Version 6,1,0,63958 

Edition Enterprise 

Serial Number xxx

Operating System Windows XP 

OS Version 5.1 

JVM Details
Java Version 1.3.1 

Java Vendor IBM Corporation 

Java Vendor URL http://www.ibm.com/ 

Java Home C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5\java\jre 

File Separator \ 

Path Separator ; 

Line Separator 

User Name AndySP 

User Home C:\Documents and Settings\andysp 

User Dir C:\Program Files\IBM\WebSphere Studio\eclipse 

Java VM Specification Version 1.0 

Java VM Specification Vendor Sun Microsystems Inc. 

Java VM Specification Name Java Virtual Machine Specification 

Java VM Version 1.3.1 

Java VM Vendor IBM Corporation 

Java VM Name Classic VM 

Java Specification Version 1.3 

Java Specification Vendor Sun Microsystems Inc. 

Java Specification Name Java Platform API Specification 

Java Class Version 46.0 

Java Class Path C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5/properties; C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5/properties; C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5/lib/bootstrap.jar; C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5/lib/j2ee.jar; C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5/lib/lmproxy.jar; C:/Program Files/IBM/WebSphere Studio/wstools/eclipse/plugins/com.ibm.etools.websphere.tools.common_5.0.1/runtime/wteServers.jar; C:/Program Files/IBM/WebSphere Studio/wstools/eclipse/plugins/com.ibm.etools.websphere.tools.common_5.0.1/runtime/wasToolsCommon.jar 

Java Ext Dirs C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5\java\jre\lib\ext

Sincerely,
Andrew

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




RE: spider?

2003-10-16 Thread Dave Watts
 had all kindsa errors from a http_user_agent this morning 
 called
 
 Exalead NG/MimeLive Client (convert/http/0.147) 
 
 anyone heard of this?

http://www.google.com/search?q=Exalead%20NG/MimeLive%20Clientsourceid=mozil
la-searchstart=0start=0ie=utf-8oe=utf-8

http://www.webmasterworld.com/forum11/2137.htm

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: html emails with javascript in outlook

2003-10-16 Thread Thomas Chiverton
On Wednesday 15 Oct 2003 21:02 pm, Richard Crawford wrote:
 On the other hand, if your IT department has installed a resource hog
 like Exchange, you may be stuck, unfortunately.

Do what I did and get them to enable POP/IMAP access to it. If they enable the 
web interface, even better, plus you can then get shared calender functions 
via WebDAV :-)

-- 
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: max length of a fieldname

2003-10-16 Thread Gabriel Robichaud
Oracle doesn't really have a INFORMATION_SCHEMA, but it has numerous tables
in the data dictionary that do the exact same thing if not more.

 
Gabriel

 
-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
Sent: October 16, 2003 8:41 AM
To: CF-Talk
Subject: Re: OT: max length of a fieldname

 
Jill Robin Pascua said:
 What'st he maximum length for fieldnames in MS SQL
 Server and in Oracle?

This should be in the INFORMATION_SCHEMA of the database:

SELECT sizing_name, supported_value
FROMinformation_schema.sql_sizing
WHEREsizing_id = 30

Not sure if Oracle supports an INFORMATION_SCHEMA, but MS SQL Server
has one. You should check it out, it has a lot of information.

Jochem

_


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




RE: Managing CFC's

2003-10-16 Thread Douglas.Knudsen
I have been using a more extreme approach with portability in mind.Within my app dir I have a cfc dir for the cfcs.I have a var set application.rootdir = foo/goo/applicationthen I call the cfc using 
cfinvoke component=#Replace(application.rootdir,/,.)#.assets.cfc.validate method=gooey returnvariable=cookies /

Doug

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 7:40 AM
To: CF-Talk
Subject: RE: Managing CFC's

Thanks guys that worked,

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 12:29
To: CF-Talk
Subject: RE: Managing CFC's

If my virtual mapping is pointed to the mySite folder which is the root of
my default site, this works...

cfset application.objOnlineUsers =
CreateObject(component,mySite.cfc.CurrentUsers) /

Mike

-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 7:22 AM
To: CF-Talk
Subject: RE: Managing CFC's

If you don't want any of your cfc's the be web services, you could put
them outside the web root and use a CF mapping.

I think In Michaels example, just exclude the 'root.' and try again.

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: 16 October 2003 12:10
To: CF-Talk
Subject: RE: Managing CFC's

Thanks Mike,

this fits my style perfectly, although I'm confused how you are
referencing
your CFC's,
e.g.root.cfc.cfcName, I tried this but I still got the same
error,
//Could not find the ColdFusion Component

I understand how to package java classes, but where is your
scope root.cfc
referenced,
is it a mapping in an xml file or somewhere else?

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 11:07
To: CF-Talk
Subject: RE: Managing CFC's

I am not sure if this fits your style, but this is how I usually
organize my
sites.

Root
 image
 stylesheet
 _javascript_
 udf
 cfc
 etc

Now, putting all your CFCs in a central location off the root of
your site
will allow you straightforward access to them ( root.cfc.cfcName
).

HTH,

Mike

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 5:49 AM
To: CF-Talk
Subject: Managing CFC's

Hi,

I have been trying to figure out how to have my components in
one central
location within an application so they are
available application wide.

Mmmm.. how do I do this,

Thanx,

J

_

_

_

_

_

_


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




Re: html emails with javascript in outlook

2003-10-16 Thread Thomas Chiverton
On Wednesday 15 Oct 2003 20:55 pm, DURETTE, STEVEN J (AIT) wrote:
 I can think of one good reason...
 Because corporate policy requires me to!

Then your company IT department are looking at things the wrong way.
What Manchester Univeristy (for instance) says, is that they will provide you 
with methods X, Y and Z to access your email. They will support clients A,B 
and C.
If you want to use K to read your email, that's fine, because X and Y are all 
standard open protocols.

This is the way IT should, imho, be provided - as a service, not a blanket 
imposition of someone elses 'best way' on everyone.

-- 
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:DB2 and Stored Procedures

2003-10-16 Thread dsmith
is this an 
RPG/Cobol Stored Procedure...

No it was created with SQL according to my 400 guy?Can those procedures be called using the cfstoredproc and cfprocparm tags?

We're looking into creating it with RPG though...Is that our best option?
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Weird thing happening with ODBC Datasources

2003-10-16 Thread dsmith
This is totally weird.But what seems to be happening is that if an ODBC Error is generated by one page anywhere on my server, any other ODBC calls will generate the error messagefor that first page that caused the error.Yesterday it crashed the server.However, once I run the page that caused the error with the error removed, everything works fine.It doesn't matter what kind of ODBC driver it is, I've done it with Client Access, Rumba and SQL Server.I'm running CF 5.

Has anyone ever seen something like this?

Daron Smtih
PSEA
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: html emails with javascript in outlook

2003-10-16 Thread Thomas Chiverton
On Wednesday 15 Oct 2003 22:21 pm, Dave Watts wrote:
 I have yet to find a single client/server package which provides the
 functionality of Exchange and Outlook, other than Openmail. If all you do

Seen Horde ?

-- 
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: Giving up on DW 2004 MX

2003-10-16 Thread jonhall
Thursday, October 16, 2003, 12:54:15 AM, you wrote:

MTeF jon hall [EMAIL PROTECTED] wrote in message
MTeF news:[EMAIL PROTECTED]
 Yeah, that's the best part about it...but the script API is even less
 documented, and less powerful (can't call COM objects) than
 Homesite's.

MTeF I strongly disagree with this. Both about the documentation and the power
MTeF :-)

Oh really... :)

How exactly does an extremely small subset of DOM 1 that is
implemented unevenly across the different objects qualify as
powerful? To say nothing of DOM 2 or 3.

How does the fact that all the menus are very nicely defined in XML
files, but no one has thought to distribute DTD's of any kind qualify
as well documented?

How can DW's data connectivity compare in any regard to ADO for power?

DW allows only JS or C, HS allows any language built on WSH, meaning
VBS, JS, Kix, etc., and any language a COM object can be written in.

Why the heck is DWFile so slow?

I also can't speak to the C API, knowing very little C, but how many web
developers know C?

The only thing going for DW is the UI extensibility, which is awesome,
the only other closed source IDE with that ability that I know of is
VS, but it's stuck with a less than Netscape 4 level DOM, and limited
the HTML to define the look and feel, with doc.write the only way to
make content dynamic. I can't help but feel that the whole DW
extensibility thing has not enough resources, meaning people working
on it, or it has too many, and not enough organization. Maybe it's
because it has to run on the Mac as well that is holding it back.

I think Mozilla is the model of what DW extensibility model want's to be.
XUL/XBL/XPCOM kicks butt...or even HTML/DOM2/XML Events. Whatever the
solution is, DW needs it. It's really lagging.

-- 
mailto:[EMAIL PROTECTED]

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




RE: Cookie Help

2003-10-16 Thread Dennis Powers
 And I do append URL variables to maintain session state

One way is to just add #session.urltoken# to the end of each URL.However
it opens the application to session hijacking if people share the link. I
prefer to first test for the presence of a cookie before applying the token
so I place this in the application.cfm.

!--- = Start Determine if Cookies are enabled === ---
cfif IsDefined(Cookie.cookieenabled)
cfif Cookie.cookieenabled is DayofYear(Now())
cfset TokenOn=No
cfelse
cfcookie name=cookieenabled value=#DayofYear(Now())#
expires=30
cfset TokenOn=Yes
/cfif
cfelse
cfcookie name=cookieenabled value=#DayofYear(Now())#
expires=30
cfset TokenOn=Yes
/cfif
!--- Now set a global urltoken to use throughout the site ---
cflock timeout=30 throwontimeout=No name=#LockName#
cfif TokenOn is Yes
cfset Token=  #Session.URLToken#
cfelse
cfset Token=''
/cfif
/cflock
!--- == END Determine if Cookies are enabled
== ---

Then at the end of each URL I add the CF variable #token# like so:
a href="">

That way if the browser can handle cookies I don’t add the session token if
not then it gets added to each URL.

Best regards,

Dennis Powers
UXB Internet - A Web Design and Hosting Company
Wolcott, CT 06716 USA
tel: (203)879-2844fax: (203)879-6254
http://www.uxbinternet.com/
http://dennis.uxb.net/


=
This e-mail message has been scanned and certified Virus free


=
This e-mail message has been scanned and certified Virus free


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




simple join not working

2003-10-16 Thread mayo
I must be getting really tired. I hate to ask such qustions but now I can't
even get a simple join to work.

I did several simple queries,each worked (including the all important date
query)

	SELECT *
	FROM classDates
	WHERE classDates='10/11/2003'// does not work: Data type mismatch in
criteria _expression_. 
	WHERE classDates LIKE '10/11/2003' does work
	WHERE classDates LIKE '#eventDay#' does work

My INNER JOIN:

	SELECT classes.*, classDates.*
	FROM classes INNER JOIN classDates ON classes.classID = "">
	WHERE classDates.classDate LIKE '#EventDay#'

It doesn't work, even when using other fields than classDate.
(I'm using Access 2000)

Tables are below (complete)

CLASSDATES

ID (PK)
classID (FK)
classDay
classSession
classDate
classStart
classEnd

CLASSES

classID(PK)
classCategory
classSection
classCode
classTitle
classDescription
classNote
classTexts
classCost
classDeleted (Y/N) // allows me to recapture user deletes

I'm really at a loss as to why this doesn't work.

Gil




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




RE: Antivirus software on web server

2003-10-16 Thread Mark W. Breneman
Thanks everyone….

As much as I am opposed to the idea, I am leaning towards installing
Norton Antivirus Corporate on all of my web servers.

The question was brought up, that how would you ever know if your server
was infected without some software scanning.My argument to that was if
the server is correctly secured that should never be an issue, but, with
new exploits being discovered each month the chances go up that the
server could be compromised before the patch is applied. 

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com
  608.270.9770
-Original Message-
From: NATHAN C. SMITH [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 15, 2003 4:44 PM
To: CF-Talk
Subject: RE: Antivirus software on web server

I think it is a necessary evil.

People are finding too many neat ways for things to creep across
networks.

-Nate
-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 15, 2003 12:23 PM
To: CF-Talk
Subject: SOT: Antivirus software on web server

I can remember this topic has been hashed over a few different times
here, over the years.  Has the opinions changed over the last year or
so?

Do YOU have antivirus software on your servers?  

Do you recommend it on web servers?  

If so, what software?

I have in the past been on the side of not needing AV software on the
server. Now I am, and have been for a few months, sitting on the fence.
A few years ago, as a computer tech, I said that AV software is very
good to have at home / office but not nessicry. Now, I highly recommend
AV software on any computer that is connected to the net in the home /
office environment.

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


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




RE: list, adding to

2003-10-16 Thread Gyrus
At 00:58 16/10/2003 -0400, you wrote:
I would like the user to be able to update at whim and to loop through these
records and update them.

Sorry, I can't quite grasp what you're trying to do, or what the form 
does... Is this an admin system for course organisers to change the dates 
of courses?

When I get to the update section I should be able to put the IDs in a list
and then from that list get a LISTLEN

and do a

cfloop list=#dateList# index=dateSessions

 cfquery name=getSessionDays datasource=

UPDATE classDates
SET
classDay='#FORM.classDay#',
classSession='#FORM.classSession#',
classDates='#dateSessions#',
classStart='#FORM.classStart#',
classEnd='#FORM.classEnd#'

WHERE ID IN(#dateList#)

 /cfloop

What error do you get?

Gyrus
[EMAIL PROTECTED]
http://norlonto.net/gyrus/dev/
PGP key available 

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




Re: WebSphere (HATS) and CFMX / J2EE questions

2003-10-16 Thread Thomas Chiverton
On Thursday 16 Oct 2003 14:11 pm, [EMAIL PROTECTED] wrote:
 I've got my CF Administrator installed on my server at
 http://localhost:9080/cfmx/cfide/administrator/. The first thing I notice
 is that due to relative urls and that added folder in the path (cfmx), the
 images don’t show, nor does the style sheet does take effect. Is there any
 way to fix this?

Use apache as a front-end proxy, and mod_proxy all the requests.

-- 
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: Giving up on DW 2004 MX

2003-10-16 Thread Massimo Foti
 MTeF I strongly disagree with this. Both about the documentation and the
power
 MTeF :-)

 Oh really... :)

Just tell me about something that you would like to implement as DW's
extension and you can't due to the API's limitations

 How exactly does an extremely small subset of DOM 1 that is
 implemented unevenly across the different objects qualify as
 powerful? To say nothing of DOM 2 or 3.

See above, what part of DOM 2 or 3 do you need inside the API, and why?

 How does the fact that all the menus are very nicely defined in XML
 files, but no one has thought to distribute DTD's of any kind qualify
 as well documented?

Do you really feel like it's so hard to read without a DTD?
Do you think HS's stuff is better documented?

 How can DW's data connectivity compare in any regard to ADO for power?

I never felt the need to connect to a datasource from a DW's extension, but,
apart from C++, you can leverage Flash Remoting too

 DW allows only JS or C, HS allows any language built on WSH, meaning
 VBS, JS, Kix, etc., and any language a COM object can be written in.

There is a huge difference here, DW API are cross-platform.

 Why the heck is DWFile so slow?

How many files you need to process with it? I used it for up to 2-3.000
files testing my site-wide extensions, it does the job, I never felt the
need for anything faster (remember it's cross platform too)

 I also can't speak to the C API, knowing very little C, but how many web
 developers know C?

I don't, but I was still able to do a few not too trivial things using DW's
API

 The only thing going for DW is the UI extensibility, which is awesome,

And leaves HS in the dust here... :-)
Try this for example:
http://www.communitymx.com/content/article.cfm?cid=A1EDDF56F77EE7CA

 I can't help but feel that the whole DW
 extensibility thing has not enough resources, meaning people working
 on it, or it has too many, and not enough organization. Maybe it's
 because it has to run on the Mac as well that is holding it back.

I am not pretending DW's API is perfect, but I stand by my words saying that
I strongly disagree with your statement about HS's extensibility being more
powerful or better documented

 I think Mozilla is the model of what DW extensibility model want's to be.
 XUL/XBL/XPCOM kicks butt...or even HTML/DOM2/XML Events. Whatever the
 solution is, DW needs it. It's really lagging.

Well, actually DW predates Mozilla, the XML menus were based on the very
early draft of XUL (back in 1999)


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: Antivirus software on web server

2003-10-16 Thread Jochem van Dieten
Mark W. Breneman wrote:
 
 As much as I am opposed to the idea, I am leaning towards installing
 Norton Antivirus Corporate on all of my web servers.
 
 The question was brought up, that how would you ever know if your server
 was infected without some software scanning.

You see it in the task list. And if it does anything besides 
being there (like trying to spread), you see that in your network 
traffic.

Jochem


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




RE: max length of a fieldname

2003-10-16 Thread Plunkett, Matt
In Oracle 8 and 9, I believe the limit is 30 characters on any database
object.

-Original Message-
From: Jill Robin Pascua [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 8:28 AM
To: CF-Talk
Subject: OT: max length of a fieldname

What'st he maximum length for fieldnames in MS SQL
Server and in Oracle?

TIA,
- JR

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com http://shopping.yahoo.com
_


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




RE: list, adding to

2003-10-16 Thread Andre Turrettini
A list is not a special datatype, its just a simple string.There happen to
be some functions that operate on strings assuming certain delimiters but
its still just a string.

 
However, it looks like youre sticking dates into the IN parameter of your
query which wont work.So, this is a sql problem not a list problem.Can
you try and explain a bit more?

 
DRE

-Original Message-
From: Gyrus [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 8:38 AM
To: CF-Talk
Subject: RE: list, adding to

At 00:58 16/10/2003 -0400, you wrote:
I would like the user to be able to update at whim and to loop through
these
records and update them.

Sorry, I can't quite grasp what you're trying to do, or what the form 
does... Is this an admin system for course organisers to change the dates 
of courses?

When I get to the update section I should be able to put the IDs in a list
and then from that list get a LISTLEN

and do a

cfloop list=#dateList# index=dateSessions

 cfquery name=getSessionDays datasource=

UPDATE classDates
SET
classDay='#FORM.classDay#',
classSession='#FORM.classSession#',
classDates='#dateSessions#',
classStart='#FORM.classStart#',
classEnd='#FORM.classEnd#'

WHERE ID IN(#dateList#)

 /cfloop

What error do you get?

Gyrus
[EMAIL PROTECTED]
http://norlonto.net/gyrus/dev/ http://norlonto.net/gyrus/dev/ 
PGP key available 

_


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




Re: simple join not working

2003-10-16 Thread Ubqtous
mayo,

On 10/16/2003 at 10:36, you wrote:

m I must be getting really tired. I hate to ask such qustions but now I can't
m even get a simple join to work.

m I did several simple queries,each worked (including the all important date
m query)

mSELECT *
mFROM classDates
mWHERE classDates='10/11/2003'// does not work: Data type mismatch in
m criteria _expression_. 
mWHERE classDates LIKE '10/11/2003' does work
mWHERE classDates LIKE '#eventDay#' does work

m My INNER JOIN:

mSELECT classes.*, classDates.*
mFROM classes INNER JOIN classDates ON classes.classID = "">
mWHERE classDates.classDate LIKE '#EventDay#'

m It doesn't work, even when using other fields than classDate.
m (I'm using Access 2000)

What is the data type of the classDates field? Maybe try:

where classDates=cfqueryparam value=10/11/2003cfsqltype=cf_sql_timestamp
(match cfsqltype to classDates data type)

or 

where classDates=#createodbcdatetime(10/11/2003)#
(assuming classDates is a date/time field)

You shouldn't have to use LIKE to make this work, that's for sure.

~ Ubqtous ~

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




CF SQL Type

2003-10-16 Thread Tangorre, Michael
When is it appropriate to use:cfsqltype=CF_SQL_IDSTAMP

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




OT: Immediate need for three FB3 Developers in Carlsbad, CA.

2003-10-16 Thread Suyer, Ed [PRD Non-JJ]
Sorry for the off topic post.But I figured this would be very important to
someone.Any suggestions for a better place to post (other then cfjobs
which appearently is not working) are much appreciated!

A colleague of mine is looking to fill three FB3 Developer positions paying
$40 - $45 / hr for a 2 to 3 month contract in Carlasbad, CA (San Diego
County).These are positions that need to be filled immediately, so please
apply only if you are available full-time right now or w/ 2 weeks notice.
Please DO NOT RESPOND TO THIS EMAIL.Contact Scott Parrot of Talent Lab
directly at[EMAIL PROTECTED] and let him know that I referred you.The
details of this job are as follows:

 
Required at least 3 Years of the following:
- Macromedia Cold Fusion 5 / MX (advanced)
- Dynamic Web Development / XML / HTML / DHTML / CSS / _javascript_ (advanced)
- Experience with development tools such as ColdFusion Studio (intermediate)
- Experience writing SQL (both DML and DDL) and working with databases
(advanced)
Preferred at least 2 years of the following:
- Macromedia ColdFusion experience
- Experience with SQL-Server databases 
- Experience with FuseBox 3 methodology


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




RE: list, adding to

2003-10-16 Thread mayo
I would like the user to be able to update at whim and to loop through
these
records and update them.

Sorry, I can't quite grasp what you're trying to do, or what the form
does... Is this an admin system for course organisers to change the dates
of courses?

Yes, this is an admin system for the course organisers. They are able to
insert and edit their courses.
A course has a

title,
description,
cost.

Each course also has several sections, for example running on 4 consecutive
Mondays from 6:30-8:30PM.

An admin screen for editing the class schedule is represented below:

Class: Beginning Guitar [text box]
Desciption: Learn how to ... [select box]
Sessions: 4

SessionMonth [drop-down] Day [drop] Class Start [drop] Class End [drop]
11081PM
3PM
11015 1PM
3PM
110221PM
3PM
110291PM
3PM
2 ...
2...

I would like the user to be able to be able to use the drop down to change
the class starting and ending time, or the class day.
The record ID is in a hidden text box.

When I get to the update section I should be able to put the IDs in a list
and then from that list get a LISTLEN

and do a

cfset dateList=#FORM.ID# // I tried everything I could think of.

cfloop list=#dateList# index=dateSessions

cfquery name=getSessionDays datasource=

 UPDATE classDates
 SET
classDay='#FORM.classDay#',
classSession='#FORM.classSession#',
classDates='#dateSessions#',
classStart='#FORM.classStart#',
classEnd='#FORM.classEnd#'

 WHERE ID IN(#dateList#)

/cfloop

yes with cftransaction,cftry and cfcatch :-0

I don't get an error msg. The update goes through but doesn't update.


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




RE: DB2 and Stored Procedures

2003-10-16 Thread Mike Brunt
We are successfully calling stored procedures this way on DB2 but the ones
we are using are written in Cobol.

Kind Regards - Mike Brunt
Webapper Services LLC
Web Site http://www.webapper.com
Blog http://www.webapper.net

Webapper Web Application Specialists

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 6:37 AM
To: CF-Talk
Subject: Re:DB2 and Stored Procedures

is this an
RPG/Cobol Stored Procedure...

No it was created with SQL according to my 400 guy?Can those procedures be
called using the cfstoredproc and cfprocparm tags?

We're looking into creating it with RPG though...Is that our best option?
_


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




RE: Weird thing happening with ODBC Datasources

2003-10-16 Thread Mark A. Kruger - CFG
No - but I'm not sure I understand. You mean that if one page causes ANY type of error - all subsequent calls generate
the same error (for any page)?Is there a specific error?Can you duplicate this with a syntax error?

-mark

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 8:38 AM
To: CF-Talk
Subject: Weird thing happening with ODBC Datasources

This is totally weird.But what seems to be happening is that if an ODBC Error is generated by one page anywhere on
my server, any other ODBC calls will generate the error messagefor that first page that caused the error.Yesterday
it crashed the server.However, once I run the page that caused the error with the error removed, everything works
fine.It doesn't matter what kind of ODBC driver it is, I've done it with Client Access, Rumba and SQL Server.I'm
running CF 5.

Has anyone ever seen something like this?

Daron Smtih
PSEA

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




RE: list, adding to

2003-10-16 Thread mayo
I have an admin screen which will (hopefully) allow users to be able to
update a class schedule.

The update query will often have to update several records, so the query
will be looped.

I have two different submit buttons.

Top of the screen has

Class Title [textbox]
Class Description [textarea]
etc...
[submit button]

Bottom of the screen deals with date/time

Class Date [dropdowns for month,day,year]
Class Start [dropdown]
Class End [dropdown]

A hidden field has the record ID

I would like the user to be able to do multiple updates with one submit,
example change the time start from 6PM to 6:30PM and the end time from 8PM
to 8:30PM.

This is further complicated as there are often numerous sessions.

So Beginning Guitar can have

session one: 4 consecutive Mondays from 6:30-8:30
session two 4 conseuctive Tuesdays from 7:00-9:00

etc...

there are up to 6 sessions.

I would like the users to be able to update as many sessions (time, day) as
necessary, press submit and then loop through the records when processing
the submit.

thx,

Gil

-Original Message-
From: Andre Turrettini [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 10:53 AM
To: CF-Talk
Subject: RE: list, adding to

A list is not a special datatype, its just a simple string.There happen
to
be some functions that operate on strings assuming certain delimiters but
its still just a string.

However, it looks like youre sticking dates into the IN parameter of your
query which wont work.So, this is a sql problem not a list problem.Can
you try and explain a bit more?

DRE

-Original Message-
From: Gyrus [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 8:38 AM
To: CF-Talk
Subject: RE: list, adding to

At 00:58 16/10/2003 -0400, you wrote:
I would like the user to be able to update at whim and to loop through
these
records and update them.

Sorry, I can't quite grasp what you're trying to do, or what the form
does... Is this an admin system for course organisers to change the dates
of courses?

When I get to the update section I should be able to put the IDs in a
list
and then from that list get a LISTLEN

and do a

cfloop list=#dateList# index=dateSessions

 cfquery name=getSessionDays datasource=

UPDATE classDates
SET
classDay='#FORM.classDay#',
classSession='#FORM.classSession#',
classDates='#dateSessions#',
classStart='#FORM.classStart#',
classEnd='#FORM.classEnd#'

WHERE ID IN(#dateList#)

 /cfloop

What error do you get?

Gyrus
[EMAIL PROTECTED]
http://norlonto.net/gyrus/dev/ http://norlonto.net/gyrus/dev/
PGP key available

 _


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




OT: Veri-suck again...

2003-10-16 Thread Scott Wilhelm
They're reinstating it...

http://news.com.com/2100-1038_3-5092133.html 


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




RE: Veri-suck again...

2003-10-16 Thread Ricky Fritzsching
AGH!

_

From: Scott Wilhelm [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 10:15 AM
To: CF-Talk

They're reinstating it...

http://news.com.com/2100-1038_3-5092133.html 

_


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




RE: Giving up on DW 2004 MX

2003-10-16 Thread Raymond Camden
Can you send a copy over to me, or send the URL? 


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




CreateUUID() / CreateGUID()

2003-10-16 Thread Tangorre, Michael
I am noticing something strange here and am hoping someone can enlighten
me..

My form has a field called userId which is hidden and holds an MS formatted
UUID (----). For now though, I am just
testing out the form and tried setting the form value equal to CreateUUID,
which uses the format (---). I set the form
value equal to #CreateUUID# for testing purposes and it gets passed into my
stored proc via the cfprocparam tag.

cfprocparam type=In dbvarname=currentUserId 
null=no value=#form.currentUser# cfsqltype=CF_SQL_VARCHAR /

When form.currentUser is equal to #CreateUUID()# the stored proc errors out.
When form.currentUser is equal to #CreateGUID()# the stored proc errors out.

When form.currentUser is equal to 4572039B-BDB5-255B-BBF5-1B752CEDD144 (MS
format)the stored proc WORKS!
Guess where I got that value? I viewed the source when I set the form field
equal to #CreateGUID()# and copied it, then pasted it into the value of the
currentUser form field!

Can anyone explain why the stored procedure would accept the value when I
manually set it to the value instead of calling the function to do it?

CreateGUID() was obtained form cflib.org by the way.

Thoughts???

Thanks,

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




RE: Veri-suck again...

2003-10-16 Thread Tony Weeg
excuse my ignorance, but whats the problem, and how might it impact any of
us here?

...tony

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

-Original Message-
From: Ricky Fritzsching [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:18 AM
To: CF-Talk
Subject: RE: Veri-suck again...

AGH!

_

From: Scott Wilhelm [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 10:15 AM
To: CF-Talk

They're reinstating it...

http://news.com.com/2100-1038_3-5092133.html 

_




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




RE: list, adding to

2003-10-16 Thread Andre Turrettini
I think I see. I've done similar.Heres how I handled it: Each course that
could be updateable had its fields ending with _#i# at the end.i is just a
counter.So, the first course had course_id_1, the second, had
course_id_2.So the user makes his changes and submits, on the server side,
you now have form vars that end with _i.So, you loop thru your update with
a while statment, the condition for the while statment is the existence of
the form var course_id_i, and you access your vars like form['course_id_' 
i].

 
Does this make sense?I can fill in a bit if you need.

DRE

-Original Message-
From: mayo [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 9:14 AM
To: CF-Talk
Subject: RE: list, adding to

I have an admin screen which will (hopefully) allow users to be able to
update a class schedule.

The update query will often have to update several records, so the query
will be looped.

I have two different submit buttons.

Top of the screen has

Class Title [textbox]
Class Description [textarea]
etc...
[submit button]

Bottom of the screen deals with date/time

Class Date [dropdowns for month,day,year]
Class Start [dropdown]
Class End [dropdown]

A hidden field has the record ID

I would like the user to be able to do multiple updates with one submit,
example change the time start from 6PM to 6:30PM and the end time from 8PM
to 8:30PM.

This is further complicated as there are often numerous sessions.

So Beginning Guitar can have

session one: 4 consecutive Mondays from 6:30-8:30
session two 4 conseuctive Tuesdays from 7:00-9:00

etc...

there are up to 6 sessions.

I would like the users to be able to update as many sessions (time, day) as
necessary, press submit and then loop through the records when processing
the submit.

thx,

Gil

-Original Message-
From: Andre Turrettini [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 10:53 AM
To: CF-Talk
Subject: RE: list, adding to

A list is not a special datatype, its just a simple string.There happen
to
be some functions that operate on strings assuming certain delimiters but
its still just a string.

However, it looks like youre sticking dates into the IN parameter of your
query which wont work.So, this is a sql problem not a list problem.Can
you try and explain a bit more?

DRE

-Original Message-
From: Gyrus [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 8:38 AM
To: CF-Talk
Subject: RE: list, adding to

At 00:58 16/10/2003 -0400, you wrote:
I would like the user to be able to update at whim and to loop through
these
records and update them.

Sorry, I can't quite grasp what you're trying to do, or what the form
does... Is this an admin system for course organisers to change the dates
of courses?

When I get to the update section I should be able to put the IDs in a
list
and then from that list get a LISTLEN

and do a

cfloop list=#dateList# index=dateSessions

 cfquery name=getSessionDays datasource=

UPDATE classDates
SET
classDay='#FORM.classDay#',
classSession='#FORM.classSession#',
classDates='#dateSessions#',
classStart='#FORM.classStart#',
classEnd='#FORM.classEnd#'

WHERE ID IN(#dateList#)

 /cfloop

What error do you get?

Gyrus
[EMAIL PROTECTED]
http://norlonto.net/gyrus/dev/ http://norlonto.net/gyrus/dev/
http://norlonto.net/gyrus/dev/
PGP key available

 _

_


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




RE: Veri-suck again...

2003-10-16 Thread cfhelp
Can we get an email for Chuck Gomes and forward all our SPAM to him?

Rick

_

From: Scott Wilhelm [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 10:15 AM
To: CF-Talk

They're reinstating it...

http://news.com.com/2100-1038_3-5092133.html
http://news.com.com/2100-1038_3-5092133.html


_


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




RE: Veri-suck again...

2003-10-16 Thread Scott Wilhelm
I posted it as OT...

 
I'm not going to go into the impact of it...that should be obvious...

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 11:25 AM
To: CF-Talk
Subject: RE: Veri-suck again...

excuse my ignorance, but whats the problem, and how might it impact any of
us here?

...tony

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

-Original Message-
From: Ricky Fritzsching [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:18 AM
To: CF-Talk
Subject: RE: Veri-suck again...

AGH!

_

From: Scott Wilhelm [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 10:15 AM
To: CF-Talk

They're reinstating it...

http://news.com.com/2100-1038_3-5092133.html 

_



_


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




RE: Veri-suck again...

2003-10-16 Thread John Lucas
https://www.godaddy.com/gdshop/pressreleases/verisign_suit.asp?isc=
https://www.godaddy.com/gdshop/pressreleases/verisign_suit.asp?isc=se=
%2Bfrom%5Fapp se=%2Bfrom%5Fapp=

 
Though they are selling NetSol.

 
http://www.verisign.com/corporate/news/2003/pr_20031016.html

-Original Message-
From: Scott Wilhelm [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 10:29 AM
To: CF-Talk
Subject: RE: Veri-suck again...

 
I posted it as OT...

I'm not going to go into the impact of it...that should be obvious...

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 11:25 AM
To: CF-Talk
Subject: RE: Veri-suck again...

excuse my ignorance, but whats the problem, and how might it impact any
of
us here?

...tony

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

-Original Message-
From: Ricky Fritzsching [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:18 AM
To: CF-Talk
Subject: RE: Veri-suck again...

AGH!

_

From: Scott Wilhelm [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 10:15 AM
To: CF-Talk

They're reinstating it...

http://news.com.com/2100-1038_3-5092133.html 

_



_

_


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




RE: CreateUUID() / CreateGUID()

2003-10-16 Thread Robertson-Ravo, Neil (RX)
AFAIK the ColdFusion UUID is not compatible with the SQL Server version. 

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 16:23
To: CF-Talk
Subject: CreateUUID() / CreateGUID()

I am noticing something strange here and am hoping someone can enlighten
me..

My form has a field called userId which is hidden and holds an MS formatted
UUID (----). For now though, I am just
testing out the form and tried setting the form value equal to CreateUUID,
which uses the format (---). I set the form
value equal to #CreateUUID# for testing purposes and it gets passed into my
stored proc via the cfprocparam tag.

cfprocparam type=In dbvarname=currentUserId 
null=no value=#form.currentUser# cfsqltype=CF_SQL_VARCHAR /

When form.currentUser is equal to #CreateUUID()# the stored proc errors out.
When form.currentUser is equal to #CreateGUID()# the stored proc errors out.

When form.currentUser is equal to 4572039B-BDB5-255B-BBF5-1B752CEDD144 (MS
format)the stored proc WORKS!
Guess where I got that value? I viewed the source when I set the form field
equal to #CreateGUID()# and copied it, then pasted it into the value of the
currentUser form field!

Can anyone explain why the stored procedure would accept the value when I
manually set it to the value instead of calling the function to do it?

CreateGUID() was obtained form cflib.org by the way.

Thoughts???

Thanks,

Mike 
_


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




RE: CreateUUID() / CreateGUID()

2003-10-16 Thread Tangorre, Michael
I know, which is why I was using CreateGUID()

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:30 AM
To: CF-Talk
Subject: RE: CreateUUID() / CreateGUID()

AFAIK the ColdFusion UUID is not compatible with the SQL Server version. 

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 16:23
To: CF-Talk
Subject: CreateUUID() / CreateGUID()

I am noticing something strange here and am hoping someone can enlighten
me..

My form has a field called userId which is hidden and holds an MS formatted
UUID (----). For now though, I am just
testing out the form and tried setting the form value equal to CreateUUID,
which uses the format (---). I set the form
value equal to #CreateUUID# for testing purposes and it gets passed into my
stored proc via the cfprocparam tag.

cfprocparam type=In dbvarname=currentUserId 
null=no value=#form.currentUser# cfsqltype=CF_SQL_VARCHAR /

When form.currentUser is equal to #CreateUUID()# the stored proc errors out.
When form.currentUser is equal to #CreateGUID()# the stored proc errors out.

When form.currentUser is equal to 4572039B-BDB5-255B-BBF5-1B752CEDD144 (MS
format)the stored proc WORKS!
Guess where I got that value? I viewed the source when I set the form field
equal to #CreateGUID()# and copied it, then pasted it into the value of the
currentUser form field!

Can anyone explain why the stored procedure would accept the value when I
manually set it to the value instead of calling the function to do it?

CreateGUID() was obtained form cflib.org by the way.

Thoughts???

Thanks,

Mike 
_

_


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




RE: CreateUUID() / CreateGUID()

2003-10-16 Thread Robertson-Ravo, Neil (RX)
Oh, also, if you are testing say an insert, just use (new()) inside SQL.

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 16:23
To: CF-Talk
Subject: CreateUUID() / CreateGUID()

I am noticing something strange here and am hoping someone can enlighten
me..

My form has a field called userId which is hidden and holds an MS formatted
UUID (----). For now though, I am just
testing out the form and tried setting the form value equal to CreateUUID,
which uses the format (---). I set the form
value equal to #CreateUUID# for testing purposes and it gets passed into my
stored proc via the cfprocparam tag.

cfprocparam type=In dbvarname=currentUserId 
null=no value=#form.currentUser# cfsqltype=CF_SQL_VARCHAR /

When form.currentUser is equal to #CreateUUID()# the stored proc errors out.
When form.currentUser is equal to #CreateGUID()# the stored proc errors out.

When form.currentUser is equal to 4572039B-BDB5-255B-BBF5-1B752CEDD144 (MS
format)the stored proc WORKS!
Guess where I got that value? I viewed the source when I set the form field
equal to #CreateGUID()# and copied it, then pasted it into the value of the
currentUser form field!

Can anyone explain why the stored procedure would accept the value when I
manually set it to the value instead of calling the function to do it?

CreateGUID() was obtained form cflib.org by the way.

Thoughts???

Thanks,

Mike 
_


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




RE: CreateUUID() / CreateGUID()

2003-10-16 Thread Robertson-Ravo, Neil (RX)
ah...let me have a look at it, I havent looked at that GUI

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 16:33
To: CF-Talk
Subject: RE: CreateUUID() / CreateGUID()

I know, which is why I was using CreateGUID()

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:30 AM
To: CF-Talk
Subject: RE: CreateUUID() / CreateGUID()

AFAIK the ColdFusion UUID is not compatible with the SQL Server version. 

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 16:23
To: CF-Talk
Subject: CreateUUID() / CreateGUID()

I am noticing something strange here and am hoping someone can enlighten
me..

My form has a field called userId which is hidden and holds an MS formatted
UUID (----). For now though, I am just
testing out the form and tried setting the form value equal to CreateUUID,
which uses the format (---). I set the form
value equal to #CreateUUID# for testing purposes and it gets passed into my
stored proc via the cfprocparam tag.

cfprocparam type=In dbvarname=currentUserId 
null=no value=#form.currentUser# cfsqltype=CF_SQL_VARCHAR /

When form.currentUser is equal to #CreateUUID()# the stored proc errors out.
When form.currentUser is equal to #CreateGUID()# the stored proc errors out.

When form.currentUser is equal to 4572039B-BDB5-255B-BBF5-1B752CEDD144 (MS
format)the stored proc WORKS!
Guess where I got that value? I viewed the source when I set the form field
equal to #CreateGUID()# and copied it, then pasted it into the value of the
currentUser form field!

Can anyone explain why the stored procedure would accept the value when I
manually set it to the value instead of calling the function to do it?

CreateGUID() was obtained form cflib.org by the way.

Thoughts???

Thanks,

Mike 
_

_

_


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




Re: simple join not working

2003-10-16 Thread Donnie Bachan
Try this:

SELECT classes.*, classDates.*
FROM
(classes INNER JOIN classDates ON (classes.classID = "">
WHERE classDates.classDate = #createodbcdatetime(EventDay)#

Donnie Bachan
Phone: (718) 217-2883
ICQ#: 28006783
Nitendo Vinces - By Striving You Shall Conquer

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




RE: Antivirus software on web server

2003-10-16 Thread Mark W. Breneman
True it probably would show in the task or process lists, but if I were
to write a worm/Trojan, I would make it show up in the task list as
SVCHOST.exe, the generic name of a DLL process.

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

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 9:41 AM
To: CF-Talk
Subject: Re: Antivirus software on web server

Mark W. Breneman wrote:
 
 As much as I am opposed to the idea, I am leaning towards installing
 Norton Antivirus Corporate on all of my web servers.
 
 The question was brought up, that how would you ever know if your
server
 was infected without some software scanning.

You see it in the task list. And if it does anything besides 
being there (like trying to spread), you see that in your network 
traffic.

Jochem


_


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




Re: Antivirus software on web server

2003-10-16 Thread Jochem van Dieten
Mark W. Breneman wrote:
 True it probably would show in the task or process lists, but if I were
 to write a worm/Trojan, I would make it show up in the task list as
 SVCHOST.exe, the generic name of a DLL process.

1. You know how many of those you have on your server.
2. tlist will show the application names behind svchost.exe

Jochem


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




RE: Antivirus software on web server

2003-10-16 Thread Adam Wayne Lehman
Mark,

 
Once get your anti-virus software installed and running on you web
server, would you mind sharing with the list what kind of performance
impact it creates. Are you planning to run scheduled system scans?

 
Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division

 
-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:45 AM
To: CF-Talk
Subject: RE: Antivirus software on web server

 
True it probably would show in the task or process lists, but if I were
to write a worm/Trojan, I would make it show up in the task list as
SVCHOST.exe, the generic name of a DLL process.

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

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 9:41 AM
To: CF-Talk
Subject: Re: Antivirus software on web server

Mark W. Breneman wrote:
 
 As much as I am opposed to the idea, I am leaning towards installing
 Norton Antivirus Corporate on all of my web servers.
 
 The question was brought up, that how would you ever know if your
server
 was infected without some software scanning.

You see it in the task list. And if it does anything besides 
being there (like trying to spread), you see that in your network 
traffic.

Jochem

_

_


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




RE: Antivirus software on web server

2003-10-16 Thread Robertson-Ravo, Neil (RX)
Hey,

 
We have installed Anti-Virus on 3 of our web servers (2 simple webservers
just serving pages and 1 as an admin/web server). 

 
We have not encountered any real performance issues...

-Original Message-
From: Adam Wayne Lehman [mailto:[EMAIL PROTECTED]
Sent: 16 October 2003 16:50
To: CF-Talk
Subject: RE: Antivirus software on web server

Mark,

Once get your anti-virus software installed and running on you web
server, would you mind sharing with the list what kind of performance
impact it creates. Are you planning to run scheduled system scans?

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:45 AM
To: CF-Talk
Subject: RE: Antivirus software on web server

True it probably would show in the task or process lists, but if I were
to write a worm/Trojan, I would make it show up in the task list as
SVCHOST.exe, the generic name of a DLL process.

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

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 9:41 AM
To: CF-Talk
Subject: Re: Antivirus software on web server

Mark W. Breneman wrote:
 
 As much as I am opposed to the idea, I am leaning towards installing
 Norton Antivirus Corporate on all of my web servers.
 
 The question was brought up, that how would you ever know if your
server
 was infected without some software scanning.

You see it in the task list. And if it does anything besides 
being there (like trying to spread), you see that in your network 
traffic.

Jochem

_

_

_


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




Re: Antivirus software on web server

2003-10-16 Thread Prince Critter
oi Jochem!!

tlist?

-- 


Thursday, October 16, 2003, 11:45:11 AM, you wrote:

JvD Mark W. Breneman wrote:
 True it probably would show in the task or process lists, but if I were
 to write a worm/Trojan, I would make it show up in the task list as
 SVCHOST.exe, the generic name of a DLL process.

JvD 1. You know how many of those you have on your server.
JvD 2. tlist will show the application names behind svchost.exe

JvD Jochem

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




RE: WebSphere (HATS) and CFMX / J2EE questions

2003-10-16 Thread Steven Erat
Andrew, 

 
First I'd recommend that you consult with IBM Websphere support as the questions center on behavior of the J2EE server configuration rather than ColdFusion.

 
As far as static files not being served and returning 404's, there are some attributes you can add to a WAS config file for file serving of static content.There are also other attributes of the same config files which configure directory browsing and serving servlets by class name.

 
You see, IBM extends the J2EE spec, and those extensions are configured, at least in part, in ibm-application-ext.xmi.There is one copy of this file at the application level under {WAS_HOME}\AppServer\installedApps\{server}\{application}\META-INF\, and another copy at the {WAS_HOME}\AppServer\installedApps\{server}\{application}\{war}\WEB-INF\. 

 
The attributes available to the extension descriptor can be found here:
WebAppExtension
http://publib7b.boulder.ibm.com/wasinfo1/en/info/aes/javadoc/wccm/webappext/WebAppExtension.html http://publib7b.boulder.ibm.com/wasinfo1/en/info/aes/javadoc/wccm/webappext/WebAppExtension.html 

 
Specifically, look for fileServingEnabled, directoryBrowsingEnabled, and serveServletsByClassName, as those are most often of interest.They take boolean values.

 
About a year ago, Macromedia released a technote where you could download the appropriate ibm-application-ext.xmi that already had these attributes enabled, but that ibm-application-ext.xmi was for WAS 4, and I'm not certain this is appropriate for WAS 5 off the top of my head.I'd recommend using the attribute configuration in the technote as a model to help you configure the existing ibm-application-ext.xmi on your application server.

 
Invoking Servlets by Class Name
http://www.macromedia.com/support/coldfusion/ts/documents/tn18329.htm http://www.macromedia.com/support/coldfusion/ts/documents/tn18329.htm 

 
I've actually had mixed success with using those attributes though.Sometimes I found that even if I enabled them in both xmi files and restarted WAS, I still couldn't get directory browsing to work, but images would show.On another server everything worked as expected.

 
Another glitch is that I've seen is that the URL to the application can be case sensitive on directory names.Specifically, I've noticed that if the URL has capital A in Administrator (/cfmx/CFIDE/Administrator/index.cfm) the images and stylesheet wouldn't be recognized, but changing to match the actual directory case (/cfmx/CFIDE/administrator/index.cfm) would render the CFAdmin as expected.

 
I've duplicated both glitches in the WAS DefaultApplication as well.But its not consistent.Another reason to consult IBM.

 
Regarding Java settings, they are controlled by the underlying J2EE server, not ColdFusion.In non-J2EE ColdFusion server configuration, those knobs are exposed thru the CFAdmin because a version of JRun is packaged seamlessly into ColdFusion.With WebSphere, as well as the other J2EE servers, the Java/JVM configuration is configured through the J2EE admin console.In the WAS admin console, navigate to this path:Servers  Application Servers  server1  configuration tab  Process Definition  Java Virtual Machine  {many JVM options here}.

 
Regarding the HATS deployment, I'm not familiar with that.And I'm afraid this is all I have time for at this moment.Hope this helps.

 
Steven Erat

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 9:12 AM
To: CF-Talk
Subject: WebSphere (HATS) and CFMX / J2EE questions

Hi,

I've just successfully installed CF for J2EE on top of WebSphere HATS, the process of which was a little different than any installation guidelines based on the fact that HATS does not have the same configuration process as WebSphere itself. As a result, I've got some questions and issues: 

I've got my CF Administrator installed on my server at http://localhost:9080/cfmx/cfide/administrator/. http://localhost:9080/cfmx/cfide/administrator/.The first thing I notice is that due to relative urls and that added folder in the path (cfmx), the images don't show, nor does the style sheet does take effect. Is there any way to fix this?

These are non-terminal issues and so CF is working. I am ready to interact with WebSphere, so I thought I'd try to compile sum.class (found in Programming ColdFusion MX Second Edition, but any .class is applicable.), and I'm wondering which folder is the correct location to store it. WebSphere automatically places it in the c:\program files\ibm\websphere studio\eclipse\workspace\SAMS\webApplication\web-inf\classes\com\lrs\lrshtk folder. I don't think that CF knows to look there for it. In regular CF Enterprise, there is a CFIDE Administrator page where you can set up your Java and JVM settings. In CFMX on top of WebSphere HATS, there is no such page to configure these settings. However, there is a summary page with a ton of Java information (which I will place at the bottom of 

Strange cfoutput query= issue

2003-10-16 Thread Bailey, Neal
Hello folks... 

 
I have strange issue that I am trying to figure out and was hoping someone
may know where I might be missing something. I am running the queries below
to pull some template settings for me out of a sql database table and one of
the fields I use returns a simple single digit number that I use to specify
the directory that the main image files will come from. 

 
When I run the page it runs fine with no errors but for some reason the
number that I pull gets appended to itself for every item that is displayed.
Let's see if I can explain this better. 

 
If I have 10 items that are returned from my cfoutput
query=rsFinancialBenefitList

 
What I get is 

 
http://mysite.com/D2//layout.cfm?page=Sheltonpg=5item=1
http://mysite.com/D22//layout.cfm?page=Sheltonpg=5item=2
http://mysite.com/D222//layout.cfm?page=Sheltonpg=5item=3
http://mysite.com/D//layout.cfm?page=Sheltonpg=5item=4
http://mysite.com/D2//layout.cfm?page=Sheltonpg=5item=5
http://mysite.com/D22//layout.cfm?page=Sheltonpg=5item=6
http://mysite.com/D222//layout.cfm?page=Sheltonpg=5item=7
http://mysite.com/D//layout.cfm?page=Sheltonpg=5item=8
http://mysite.com/D2//layout.cfm?page=Sheltonpg=5item=9
http://mysite.com/D22//layout.cfm?page=Sheltonpg=5item=10

 
...and so on.

 
Any ideas on why it's doing this?...it seems to works with other sections
of my site just fine. 

 
--here are my Querys
cfquery name=GetTemplateData datasource=agenttemplate
SELECT * FROM dbo.Templates WHERE EntityID = '#LookUpPin.ENTITYID#'
/cfquery

 
cfquery name=rsFinancialBenefitList datasource=SASBenefits
SELECT * FROM dbo.Benefits WHERE ((dbo.Benefits.BenefitCategory = 'F') AND
(dbo.Benefits.Active = 1)) ORDER BY dbo.Benefits.Name ASC
/cfquery

 
- Template variable returns a number a value of 2
---Page---
cfoutput query=rsFinancialBenefitList
table width=100%border=0 cellspacing=0 cellpadding=2
tr
tdstrong class=12ptTextBlacka
href="">
MP_Page)#pg=12benefit=#rsFinancialBenefitList.BenefitCode#ben=5font
color=##003366#rsFinancialBenefitList.Name#/font/a/strongbr
span class=12ptTextBlack#rsFinancialBenefitList.Teaser#/span/td
/tr
tr
td height=1img src="" width=1 height=2/td
/tr
/table
/cfoutput
--Page End-

 
Thanks,

 
Neal

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




RE: Antivirus software on web server

2003-10-16 Thread Mark W. Breneman
Hey that is kinda handy.tlistI learn something each day.(Now that
I have learned it, too bad I can't go back to bed :-)



Thanks!



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

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 10:45 AM
To: CF-Talk
Subject: Re: Antivirus software on web server

Mark W. Breneman wrote:
 True it probably would show in the task or process lists, but if I
were
 to write a worm/Trojan, I would make it show up in the task list as
 SVCHOST.exe, the generic name of a DLL process.

1. You know how many of those you have on your server.
2. tlist will show the application names behind svchost.exe

Jochem


_


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




Re: Veri-suck again...

2003-10-16 Thread Doug White
It seems to be time for ICANN to move the registry to someone else

==
Stop spam on your domain, use our gateway!
For hosting solutions http://www.clickdoug.com
Featuring Win2003 Enterprise, RedHat Linux, CFMX 6.1 and all databases.
Suggested corporate Anti-virus policy: http://www.dshield.org/antivirus.pdf
==
If you are not satisfied with my service, my job isn't done!

- Original Message - 
From: John Lucas [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 10:32 AM
Subject: RE: Veri-suck again...

| https://www.godaddy.com/gdshop/pressreleases/verisign_suit.asp?isc=
| https://www.godaddy.com/gdshop/pressreleases/verisign_suit.asp?isc=se=
| %2Bfrom%5Fapp se=%2Bfrom%5Fapp=
|
| Though they are selling NetSol.
|
| http://www.verisign.com/corporate/news/2003/pr_20031016.html
|
|
| -Original Message-
| From: Scott Wilhelm [mailto:[EMAIL PROTECTED]
| Sent: Thursday, October 16, 2003 10:29 AM
| To: CF-Talk
| Subject: RE: Veri-suck again...
|
| I posted it as OT...
|
|
| I'm not going to go into the impact of it...that should be obvious...
|
| -Original Message-
| From: Tony Weeg [mailto:[EMAIL PROTECTED]
| Sent: Thursday, October 16, 2003 11:25 AM
| To: CF-Talk
| Subject: RE: Veri-suck again...
|
| excuse my ignorance, but whats the problem, and how might it impact any
| of
| us here?
|
| ...tony
|
| tony weeg
| senior web applications architect
| navtrak, inc.
| www.navtrak.net
| [EMAIL PROTECTED]
| 410.548.2337
|
| -Original Message-
| From: Ricky Fritzsching [mailto:[EMAIL PROTECTED]
| Sent: Thursday, October 16, 2003 11:18 AM
| To: CF-Talk
| Subject: RE: Veri-suck again...
|
| AGH!
|
|_
|
| From: Scott Wilhelm [mailto:[EMAIL PROTECTED]
| Sent: Thursday, October 16, 2003 10:15 AM
| To: CF-Talk
|
| They're reinstating it...
|
| http://news.com.com/2100-1038_3-5092133.html
|
|_
|
| 
|
|_
|
|
|
|_
|
|
| 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Antivirus software on web server

2003-10-16 Thread Thomas Chiverton
On Thursday 16 Oct 2003 16:45 pm, Jochem van Dieten wrote:
 Mark W. Breneman wrote:
  True it probably would show in the task or process lists, but if I were
  to write a worm/Trojan, I would make it show up in the task list as
  SVCHOST.exe, the generic name of a DLL process.

 1. You know how many of those you have on your server.
 2. tlist will show the application names behind svchost.exe

If I was writing a worm/Trojan, I'd have it patch the relavent system calls 
and therefore hide from the Tasklist.

-- 
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: Antivirus software on web server

2003-10-16 Thread Jochem van Dieten
Minion Critter wrote:
 
 tlist?

http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q250/3/20.ASPNoWebContent=1

Jochem


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




Re:Weird thing happening with ODBC Datasources

2003-10-16 Thread dsmith
Yes, I believe what you are saying is correct.I generate an ODBC Error on one page (call it test.cfm), then I call another page (page2.cfm) that has an ODBC call on it, the query from test.cfm will appear with the error message on Page2.cfm.To fix the problem, if I remove the query from test.cfm and call a blank page (test.cfm) the problem goes away.Totally weird...
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Strange cfoutput query= issue

2003-10-16 Thread Gyrus
At 10:53 16/10/2003 -0500, you wrote:
cfoutput query=rsFinancialBenefitList
table width=100%border=0 cellspacing=0 cellpadding=2
tr
tdstrong class=12ptTextBlacka
href="">
MP_Page)#pg=12benefit=#rsFinancialBenefitList.BenefitCode#ben=5font
color=##003366#rsFinancialBenefitList.Name#/font/a/strongbr
span class=12ptTextBlack#rsFinancialBenefitList.Teaser#/span/td
/tr
tr
td height=1img src="" width=1 height=2/td
/tr
/table
/cfoutput

Have you tried copying #GetTemplateData.Template# to a temp var before the 
CFOUTPUT, then using that var instead? Would rule out any weirdness between 
the loop and the reference to the GetTemplateData query. Also, double-check 
that GetTemplateData only has one record maybe? And possibly be more 
specific in the reference, e.g. #GetTemplateData['Template'][1]# ?

Kind of grasping at straws, but nothing strikes me straight away...

Gyrus
[EMAIL PROTECTED]
http://norlonto.net/gyrus/dev/
PGP key available 

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




Re: Antivirus software on web server

2003-10-16 Thread Prince Critter
oi Jochem!!

Ha!

ta

-- 


Thursday, October 16, 2003, 12:08:52 PM, you wrote:

JvD Minion Critter wrote:
 
 tlist?

JvD http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q250/3/20.ASPNoWebContent=1

JvD Jochem

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




Re: Antivirus software on web server

2003-10-16 Thread Jochem van Dieten
Thomas Chiverton wrote:
 On Thursday 16 Oct 2003 16:45 pm, Jochem van Dieten wrote:
Mark W. Breneman wrote:

True it probably would show in the task or process lists, but if I were
to write a worm/Trojan, I would make it show up in the task list as
SVCHOST.exe, the generic name of a DLL process.

1. You know how many of those you have on your server.
2. tlist will show the application names behind svchost.exe
 
 If I was writing a worm/Trojan, I'd have it patch the relavent system calls 
 and therefore hide from the Tasklist.

No account, not even LocalSystem, should have permission to patch 
core OS files.

Jochem


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




RE: Strange cfoutput query= issue

2003-10-16 Thread Bailey, Neal
Thanks, Gyrus

I have tried all of those things and still it continues to append and repeat
the number in the string. It's very strange. I am using the same query in a
different cfoutput query loop and it works fine. I am wondering if it has
to do with this section be a cfinclude ...could this be the problem?

 
- Neal

-Original Message-
From: Gyrus [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 10:13 AM
To: CF-Talk
Subject: Re: Strange cfoutput query= issue

 
At 10:53 16/10/2003 -0500, you wrote:
cfoutput query=rsFinancialBenefitList
table width=100%border=0 cellspacing=0 cellpadding=2
tr
tdstrong class=12ptTextBlacka
href="">
T
MP_Page)#pg=12benefit=#rsFinancialBenefitList.BenefitCode#ben=5font
color=##003366#rsFinancialBenefitList.Name#/font/a/strongbr
span class=12ptTextBlack#rsFinancialBenefitList.Teaser#/span/td
/tr
tr
td height=1img src="" width=1 height=2/td
/tr
/table
/cfoutput

Have you tried copying #GetTemplateData.Template# to a temp var before the 
CFOUTPUT, then using that var instead? Would rule out any weirdness between 
the loop and the reference to the GetTemplateData query. Also, double-check 
that GetTemplateData only has one record maybe? And possibly be more 
specific in the reference, e.g. #GetTemplateData['Template'][1]# ?

Kind of grasping at straws, but nothing strikes me straight away...

Gyrus
[EMAIL PROTECTED]
http://norlonto.net/gyrus/dev/ http://norlonto.net/gyrus/dev/ 
PGP key available 

_


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




RE: Antivirus software on web server

2003-10-16 Thread Mark W. Breneman
Adam,

If I install NAV, I'll be glad to post back to the list the results.

I am not planning on running scheduled system scans. I am not too
worried about file based viruses (boot sector, Trojan or email/scr),
what I am hoping to prevent is worms that prey on security holes like
slammer, blaster or Code Red.

I am 99% sure that my servers are secure, my software firewall and
hardware firewall are configed correctly and all relevant patches are
applied, but if I miss one, I could spend my weekend rebuilding a
server. 

It would be nice if there was a web server version of NAV.Or something
that is ultra light on CPU time and system resources.

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

-Original Message-
From: Adam Wayne Lehman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 10:50 AM
To: CF-Talk
Subject: RE: Antivirus software on web server

Mark,

Once get your anti-virus software installed and running on you web
server, would you mind sharing with the list what kind of performance
impact it creates. Are you planning to run scheduled system scans?

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:45 AM
To: CF-Talk
Subject: RE: Antivirus software on web server

True it probably would show in the task or process lists, but if I were
to write a worm/Trojan, I would make it show up in the task list as
SVCHOST.exe, the generic name of a DLL process.

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

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 9:41 AM
To: CF-Talk
Subject: Re: Antivirus software on web server

Mark W. Breneman wrote:
 
 As much as I am opposed to the idea, I am leaning towards installing
 Norton Antivirus Corporate on all of my web servers.
 
 The question was brought up, that how would you ever know if your
server
 was infected without some software scanning.

You see it in the task list. And if it does anything besides 
being there (like trying to spread), you see that in your network 
traffic.

Jochem

_

_


_


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




RE: Web Services for MX

2003-10-16 Thread Tom Jordahl
plug

I am giving a Leveraging Web Services with CFMX at MAX next month.

http://www.macromedia.com/macromedia/conference/sessions/ss222w.html http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 

http://www.macromedia.com/macromedia/conference/ http://www.macromedia.com/macromedia/conference/ 

/plug

--
Tom Jordahl
Macromedia Server Development

-Original Message-
From: Eric Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 13, 2003 12:38 PM
To: CF-Talk
Subject: Web Services for MX

Can anyone point out a *good* tutorial they used to get up and a good handle
on MX and Web Services??We need to springboard and want to make sure we
are approaching properly.

Thanks in advance!!

Regards,

Eric J. Hoffman
DataStream Connexion
www.datastreamconnexion.com


_


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




RE: Antivirus software on web server

2003-10-16 Thread Dave Watts
 The question was brought up, that how would you ever know 
 if your server was infected without some software scanning.
 My argument to that was if the server is correctly secured 
 that should never be an issue, but, with new exploits being 
 discovered each month the chances go up that the server 
 could be compromised before the patch is applied. 

If you're concerned about server exploits, a virus scanner probably isn't
going to help you very much, if at all. You're much better off using a
host-based firewall to limit inbound and outbound traffic appropriately, and
use something wherever possible to examine that traffic (stateful packet
inspection at your host-based firewall, or a web server input filter, for
example).

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: Web Services for MX

2003-10-16 Thread Tony Weeg
reply
	
	this homey has already registered for it, cause I knew it would be
good!

/reply 

...tony

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

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:27 PM
To: CF-Talk
Subject: RE: Web Services for MX

plug

I am giving a Leveraging Web Services with CFMX at MAX next month.

http://www.macromedia.com/macromedia/conference/sessions/ss222w.html
http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 

http://www.macromedia.com/macromedia/conference/
http://www.macromedia.com/macromedia/conference/ 

/plug

--
Tom Jordahl
Macromedia Server Development

-Original Message-
From: Eric Hoffman [mailto:[EMAIL PROTECTED]
Sent: Monday, October 13, 2003 12:38 PM
To: CF-Talk
Subject: Web Services for MX

Can anyone point out a *good* tutorial they used to get up and a good handle
on MX and Web Services??We need to springboard and want to make sure we
are approaching properly.

Thanks in advance!!

Regards,

Eric J. Hoffman
DataStream Connexion
www.datastreamconnexion.com

_




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




RE: Web Services for MX

2003-10-16 Thread Ben Forta
And having seen the content, I'd highly recommend that anyone interested
in Web Services attend. (For those of you who don't know, Tom is our in
house Web Services guru and the engineer responsible for Web Services
support in CFMX).

 
In addition, I am giving a hands-on (but far less detailed) session on
Web Services at MAX, but that session is sold-out, sorry. :-)

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:27 PM
To: CF-Talk
Subject: RE: Web Services for MX

plug

I am giving a Leveraging Web Services with CFMX at MAX next month.

http://www.macromedia.com/macromedia/conference/sessions/ss222w.html
http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 

http://www.macromedia.com/macromedia/conference/
http://www.macromedia.com/macromedia/conference/ 

/plug

--
Tom Jordahl
Macromedia Server Development

-Original Message-
From: Eric Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 13, 2003 12:38 PM
To: CF-Talk
Subject: Web Services for MX

Can anyone point out a *good* tutorial they used to get up and a good
handle
on MX and Web Services??We need to springboard and want to make sure
we
are approaching properly.

Thanks in advance!!

Regards,

Eric J. Hoffman
DataStream Connexion
www.datastreamconnexion.com

_

_


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




RE: html emails with javascript in outlook

2003-10-16 Thread Dave Watts
  I have yet to find a single client/server package which provides 
  the functionality of Exchange and Outlook, other than Openmail. 
 
 Seen Horde ?

Not until you mentioned it, so I took a look (http://www.horde.org/), and
no, it's no substitute for Exchange + Outlook. Not by a long shot. I do
appreciate the pointer, though.

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: Antivirus software on web server

2003-10-16 Thread Thane Sherrington
At 11:26 AM 10/16/03 -0500, Mark W. Breneman wrote:


It would be nice if there was a web server version of NAV.Or something
that is ultra light on CPU time and system resources.

I'd use Sophos (www.sophos.com)

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]




Quotes in a Text Box Problem

2003-10-16 Thread Les Mizzell
If #import_detail.PA_SIZE# equals the value of: 15x34

This will display correctly inside a CFOUTPUT statement:

cfoutputProduct Size: #import_detail.PA_SIZE#cfoutput

will display correctly as

Product Size: 15x34

BUT..

This:

input type=text
name=PA_SIZE
value=cfoutput#import_detail.PA_SIZE#/cfoutput
size=32

will show the text box and cut off after the first quote, so I get a 
text box with just 15 in it.

I know there's a fix, I just ain't found it yet.

Ideas?

TIA

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




RE: Web Services for MX

2003-10-16 Thread Tony Weeg
which one is that ben? what day/time?I signed up for everything I could
find that was webservices related. 

...tony

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

-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:37 PM
To: CF-Talk
Subject: RE: Web Services for MX

And having seen the content, I'd highly recommend that anyone interested in
Web Services attend. (For those of you who don't know, Tom is our in house
Web Services guru and the engineer responsible for Web Services support in
CFMX).

In addition, I am giving a hands-on (but far less detailed) session on Web
Services at MAX, but that session is sold-out, sorry. :-)

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 12:27 PM
To: CF-Talk
Subject: RE: Web Services for MX

plug

I am giving a Leveraging Web Services with CFMX at MAX next month.

http://www.macromedia.com/macromedia/conference/sessions/ss222w.html
http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 

http://www.macromedia.com/macromedia/conference/
http://www.macromedia.com/macromedia/conference/ 

/plug

--
Tom Jordahl
Macromedia Server Development

-Original Message-
From: Eric Hoffman [mailto:[EMAIL PROTECTED]
Sent: Monday, October 13, 2003 12:38 PM
To: CF-Talk
Subject: Web Services for MX

Can anyone point out a *good* tutorial they used to get up and a good handle
on MX and Web Services??We need to springboard and want to make sure we
are approaching properly.

Thanks in advance!!

Regards,

Eric J. Hoffman
DataStream Connexion
www.datastreamconnexion.com

_

_




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




RE: Quotes in a Text Box Problem

2003-10-16 Thread Tony Weeg
is it htmlEditFormat()

maybe? 

...tony

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

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:30 PM
To: CF-Talk
Subject: Quotes in a Text Box Problem

If #import_detail.PA_SIZE# equals the value of: 15x34

This will display correctly inside a CFOUTPUT statement:

cfoutputProduct Size: #import_detail.PA_SIZE#cfoutput

will display correctly as

Product Size: 15x34

BUT..

This:

input type=text
name=PA_SIZE
value=cfoutput#import_detail.PA_SIZE#/cfoutput
size=32

will show the text box and cut off after the first quote, so I get a text
box with just 15 in it.

I know there's a fix, I just ain't found it yet.

Ideas?

TIA




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




RE: Antivirus software on web server

2003-10-16 Thread Mark W. Breneman
Dave, as always, true.

Maybe I should be asking if there is worm scanning software out there
that has auto-up-dating worm defs.And maybe I should do my homework
and 2x check that Norton Anti Virus does scan and prevent worms from
infecting a computer.

Thanks

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

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:38 AM
To: CF-Talk
Subject: RE: Antivirus software on web server

 The question was brought up, that how would you ever know 
 if your server was infected without some software scanning.
 My argument to that was if the server is correctly secured 
 that should never be an issue, but, with new exploits being 
 discovered each month the chances go up that the server 
 could be compromised before the patch is applied. 

If you're concerned about server exploits, a virus scanner probably
isn't
going to help you very much, if at all. You're much better off using a
host-based firewall to limit inbound and outbound traffic appropriately,
and
use something wherever possible to examine that traffic (stateful packet
inspection at your host-based firewall, or a web server input filter,
for
example).

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: Web Services for MX

2003-10-16 Thread Ben Forta
http://www.macromedia.com/macromedia/conference/sessions/ss201h.html

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:43 PM
To: CF-Talk
Subject: RE: Web Services for MX

which one is that ben? what day/time?I signed up for everything I
could
find that was webservices related. 

...tony

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

-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:37 PM
To: CF-Talk
Subject: RE: Web Services for MX

And having seen the content, I'd highly recommend that anyone interested
in
Web Services attend. (For those of you who don't know, Tom is our in
house
Web Services guru and the engineer responsible for Web Services support
in
CFMX).

In addition, I am giving a hands-on (but far less detailed) session on
Web
Services at MAX, but that session is sold-out, sorry. :-)

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 12:27 PM
To: CF-Talk
Subject: RE: Web Services for MX

plug

I am giving a Leveraging Web Services with CFMX at MAX next month.

http://www.macromedia.com/macromedia/conference/sessions/ss222w.html
http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 

http://www.macromedia.com/macromedia/conference/
http://www.macromedia.com/macromedia/conference/ 

/plug

--
Tom Jordahl
Macromedia Server Development

-Original Message-
From: Eric Hoffman [mailto:[EMAIL PROTECTED]
Sent: Monday, October 13, 2003 12:38 PM
To: CF-Talk
Subject: Web Services for MX

Can anyone point out a *good* tutorial they used to get up and a good
handle
on MX and Web Services??We need to springboard and want to make sure
we
are approaching properly.

Thanks in advance!!

Regards,

Eric J. Hoffman
DataStream Connexion
www.datastreamconnexion.com

_

_



_


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




Programmatically set debug options

2003-10-16 Thread Suyer, Ed [PRD Non-JJ]
I know it's possible to turn debug on for an application:

cfsetting enablecfoutputonly=yes showdebugoutput=no

Does anyone know of a way to set specific debug options?

i.e.

Show Session Vars:yes/no
Show Application Vars: yes/no
Show Form Vars: yes/no

etc.,

I'm specifically looking to NOT SHOW session and application vars.

TIA!

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




RE: Web Services for MX

2003-10-16 Thread Ricky Fritzsching
Woo Woo! I made the list! 

 
I will make sure to bring you an apple!

 
Ricky

_

From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:48 AM
To: CF-Talk

http://www.macromedia.com/macromedia/conference/sessions/ss201h.html

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:43 PM
To: CF-Talk
Subject: RE: Web Services for MX

which one is that ben? what day/time?I signed up for everything I
could
find that was webservices related. 

...tony

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

-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:37 PM
To: CF-Talk
Subject: RE: Web Services for MX

And having seen the content, I'd highly recommend that anyone interested
in
Web Services attend. (For those of you who don't know, Tom is our in
house
Web Services guru and the engineer responsible for Web Services support
in
CFMX).

In addition, I am giving a hands-on (but far less detailed) session on
Web
Services at MAX, but that session is sold-out, sorry. :-)

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 12:27 PM
To: CF-Talk
Subject: RE: Web Services for MX

plug

I am giving a Leveraging Web Services with CFMX at MAX next month.

http://www.macromedia.com/macromedia/conference/sessions/ss222w.html
http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 

http://www.macromedia.com/macromedia/conference/
http://www.macromedia.com/macromedia/conference/ 

/plug

--
Tom Jordahl
Macromedia Server Development

-Original Message-
From: Eric Hoffman [mailto:[EMAIL PROTECTED]
Sent: Monday, October 13, 2003 12:38 PM
To: CF-Talk
Subject: Web Services for MX

Can anyone point out a *good* tutorial they used to get up and a good
handle
on MX and Web Services??We need to springboard and want to make sure
we
are approaching properly.

Thanks in advance!!

Regards,

Eric J. Hoffman
DataStream Connexion
www.datastreamconnexion.com

_

_



_

_


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




RE: Quotes in a Text Box Problem

2003-10-16 Thread DURETTE, STEVEN J (AIT)
Les,

 
Try this:

 
cfoutput
input type=text
 name=PA_SIZE
 value='#import_detail.PA_SIZE#'
 size=32
/cfoutput

 
notice the single quotes around the value.I have found that if I want
double quotes in an input I have to surround the value with single quotes.

 
I also moved the cfoutput outside the input tag.I hate tags nested like
that, but it's a personal preference.

 
Steve

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 12:30 PM
To: CF-Talk
Subject: Quotes in a Text Box Problem

If #import_detail.PA_SIZE# equals the value of: 15x34

This will display correctly inside a CFOUTPUT statement:

cfoutputProduct Size: #import_detail.PA_SIZE#cfoutput

will display correctly as

Product Size: 15x34

BUT..

This:

input type=text
name=PA_SIZE
value=cfoutput#import_detail.PA_SIZE#/cfoutput
size=32

will show the text box and cut off after the first quote, so I get a 
text box with just 15 in it.

I know there's a fix, I just ain't found it yet.

Ideas?

TIA

_


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




Re: Quotes in a Text Box Problem

2003-10-16 Thread Charlie Griefer
try:

input type=text
name=PA_SIZE
cfoutput#replace(import_detail.PA_SIZE, , quot; all)#/cfoutput
size=32

charlie

- Original Message - 
From: Les Mizzell 
To: CF-Talk 
Sent: Thursday, October 16, 2003 9:30 AM
Subject: Quotes in a Text Box Problem

If #import_detail.PA_SIZE# equals the value of: 15x34

This will display correctly inside a CFOUTPUT statement:

cfoutputProduct Size: #import_detail.PA_SIZE#cfoutput

will display correctly as

Product Size: 15x34

BUT..

This:

input type=text
 name=PA_SIZE
 value=cfoutput#import_detail.PA_SIZE#/cfoutput
 size=32

will show the text box and cut off after the first quote, so I get a 
text box with just 15 in it.

I know there's a fix, I just ain't found it yet.

Ideas?

TIA


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




Including servlets in a CF template

2003-10-16 Thread John McCosker
Hi,

is there anyway to include java servlets in a CF page on an MX CF server
that is running on IIS,
I'm getting errors when trying to do this, although the same template runs
fine on a dev box
that is running the jrun stand alone from install.

Anyone experience this problem,

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




stored Procs dbvarname In MX

2003-10-16 Thread Kevin Marino
Anybody have a reasonable solution to the no support dbvarname in stored
procs.
Not being able to define the variables anymore is defnitely an issue.

Thanks

-Kevin Marino
-- 
Webmaster - HealthObjects
[EMAIL PROTECTED]

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




Re: stored Procs dbvarname In MX

2003-10-16 Thread Jochem van Dieten
Kevin Marino wrote:
 Anybody have a reasonable solution to the no support dbvarname in stored
 procs.

IIRC JDBC 2 has no support for named variables, so I doubt that 
there is any solution except using positional notation.

Jochem


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




date timelines in cfchart - how?

2003-10-16 Thread Dave Wilson
Hi all,

Just wondered if ayone has figured out a way to have a date timeline on the
x-axis when using cfchart? I'm trying to chart values over time. So far I'm
just using intervals (e.g. origin starts today and x-axis simply numbers
each day thereafter in sequence), but would much rather have the dates on
the timeline.

TIA,
Dave


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




RE: Quotes in a Text Box Problem

2003-10-16 Thread Philip Arnold
HTMLeditFormat() escapes all special characters for you, including
quotes, ampersand, greater than and less than

 
Don't try to do it with Replace as you're just going to have several of
them to cover every eventuality

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:30 PM
To: CF-Talk
Subject: Quotes in a Text Box Problem

If #import_detail.PA_SIZE# equals the value of: 15x34

This will display correctly inside a CFOUTPUT statement:

cfoutputProduct Size: #import_detail.PA_SIZE#cfoutput

will display correctly as

Product Size: 15x34

BUT..

This:

input type=text
name=PA_SIZE
value=cfoutput#import_detail.PA_SIZE#/cfoutput
size=32

will show the text box and cut off after the first quote, so I get a 
text box with just 15 in it.

I know there's a fix, I just ain't found it yet.

Ideas?

TIA

_


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




Re: Giving up on DW 2004 MX

2003-10-16 Thread jon hall
Thursday, October 16, 2003, 10:37:33 AM, you wrote:
 MTeF I strongly disagree with this. Both about the documentation and the
MF power
 MTeF :-)

 Oh really... :)

MF Just tell me about something that you would like to implement as DW's
MF extension and you can't due to the API's limitations

For one example, setting focus. Focus needs to be able to be set from
anywhere, to anywhere. This is especially problematic with dynamic
content in a floater as doc.write has, i assume unintended,
consequences in regards to focus. 
Floaters themselves need all of the DOM events...onmouseover is a big
one. Onmouseover...floaters need to be able to be focused.
Onrightclick is another big missing one.

 How exactly does an extremely small subset of DOM 1 that is
 implemented unevenly across the different objects qualify as
 powerful? To say nothing of DOM 2 or 3.

MF See above, what part of DOM 2 or 3 do you need inside the API, and why?

doc.write being the only way to dynamically alter content is so 5
years ago, slow, and has obvious code maintenance problems. The world has
DOM 2 now. Fourth generation browsers are dead, and doc.write is lame.

 How does the fact that all the menus are very nicely defined in XML
 files, but no one has thought to distribute DTD's of any kind qualify
 as well documented?

MF Do you really feel like it's so hard to read without a DTD?
MF Do you think HS's stuff is better documented?

A simple DTD says so much about an XML document...it's vastly
superior to the few paragraphs and examples given.
Homesite's built in objects and functions are documented clearly and named
logically. It also benefits from the fact that tons of preexisting
documentation exists for the WSH languages and COM objects.

 How can DW's data connectivity compare in any regard to ADO for power?

MF I never felt the need to connect to a datasource from a DW's extension, but,
MF apart from C++, you can leverage Flash Remoting too

I can't remember who developed it, but I'm sure you have seen that
cool new DW data wizard that was recently released. It's
great...except DW's data limitations wont allow an editable
grid, just viewing. Even WebMatrix allows data editing, and it's
free.

 DW allows only JS or C, HS allows any language built on WSH, meaning
 VBS, JS, Kix, etc., and any language a COM object can be written in.

MF There is a huge difference here, DW API are cross-platform.

I only use DW on one platform...I don't see why I have to be
limited. Would it be hard to allow Windows people to use WSH and allow
Mac people to use AppleScript?

 Why the heck is DWFile so slow?

MF How many files you need to process with it? I used it for up to 2-3.000
MF files testing my site-wide extensions, it does the job, I never felt the
MF need for anything faster (remember it's cross platform too)

Directory listings read from the HD directly every time instead of
using the Windows API's ability to cache directory listings.

 I also can't speak to the C API, knowing very little C, but how many web
 developers know C?

MF I don't, but I was still able to do a few not too trivial things using DW's
MF API

 The only thing going for DW is the UI extensibility, which is awesome,

MF And leaves HS in the dust here... :-)
MF Try this for example:
MF http://www.communitymx.com/content/article.cfm?cid=A1EDDF56F77EE7CA

A custom floater in Flash? Nice looking...still has all of Flash's UI
problems like lack of right-click, and scroll button though. I
want to extend my IDE because I want more usability out of my IDE, not
even more usability problems.

DW does trump HS with the ability to alter the UI, but just putting a
sticker on the side of the box doesn't make it so. It's has to fully
deliver that capability.

 I can't help but feel that the whole DW
 extensibility thing has not enough resources, meaning people working
 on it, or it has too many, and not enough organization. Maybe it's
 because it has to run on the Mac as well that is holding it back.

MF I am not pretending DW's API is perfect, but I stand by my words saying that
MF I strongly disagree with your statement about HS's extensibility being more
MF powerful or better documented

 I think Mozilla is the model of what DW extensibility model want's to be.
 XUL/XBL/XPCOM kicks butt...or even HTML/DOM2/XML Events. Whatever the
 solution is, DW needs it. It's really lagging.

MF Well, actually DW predates Mozilla, the XML menus were based on the very
MF early draft of XUL (back in 1999)

Four years...The extensibility team been on hiatus since then?

I know this stuff isn't trivial to implement, but it's what I expect
when I look over and see guys using WebMatrix and VS.Net. I never
claimed to be a reasonable guy either :)

-- 
 jon
 mailto:[EMAIL PROTECTED]

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




Re: Quotes in a Text Box Problem

2003-10-16 Thread Charlie Griefer
ooo...that's better :)

- Original Message - 
From: Philip Arnold 
To: CF-Talk 
Sent: Thursday, October 16, 2003 10:13 AM
Subject: RE: Quotes in a Text Box Problem

HTMLeditFormat() escapes all special characters for you, including
quotes, ampersand, greater than and less than

Don't try to do it with Replace as you're just going to have several of
them to cover every eventuality

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:30 PM
To: CF-Talk
Subject: Quotes in a Text Box Problem

If #import_detail.PA_SIZE# equals the value of: 15x34

This will display correctly inside a CFOUTPUT statement:

cfoutputProduct Size: #import_detail.PA_SIZE#cfoutput

will display correctly as

Product Size: 15x34

BUT..

This:

input type=text
 name=PA_SIZE
 value=cfoutput#import_detail.PA_SIZE#/cfoutput
 size=32

will show the text box and cut off after the first quote, so I get a 
text box with just 15 in it.

I know there's a fix, I just ain't found it yet.

Ideas?

TIA

 _


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




getting the day of week in a date

2003-10-16 Thread Gabriel Robichaud
Hey all!

 
Anyone know why this code doesn't return the right day of week?
cfset firstDayOfcurrMonth =
DayOfWeek(FirstDayOfMonth(createdate(url.currYear, url.currMonth,
url.currday)))

 
I get the wrong day!Even if I replace the variables url.currYear,
url.currmonth, url.currday with now() I still get the wrong day returned!

 
cfset firstDayOfcurrMonth = DayOfWeek(FirstDayOfMonth(now()))

 
Any help would be great

 
Gabriel
-Original Message-
From: Philip Arnold [mailto:[EMAIL PROTECTED]
Sent: October 16, 2003 1:13 PM
To: CF-Talk
Subject: RE: Quotes in a Text Box Problem

 
HTMLeditFormat() escapes all special characters for you, including
quotes, ampersand, greater than and less than

Don't try to do it with Replace as you're just going to have several of
them to cover every eventuality

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:30 PM
To: CF-Talk
Subject: Quotes in a Text Box Problem

If #import_detail.PA_SIZE# equals the value of: 15x34

This will display correctly inside a CFOUTPUT statement:

cfoutputProduct Size: #import_detail.PA_SIZE#cfoutput

will display correctly as

Product Size: 15x34

BUT..

This:

input type=text
name=PA_SIZE
value=cfoutput#import_detail.PA_SIZE#/cfoutput
size=32

will show the text box and cut off after the first quote, so I get a 
text box with just 15 in it.

I know there's a fix, I just ain't found it yet.

Ideas?

TIA

_

_


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




Scanned uploading

2003-10-16 Thread Ray Bujarski
We have an application we would like to open up to the public with the
ability to upload images.This opens all kinds of security wholes in
our network, and raises all kinds of questions like what if the image
has a virus embeded in it? 
Has anyone dealt with this sort of thing?What were your solutions?
How did you deal with scanning uploaded files?
Any help is greatly appreciated.
Ray Bujarski
Direct 858-845-7669
Pager858-636-9900 

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




Errors, Web Services, CFMX 6.1

2003-10-16 Thread Jeff Beer
I'm running the sample code from Chapter 25 of the Coldfusion MX Bible.

In both instances the only code I've changed is the URL info.

I continually get this error:

Could not generate stub objects for web service invocation.
Name: http://localhost:8500/com/webservice.cfc?WDSL. WSDL:
http://localhost:8500/com/webservice.cfc?WDSL. org.xml.sax.SAXException:
Fatal Error: URI=null Line=40: Expected  to terminate element starting
on line 16. 

The error occurred in F:\CFusionMX\wwwroot\com\TestHarness.cfm: line 15

 
13 : webservice = http://localhost:8500/com/webservice.cfc?WDSL
14 : 
15 : cfinvokeargument name=zipfilter value=3
16 : /cfinvoke
17 : 

If I call the .cfc directly with ?wdsl, I get the nicely formatted
display showing the methods, etc..

The server is MX 6.1 (Version 6,1,0,63958)

I've also tried running this on my account at Crystaltech.com
(http://www.dbactive.com/com/index.cfm and they can't offer any
resolution either. Here's the error from Crystaltech:

The web service is not available.
Could not generate stub objects for web service invocation.
Name: wsPartners. WSDL: wsPartners. java.net.MalformedURLException: no
protocol: wsPartners It is recommended that you use a web browser to
retrieve and examine the requested WSDL document for correctness. If the
requested WSDL document can't be retrieved or it is dynamically
generated, it is likely that the target web service has programming
errors. 

If I try to run http://www.dbactive.com/com/webservice.cfc?wdsl, I get

Could not import the tag library specified by
../administrator/cftags/.
The following error was encountered:
C:\Inetpub\wwwroot-ct\CFIDE\componentutils\..\administrator\cftags.
Please ensure that you have specified a valid tag library.
The CFML compiler was processing:

a cfimport tag beginning on line 3, column 2.

Any ideas?

TIA!


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




RE: getting the day of week in a date

2003-10-16 Thread Raymond Camden
firstDayOfMOnth returns the day of the year the first day of that month
falls on. What you want is just

cfset dow = dayOfWeek(createDate(etc))


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




RE: Web Services for MX

2003-10-16 Thread Christine Lawson
If you'd like to o get started before MAX you can visit our Web Services
Topic Center: http://www.macromedia.com/devnet/topics/web_services.html
http://www.macromedia.com/devnet/topics/web_services.html 

 
Christine

-Original Message-
From: Ricky Fritzsching [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:54 PM
To: CF-Talk
Subject: RE: Web Services for MX

Woo Woo! I made the list! 

I will make sure to bring you an apple!

Ricky

_

From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:48 AM
To: CF-Talk

http://www.macromedia.com/macromedia/conference/sessions/ss201h.html
http://www.macromedia.com/macromedia/conference/sessions/ss201h.html 

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:43 PM
To: CF-Talk
Subject: RE: Web Services for MX

which one is that ben? what day/time?I signed up for everything I
could
find that was webservices related. 

...tony

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

-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:37 PM
To: CF-Talk
Subject: RE: Web Services for MX

And having seen the content, I'd highly recommend that anyone interested
in
Web Services attend. (For those of you who don't know, Tom is our in
house
Web Services guru and the engineer responsible for Web Services support
in
CFMX).

In addition, I am giving a hands-on (but far less detailed) session on
Web
Services at MAX, but that session is sold-out, sorry. :-)

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 12:27 PM
To: CF-Talk
Subject: RE: Web Services for MX

plug

I am giving a Leveraging Web Services with CFMX at MAX next month.

http://www.macromedia.com/macromedia/conference/sessions/ss222w.html
http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 
http://www.macromedia.com/macromedia/conference/sessions/ss222w.html 

http://www.macromedia.com/macromedia/conference/
http://www.macromedia.com/macromedia/conference/ 
http://www.macromedia.com/macromedia/conference/ 

/plug

--
Tom Jordahl
Macromedia Server Development

-Original Message-
From: Eric Hoffman [mailto:[EMAIL PROTECTED]
Sent: Monday, October 13, 2003 12:38 PM
To: CF-Talk
Subject: Web Services for MX

Can anyone point out a *good* tutorial they used to get up and a good
handle
on MX and Web Services??We need to springboard and want to make sure
we
are approaching properly.

Thanks in advance!!

Regards,

Eric J. Hoffman
DataStream Connexion
www.datastreamconnexion.com

_

_



_

_

_


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




  1   2   3   >