Ever tried to view Crystal Report file in coldfusion?

2001-07-05 Thread JAIME HOI


hi
  have anyone tried calling a crystal report file in CF? i have
installed Crystal report 8.5 in my coldfusion server. But somehow, i did not
manage to view the report. It will prompt me to save the file or open from
its current location. And when the file run, i can only see the design
layout , no data was displayed even though i had passed in the prompt value.


   i also tried to use CFREPORT to run the report, but i get this
error instead :

Error occurred while processing CFREPORT 
An unexpected error occurred while using the Crystal Engine. 
Error number 401 ocurred (Windows NT error number 1157 occurred while
attempting to load the library CRPE32.DLL.). 
Crystal Library = () 
DLL Version = , Engine Version =

i really have no idea how to solve this. And i  can't find any
solution in the web as well. Any help will be greatly appreciated. 





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Capture URL as Variable

2001-07-05 Thread Peter Janett

yourdomain.com#CGI.SCRIPT_NAME#?#QUERY_STRING# should do it.

HTH,

Peter Janett

New Media One Web Services

WEB HOSTING FOR WEB DEVELOPERS

Sun, IRIX, Windows 2000, Linux;
PHP, MySQL, Perl, Cold Fusion,
MS SQL, ASP, SSI, SSL
http://www.newmediaone.net
[EMAIL PROTECTED]
(303)828-9882

- Original Message -
From: Andrew Peterson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 03, 2001 2:13 PM
Subject: Capture URL as Variable


 Hi,

 This is probably a dumb question. Let's say a user is visiting a page on
my
 site called
  www.mysite.com/homepage.cfm?memberid=123 and I want to capture the
template
 name and corresponding name/value pairs (in this case,
 homepage.cfm?memberid=123) into a variable? Is there a function that does
 this? I can use GetFileFromPath(GetTemplatePath()) to get homepage.cfm,
but
 that leaves out everything after cfm. Basically, I want to create an
 application which will allow users to bookmark their favorites on my site,
 so I need everything captured after the .com.

 Thanks for any help.

 Andrew



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



connecting to many databases using the same DSN

2001-07-05 Thread Todd Ashworth

OK .. I've asked this question a couple of times and, so far, no one has had
an answer.  Well, I finaly figured out the answer with help from my DBA.
The main question has been How do I connect to different databases using
the same DSN!!

I don't know how usefull anyone else would find this, but it was of major
importance to us, so I'm going to throw it out there in case someone else
ever wants to know how.

Basicly, you use the connectstring parameter of cfquery.  It would look
something like this:

cfquery name=qry_myReallyCoolQuery datasource=#Client.userDSN#
connectstring=uid=#Client.UserID#;pwd=#Client.Password#;dbf=#Client.myDBFil
e#;svr=#Client.myDBServer#;links=#Client.DBServerLink#
cachedwithin=#createTimeSpan(0,0,0,0)#

This connectstring is for a Sybase database/engine.

It breaks down like this:

!--- Begin 1:  You don't have to include these in the connectstring if you
want to use them in cfquery, but for our needs, putting them in the
connectstring makes sense, since we store the whole connectstring in a
Client variable and the uid and pwd passed to the server determines access
permissions. ---
uid = cfquery's username attribute
pwd = cfquery's password attribute
!--- End 1
dbf = the name of the database file you wish to actually connect to as seen
by the computer that runs the database engine (ex:
E:\my_path\to_the\database_file\database.db)
svr = the name of the database engine that CF should look for to find the
dbf (optional if you have one db engine)
links = the protocol info CF might need to connect to the database (in our
case, 'NetBIOS')

I havn't tried this with any other database, so I don't know if the syntax
is the same, but hopefully you get the idea.

If you have any questions, email me and ask away :)

Todd

- Original Message -
From: Todd Ashworth [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, June 29, 2001 10:45 AM
Subject: cffile, cfregistry, and clusters, oh my


 I need some suggestions on several different topics here.

 1.  We have a web app that will be used by many, many people.  We would
like
 to host this app on a cluster of servers.  The catch is, we want everyone
to
 use the same copy of code for the app, but each person/company needs their
 own database.  If we get 1000 companies using this thing, I don't want to
 have to replicate 1000 different DSNs for the different databases accross
 all of the clustered servers.  What I would like to do is find a way to
 connect to the various databases without having to use a DSN.  We tried
 using OLEDB and specifying the database file, but we couldn't get that to
 work.  Maybe someone could explain to me how to get OLEDB to work with
 Sybase 7, or maybe tell me another way to do what I'm trying to do.

 2.  We want people who want to use the app to be able to sign up for it on
 the web site and begin using it almost immediately, without any
intervention
 on our part.  Signing up for the app requires that the sign up program
 creates some folders and registry entries on each server in the cluster.
Is
 there an example, or tutorial where the best way to handle this is
 explained?

 Thanks

 Todd




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Lost Session variables

2001-07-05 Thread David Laing

Rob,

I have experienced a similar problem on IE5 for the Mac - it just seems to
refuse to
store the CFID and CFTOKEN variables as cookies unless you turn don't
specify the expires attributes of the cookie.

ie, like this

cfapplication name=RugbyScene sessionmanagement=Yes
setclientcookies=No

cfcookie name=CFID value=#CFID#
cfcookie name=CFTOKEN value=#CFTOKEN#

(Can't remember exactly where you get the values for CFID and CFTOKEN - I
think they are just local variables - you will have to check.  Otherwise you
might need to set:
CFSET CFID = Session.CFID
CFSET CFTOCKEN = Session.CFTOCKEN)

Donno if that will help you - not having the variables persistant didn't
help me :(

Regards

David

 -Original Message-
 From: Rob McLennan [mailto:[EMAIL PROTECTED]]
 Sent: 05 July 2001 08:17
 To: CF-Talk
 Subject: Lost Session variables


 I have a an end  user using IE5 on Windows ME who is unable to
 maintaing her
 session variables.
 We have checked that cookies are enabled etc but still now success.
 This is the only person who is reporting the problem - we know everthing
 works properly on IE5 Win95/98/NT.

 Any ideas?


 Rob Mclennan
 Web Application Developer
 BRD (Business Resource Development)
 [EMAIL PROTECTED]




 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Jim McAtee

Just curious, how was your mail server able to contact _any_ other servers
if it wasn't able to identify the local DNS server?  Was it the mail server
itself that was looking for the old registry key?  Windows 2000 isn't
exactly brand new.  Is PostOffice still being sold and supported?

Jim


- Original Message -
From: Michael Dinowitz [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, July 04, 2001 7:48 PM
Subject: Re: is this list dead?


 It basically says that some older programs are looking in the registry for
a
 DNS server address and on Win2k this setting has changed. I've had one
 person with tell me they had the same problem and needed the fix as well.
 Another piece of MS BS.

 Modifying DNS server definition.
 -Microsoft has changed the location of the registry Name Server definition
 on Windows 2000. Modifications need to be done to the registry to
compensate
 for this DNS server address change.
 -Please make the following changes to the registry.
 -Run regedt32
 -Go to the following registry location.
 -HKEY_LOCAL_MACHINE - System - CurrentControlSet - Services - Tcpip -
 Parameters
 -Launch the Multi-String editor by double clicking on NameServer:REG_SZ:
 -Add your DNS servers IP addresses. Example: NameServer:REG_SZ: 10.2.5.21
 10.2.5.23



   I found a small article on post.office and win2k that was removed from
 the
   software.com site. We followed its suggestions and at least 2 people
who
 
  and that article might contain what interesting bits of advice??


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Random images from directory

2001-07-05 Thread Brook Davies

Okay, this is I think the strangest CF issue I have ever seen.

We have a script which handles all of our form submissions. When a form is 
submitted the script (which included several files) is called. What is 
happening is that the cf handles the request, spits out the debugging info 
and functions correctly. The strange thing is that once the page has 
finished processing the status bar shows that the web browser is attempting 
to contact the page again. The status bar grows and grows but can not 
contact our page on the second request.

The Cfserver does not show this new thread (which runs forever, never to 
complete) as a running request.

Where is this request coming from?  The request never finishes. This is too 
strange. I'm stumped. Could our firewall have anything to do with it?



html
head
/head
body

table border=0 width=300 cellpadding=0 cellspacing=1
trtd bgcolor=gray
table border=0 width=100% cellpadding=0 cellspacing=1
trtd colspan=2 bgcolor=6c0499font color=white face=helvetica 
size=-2nbsp; BMARACAS/BMEDIA INC./td/trtrtd colspan=2 
bgcolor=white
font face=verdana size=-2
nbsp; Brook DaviesBR
nbsp; President
/td/tr
trtd bgcolor=white width=150
nbsp;
/tdtd bgcolor=ffcc00
font face=verdana size=-2Address Infofont face=verdana size=-2
/td/tr/table/td/tr/tabletable border=0 width=300 
cellpadding=1 cellspacing=0trtd width=150nbsp;/tdtdtable 
border=0 width=100% cellpadding=1 cellspacing=0trtd 
bgcolor=graytable border=0 width=100% cellpadding=1 
cellspacing=0trtd bgcolor=white
font face=verdana size=-2
421 - 425 Carrall StreetBR
Vancouver, BCBR
V6B 6E3 CA BRBR
/td/tr/table
/td/tr/table

/body
/html



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



question marks and spiders, e-marketers...

2001-07-05 Thread Andrea Wasik

Hello, 

I was just told by an emarketing firm that came in to give us a
presentation that none of the search engines can spider links that
contain question marks. Since we have a site with over 200,000 dynamic
pages, we have question marks EVERYWHERE as we are using CF. 

Does anyone know about the validity of this claim? Has anyone dealt
w/this issue and if so, what did you do? I know one option presented to
us was making up traffic pages that have static links to accomodate
the search engines - but that are not real parts of our site - that is
another option but I am loathe to even begin to think about ways to get
rid of all question marks in our site.

Thanks,

Andrea

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: personal web server that will work with win 98 and coldfusion

2001-07-05 Thread Tony Schreiber

Apache...

 I am using cold fusion single server 4 with cold fusion but every time I
 load single server it asks
 me for the personal web server on my computer. I have tried several free web
 servers that work well
 for FTP, HTTTP, and ISAPI but lack things such as SSL. single server does
 not automatically detect these servers.
 do you know where I can get a personal web server that will work with win 98
 and cold fusion.


 Thanks,


 Fernando



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Data Validation

2001-07-05 Thread Jerry Staple

Hi,
   Could anyone inform me of the best javascript function to validate a
textbox, so that only a number can be entered.

Many Thanks 

Jerry Staple




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Alistair Davidson

jerry,

how about parseFloat() or parseInt(), depending on whether you only want
integers?

something like

function check_numeric( obj )
{
// parseInt() returns NaN (Not a Number)
// if it can't parse an integer out of the string
if( isNaN( obj.value.parseInt() ) )
{
alert( That is not a number! );
obj.focus();
return false;
}
else
return true;

}

and your input box can check this onblur (when it loses focus) like so -

input name=numberbox type=text .. onblur=check_numeric(this);

or you can check it in the form.onsubmit() -

form .. onsubmit=return(check_numeric( numberbox ));


A good reference for JS (and VBS) functions can be found at
http://msdn.microsoft.com/scripting/default.htm

Hope that helps 

Alistair Davidson
Senior Web Developer
Rocom New Media
http://www.rocomx.net

-Original Message-
From: Jerry Staple [mailto:[EMAIL PROTECTED]]
Sent: 05 July 2001 09:07
To: CF-Talk
Subject: Data Validation


Hi,
   Could anyone inform me of the best javascript function to validate a
textbox, so that only a number can be entered.

Many Thanks 

Jerry Staple
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Stephen Moretti

Jerry,

Could anyone inform me of the best javascript function to validate a
 textbox, so that only a number can be entered.
 

The JS function you are after is : isNaN()

Its actually is not a number.  So you need to do something like :

if (isNaN(document.myform.myfield.value)) { 
alert(You did not enter a number);
return false;
}

Hope this helps

Regards

Stephen

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Login page for WAP

2001-07-05 Thread Rudy Rustam

Greeting all, 

I'm new in developing WAP with CF.
Trying to create a login page here but it seems like I am completely lost...

Does anyone got any tips on this?
and what am I suppose to do with the cfapplication and all the session
tracking?

Thanks in advance.

regards,
- Rudy

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Jerry Staple

Thanks Very Much.

Jerry

-Orig
inal Message-
From: Alistair Davidson [mailto:[EMAIL PROTECTED]]
Sent: 05 July 2001 09:12
To: CF-Talk
Subject: RE: Data Validation


jerry,

how about parseFloat() or parseInt(), depending on whether you only want
integers?

something like

function check_numeric( obj )
{
// parseInt() returns NaN (Not a Number)
// if it can't parse an integer out of the string
if( isNaN( obj.value.parseInt() ) )
{
alert( That is not a number! );
obj.focus();
return false;
}
else
return true;

}

and your input box can check this onblur (when it loses focus) like so -

input name=numberbox type=text ..
onblur=check_numeric(this);

or you can check it in the form.onsubmit() -

form .. onsubmit=return(check_numeric( numberbox ));


A good reference for JS (and VBS) functions can be found at
http://msdn.microsoft.com/scripting/default.htm

Hope that helps 

Alistair Davidson
Senior Web Developer
Rocom New Media
http://www.rocomx.net

-Original Message-
From: Jerry Staple [mailto:[EMAIL PROTECTED]]
Sent: 05 July 2001 09:07
To: CF-Talk
Subject: Data Validation


Hi,
   Could anyone inform me of the best javascript function to validate a
textbox, so that only a number can be entered.

Many Thanks 

Jerry Staple
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Jerry Staple

Cheers Stephen
Thats the Ticket.

Cheers
Jerry

-Original Message-
From: Stephen Moretti [mailto:[EMAIL PROTECTED]]
Sent: 05 July 2001 09:23
To: CF-Talk
Subject: RE: Data Validation


Jerry,

Could anyone inform me of the best javascript function to validate
a
 textbox, so that only a number can be entered.
 

The JS function you are after is : isNaN()

Its actually is not a number.  So you need to do something like :

if (isNaN(document.myform.myfield.value)) { 
alert(You did not enter a number);
return false;
}

Hope this helps

Regards

Stephen
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What a hustle to install 400-500 subdomains

2001-07-05 Thread Conrad Classen

Make a CF template which reads a csv file or other type of seperation
file
and then calls the following line and fills in the relevant parameters
using
CFExecute.

Copy the Mkw3site.vbs file to a known place. i.e. C:\

CScript C:\Mkw3site.vbs -v -r d:\someplace -t NewServer -h
new_www.domain.com

The vbs script can be found in:
x:\Inetpub\AdminScripts (Where x: is the Dribe/path where IIS is
installed...


Just be warned that it creates the site as a Low(IIS Process) with Read
only rights. You will have to use chaccess.vbs to change Access
Restrictions for each site as well.

(see http://localhost/iishelp/iis/htm/adminsamples/default.htm)

From the MS IIS Documentation for mkw3site.vbs)

Create Web Site (mkw3site)
Summary:

Creates a Web site.

Usage:

mkw3site --RootDirectory|-r ROOT DIRECTORY
--Comment|-t SERVER COMMENT
[--computer|-c COMPUTER1[,COMPUTER2...]]
[--port|-o PORT NUM]
[--IPAddress|-i IP ADDRESS]
[--admin|-a ADMINISTRATOR]
[--HostName|-h HOST NAME]
[--DontStart]
[--help|-?] 

Parameters:

IP ADDRESS The IP Address to assign to the new server. (optional) 

COMPUTER1, COMPUTER2,... List of computers on which to create this site.
This is to be used when configuring mulitple computers with the same
settings. If no computer is specified, LocalHost is assumed. 

ROOT DIRECTORY Full path to the root directory for the new server. 

SERVER COMMENT The name that appears in the Microsoft Management Console
(MMC). 

ADMINISTRATOR User name of the person who will be assigned as
administrator of the server. 

PORT NUM The number of the port to which the new server should bind. 

HOST NAME The host name to assign to this site.
WARNING: Only use host name if DNS is set up to find the server.


DONTSTART Specifying this argument forces the script not to start the
Web server after creating it. 

Example:

Mkw3site -rootdirectory d:\someplace -t NewServer -hostname
www.domain.com


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 03, 2001 11:33 PM
To: CF-Talk
Subject: OT: What a hustle to install 400-500 subdomains



Hi,
a customer wants 400-500 subdomains of one domain to access via http.
Each heading to a different base-web-root. We run virtual domains (HTTP
1.1) on one IP-adress. We have IIS 4 and NT 4.

Is there a tool, to automize the installation of one sub-domain ?
Anybody who knows how the customer could possibly could do it by himself
? Thanks.

Uwe
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT : project documentation

2001-07-05 Thread Steve Vosloo

This book is great - Web Project Management by Ashley Friedlein:
http://www.amazon.co.uk/exec/obidos/ASIN/1558606785/o/qid=994261732/sr=8-2/0
26-8490121-2329237

Supporting materials:
http://www.e-consultancy.com/book/
Check out Documentation

Cheers
Steve




 -Original Message-
 From: Mak Wing Lok [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 04, 2001 10:29 AM
 To: CF-Talk
 Subject: OT : project documentation


 can anyone recommend where i can get sample documentation for a project,
 like system specification, project proposal, user requirements, system
 design, etc. best if for web application development.





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Jerry Staple

Stephen i have used the following function:

script language=JavaScript
function check_numeric()
{
if (isNaN(document.forms[0].test.value)) 
{ 
alert(Please enter a Numeric Value);
return false;
}
else{
return true;
}
}

/script

and then the textbox:

input type=text name=test align=middle size=10 maxlength=20
value=#Numerical# style=background-color:ccff00;
color:44;font-type:arial;  onblur=check_numeric(this);

However when i enter a numeric value it comes up with the error as well?


Could you enlighten me.

Many Thanks

Jerry



-Original Message-
From: Stephen Moretti [mailto:[EMAIL PROTECTED]]
Sent: 05 July 2001 09:23
To: CF-Talk
Subject: RE: Data Validation


Jerry,

Could anyone inform me of the best javascript function to validate
a
 textbox, so that only a number can be entered.
 

The JS function you are after is : isNaN()

Its actually is not a number.  So you need to do something like :

if (isNaN(document.myform.myfield.value)) { 
alert(You did not enter a number);
return false;
}

Hope this helps

Regards

Stephen
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Doc Watson

2001-07-05 Thread CF-Talk \(SD Solutions\)

I don't know any CF 4.52.
The last update I know of is: 4.5.1 SP2
Is this CF Studio or CF Server you think of ?

Uwe
- Original Message -
From: Bud [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, June 26, 2001 1:51 PM
Subject: Doc Watson


Hi all. I finally broke down and installed 4.52. Now once a day or so
I'm getting a cfserver.exe Doc Watson and CF is shutting down. Any
idea what to look for? Never happened in over a year of running 4.01.
--

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [Oracle Full text search]

2001-07-05 Thread Paul Hastings

 yes. intermedia it's on the oracle CD

 [EMAIL PROTECTED] wrote:
 Does Oracle have any full text search facility? I can't find any mention
of
 it anywhere.

just as a completely OT FYI of some mild interest, ms, oracle,  ibm
all got their word breaker (for text indexing) software from the same
place, infosoft.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



WOT: Flash questions

2001-07-05 Thread DeVoil, Nick

I've asked this on a couple of Flash lists but I guess the question
is so badly framed that no-one knows what I'm on about.

But I know you guys are patient  some of you are pretty good
with Flash so I'll try here.

I am designing a database-driven web app which has 2 particular features:

- some of the content is defined in an XML format where some
elements are chunks of raw HTML, some are more abstract elements
which have to be turned into HTML by a JSP. The idea is that the JSP
goes through the XML sequentially and throws the HTML onto the page,
generating it where necessary.

- some of the XML contains text items which have to be put on the page
in such a way that they can be dragged  dropped into various text boxes
etc, and then the contents submitted to the server in an HTML form.

This is fine in an HTML context. I can envisage writing a generic JSP
to create the page out of any XML file that's in the right format.

Now the customer says to me, how about building the user interface not
in DHTML but in Flash?

I'm not competent in Flash so I don't know if this is feasible or not.
Specifically:

- is it possible to have a Flash movie which presents a stream of generic
text, not known until runtime, in the same sort of way that a browser
processes HTML?

- do objects all have to be positioned individually on the screen, or can
they flow onto it as in HTML?

- Is it possible to have a Flash movie that builds a drag-and-drop
feature out of generic text or images which are not known until runtime?

- Is it possible for the Flash movie not only to send information back to
the
server, but send back unpredictable information? I mean, in a CF page
you can easily have processing which puts an unpredictable number of form
fields onto the page, plus the associated processing - can you do that
if you're using Flash?

Do I need Generator to do any of this? Does WDDX help?

Would really appreciate any insight here.

Nick



**
Information in this email is confidential and may be privileged. 
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cfcache Connection Failure

2001-07-05 Thread Daniel Kemp

I'm hoping this is a common enough problem that there's a simple
solution.

I've got a page with cfcache at the top, when I try and view the
page I end up with Connection Failure.  When I use cfcache
action=flush I'm fine.

I've seen this a few times when things are fine on our test server
here, but as soon as it's rolled out to a clients server it gives this
error.  So far I've just taken cfcache off, as the applications
haven't been that heavy anyway, but I'm still left wondering what it
is that causes the problem?

Anyone come across the same situation?  I've heard that the number of
simultaneous connections settings can cause this, when set to 1, any
other reasons?

Cheers Dan.



This message is intended only for the use of the person(s) (the intended 
recipient(s)) to whom it is addressed.

It may contain information which is privileged and confidential within the meaning of 
the applicable law. 
If you are not the intended recipient, please contact the sender as soon as possible.
The views expressed in this communication may not necessarily be the views held by 
Live Information Systems Limited.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Can't restart IIS server

2001-07-05 Thread net_man

If this is a Win2k server you can run iisreset from command line, also you
need to make sure you have SP2 as the problem described below about address
in use is a socket thats hung.

Robert



- Original Message -
From: Tom Davison [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 03, 2001 7:21 PM
Subject: Re: Can't restart IIS server


 you want to do a net stop iis admin in dos
 - Original Message -
 From: Dave Watts [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 03, 2001 10:22 AM
 Subject: RE: Can't restart IIS server


   I stopped IIS via the IIS administrator. I right clicked on
   Default Web Site and then clicked Stop. Now, when I go in
   and manually try to restart it, an alert box pops up that
   says: Internet Services Manager Address Already In Use.
   I've tried everthing I know to do to restart is, but nothing.
   Anybody have a clue what I can do
 
  I've seen things like this when a virtual web server has been created,
 then
  deleted, then recreated. The IIS metabase may still have some
information
  from the original server in it. If you cycle the IIS admin and W3SVC
  services, it should then show you the correct information in the MMC.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  voice: (202) 797-5496
  fax: (202) 797-5444
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Can't restart IIS server

2001-07-05 Thread Dave Hannum

We just simply rebooted the box and everything was cool . . .

Dave


- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 05, 2001 7:07 AM
Subject: Re: Can't restart IIS server


 If this is a Win2k server you can run iisreset from command line, also you
 need to make sure you have SP2 as the problem described below about
address
 in use is a socket thats hung.

 Robert



 - Original Message -
 From: Tom Davison [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 03, 2001 7:21 PM
 Subject: Re: Can't restart IIS server


  you want to do a net stop iis admin in dos
  - Original Message -
  From: Dave Watts [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Tuesday, July 03, 2001 10:22 AM
  Subject: RE: Can't restart IIS server
 
 
I stopped IIS via the IIS administrator. I right clicked on
Default Web Site and then clicked Stop. Now, when I go in
and manually try to restart it, an alert box pops up that
says: Internet Services Manager Address Already In Use.
I've tried everthing I know to do to restart is, but nothing.
Anybody have a clue what I can do
  
   I've seen things like this when a virtual web server has been created,
  then
   deleted, then recreated. The IIS metabase may still have some
 information
   from the original server in it. If you cycle the IIS admin and W3SVC
   services, it should then show you the correct information in the MMC.
  
   Dave Watts, CTO, Fig Leaf Software
   http://www.figleaf.com/
   voice: (202) 797-5496
   fax: (202) 797-5444
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL select all BUT

2001-07-05 Thread DeVoil, Nick

No.

-Original Message-
From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 5:21 PM
To: CF-Talk
Subject: ot: SQL select all BUT


Is there a way to run a select statment that fetch ALL (*) colums BUT
colum5,coulm6

something which is similiar to:
SELECT colum1,colum2,colum3,colum4



**
Information in this email is confidential and may be privileged. 
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system. 
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone. 
Thank you for your co-operation.
**

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



AW: eMail SMTP Authentication

2001-07-05 Thread cf-talk

Sure.
As long as the server uses the Cf-template on the same machine
you can tell your provider, that he should do relay mail for adresses
(Ipswitch's IMail) like with
127.0.0.1 or the real IP-adress he uses.

Uwe


SD Solutions
Fon: +49 8122 903791
Fax: +49 8122 903792
Mail: [EMAIL PROTECTED]
Web: www.sdsolutions.de


-Ursprüngliche Nachricht-
Von: Paul Mone [mailto:[EMAIL PROTECTED]]
Gesendet: Montag, 2. Juli 2001 20:47
An: CF-Talk
Betreff: eMail SMTP Authentication


One of the SMTP servers for my mail accounts requires authentication.  I'd
like to use this server with CFMAIL (or some similar tag), is this possible?

---
Paul Mone
Ninthlink Consulting Group
[EMAIL PROTECTED]
http://www.ninthlink.com
619.222.7082


-Original Message-
From: Evan Lavidor [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 9:21 AM
To: CF-Talk
Subject: RE: is this list dead?


Ditto to everyone.  Though I'm glad to see at least a few messages come
through...

Evan

 -Original Message-
 From: Jason Lees (National Express)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 02, 2001 11:56 AM
 To: CF-Talk
 Subject: RE: is this list dead?


 This is the first one i've had in over a week!!!

 I thought the list was Dead!!

 Jason Lees
 National Express
 Email : [EMAIL PROTECTED]


 -Original Message-
 From: Erika L. Walker [mailto:[EMAIL PROTECTED]]
 Sent: 02 July 2001 16:53
 To: CF-Talk
 Subject: RE: is this list dead?


 I'm getting posts, but not as many as we used to get.

 :(

 Erika
 (with a *K*)

 Those who love deeply never grow old; they may die of old age,
 but they die
 young. - Sir Arthur Wing Pinero
 -
 Macromedia ColdFusion 5.0 Certified Developer -  Just passed!!
 WooHoo
 -

 -Original Message-
 From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 02, 2001 10:57 AM
 To: CF-Talk
 Subject: is this list dead?


 I haven't seen a post in quite some time now.
 Mike

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Michael Dinowitz

I really don't know. All I know is that most people couldn't get the list
for a while and slowly others were able to. It stabilized with a number of
the big ISPs like AOL and UUNet not getting anything but the smaller people
getting. Once I found the article and Aaron put it in everyone started
getting mail and the entire mailserver went crazy delivering backed up mail.
Once all the backed up mail was delivered to those who hadn't gotten in the
last 2 weeks, we had a spew of messages hit the machine. These ran the gamut
from the last week or so including a lot of list requests and such. It seems
to be over now.
As for post.office, I think its abandon-ware. The article was linked to
their site but when I went there, it was gone. Thank God for Googles
caching.


 Just curious, how was your mail server able to contact _any_ other servers
 if it wasn't able to identify the local DNS server?  Was it the mail
server
 itself that was looking for the old registry key?  Windows 2000 isn't
 exactly brand new.  Is PostOffice still being sold and supported?

 Jim


 - Original Message -
 From: Michael Dinowitz [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, July 04, 2001 7:48 PM
 Subject: Re: is this list dead?


  It basically says that some older programs are looking in the registry
for
 a
  DNS server address and on Win2k this setting has changed. I've had one
  person with tell me they had the same problem and needed the fix as
well.
  Another piece of MS BS.
 
  Modifying DNS server definition.
  -Microsoft has changed the location of the registry Name Server
definition
  on Windows 2000. Modifications need to be done to the registry to
 compensate
  for this DNS server address change.
  -Please make the following changes to the registry.
  -Run regedt32
  -Go to the following registry location.
  -HKEY_LOCAL_MACHINE - System - CurrentControlSet - Services - Tcpip -
  Parameters
  -Launch the Multi-String editor by double clicking on
NameServer:REG_SZ:
  -Add your DNS servers IP addresses. Example: NameServer:REG_SZ:
10.2.5.21
  10.2.5.23
 
 
 
I found a small article on post.office and win2k that was removed
from
  the
software.com site. We followed its suggestions and at least 2 people
 who
  
   and that article might contain what interesting bits of advice??



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



query and cfif and cfset

2001-07-05 Thread Janine Jakim

I have a display page that I want the user to only add current information.
The older info should be read only.  I can not seem to get this to work- i
end up with either 2 input boxes or 2 display boxes.  I'm wondering if the
prob stems from the queries.
1.  I used two queries.  One gives all the fields that are going to be
updated. (it has 2 tables) and the 2nd query has the dates of the quarters
and cut-offs for data entry.  This 2nd one has a where statement for
client.quarter = quarter between the 2 queries.
2. On my display page I output the data entry query.  Where it should
display I have:

 CFIF (Now() GT CLIENT.BegQuarter) and (Now() LT CLIENT.DistributionDate)
and (CLIENT.GradingPeriod EQ 1)INPUT name=GradeForSubject
value=#UCase(GradeForSubject)# size=5
CFIF (Now() GT BegQuarter) and (Now() LT DistributionDate) and (Quarter EQ
2)INPUT name=GradeForSubject value=#UCase(GradeForSubject)# size=5 
CFELSE#GradeForSubject#
/CFIF

This will not work.  I assumed it was because I am doing a cfoutput query on
the 1st query but then had field names from the 2nd query.  I then changed
the 2nd query variables to CLIENT variables but that didn't make any
difference.  (Above is the old code before I cfset the client variable)
So do I need to combine the queries?  I'm afraid that the queries are going
to get too big/slow...(
Here are the queries I used.  Any help would be great as I've been cursing
this thing all day...

Query 1:
CFQUERY NAME=GetSubjects DATASOURCE=#Request.maindsn#
SELECT  tbl_StudentGrade.GradesID, tbl_StudentGrade.SkillID,
tbl_CourseSkill.Skill, tbl_CourseSkill.CourseID, tbl_CourseSkill.DisplayNum,

tbl_StudentGrade.GradeForSubject, tbl_StudentGrade.SchoolDates,
tbl_StudentGrade.Advisor, tbl_StudentGrade.GradingPeriod,
tbl_StudentGrade.PERMNUM
FROM tbl_CourseSkill, tbl_StudentGrade
WHEREtbl_CourseSkill.SkillID = tbl_StudentGrade.SkillID and
PERMNUM='#PERMNUM#' And CourseID=1  OR  tbl_CourseSkill.SkillID =
tbl_StudentGrade.SkillID and  PERMNUM='#PERMNUM#' And CourseID=2
Order BY DisplayNum, GradingPeriod
/CFQUERY

CFSET CLIENT.GradingPeriod=GetSubjects.GradingPeriod

QUERY2:  
CFQUERY NAME=GetQuarters DATASOURCE=#Request.maindsn#
SELECT BegQuarter, EndQuarter, DistributionDate, Quarter
FROM tbl_QuarterDate
WHERE Quarter= #CLIENT.GradingPeriod#
/CFQUERY

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cfmail and 4.52

2001-07-05 Thread Bud

I'm getting at least 2 or 3 emails being sent to Mail\Undelivr per 
day running 4.52. No connection to server. I've even bumped the 
timeout up to 120 seconds. In a year of running 4.01, with the 
timeout at 60 seconds, I think I had 3 or 4 the entire time because 
of No connection to server. Why would 4.52 think the mail server is 
down when it isn't? I even entered the IP instead of the domain in 
case it was DNS related, which it shouldn't be because if it was then 
I'd think 4.01 would have had problems also.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Michael Dinowitz

we're down to 2698 directories of deferred messages left. As each directory
is a domain and contains anywhere between 1 and 100+ messages, you can get
them between now and tomorrow.


 Michael,

 When can we start expecting the incoming flood?

 James


 Michael Dinowitz wrote:
 
  If Michael is smiling, worry!
  I found a small article on post.office and win2k that was removed from
the
  software.com site. We followed its suggestions and at least 2 people who
  weren't getting mail are getting it now. Your all in for a flood, but
it'll
  be worth it to be back. God, the stress. I've lost more hair over this
than
  all my kids combined.
  Point is, everyone should be seeing this. Life is good again. Let the
  muffins fly!
 
   I'm getting posts, but not as many as we used to get.
  
   :(
  
   Erika
   (with a *K*)
  
   Those who love deeply never grow old; they may die of old age, but
they
  die
   young. - Sir Arthur Wing Pinero
   -
   Macromedia ColdFusion 5.0 Certified Developer -  Just passed!!
   WooHoo
   -
  
   -Original Message-
   From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
   Sent: Monday, July 02, 2001 10:57 AM
   To: CF-Talk
   Subject: is this list dead?
  
  
   I haven't seen a post in quite some time now.
   Mike
  
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Data Validation

2001-07-05 Thread Jerry Staple

Hi, 
Could someone inform me the best Javascript fucntion to check the value
of a textbox and to make sure the value entered is a number.

Much Apreciated

Jerry Staple 






~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Data Validation

2001-07-05 Thread Jerry Staple

Hi, 
Could someone inform me the best Javascript fucntion to check the value
of a textbox and to make sure the value entered is a number.

Much Apreciated

Jerry Staple 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Login page for WAP

2001-07-05 Thread Rudy Rustam

Greeting all, 

I'm new in developing WAP with CF.
Trying to create a login page here but it seems like I am completely lost...

Does anyone got any tips on this?
and what am I suppose to do with the cfapplication and all the session
tracking?

Thanks in advance.

regards,
- Rudy

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Query of a Query

2001-07-05 Thread Garza, Jeff

From the CF5 docs...


===
Performing queries on query results has many benefits: 

If you need to access the same tables multiple times, you greatly reduce
access time for tables with up to 10,000 rows because the data is already in
memory. 
You can join and perform unions on results from different data sources. 
For example, you can do a union on queries from different databases to
eliminate duplicates for a mailing list.

You can efficiently manipulate cached query results in different ways. You
can query a database once, and then use the results to generate several
different summary tables. 
For example, if you need to summarize the total salary by department, by
skill, and job, you can make one query to the database and use its results
in three separate queries to generate the summaries.

You can make drill-down, master-detail-like functionality where you do not
go to the database for the details. 
For example, you can select information about departments and employees in a
query and cache the results. You can then display the employee names. When
users select an employee, the application displays the employee details by
selecting information from the cached query without accessing the database.

Creating queries of queries 
You can create a query using a query object from any ColdFusion tag or
function that generates query results, including cfldap, cfdirectory, chttp,
cfstoredproc, cfpop, cfindex, and the Query functions. 

You can use a limited subset of the SQL SELECT syntax, which includes:  FROM

WHERE 
GROUP BY 
UNION 
ORDER BY 
HAVING 
AS 
DISTINCT 
 
Boolean predicates: 
LIKE 
NOT LIKE 
IN 
NOT IN 
BETWEEN 
NOT BETWEEN 
AND 
OR 

Aggregate functions:
Count([DISTINCT][*] expr) 
Sum([DISTINCT] expr) 
Avg([DISTINCT] expr) 
Max(expr) 
Min(expr) 
You cannot nest aggregate functions.
 
Comparison operators: 

= 
= 
= 
 

 
  
 


You can also do the following tasks: 

Use the results of one or two queries in your SQL statement. 
Generate computed columns. 
Performing a query on a query 
To generate a query using an existing query: 

Specify the cfquery tag's dbtype attribute as query. 
Do not specify a datasource attribute. 
Specify the names of one or more existing queries as the table names in a
SQL SELECT statement. 
If the database content does not change rapidly, it is a good idea to use
the cachedwithin attribute to cache the query results of between page
requests. This way, ColdFusion accesses the database on the first page
request, and does not query the database again until the specified time
expires. Note that you must use the CreateTimeSpan function to specify the
cachedwithin attribute value. 

HTH,

Jeff Garza
Lead Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200
[EMAIL PROTECTED]
http://www.spectrumastro.com

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Michael Dinowitz

I'm going to assume this is an older message that's coming in now as part of
that flood. Besides backlogged mail for those who were unable to get mail
during the down time, the list is now getting messages sent within the last
few days that just never hit the machine. You should see mail from the 2nd
till today coming in at different times. I was kind of shocked at the amount
of mail. Nice to see the new server holding up under what is at least a half
million messages in the last 3 days.


 Michael,

 When can we start expecting the incoming flood?

 James


 Michael Dinowitz wrote:
 
  If Michael is smiling, worry!
  I found a small article on post.office and win2k that was removed from
the
  software.com site. We followed its suggestions and at least 2 people who
  weren't getting mail are getting it now. Your all in for a flood, but
it'll
  be worth it to be back. God, the stress. I've lost more hair over this
than
  all my kids combined.
  Point is, everyone should be seeing this. Life is good again. Let the
  muffins fly!
 
   I'm getting posts, but not as many as we used to get.
  
   :(
  
   Erika
   (with a *K*)
  
   Those who love deeply never grow old; they may die of old age, but
they
  die
   young. - Sir Arthur Wing Pinero
   -
   Macromedia ColdFusion 5.0 Certified Developer -  Just passed!!
   WooHoo
   -
  
   -Original Message-
   From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
   Sent: Monday, July 02, 2001 10:57 AM
   To: CF-Talk
   Subject: is this list dead?
  
  
   I haven't seen a post in quite some time now.
   Mike
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



REQUEST vs. VARIABLES

2001-07-05 Thread Hamid Hossain

Hi folks,

I noticed that REQUEST scoped variables are availabe
within CustomTags while VARIABLES scoped are not.

I thought that REQUEST and VARIABLES are the same as
you can use your name as a scope ;)

I am wondering if there is a documentation on REQUEST
scope variables.

Thanx
Hamid Hossain
Certified ColdFusion Developer
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Force IE to launch

2001-07-05 Thread James Taavon

Question,

I have an app that runs in IE 5.0 and above. How can I prompt the user
if they are using Netscape to switch to IE? 

James

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ColdFusion Studio 5 Beta 1 Now Available

2001-07-05 Thread Phil Costa

ColdFusion Studio 5 Beta 1 is now available from the Macromedia beta site
http://beta.allaire.com/ . This beta is open to all ColdFusion Studio
4.5.2 customers. In addition to full support for all new and modified CFML
tags, this beta includes a number of other exciting new features to increase
developer productivity. If you are not currently registered, you will need
to e-mail [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  with your
ColdFusion Studio serial number to request a user name and password.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Howie Hamlin

FYI:

Post.Office is still sold by OpenWave.  OpenWave (formerly Phone.com) merged with 
Software.com last year.  The URL for Post.Office
is:

http://www.openwave.com/products/legacy/post_office/

Notice that the link to the Post.Office page has the word legacy in it.  The 
software hasn't been updated for WinNT since October,
1998 and for UNIX since February, 1999.  They still are more than happy to sell it to 
you, though.

Regards,

Howie

- Original Message -
From: Michael Dinowitz [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 05, 2001 7:53 AM
Subject: Re: is this list dead?


 I really don't know. All I know is that most people couldn't get the list
 for a while and slowly others were able to. It stabilized with a number of
 the big ISPs like AOL and UUNet not getting anything but the smaller people
 getting. Once I found the article and Aaron put it in everyone started
 getting mail and the entire mailserver went crazy delivering backed up mail.
 Once all the backed up mail was delivered to those who hadn't gotten in the
 last 2 weeks, we had a spew of messages hit the machine. These ran the gamut
 from the last week or so including a lot of list requests and such. It seems
 to be over now.
 As for post.office, I think its abandon-ware. The article was linked to
 their site but when I went there, it was gone. Thank God for Googles
 caching.


  Just curious, how was your mail server able to contact _any_ other servers
  if it wasn't able to identify the local DNS server?  Was it the mail
 server
  itself that was looking for the old registry key?  Windows 2000 isn't
  exactly brand new.  Is PostOffice still being sold and supported?
 
  Jim
 
 
  - Original Message -
  From: Michael Dinowitz [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, July 04, 2001 7:48 PM
  Subject: Re: is this list dead?
 
 
   It basically says that some older programs are looking in the registry
 for
  a
   DNS server address and on Win2k this setting has changed. I've had one
   person with tell me they had the same problem and needed the fix as
 well.
   Another piece of MS BS.
  
   Modifying DNS server definition.
   -Microsoft has changed the location of the registry Name Server
 definition
   on Windows 2000. Modifications need to be done to the registry to
  compensate
   for this DNS server address change.
   -Please make the following changes to the registry.
   -Run regedt32
   -Go to the following registry location.
   -HKEY_LOCAL_MACHINE - System - CurrentControlSet - Services - Tcpip -
   Parameters
   -Launch the Multi-String editor by double clicking on
 NameServer:REG_SZ:
   -Add your DNS servers IP addresses. Example: NameServer:REG_SZ:
 10.2.5.21
   10.2.5.23
  
  
  
 I found a small article on post.office and win2k that was removed
 from
   the
 software.com site. We followed its suggestions and at least 2 people
  who
   
and that article might contain what interesting bits of advice??
 
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Len Conrad


As for post.office, I think its abandon-ware.

:)))

and it never was a listserver in the first place. :

My offer stands to set you up, for free as my contribution to list, with a 
dedicated list server of FreeBSD + postfix + listar with auto-bounce mgt, 
un/subscribe confirmation dialogues, unlimited number of lists with 
per-list customization, and dozens of other features.  I would also put a 
caching-only DNS on the listserver to pre-empt any more the stupid registry 
sh!t with W2K DNS.

Len


http://MenAndMice.com/DNS-training
http://BIND8NT.MEIway.com : ISC BIND 8.2.4 for NT4  W2K
http://IMGate.MEIway.com  : Build free, hi-perf, anti-abuse mail gateways


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Gary Longford

Jerry,

Here's one I wrote earlier, hope it helps:

function CheckIsNumber(objCheck) {
var strStartFormat = .+-0123456789;
var strNumberFormat = .0123456789;
var strCheckChar;
var blnDecimal = false;
var blnDigits = false;

if (objCheck.length == 0)
return true;

strCheckChar = strStartFormat.indexOf(objCheck.charAt(0))
if (strCheckChar == 0)
blnDecimal = true;
else if (strCheckChar  0)
return false;

for (var i = 1; i  objCheck.length; i++) {
strCheckChar = strNumberFormat.indexOf(objCheck.charAt(i))
if (strCheckChar  0)
return false;
else if (strCheckChar == 0) {
if (blnDecimal) // Second decimal.
return false;
else
blnDecimal = true; }
else
blnDigits = true; } 
return true;
}


If you need to go one stage further to integer add this one:

function tmo_IsInteger(objCheck) {
var strDecimalFormat = .;
var strCheckChar;

if (objCheck.length == 0) 
return true; 

strCheckChar = objCheck.indexOf(strDecimalFormat)

if (strCheckChar  1) 
return CheckIsNumber(objCheck); 
else 
return false; 
}

Try that.

Gary

-Original Message-
From: Jerry Staple [mailto:[EMAIL PROTECTED]]
Sent: 03 July 2001 09:39
To: CF-Talk
Subject: Data Validation


Hi, 
Could someone inform me the best Javascript fucntion to check the value
of a textbox and to make sure the value entered is a number.

Much Apreciated

Jerry Staple
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



access not accepting insert statement

2001-07-05 Thread Gilbert Midonnet


I'm using coldfusion and access (ODBC) and having a problem.When
multiple insert statements arrive at the same time only the first insert
statement is accepted.  We don't have that many users on the system
(Intranet) so it doesn't make sense to migrate from access.

Is there a way of queuing the insert statements, or any other way of solving
this problem?



Gilbert Midonnet
BrokerTec USA, LLC
(201) 209-7843





 
This message is for the named person's use only. It may contain
confidential, proprietary or legally 
privileged information. No confidentiality or privilege is waived or lost by
any mistransmission. If 
you receive this message in error, please immediately delete it and all
copies of it from your 
system, destroy any hard copies of it and notify the sender. You must not,
directly or indirectly, 
use, disclose, distribute, print, or copy any part of this message if you
are not the intended 
recipient. 




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Login page for WAP

2001-07-05 Thread Dylan Bromby

what exactly are you trying to accomplish? you can authenticate a login for
a WAP application just as you would for a web-based application. not all WAP
browsers let you set cookies, since the cookie spec isn't an official
component of the WAP spec. however, openwave (phone.com) browsers are by far
the most pervasive in the U.S. and do let you write cookies. the WAP gateway
sets a form of session between itself and the handset (the SUBNO var of the
openwave WAP gateway) which you could use as well.

if you can provide some specific goals or problems you're having...

also, check out the cf-wireless talk list at
http://www.bromby.com/cfwireless.

--dylan

-Original Message-
From: Rudy Rustam [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 05, 2001 1:39 AM
To: CF-Talk
Subject: Login page for WAP


Greeting all,

I'm new in developing WAP with CF.
Trying to create a login page here but it seems like I am completely lost...

Does anyone got any tips on this?
and what am I suppose to do with the cfapplication and all the session
tracking?

Thanks in advance.

regards,
- Rudy
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: REQUEST vs. VARIABLES

2001-07-05 Thread David E. Crawford

Variables defined in the VARIABLES scope exist to customtags in the CALLER
scope.  REQUEST scoped variables and VARIABLE scoped variables are not the
same.

DC
Macromedia Certified ColdFusion Developer
BrainBench Certified ColdFusion Developer


- Original Message -
From: Hamid Hossain [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 05, 2001 08:25
Subject: REQUEST vs. VARIABLES


 Hi folks,

 I noticed that REQUEST scoped variables are availabe
 within CustomTags while VARIABLES scoped are not.

 I thought that REQUEST and VARIABLES are the same as
 you can use your name as a scope ;)

 I am wondering if there is a documentation on REQUEST
 scope variables.

 Thanx
 Hamid Hossain
 Certified ColdFusion Developer

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



SOAP and Coldfusion

2001-07-05 Thread Kinley Pon

Hello everyone,

I am looking for an example of integrating the use of SOAP (simple
object access protocol) with Coldfusion.  

I would be most grateful.

thanks - Kinley

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead? (Update for Michael)

2001-07-05 Thread James Taavon

Michael,

This is actually the second time I have received this message from you
today. I just got a message from Monday night (7/2) that I posted. I
seem to be getting little dumps here and there 20 to 30 at a time, but
very little if any messages from the month of June. 



Michael Dinowitz wrote:
 
 I'm going to assume this is an older message that's coming in now as part of
 that flood. Besides backlogged mail for those who were unable to get mail
 during the down time, the list is now getting messages sent within the last
 few days that just never hit the machine. You should see mail from the 2nd
 till today coming in at different times. I was kind of shocked at the amount
 of mail. Nice to see the new server holding up under what is at least a half
 million messages in the last 3 days.
 
  Michael,
 
  When can we start expecting the incoming flood?
 
  James
 
 
  Michael Dinowitz wrote:
  
   If Michael is smiling, worry!
   I found a small article on post.office and win2k that was removed from
 the
   software.com site. We followed its suggestions and at least 2 people who
   weren't getting mail are getting it now. Your all in for a flood, but
 it'll
   be worth it to be back. God, the stress. I've lost more hair over this
 than
   all my kids combined.
   Point is, everyone should be seeing this. Life is good again. Let the
   muffins fly!
  
I'm getting posts, but not as many as we used to get.
   
:(
   
Erika
(with a *K*)
   
Those who love deeply never grow old; they may die of old age, but
 they
   die
young. - Sir Arthur Wing Pinero
-
Macromedia ColdFusion 5.0 Certified Developer -  Just passed!!
WooHoo
-
   
-Original Message-
From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 10:57 AM
To: CF-Talk
Subject: is this list dead?
   
   
I haven't seen a post in quite some time now.
Mike
   
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



AW: CF on Linux

2001-07-05 Thread cf-talk



Is this helpfull ?
Uwe

http://www.allaire.com/Handlers/index.cfm?ID=16303Method=Full


SD Solutions
Fon: +49 8122 903791
Fax: +49 8122 903792
Mail: [EMAIL PROTECTED]
Web: www.sdsolutions.de


-Ursprüngliche Nachricht-
Von: Corey Dakin [mailto:[EMAIL PROTECTED]]
Gesendet: Dienstag, 3. Juli 2001 22:39
An: CF-Talk
Betreff: CF on Linux


I have recently had the need to install CF 4.5.1 on Linux Mandrake 8.0. The
installation went just fine but when I go to the admin through the browser
all I get is garbage. I was wondering if anyone has experience with
Mandrake 8.0 and CF, I am running Apache Advanced Extranet server that
shipped with Mandrake 8.0.

Any Help
Corey
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: REQUEST vs. VARIABLES

2001-07-05 Thread Aidan Whitehall

 I am wondering if there is a documentation on REQUEST
 scope variables.

This might help some...
http://www.thenetprofits.co.uk/coldfusion/faq/#answer110


-- 
Aidan Whitehall [EMAIL PROTECTED]
Macromedia ColdFusion Developer
Fairbanks Environmental +44 (0)1695 51775
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Login System!!

2001-07-05 Thread Hamid Hossain

Hi,

I am working with FuseBox on my site. I want to make
login to the administrator area. That should use
SESSION variable to check the admin status.

I am wondering if any one made this before and may
help me to save my time.

Hamid Hossain
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Purchasing a copy of ColdFusion Server in the UK

2001-07-05 Thread Aidan Whitehall

 Have you tried buy.com?

No, but I will do. Thanks


-- 
Aidan Whitehall [EMAIL PROTECTED]
Macromedia ColdFusion Developer
Fairbanks Environmental +44 (0)1695 51775
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Thanks =) Re: Re: Processor Spike

2001-07-05 Thread Mark Terrill

Eri*k*a   Chris,

Thanks for that tip Erika, it resolved my problem with ntconsolejava.e
maxing out to 99% =)

In re to the information Chris thankfully relayed to our wonderful lil'
community it would appear that the CFMail bug isn't confined to Solaris and
is relatively widespread (judging from the responses over the last
fortnight+ of discussion). It is a little disappointing that Allaire (*cough
MM) took so long to reply back to the community per se when messages
relating to this serious problem have been bouncing around CF-Talk for over
two weeks (well, on other occasions they have rapidly sent succinct
replies). On the other hand somehow we all have missed a important bug
bulletin notifying us of the problem.

Regards,

Mark Terrill
Web Development Manager
Net Plus+ Internet Marketing
--
Phone:  07 5577 8835  |  Fax: 07 5577 8836
Email: [EMAIL PROTECTED]
Website: http://www.netplus.net.au
--

Date: Tue, 03 Jul 2001 13:37:50 -0400
From: Chris Norloff [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: CFMAIL practical limits
Message-ID: [EMAIL PROTECTED]

Allaire just told us that CFMAIL (at least on Solaris) has a bug that leaves
zero-byte files in the undelivered directory.  This blocks further mail
delivery and causes the CPU usage to skyrocket.  Ours went to 80% when
idle and 99+% with two cfserver threads running.

Chris Norloff

Date: Wed, 04 Jul 2001 10:44:48 -0400
From: Erika L. Walker [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Processor Spike
Message-ID: [EMAIL PROTECTED]

[Edited - cut short]
  After several frustrating attempts (including several reboots) to
figure out
why all of a sudden the CPU was pegged at 100% and the computer barely
working, I went into the mail spool folder, deleted that message waiting to
send...and VOILA! Server was back to normal. (I don't even know why it
occurred to me to check that.) ...

Erika
(with a *K*)

Those who love deeply never grow old; they may die of old age, but they die
young. - Sir Arthur Wing Pinero


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Doc Watson

2001-07-05 Thread Bud

Hi all. I finally broke down and installed 4.52. Now once a day or so 
I'm getting a cfserver.exe Doc Watson and CF is shutting down. Any 
idea what to look for? Never happened in over a year of running 4.01.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Jerry Staple

Thanks Very Much for that Gary.

Kind Regards 
Jerry


-Original Message-
From: Gary Longford [mailto:[EMAIL PROTECTED]]
Sent: 05 July 2001 15:13
To: CF-Talk
Subject: RE: Data Validation


Jerry,

Here's one I wrote earlier, hope it helps:

function CheckIsNumber(objCheck) {
var strStartFormat = .+-0123456789;
var strNumberFormat = .0123456789;
var strCheckChar;
var blnDecimal = false;
var blnDigits = false;

if (objCheck.length == 0)
return true;

strCheckChar = strStartFormat.indexOf(objCheck.charAt(0))
if (strCheckChar == 0)
blnDecimal = true;
else if (strCheckChar  0)
return false;

for (var i = 1; i  objCheck.length; i++) {
strCheckChar strNumberFormat.indexOf(objCheck.charAt(i))
if (strCheckChar  0)
return false;
else if (strCheckChar == 0) {
if (blnDecimal) // Second decimal.
return false;
else
blnDecimal = true; }
else
blnDigits = true; } 
return true;
}


If you need to go one stage further to integer add this one:

function tmo_IsInteger(objCheck) {
var strDecimalFormat = .;
var strCheckChar;

if (objCheck.length == 0) 
return true; 

strCheckChar = objCheck.indexOf(strDecimalFormat)

if (strCheckChar  1) 
return CheckIsNumber(objCheck); 
else 
return false; 
}

Try that.

Gary

-Original Message-
From: Jerry Staple [mailto:[EMAIL PROTECTED]]
Sent: 03 July 2001 09:39
To: CF-Talk
Subject: Data Validation


Hi, 
Could someone inform me the best Javascript fucntion to check the value
of a textbox and to make sure the value entered is a number.

Much Apreciated

Jerry Staple
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: is this list dead?

2001-07-05 Thread Dennis Powers

Michael,

Where did you find the article about Post.Office?  I went to their (new)
site and it looks as if all the knowledge base articles were removed.  I
would like to archive them for future reference.

Best Regards,

Dennis Powers
UXB Internet
(203) 879-2844
http://www.uxbinfo.com/

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 12:00 PM
To: CF-Talk
Subject: Re: is this list dead?

If Michael is smiling, worry!
I found a small article on post.office and win2k that was removed from the
software.com site. We followed its suggestions and at least 2 people who
weren't getting mail are getting it now. Your all in for a flood, but it'll
be worth it to be back. God, the stress. I've lost more hair over this than
all my kids combined.
Point is, everyone should be seeing this. Life is good again. Let the
muffins fly!

 I'm getting posts, but not as many as we used to get.

 :(

 Erika
 (with a *K*)

 Those who love deeply never grow old; they may die of old age, but they
die
 young. - Sir Arthur Wing Pinero
 -
 Macromedia ColdFusion 5.0 Certified Developer -  Just passed!!
 WooHoo
 -

 -Original Message-
 From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 02, 2001 10:57 AM
 To: CF-Talk
 Subject: is this list dead?


 I haven't seen a post in quite some time now.
 Mike

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: is this list dead?

2001-07-05 Thread Dennis Powers

Mike,

I know what you mean about Post.Office.  I e-mailed them (openware) about
the knowledge base articles and they sent me this link:

You can point your browser to
http://support.openwave.com/post_office.html

It has most of the old stuff about Post.Office which I quickly archived for
future reference.

Best Regards,

Dennis Powers
UXB Internet
(203) 879-2844
http://www.uxbinfo.com/

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 05, 2001 7:53 AM
To: CF-Talk
Subject: Re: is this list dead?

I really don't know. All I know is that most people couldn't get the list
for a while and slowly others were able to. It stabilized with a number of
the big ISPs like AOL and UUNet not getting anything but the smaller people
getting. Once I found the article and Aaron put it in everyone started
getting mail and the entire mailserver went crazy delivering backed up mail.
Once all the backed up mail was delivered to those who hadn't gotten in the
last 2 weeks, we had a spew of messages hit the machine. These ran the gamut
from the last week or so including a lot of list requests and such. It seems
to be over now.
As for post.office, I think its abandon-ware. The article was linked to
their site but when I went there, it was gone. Thank God for Googles
caching.


 Just curious, how was your mail server able to contact _any_ other servers
 if it wasn't able to identify the local DNS server?  Was it the mail
server
 itself that was looking for the old registry key?  Windows 2000 isn't
 exactly brand new.  Is PostOffice still being sold and supported?

 Jim


 - Original Message -
 From: Michael Dinowitz [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, July 04, 2001 7:48 PM
 Subject: Re: is this list dead?


  It basically says that some older programs are looking in the registry
for
 a
  DNS server address and on Win2k this setting has changed. I've had one
  person with tell me they had the same problem and needed the fix as
well.
  Another piece of MS BS.
 
  Modifying DNS server definition.
  -Microsoft has changed the location of the registry Name Server
definition
  on Windows 2000. Modifications need to be done to the registry to
 compensate
  for this DNS server address change.
  -Please make the following changes to the registry.
  -Run regedt32
  -Go to the following registry location.
  -HKEY_LOCAL_MACHINE - System - CurrentControlSet - Services - Tcpip -
  Parameters
  -Launch the Multi-String editor by double clicking on
NameServer:REG_SZ:
  -Add your DNS servers IP addresses. Example: NameServer:REG_SZ:
10.2.5.21
  10.2.5.23
 
 
 
I found a small article on post.office and win2k that was removed
from
  the
software.com site. We followed its suggestions and at least 2 people
 who
  
   and that article might contain what interesting bits of advice??



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead? {Michael D.]

2001-07-05 Thread Julia Phu

It is pretty strange that the messages are not sent consistent. I try my work
account and got more mail comparing with this account. 

Michael, I don't mean to give you pressure, but only want to let you the
inconsistence. Thank you.

Julia Phu



Philip Arnold - ASP [EMAIL PROTECTED] wrote:
 I'm getting posts, but not as many as we used to get.

If I'm right (waits for Michael D to put me straight if I'm wrong)

Because of the DNS issues recently, a lot of people (me included) lost all
mails from HoF lists - this is beign fixed by the DNS propogation that is
happening currently

In a message Michael sent to me, the following URL (when re-connected) will
explain it;
http://www.houseoffusion.com/archive/index.cfm?method=messagecategoryid=9m
essageid=40238

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

Websites for the real world

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: RDS Service

2001-07-05 Thread Joshua Tipton

WHy dont you just turn off CF Exec all that service does is restart the
other services if they go down.

-Original Message-
From: Nick McClure [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 03, 2001 10:49 AM
To: CF-Talk
Subject: RDS Service


When the RDS Service is disabled, the CF Executive service still tries to
start it. Is there anyway to keep the Executive from trying to start the
RDS Service.

It tries to start it every 2 seconds and this quickly fills up the log file.

--
Nick McClure
TransDigital Solutions
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: RDS Service

2001-07-05 Thread Dave Watts

 When the RDS Service is disabled, the CF Executive service 
 still tries to start it. Is there anyway to keep the Executive 
 from trying to start the RDS Service.
 
 It tries to start it every 2 seconds and this quickly fills 
 up the log file.

Yes, you can set the
HKLM\Software\Allaire\ColdFusion\CurrentVersion\IDE\ServiceRunning value to
0.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: REQUEST vs. VARIABLES

2001-07-05 Thread kraybill

The Request scope was added to CF mainly to allow variables to 
be easily passed to custom tags. 

The only two differences I can think of between Request.var and 
Variables.var is that Request.var is accessible within all custom 
tags called within the same request, and Variables.var can be used 
without a scope since CF first looks in the Variables scope if a var 
has no specified scope. Probably not much else to say about 
Request scope, except that it can be very handy...

Gene Kraybill

..var available t
On 5 Jul 2001, at 5:25, Hamid Hossain wrote:

 Hi folks,
 
 I noticed that REQUEST scoped variables are availabe
 within CustomTags while VARIABLES scoped are not.
 
 I thought that REQUEST and VARIABLES are the same as
 you can use your name as a scope ;)
 
 I am wondering if there is a documentation on REQUEST
 scope variables.
 
 Thanx
 Hamid Hossain
 Certified ColdFusion Developer

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cflocation killing session vars

2001-07-05 Thread W Luke

Yeah I had set that, but hadn't written it in my email.  It's still not
working though.  I'll have to revert to a client Var for the time being,
unless anyone has any suggestions.

Thanks

--
Will
new media discussion for Berkshire -=- http://bnm.lukrative.com
local classifieds -=- http://www.localbounty.com
e: [EMAIL PROTECTED]  icq: 31099745


 You don't  have a type attribute in your cflock -- could it not be setting
 it at all because of this?

 Cflock scope=SESSION timeout=15 type=exclusive
 cfset session.localads = 1
 /cflock


 - Original Message -
 From: W Luke [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 03, 2001 7:31 AM
 Subject: cflocation killing session vars


 Hi,

 I usually use Client variables in this application, but in this instance I
 need to use a session variable which will then be killed off when the
 browser closes.  Basically I have something like this setup:

 Cflock scope=SESSION timeout=15
 cfset session.localads = 1
 /cflock
 cflocation url=#new_address# addtoken=no

 When the user is taken #new_address#, session.localads doesn't exist - how
 come?

 Thanks

 --
 Will
 new media discussion for Berkshire -=- http://bnm.lukrative.com
 local classifieds -=- http://www.localbounty.com
 e: [EMAIL PROTECTED]  icq: 31099745

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Michael Dinowitz

This is why the next FA news alert will be sent out over iMS. Then the
NYCFUG list will be on iMS, then, then, thenI'll release the list code
for iMS.
Thanks Howie


 FYI:

 Post.Office is still sold by OpenWave.  OpenWave (formerly Phone.com)
merged with Software.com last year.  The URL for Post.Office
 is:

 http://www.openwave.com/products/legacy/post_office/

 Notice that the link to the Post.Office page has the word legacy in it.
The software hasn't been updated for WinNT since October,
 1998 and for UNIX since February, 1999.  They still are more than happy to
sell it to you, though.

 Regards,

 Howie

 - Original Message -
 From: Michael Dinowitz [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, July 05, 2001 7:53 AM
 Subject: Re: is this list dead?


  I really don't know. All I know is that most people couldn't get the
list
  for a while and slowly others were able to. It stabilized with a number
of
  the big ISPs like AOL and UUNet not getting anything but the smaller
people
  getting. Once I found the article and Aaron put it in everyone started
  getting mail and the entire mailserver went crazy delivering backed up
mail.
  Once all the backed up mail was delivered to those who hadn't gotten in
the
  last 2 weeks, we had a spew of messages hit the machine. These ran the
gamut
  from the last week or so including a lot of list requests and such. It
seems
  to be over now.
  As for post.office, I think its abandon-ware. The article was linked to
  their site but when I went there, it was gone. Thank God for Googles
  caching.
 
 
   Just curious, how was your mail server able to contact _any_ other
servers
   if it wasn't able to identify the local DNS server?  Was it the mail
  server
   itself that was looking for the old registry key?  Windows 2000 isn't
   exactly brand new.  Is PostOffice still being sold and supported?
  
   Jim
  
  
   - Original Message -
   From: Michael Dinowitz [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Wednesday, July 04, 2001 7:48 PM
   Subject: Re: is this list dead?
  
  
It basically says that some older programs are looking in the
registry
  for
   a
DNS server address and on Win2k this setting has changed. I've had
one
person with tell me they had the same problem and needed the fix as
  well.
Another piece of MS BS.
   
Modifying DNS server definition.
-Microsoft has changed the location of the registry Name Server
  definition
on Windows 2000. Modifications need to be done to the registry to
   compensate
for this DNS server address change.
-Please make the following changes to the registry.
-Run regedt32
-Go to the following registry location.
-HKEY_LOCAL_MACHINE - System - CurrentControlSet - Services -
Tcpip -
Parameters
-Launch the Multi-String editor by double clicking on
  NameServer:REG_SZ:
-Add your DNS servers IP addresses. Example: NameServer:REG_SZ:
  10.2.5.21
10.2.5.23
   
   
   
  I found a small article on post.office and win2k that was
removed
  from
the
  software.com site. We followed its suggestions and at least 2
people
   who

 and that article might contain what interesting bits of advice??
  
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOAP and Coldfusion

2001-07-05 Thread Patricia Lee

There's a chapter on the subject in the Professional ColdFusion 5.0 book by
Wrox.

|-Original Message-
|From: Kinley Pon [mailto:[EMAIL PROTECTED]]
|Sent: Tuesday, July 03, 2001 2:50 AM
|To: CF-Talk
|Subject: SOAP and Coldfusion
|
|
|Hello everyone,
|
|I am looking for an example of integrating the use of SOAP (simple
|object access protocol) with Coldfusion.  
|
|I would be most grateful.
|
|thanks - Kinley
|
|
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Style Sheets

2001-07-05 Thread Robert Everland

No flames I used an OT. I have a style sheet that I am using (while
I am cf programming btw) and I can not get it to work at all in NS 6. It's
not complicated at all, anyone know of wnhy this wouldn't work? 

style type=text/css
!--
#regular_text {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 7pt;
color : Black;
font-weight : bold;
}

#purple {
color : #5D1E79;
}
-- 
/style

Robert Everland III
Dixon Ticonderoga
Web Developer Extraordinaire

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Help for using Windows Service for Unix with CF

2001-07-05 Thread ychen




Additional Header Information:
Received: from hof001.houseoffusion.com ([207.31.122.190]) by inside.pgi.com
(Lotus SMTP MTA v4.6.6  (890.1 7-16-1999)) with SMTP id 85256A80.005409F0; Thu,
5 Jul 2001 11:17:55 -0400 Received: from [207.31.122.190] by
hof001.houseoffusion.com
  (Post.Office MTA v3.5.3 release 223 ID#
0-54969U100L100S0V35)
  with SMTP id com for
[EMAIL PROTECTED];
  Thu, 5 Jul 2001 11:04:11 -0400
Date: Thu, 05 Jul 2001 10:51:48 -0400
From: David E. Crawford [EMAIL PROTECTED]
Message-id: 0e2501c10562$073a9c20$640aa8c0@actekdcrawford
References:
[EMAIL PROTECTED]
Subject: Re: REQUEST vs. VARIABLES
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Content-Type: text/plain


-






Hi,
Has anyone use WIndows Service for Unix with CF before?
I need some help on this issue.
We have Winodws 2000 Server as Webserver and it has Windows Service for Unix
installed on the Windows 2000 Server. One of my CFM template need to get a
document from UNIX share drive then copy over to Windows 2000 server. I am able
to installed SFU( Service for Unix), but I am not able to list the file or copy
the file.

Can anyone help on this issue?

Thank you very much

YCC



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SOAP and Coldfusion

2001-07-05 Thread Simon Horwith

the recently released WROX book, Professional ColdFusion 5.0 has offers
several chapters devoted to XML technologies, including one devoted to SOAP.
Also, the CFUG archives at www.figleaf.com feature some zip files containing
code and slides on CF-SOAP integration (SOAP presentations by Dave Watts,
CTO)

~Simon

Simon Horwith
Macromedia Certified Instructor
Certified Advanced ColdFusion 5 Developer
Fig Leaf Software
1400 16th St NW, # 500
Washington DC 20036
202.797.6570 (direct line)
www.figleaf.com



-Original Message-
From: Kinley Pon [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 03, 2001 2:50 AM
To: CF-Talk
Subject: SOAP and Coldfusion


Hello everyone,

I am looking for an example of integrating the use of SOAP (simple
object access protocol) with Coldfusion.  

I would be most grateful.

thanks - Kinley
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [SOAP and Coldfusion]

2001-07-05 Thread Alex

I used cfexecute that ran a perl script. 

Kinley Pon [EMAIL PROTECTED] wrote:
Hello everyone,

I am looking for an example of integrating the use of SOAP (simple
object access protocol) with Coldfusion.  

I would be most grateful.

thanks - Kinley
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Alternative to SQL Enterprise Manager

2001-07-05 Thread Jeffry Houser


  I thought that (theoretically) Enterprise Manager was freeware.  It is 
useless without a SQL Server behind it.  I have been told by multiple 
hosting partners that I should just buy the evaluation version ($10) to get 
Enterprise Manager /Query Analyzer, because they are free for all.


At 12:22 PM 07/03/2001 +1000, you wrote:
The system administrator at my client has done a software audit and has
decided in his wisdom that I don't need to have SQLServer on my sytem, and
while I dont use the database on my local PC, I do use the Enterprise
Manager a LOT for accessing and manipulating the database on the server.

Before I go and have a fight with him over this, is there an alternative I
could use (other than Access2000)?   I seem to recall there was discussion
of this some months ago and I think someone said Micro$oft had a freeware
alternative to Enterprise Manager, but I can't find it in the archives.

Or another possibility is that I could load just the Enterprise Manager on
my local system.  Does that require a whole SQL License?

Are there any other possibilities before I go and deck the system
administrator?

Cheers,
Mike Kear
AFP Webworks,
Windsor, NSW, Australia.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL practical limits

2001-07-05 Thread Mark W. Breneman

Just to check that we are all on the same page...  When you say 50,000
emails in a 1/2 hour you mean that all of the 50,000 messages are sent to
the SMTP server and the spool folder is empty at the end of 30 minutes?
Correct?

If so I think I have bottle neck at my SMTP server.  It only seems to send
about 1000 an hour.

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

-Original Message-
From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 9:44 AM
To: CF-Talk
Subject: RE: CFMAIL practical limits


This is the code I use. I've found (and I don't know why) it works best when
I send batches of 8,000 at a time. 8,000 will spool to the mail server in
less than 3 minutes.

--Dylan

---
CFQUERY NAME=[query] DATASOURCE=[DSN]
SELECT
email_address
FROM
[table]
/CFQUERY

!--- Starting time stamp 
CFOUTPUT
#TimeFormat(Now(), 'hh:mm:ss')#
/CFOUTPUT
BR

CFLOOP QUERY=get_email STARTROW=1 ENDROW=8000
CFMAIL
FROM=[from]
TO=#email_address#
SUBJECT=[subject]
Mail Body
/CFMAIL
/CFLOOP

BRBR

!--- Ending time stamp ---
CFOUTPUT
#TimeFormat(Now(), 'hh:mm:ss')#
/CFOUTPUT
---



-Original Message-
From: tom muck [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 28, 2001 6:47 AM
To: CF-Talk
Subject: Re: CFMAIL practical limits


Have you found a setting that allows you to spool more than 100 messages
every 15 seconds?  With those limits set by the CF Administrator we've only
been able to dump 24,000 messages per hour to our mail server.

tom

Dylan Bromby [EMAIL PROTECTED] wrote in message
000301c0ff30$3c59b900$6401a8c0@bromby">news:000301c0ff30$3c59b900$6401a8c0@bromby...
 I use CFMAIL to send 50,000 emails a pop and it takes less than 30 minutes
 to send them all to the mail server (IMail 6.0.x).

 --Dylan
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Newletter CFM codes

2001-07-05 Thread nyon


  Anyone can spare me a few scripts to run a newsletter which lets a user
subscribe, unsubscribe and sent mail
to the list of people e-mails from a database ?

Thanks
Nyon



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: access not accepting insert statement

2001-07-05 Thread Mark Smyth

are you locking the insert statement?

Mark Smyth 
Macromedia Certified ColdFusion Developer 
Systems Union eBusiness Solutions 
01865 880800 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 

-Original Message-
From: Gilbert Midonnet [mailto:[EMAIL PROTECTED]]
Sent: 05 July 2001 15:20
To: CF-Talk
Subject: access not accepting insert statement



I'm using coldfusion and access (ODBC) and having a problem.When
multiple insert statements arrive at the same time only the first insert
statement is accepted.  We don't have that many users on the system
(Intranet) so it doesn't make sense to migrate from access.

Is there a way of queuing the insert statements, or any other way of solving
this problem?



Gilbert Midonnet
BrokerTec USA, LLC
(201) 209-7843





 
This message is for the named person's use only. It may contain
confidential, proprietary or legally 
privileged information. No confidentiality or privilege is waived or lost by
any mistransmission. If 
you receive this message in error, please immediately delete it and all
copies of it from your 
system, destroy any hard copies of it and notify the sender. You must not,
directly or indirectly, 
use, disclose, distribute, print, or copy any part of this message if you
are not the intended 
recipient.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Login System!!

2001-07-05 Thread David E. Crawford

There is a decent system at the SoCal CF User group site that I have used
fairly regularly. I don't have the link handy. It is not a FuseBox app out
of the zip, however.

DC

- Original Message -
From: Hamid Hossain [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 05, 2001 11:02
Subject: Login System!!


 Hi,

 I am working with FuseBox on my site. I want to make
 login to the administrator area. That should use
 SESSION variable to check the admin status.

 I am wondering if any one made this before and may
 help me to save my time.

 Hamid Hossain

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: is this list dead?

2001-07-05 Thread Michael Dinowitz

That's the fun part. It's not on their site. I found it cached on Google and
then using key words from it found a copy at another site. Here's an
alternative link to the article:
http://www.isp-tools.de/post/impo353win2k.html


 Michael,

 Where did you find the article about Post.Office?  I went to their (new)
 site and it looks as if all the knowledge base articles were removed.  I
 would like to archive them for future reference.

 Best Regards,

 Dennis Powers
 UXB Internet
 (203) 879-2844
 http://www.uxbinfo.com/

 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 02, 2001 12:00 PM
 To: CF-Talk
 Subject: Re: is this list dead?

 If Michael is smiling, worry!
 I found a small article on post.office and win2k that was removed from the
 software.com site. We followed its suggestions and at least 2 people who
 weren't getting mail are getting it now. Your all in for a flood, but
it'll
 be worth it to be back. God, the stress. I've lost more hair over this
than
 all my kids combined.
 Point is, everyone should be seeing this. Life is good again. Let the
 muffins fly!

  I'm getting posts, but not as many as we used to get.
 
  :(
 
  Erika
  (with a *K*)
 
  Those who love deeply never grow old; they may die of old age, but they
 die
  young. - Sir Arthur Wing Pinero
  -
  Macromedia ColdFusion 5.0 Certified Developer -  Just passed!!
  WooHoo
  -
 
  -Original Message-
  From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, July 02, 2001 10:57 AM
  To: CF-Talk
  Subject: is this list dead?
 
 
  I haven't seen a post in quite some time now.
  Mike
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Login, Password application

2001-07-05 Thread Chad Gray

Anyone have a favorite Login/Password application?

I like the looks of CF_DB_Login but wanted to see if anyone has a better, 
or more secure application.


Thanks,
Chad


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



layers and divs

2001-07-05 Thread Steven Dworman

I have a page that checks for the browser type and then diplays either 

1. div's for microsoft
2. layer's for netscape

for 1 everything is cool.  the divs expand and collapse, however, for 2 they just show 
up and disappear.  
How can I get the layers to expand and collapse like divs?

example of netscape code...

function ShowHide_WaitList ()
{   
 if (document.layers.WaitList.visibility == hide)
 {
  document.layers.WaitList.visibility = inherit;
 }
 else
 {
  document.layers.WaitList.visibility = hide;
 }
}


tr
   th width=100% align=left
form
 input type=button name=WaitList value=Show/Hide Waiting List 
onclick=javascript:ShowHide_WaitList()
/form
   /th
  /TR
  ilayer id=WaitList visibility=hide z-index=7
  TR
   td width=100%
 TABLE  width=100% align=center border=0
  cfif IsDefined(list_wait)
   tr
thTerm/th
thDepartment/th
thCourse/th
thSection/th
thDescription/th
   /tr
   cfset bgcolor6=
   cfoutput query=sr_wait_list
   cfif bgcolor6 is #RowColor2#
 cfset bgcolor6 = #RowColor1#
cfelse
 cfset bgcolor6 = #RowColor2#
/cfif
tr bgcolor=#bgcolor6#
 td#term_id#/td
 td#dept_id#/td
 td#crse_id#/td
 td#sect_id#/td
 td#descr_label#/td
/tr
cfset list_wait=1
   /cfoutput
  cfelse
   tr align=center
td colspan=5
 Not on the Wait List for any future courses.
/td
   /tr
  /cfif
 /table
   /td
  /tr
  /ilayer

Thanks,

Steven D Dworman
-
Web Consultant
Systems Administrator

ComSpec International - http://www.comspec-intnl.com
phone: 248.647.8841
cell:  734.972.9676
-
EMPOWER-XL ***Software for Higher Education***
http://www.empower-xl.com


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: duplicate() function

2001-07-05 Thread Ken Beard

ok i was smokin crack here.. disregard

At 12:38 PM 7/27/01 -0700, you wrote:
found a new feature in the duplicate function.  If you duplicate a
recordset and then try to refer to a specific row of the copy like
application_get_all[4].application_name you'll get an error, but it is
still treated like a recordset in other ways.. still works with cfloop
query= and so forth.

-
Ken Beard
Manager, Application Development
StoneGround

5100 West Kennedy Blvd, Suite 430
Tampa FL  33602
813.387.1235 voice
866.767.4051 toll free
813.387.1237 fax
http://www.stoneground.com



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Data Validation

2001-07-05 Thread Bryan Love

I know this works
---
if( str.length == 0 )
return false;

for( i=0; istr.length; i++ ){
if( str.charAt(i)  0 || str.charAt(i)  9)
return false;
}
return true;
---


and I think this will also work
---
if (isNaN(dateObj.valueOf()))
return false;
---


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Jerry Staple [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 03, 2001 1:39 AM
To: CF-Talk
Subject: Data Validation


Hi, 
Could someone inform me the best Javascript fucntion to check the value
of a textbox and to make sure the value entered is a number.

Much Apreciated

Jerry Staple
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: access not accepting insert statement

2001-07-05 Thread Bryan Love

Access is single threaded by design.  That means when two simultaneous
requests arrive Access will automatically queue them up in the order
received.  How can you be sure both insert statements are arriving at the
same time and are correct in syntax?


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Gilbert Midonnet [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 05, 2001 7:20 AM
To: CF-Talk
Subject: access not accepting insert statement



I'm using coldfusion and access (ODBC) and having a problem.When
multiple insert statements arrive at the same time only the first insert
statement is accepted.  We don't have that many users on the system
(Intranet) so it doesn't make sense to migrate from access.

Is there a way of queuing the insert statements, or any other way of solving
this problem?



Gilbert Midonnet
BrokerTec USA, LLC
(201) 209-7843





 
This message is for the named person's use only. It may contain
confidential, proprietary or legally 
privileged information. No confidentiality or privilege is waived or lost by
any mistransmission. If 
you receive this message in error, please immediately delete it and all
copies of it from your 
system, destroy any hard copies of it and notify the sender. You must not,
directly or indirectly, 
use, disclose, distribute, print, or copy any part of this message if you
are not the intended 
recipient.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Alternative to SQL Enterprise Manager

2001-07-05 Thread Bryan Love

Using Access to link to SQL Server is your best bet.


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Michael Kear [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 7:22 PM
To: CF-Talk
Subject: Alternative to SQL Enterprise Manager


The system administrator at my client has done a software audit and has
decided in his wisdom that I don't need to have SQLServer on my sytem, and
while I dont use the database on my local PC, I do use the Enterprise
Manager a LOT for accessing and manipulating the database on the server.

Before I go and have a fight with him over this, is there an alternative I
could use (other than Access2000)?   I seem to recall there was discussion
of this some months ago and I think someone said Micro$oft had a freeware
alternative to Enterprise Manager, but I can't find it in the archives.

Or another possibility is that I could load just the Enterprise Manager on
my local system.  Does that require a whole SQL License?

Are there any other possibilities before I go and deck the system
administrator?

Cheers,
Mike Kear
AFP Webworks,
Windsor, NSW, Australia.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF 5 with multiple IP's

2001-07-05 Thread Bryan Love

There could be a hundred things causing this problem.  Can you be more
specific?  Maybe cut and past the error you are getting and specify HOW the
server must handle multiple IPs.


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 04, 2001 2:02 PM
To: CF-Talk
Subject: CF 5 with multiple IP's


I'm helping a friend get a server set up and we're running into a problem.

We installed NT4, CF5 and then realized that the server needed to be set up
to handle multiple IP's.  I can get the administrator to come up, but when
we get a message:

The specified module could not be found.

Does anyone have any advice?  Is there a setting in CF that needs to be
changed for using multiple IP's?

TIA
Hatton Humphrey
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: query and cfif and cfset

2001-07-05 Thread Bryan Love

The problem lies in your CFSET statement between the queries.  You are
setting client.gradingPeriod to the first value returned by the previous
query.  Thus when you reference the second query's values in the IF
statement they will always be the same.  You should not be running two
seperate queries, but rather joining the appropriate tables in a single
query and manipulating the output using CF. 


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Janine Jakim [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 03, 2001 12:33 PM
To: CF-Talk
Subject: query and cfif and cfset


I have a display page that I want the user to only add current information.
The older info should be read only.  I can not seem to get this to work- i
end up with either 2 input boxes or 2 display boxes.  I'm wondering if the
prob stems from the queries.
1.  I used two queries.  One gives all the fields that are going to be
updated. (it has 2 tables) and the 2nd query has the dates of the quarters
and cut-offs for data entry.  This 2nd one has a where statement for
client.quarter = quarter between the 2 queries.
2. On my display page I output the data entry query.  Where it should
display I have:

 CFIF (Now() GT CLIENT.BegQuarter) and (Now() LT CLIENT.DistributionDate)
and (CLIENT.GradingPeriod EQ 1)INPUT name=GradeForSubject
value=#UCase(GradeForSubject)# size=5
CFIF (Now() GT BegQuarter) and (Now() LT DistributionDate) and (Quarter EQ
2)INPUT name=GradeForSubject value=#UCase(GradeForSubject)# size=5 
CFELSE#GradeForSubject#
/CFIF

This will not work.  I assumed it was because I am doing a cfoutput query on
the 1st query but then had field names from the 2nd query.  I then changed
the 2nd query variables to CLIENT variables but that didn't make any
difference.  (Above is the old code before I cfset the client variable)
So do I need to combine the queries?  I'm afraid that the queries are going
to get too big/slow...(
Here are the queries I used.  Any help would be great as I've been cursing
this thing all day...

Query 1:
CFQUERY NAME=GetSubjects DATASOURCE=#Request.maindsn#
SELECT  tbl_StudentGrade.GradesID, tbl_StudentGrade.SkillID,
tbl_CourseSkill.Skill, tbl_CourseSkill.CourseID, tbl_CourseSkill.DisplayNum,

tbl_StudentGrade.GradeForSubject, tbl_StudentGrade.SchoolDates,
tbl_StudentGrade.Advisor, tbl_StudentGrade.GradingPeriod,
tbl_StudentGrade.PERMNUM
FROM tbl_CourseSkill, tbl_StudentGrade
WHEREtbl_CourseSkill.SkillID = tbl_StudentGrade.SkillID and
PERMNUM='#PERMNUM#' And CourseID=1  OR  tbl_CourseSkill.SkillID =
tbl_StudentGrade.SkillID and  PERMNUM='#PERMNUM#' And CourseID=2
Order BY DisplayNum, GradingPeriod
/CFQUERY

CFSET CLIENT.GradingPeriod=GetSubjects.GradingPeriod

QUERY2:  
CFQUERY NAME=GetQuarters DATASOURCE=#Request.maindsn#
SELECT BegQuarter, EndQuarter, DistributionDate, Quarter
FROM tbl_QuarterDate
WHERE Quarter= #CLIENT.GradingPeriod#
/CFQUERY
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Alternative to SQL Enterprise Manager

2001-07-05 Thread Dave Watts

 The system administrator at my client has done a software 
 audit and has decided in his wisdom that I don't need to have 
 SQLServer on my system, and while I dont use the database on 
 my local PC, I do use the Enterprise Manager a LOT for accessing 
 and manipulating the database on the server.
 
 ...
 
 Or another possibility is that I could load just the Enterprise 
 Manager on my local system. Does that require a whole SQL License?

No, it only requires that you use it to connect to a licensed SQL server.
You can install just the Enterprise Manager and client tools from the SQL
Server CD.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: RDS Service

2001-07-05 Thread Dave Watts

 Why dont you just turn off CF Exec all that service does is 
 restart the other services if they go down.

Uh, that's a pretty important thing to have running in a production
environment.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is this possible?

2001-07-05 Thread phumes1


I have a directory tree listing. For example,

d:\
test1
|- subdir1
|- subdir2
test2
|- subdir1
|- subdir2
test3
|- temp1
|- temp2
test4

Above this I have a CFFORM with a INPUT box and a submit button.

If the user goes into the following directory test2...subdir2, I want them 
to be able to
enter in another directory by just typing temp2 in the INPUT box, click 
on the go button and be taken
right to that directory even though that directory may not be listing 
(expanded) above.

I'm not sure how to go about this?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SOAP and Coldfusion

2001-07-05 Thread Kinley Pon

I apologize for the broad request...this is absolutely new to me and I
am not at all comfortable how to ask the question. 

I will look at the site and determine how much help it can give me.

Thanks Dave - Kinley

Dave Watts wrote:
 
  I am looking for an example of integrating the use of SOAP (simple
  object access protocol) with Coldfusion.
 
 That's kind of a broad request. Are you looking to use CF as a SOAP client,
 or a SOAP server?
 
 There were two presentations given at the last DC CFUG on using CF as a SOAP
 client. I did a very basic general introduction to SOAP, which covered using
 IE 5 directly as a SOAP client and a tiny bit on using CF as a SOAP client,
 and Steve Seaquist did one on writing a Java CFX to use as a SOAP client for
 a specific SOAP service. In the next couple of months, I'll be covering SOAP
 in more detail at the DC CFUG. The current presentations are available at:
 
 http://www.figleaf.com/figleafhome/cfug/2001/CFUGJun2001/jun2001.zip
 
 I hope this helps!
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444

-- 
Kinley Pon
Westcar Consulting Group, Inc.
email: [EMAIL PROTECTED]
mobile: (626) 232-0202
efax: (801) 838-6567
--

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL practical limits

2001-07-05 Thread tom muck

The CF Server has a built-in bottleneck.  You can send 400 messages per
minute if you increase the settings in the CF administrator from the default
60 seconds to15 seconds .  I don't think it's possible to send more than
that.  The messages sit in the spool folder and are delivered to the mail
server in batches of 100 every 15 seconds.

tom
www.basic-ultradev.com

Mark W. Breneman [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Just to check that we are all on the same page...  When you say 50,000
 emails in a 1/2 hour you mean that all of the 50,000 messages are sent to
 the SMTP server and the spool folder is empty at the end of 30 minutes?
 Correct?

 If so I think I have bottle neck at my SMTP server.  It only seems to send
 about 1000 an hour.

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




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Force IE to launch

2001-07-05 Thread Ken Wilson

 I have an app that runs in IE 5.0 and above. How can I
 prompt the user if they are using Netscape to switch to IE?



Just look at the User Agent and, if not appropriate, tell them what they
need to do to corect the situation.

Ken


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: personal web server that will work with win 98 and coldfusion

2001-07-05 Thread PEREZ, RICHARD D (SBCSI)

I agree... i am using Apache... it's working great. you just need to know
the adjustment though...

-Original Message-
From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 03, 2001 10:16 PM
To: CF-Talk
Subject: Re: personal web server that will work with win 98 and
coldfusion


Apache...

 I am using cold fusion single server 4 with cold fusion but every time I
 load single server it asks
 me for the personal web server on my computer. I have tried several free
web
 servers that work well
 for FTP, HTTTP, and ISAPI but lack things such as SSL. single server does
 not automatically detect these servers.
 do you know where I can get a personal web server that will work with win
98
 and cold fusion.


 Thanks,


 Fernando



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Alternative to SQL Enterprise Manager

2001-07-05 Thread Costas Piliotis

Right.  Ever tried to schedule a job from Access 2000?  How about DTS?  How
about manage user logins and roles?  Replication?

I don't think Access 2000 has these features.  A dba needs em or something
quite similar to it in order to work properly.

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, July 05, 2001 10:11 AM
To: CF-Talk
Subject: RE: Alternative to SQL Enterprise Manager


Using Access to link to SQL Server is your best bet.


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Michael Kear [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 7:22 PM
To: CF-Talk
Subject: Alternative to SQL Enterprise Manager


The system administrator at my client has done a software audit and has
decided in his wisdom that I don't need to have SQLServer on my sytem, and
while I dont use the database on my local PC, I do use the Enterprise
Manager a LOT for accessing and manipulating the database on the server.

Before I go and have a fight with him over this, is there an alternative I
could use (other than Access2000)?   I seem to recall there was discussion
of this some months ago and I think someone said Micro$oft had a freeware
alternative to Enterprise Manager, but I can't find it in the archives.

Or another possibility is that I could load just the Enterprise Manager on
my local system.  Does that require a whole SQL License?

Are there any other possibilities before I go and deck the system
administrator?

Cheers,
Mike Kear
AFP Webworks,
Windsor, NSW, Australia.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Alternative to SQL Enterprise Manager

2001-07-05 Thread Bryan Love

Agreed.  I was under the impression that a tool was needed solely for data
and table manipulation. 


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Costas Piliotis [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 05, 2001 12:43 PM
To: CF-Talk
Subject: RE: Alternative to SQL Enterprise Manager


Right.  Ever tried to schedule a job from Access 2000?  How about DTS?  How
about manage user logins and roles?  Replication?

I don't think Access 2000 has these features.  A dba needs em or something
quite similar to it in order to work properly.

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, July 05, 2001 10:11 AM
To: CF-Talk
Subject: RE: Alternative to SQL Enterprise Manager


Using Access to link to SQL Server is your best bet.


Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]



-Original Message-
From: Michael Kear [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 7:22 PM
To: CF-Talk
Subject: Alternative to SQL Enterprise Manager


The system administrator at my client has done a software audit and has
decided in his wisdom that I don't need to have SQLServer on my sytem, and
while I dont use the database on my local PC, I do use the Enterprise
Manager a LOT for accessing and manipulating the database on the server.

Before I go and have a fight with him over this, is there an alternative I
could use (other than Access2000)?   I seem to recall there was discussion
of this some months ago and I think someone said Micro$oft had a freeware
alternative to Enterprise Manager, but I can't find it in the archives.

Or another possibility is that I could load just the Enterprise Manager on
my local system.  Does that require a whole SQL License?

Are there any other possibilities before I go and deck the system
administrator?

Cheers,
Mike Kear
AFP Webworks,
Windsor, NSW, Australia.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Verity Problem (solved)

2001-07-05 Thread kraybill

SIGHS Type=Great Rejoicing
Well, I finally figgered out the cause of my Verity problem.
/SIGHS

When you set TYPE=File in CFINDEX, the filename you use for 
the KEY must apparently be fully qualified with the path as well. 
My app is actually working now, but I have little hair left. g

The docs, I feel, are misleading. Although they say the KEY is the 
fully qualified path when TYPE=Path, they simply say the KEY 
is Document filename when TYPE=File. The fact that fully 
qualified was used in referring to the Path type but not the File 
type made me conclude, incorrectly, that the filename did not need 
to be fully qualified. I had specified the path in the URLPATH 
parameter, so incorrectly thought that would suffice.

What made things so confusing was that I had discovered by 
accident that if I ran one CFINDEX using Type=Path, I could then 
use a CFINDEX where Type=File. Apparently the fully qualified path 
I specified in KEY when I ran the CFINDEX with TYPE=Path 
switched the internal default path for Verity. I was just about ready 
to throw out Verity as a quirky engine that didn't work. What a relief 
to discover that the world actually works again g...

Gene Kraybill

On 4 Jul 2001, at 23:35, [EMAIL PROTECTED] wrote:

 I have an application that uses three Verity collections. I can 
 successfully create the first collection and retrieve info from it, and 
 can then do the same with the second collection. However, when I 
 go back and do an update on the first collection, 2 error 
 messages like the following are generated in file/sysinfo.log for each page I 
attempt to add:
 
 Start of error --
 Error   E3-0422 (VDK 2): Could not find file Page_338.htm
 
 Error   E3-0032 (VDK): No valid documents found in 
 C:\WINNT\CFI70CB.tmp for collection 
 E:\Web\worldwideguide\guides\verity\Guide_2_Pages\file
 End of Error --
 
 The contents of this update also do not show up in searches.
 
 This is my CFINDEX:
 
 CFINDEX collection=#ThisCollection#
   action=Update
   type=File
   key=Page_#ThisPageID#.htm
   CUSTOM1=#ThisPageURL#
   CUSTOM2=#ThisPageID#
   extensions=.htm
   language=English 
 
 Once this error occurs with a collection, I discovered that the only 
 way I can correct it is to run the following code, taken in 
 desperation from some sample CF code:
 
 CFINDEX 
   collection=#ThisCollection#
 action=Refresh
 type=PATH
 key=#IndexDirectory#\
 extensions=#IndexExtensions#
 recurse=#IndexRecurse#
 language=#IndexLanguage#
 urlPath=#URLPath#\verity\Guide#Dev#_#GuideID#_PageLinks
 
 Once I run the sample code, which does a PATH indexing 
 operation rather than a FILE operation, I can then re-run the first 
 CFINDEX and repopulate my collection (via a loop, file by file). The 
 first CFINDEX does NOT have the same corrective effect, even if I 
 change it to a Refresh rather than an Update.
 
 I've tried deleting, purging, repairing and optimizing, all to no avail. 
 The only thing that seems to work is running the PATH-based 
 refresh, then going back to my initial FILE-based indexing within a 
 loop. The problem with that, of course, is that each time I must 
 complete rebuild the collection, which will NOT be practical in the 
 application I'm building.
 
 Any ideas greatly appreciated...
 
 Gene Kraybill
 LPW  Associates LLC
 Mansfield, PA
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Alternative to SQL Enterprise Manager

2001-07-05 Thread Paul Sizemore

Microsoft Data Engine. 

A license comes with Office 2000 ( XP?). Lets you do a lot of what you
could do with Enterprise Manager. I've never worked directly with it, but it
was presented at my CFUG. 

Install directions can be found at
http://www.microsoft.com/Office/ORK/2000/Two/30t5_4.htm

Have fun.


Paul Sizemore

Finish Line
3308 N Mitthoeffer Rd
Indianapolis, IN 46235
W: 317-899-1022 ext 3516


-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 05, 2001 12:11 PM
To: CF-Talk
Subject: RE: Alternative to SQL Enterprise Manager

Using Access to link to SQL Server is your best bet.

   
Bryan Love ACP
Internet Application Developer
[EMAIL PROTECTED]
   


-Original Message-
From: Michael Kear [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 02, 2001 7:22 PM
To: CF-Talk
Subject: Alternative to SQL Enterprise Manager


The system administrator at my client has done a software audit and has
decided in his wisdom that I don't need to have SQLServer on my sytem, and
while I dont use the database on my local PC, I do use the Enterprise
Manager a LOT for accessing and manipulating the database on the server.

Before I go and have a fight with him over this, is there an alternative I
could use (other than Access2000)?   I seem to recall there was discussion
of this some months ago and I think someone said Micro$oft had a freeware
alternative to Enterprise Manager, but I can't find it in the archives.

Or another possibility is that I could load just the Enterprise Manager on
my local system.  Does that require a whole SQL License?

Are there any other possibilities before I go and deck the system
administrator?

Cheers,
Mike Kear
AFP Webworks,
Windsor, NSW, Australia.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL practical limits

2001-07-05 Thread Michael A. Cady

Hi Tom,

Which setting in CF Administrator are you referring to?  I'm using CFAS 4.01
and all I see there is a timeout for the connection to the mail server.  Is
there something else in CFAS 4.5?

Mike Cady

- Original Message -
From: tom muck [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 05, 2001 2:19 PM
Subject: Re: CFMAIL practical limits


 The CF Server has a built-in bottleneck.  You can send 400 messages per
 minute if you increase the settings in the CF administrator from the
default
 60 seconds to15 seconds .  I don't think it's possible to send more than
 that.  The messages sit in the spool folder and are delivered to the mail
 server in batches of 100 every 15 seconds.

 tom
 www.basic-ultradev.com

 Mark W. Breneman [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  Just to check that we are all on the same page...  When you say 50,000
  emails in a 1/2 hour you mean that all of the 50,000 messages are sent
to
  the SMTP server and the spool folder is empty at the end of 30 minutes?
  Correct?
 
  If so I think I have bottle neck at my SMTP server.  It only seems to
send
  about 1000 an hour.
 
  Mark W. Breneman
  -Cold Fusion Developer
  -Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Alternative to SQL Enterprise Manager

2001-07-05 Thread Dave Watts

  Or another possibility is that I could load just the 
  Enterprise Manager on my local system.  Does that require 
  a whole SQL License?
 
  Are there any other possibilities before I go and deck the 
  system administrator?

 Microsoft Data Engine. 
 
 A license comes with Office 2000 ( XP?). Lets you do a lot 
 of what you could do with Enterprise Manager. I've never 
 worked directly with it, but it was presented at my CFUG. 

MSDE doesn't provide an administrative interface, such as Enterprise Manager
- it's just the database itself, and can itself be administered via
Enterprise Manager.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL practical limits

2001-07-05 Thread tom muck

Yes, in CF 4.5 and CF 5, there is a Spool Interval setting, which can be set
as low as 15 seconds. I wish there was a way to set this lower, but it seems
to be set in stone.

tom


Michael A. Cady [EMAIL PROTECTED] wrote in message
0e5401c10594$f8bdc6d0$[EMAIL PROTECTED]">news:0e5401c10594$f8bdc6d0$[EMAIL PROTECTED]...
 Hi Tom,

 Which setting in CF Administrator are you referring to?  I'm using CFAS
4.01
 and all I see there is a timeout for the connection to the mail server.
Is
 there something else in CFAS 4.5?

 Mike Cady




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: access not accepting insert statement

2001-07-05 Thread Bill Davidson

I haven't seen that problem.  What exactly happens to the second insert
statement?  Does it give an ODBC error or does it just not get inserted?
Maybe you need to upgrade your MDAC.

-Bill
brainbox

- Original Message -
From: Gilbert Midonnet [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 05, 2001 10:20 AM
Subject: access not accepting insert statement



 I'm using coldfusion and access (ODBC) and having a problem.When
 multiple insert statements arrive at the same time only the first insert
 statement is accepted.  We don't have that many users on the system
 (Intranet) so it doesn't make sense to migrate from access.

 Is there a way of queuing the insert statements, or any other way of
solving
 this problem?



 Gilbert Midonnet
 BrokerTec USA, LLC
 (201) 209-7843




 --
--
 
 This message is for the named person's use only. It may contain
 confidential, proprietary or legally
 privileged information. No confidentiality or privilege is waived or lost
by
 any mistransmission. If
 you receive this message in error, please immediately delete it and all
 copies of it from your
 system, destroy any hard copies of it and notify the sender. You must not,
 directly or indirectly,
 use, disclose, distribute, print, or copy any part of this message if you
 are not the intended
 recipient.





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



JavaBeans and CF

2001-07-05 Thread Scott Van Vliet

Hello out their:

I am new to this list, so if this thread has come up before, please forgive me.

Have any of you out there had an experience with JavaBeans and CF?  We have a project 
originally aimed for JSP that is now being ported to CF, however, most of the business 
logic has already been developed and put into Beans.  If you know of a good reference, 
or have had experience, your help would be greatly appreciated.

Thanks in advance!


-- scott van vliet
-- senior web engingeer
juxt interactive
9497525898202
[EMAIL PROTECTED]
www.juxtinteractive.com

In uniqueness is the preservation
 of mankind... - Greg Graffin


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Help for using Windows Service for Unix with CF

2001-07-05 Thread Dave Watts

 Has anyone use Windows Service for Unix with CF before?
 I need some help on this issue. We have Windows 2000 Server 
 as Webserver and it has Windows Service for Unix installed 
 on the Windows 2000 Server. One of my CFM template need to 
 get a document from UNIX share drive then copy over to Windows 
 2000 server. I am able to installed SFU( Service for Unix), 
 but I am not able to list the file or copy the file.

There seem to be lots of reasons why you might have problems.

Are you running NFS on the Unix machine? 
Are you able to mount the remote filesystem? 
Does the CF service account have access to the mounted filesystem?

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re[2]: Help for using Windows Service for Unix with CF

2001-07-05 Thread ychen




Additional Header Information:
Received: from figdcaexc1.figleaf.com ([146.145.88.79]) by inside.pgi.com (Lotus
SMTP MTA v4.6.6  (890.1 7-16-1999)) with SMTP id 85256A80.0077F856; Thu, 5 Jul
2001 17:50:23 -0400 Received: by figdcaexc1.figleaf.com with Internet Mail
Service
(5.5.2650.21)
 id L7VFRLXG; Thu, 5 Jul 2001 17:56:49 -0400
Message-ID:
[EMAIL PROTECTED]

From: Dave Watts [EMAIL PROTECTED]
To: '[EMAIL PROTECTED]' [EMAIL PROTECTED]
Cc: '[EMAIL PROTECTED]' [EMAIL PROTECTED]
Subject: RE: Help for using Windows Service for Unix with CF
Date: Thu, 5 Jul 2001 17:56:42 -0400
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2650.21)
Content-Type: text/plain;
 charset=iso-8859-1


-




Hi Dave,




   Has anyone use Windows Service for Unix with CF before?
   I need some help on this issue. We have Windows 2000 Server
   as Webserver and it has Windows Service for Unix installed
   on the Windows 2000 Server. One of my CFM template need to
   get a document from UNIX share drive then copy over to
  Windows
   2000 server. I am able to installed SFU( Service for Unix),
   but I am not able to list the file or copy the file.

  There seem to be lots of reasons why you might have problems.

  Are you running NFS on the Unix machine?  Yes

  Are you able to mount the remote filesystem? Yes I am able to mount the remote
  filesystem and I am able to see the file on the mount share drive under the
  DOS Prompt

  Does the CF service account have access to the mounted
  filesystem? Yes, I have setup an account which has access
  to the Unix BOX.



When I run the CFM Template to list the file on the UNIX box, it gets the file
and shows me the recordcount  is 1 and then after couple mins, it stop working.
this happend to me 2 times, and then it stop working.

any idear?

Thank you for any input.

YCC



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfcache Connection Failure

2001-07-05 Thread Dave Watts

 I'm hoping this is a common enough problem that there's a simple
 solution.
 
 I've got a page with cfcache at the top, when I try and view the
 page I end up with Connection Failure.  When I use cfcache
 action=flush I'm fine.
 
 I've seen this a few times when things are fine on our test server
 here, but as soon as it's rolled out to a clients server it gives this
 error.  So far I've just taken cfcache off, as the applications
 haven't been that heavy anyway, but I'm still left wondering what it
 is that causes the problem?
 
 Anyone come across the same situation?  I've heard that the number of
 simultaneous connections settings can cause this, when set to 1, any
 other reasons?

CFCACHE uses CFHTTP to run the script and write the response to a file. If
you can't use CFHTTP to run the script, CFCACHE won't work. CFHTTP might
fail for several reasons. For example, you might have permissions set on the
target script to require a login using NTLM authentication.

Rather than attempt to enumerate all the possible reasons for failure, I'd
recommend that you attempt to use CFHTTP through a recording proxy, which
will show you exactly what the problem is. You'd run the recording proxy on
your web server, and use CFHTTP to make requests through the recording
proxy. You can find recording proxies here:

Stretch:
http://www.kestral.com.au/devtools/stretch/

HttpSniffer:
http://www.schmerg.com/code.asp

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMAIL practical limits

2001-07-05 Thread Michael A. Cady

Thanks, Tom.

- Original Message -
From: tom muck [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, July 05, 2001 5:25 PM
Subject: Re: CFMAIL practical limits


 Yes, in CF 4.5 and CF 5, there is a Spool Interval setting, which can be
set
 as low as 15 seconds. I wish there was a way to set this lower, but it
seems
 to be set in stone.

 tom


 Michael A. Cady [EMAIL PROTECTED] wrote in message
 0e5401c10594$f8bdc6d0$[EMAIL PROTECTED]">news:0e5401c10594$f8bdc6d0$[EMAIL PROTECTED]...
  Hi Tom,
 
  Which setting in CF Administrator are you referring to?  I'm using CFAS
 4.01
  and all I see there is a timeout for the connection to the mail server.
 Is
  there something else in CFAS 4.5?
 
  Mike Cady





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Flash questions

2001-07-05 Thread Dave Watts

 I'm not competent in Flash so I don't know if this is feasible 
 or not. Specifically:
 
 - is it possible to have a Flash movie which presents a 
 stream of generic text, not known until runtime, in the same 
 sort of way that a browser processes HTML?

Yes, sort of. You can have a Flash movie which retrieves data from a
server-side script.

 - do objects all have to be positioned individually on the 
 screen, or can they flow onto it as in HTML?

For the most part, they're going to need to be positioned individually,
although you can write ActionScript to manage this process.

 - Is it possible to have a Flash movie that builds a drag-and-drop
 feature out of generic text or images which are not known 
 until runtime?

Yes. Here's an example:

http://www.figleaf.com/development/flash4/orgchart/orgchart.cfm

 - Is it possible for the Flash movie not only to send information back 
 to the server, but send back unpredictable information? I mean, in a CF 
 page you can easily have processing which puts an unpredictable number 
 of form fields onto the page, plus the associated processing - can you 
 do that if you're using Flash?

Yes, it's possible.

 Do I need Generator to do any of this? 

No, although if you want to dynamically generate graphic output you may need
Generator-type functionality.

 Does WDDX help?

You can use WDDX as a transport mechanism; there's a WDDX ActionScript
library written by Fig Leaf's own Flash wunderkind Branden Hall. You may
find that's more than you need, though, and slower than simply building
name-value pairs.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   >