Re: IsDefined do this...

2002-11-20 Thread Stephen Moretti
> Still, however, I am confused about your solution.  When I run it (and the
> ListFindNoCase version), it doesn't work, but the FindNoCase version does.
> I'm not sure why.  In any case, what is the inconsistency in results that
> you mention with FindNoCase?  I'd just like to know so that I avoid future
> pitfalls.
>
OK.  inconsistent results.



Take this string/list above.   If I do a FindNoCase or CONTAINS on this
string for "document" there are two places that "document" exists.  The
first being in "Documents and Settings" and the second actually being
"document".

If I'm looping through this list looking for specifically "document", then
CONTAINS will return true on "Documents and Setting" (I think its case
insensitive, but you get the point) and FindNoCase will return an index
greater than 0.  This would be a false positive for your condition.   In
this instance its quiet obvious whats happening, but imagine a situation
where both the DirectoryList and the string you are checking for is
dynamically generated...

If you use ListFindNoCase, then you will get only exact case insensitive
matches.

Am I making any sense what so ever?? :o)

Anyway, here's a bit of code I chucked together a few minutes ago to
demostrate this.





 #myDirectoryList.name#
 
  LISTFIND Omit this Directory -
 
  LISTFIND Full Details -
 
 
  CONTAINS Omit this Directory 
 
  CONTAINS Full Details 
 


To see this working you must have a folder called "document" in "c:\".  You
should see that "document" has full details in the ListFindNoCase condition,
but is omitted in the CONTAINS condition.

Something to watch for with list comparisons:

is not the same as :


in the first instance inetpub now has a space attached to the front of it,
as do temp and winnt.  Unless you tell the ListFind that the delimiter is ",
" (comma space) rather than just "," (comma) your comparison to "inetpub"
(no spaces) will fail.

I hope that all makes some kind of sense and has help you work out why your
code isn't working.

Regards

Stephen


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Stored Proc list input

2002-11-20 Thread Bill Grover
I ran into this some time ago.  The following function will take your list
and a 1 character delimiter and return a table of the parsed results.

Originally when I did this we were on SQL7 so I do have a SP version if you
want it, but I prefer the function.

CREATE FUNCTION f_reuParseList (@tcList  VARCHAR(8000), 
  @tcDelimiter CHAR(1))

RETURNS @ParsedList TABLE (ListID   int IDENTITY, 
   ListItem varchar(8000))

AS
BEGIN
DECLARE @lcListWork varchar(8000), 
  @lnCommaPos   int, 
  @lcItem   varchar(8000)

SET @lcListWork = @tcList

WHILE LEN(@lcListWork) > 0
BEGIN
SET @lnCommaPos = CHARINDEX(@tcDelimiter, @lcListWork)
IF @lnCommaPos > 0
BEGIN
SET @lcItem = SUBSTRING(@lcListWork, 1,
@lnCommaPos - 1)
SET @lcListWork = SUBSTRING(@lcListWork, 

@lnCommaPos + 1, 

LEN(@lcListWork) - @lnCommaPos)
END
ELSE
BEGIN
SET @lcItem = @lcListWork
SET @lcListWork = ''
END

INSERT INTO @ParsedList
VALUES (@lcItem)
END
RETURN
END
GO

__ 

Bill Grover 
Supervisor MIS  Phone:  301.424.3300 x3324  
EU Services, Inc.   FAX:301.424.3696
649 North Horners Lane  E-Mail: [EMAIL PROTECTED]
Rockville, MD 20850-1299WWW:http://www.euservices.com
__ 



> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 1:52 PM
> To: CF-Talk
> Subject: Re: Stored Proc list input
> 
> 
> Likely you're going to run into a larger issue with your 
> database not being
> able to interpret the @PassVariable value as an integer... at 
> least with MS
> SQL Server I have yet to find a way to pass a list to a 
> stored procedure
> without passing it as a varchar and then using exec 
> (@mysqlstatement) or
> exec sp_executesql @mysqlstatement which somewhat defeats the 
> purpose of the
> storedprocedure being pre-processed.
> 
> > I need to pass a string such as 1,2 in to a stored procedure.  The
> > variable
> > is then used like this:
> 
> > Where MYVariable IN (@PassVariable)
> 
> > Now the problem is that MYVariable is an INT and I am passing in the
> > @PassVariable as a string.
> 
> > I get this error:
> 
> > Syntax error converting the varchar value '1,2' to a column 
> of data type
> > int.
> 
> > I need to figure some way around this.  Any ideas?
> 
> > Thanks,
> 
> > Neil
> 
> S. Isaac Dealey
> Certified Advanced ColdFusion 5 Developer
> 
> www.turnkey.to
> 954-776-0046
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Error 232

2002-11-20 Thread A.Little
I'm not sure that you can tell CF to stop logging 232 errors. But using CF
administrator you can store the log file without having to restart cf. Just
go to the CF admin log files page, the 'store log file' option is the yellow
button under controls.
This will then store your server.log file as server.001 in the log file
directory on your server. Then when CF needs to write to the server log it
will create a new server.log file. You'll then be free to do what you like
with the server.001 file without affecting the CF service.

This doesn's solve the root cause of the problem though. You could look at
query/page caching to speed up the response time of the page.

HTH

Alex

> -Original Message-
> From: Antony Sideropoulos [mailto:[EMAIL PROTECTED]]
> Sent: 20 November 2002 05:07
> To: CF-Talk
> Subject: Error 232
> 
> 
> Hi
> 
> I am running CF5 with a variety of MS Access and Oracle 8 databases.
> 
> A recurring problem I experience is that on pages with long 
> lists of query 
> data, if the user clicks away to another page before the page 
> finishes 
> loading, my server.log file fills up with Error 232 messages.
> 
> I believe that 232 is an error that occurs when the database 
> is unable to 
> communicate with the page requesting the data - in this case, 
> because the 
> user has moved on to a new page, the data has nowhere to go.
> 
> The end result of the above, is that the server.log file 
> grows alarmingly if 
> not closely monitored - once it grew to 1.5Gb (that's not a 
> typo) and took 
> up all the space on the server c:\ and crashed the server :-(
> 
> The log file cannot be deleted because CF is continually 
> writing to it, and 
> the file is in use.  The only way to stop it is to restart the CF 
> Application Service - thus also clearing all application and session 
> variables, and stuffing up all the applications on the server.
> 
> Can I tell CF to stopp logging 232 errors?  Or can I stop the error?
> 
> I know one way is to limit query output to 50 rows per page, 
> but in my 
> current application that would result in a poor user interface.
> 
> Any ideas?
> 
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Read: CF-Talk-list V1 #118

2002-11-20 Thread Phil Costa
Your message

  To:  [EMAIL PROTECTED]
  Subject: CF-Talk-list V1 #118
  Sent:Tue, 19 Nov 2002 13:21:26 -0500

was read on Wed, 20 Nov 2002 08:27:56 -0500



clientmanagement causing page expiring in MX

2002-11-20 Thread E. Keith Dodd
Monday had posted request for suggestions as why an html form on MX would
not *hold* data in one directory but would hold data in another directory
using identical templates. (If submit incomplete form, and my error handling
template instructs to go back and fix; when go back all form information is
lost--in certain directories on site. If then try to go forward--to error
handling message--says that page has expired.) Behavior seems to be browser
independent.

Recommendation was to not depend on browser to hold form info. Probably a
good idea, but I have many forms on old sites I wish to move to MX.

Further trouble shooting shows that this problem exists ONLY if in the
cfapplication tag CLIENTMANAGEMENT is set to YES. Form behaves as expected
if attribute missing or set to no.

On my development setup with the single IP development server, the problem
never occurs. On the shared remote (Professional), problem occurs. I've
checked administrator settings on both local and remote, and any settings
with client management seem to be the same. Both have client variables set
to cookies. (Remote webserver is IIS/5.0)

(As a control, have tested on cf5 and no problems when clientmanagement
enabled.)

Only difference in header info seems to be that with clientmanagement (where
forms not work properly), there are also the expected: set-cookie
CFCLIENT_appname and then a CFGlobals setting.

Hosting company's CF guy is as baffled as I am. Hope someone has some
thoughts as to what may be causing clientmanagement to make this difference.

Thanks
Keith Dodd


-
[This E-mail scanned for viruses by declude AntiVirus Software]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
In my ongoing adventures with my rogue server, I'm getting a new problem
now, as I try to solve the permissions thing that was going on over the last
few days .


Now any .cfm page gives the result "The page cannot be displayed" and the
title of the page is "cannot find server".

What, specifically does this mean?   Does it mean that the CF Server is no
longer found by the web server?And what needs to be done to fix that?
(Environment:  NT4sp6)


(It's now nearly 1am or I'd call the support dept for help here, so I have
to rely on you guys. I hope you don't mind)


Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



CF Log files (was: Error 232)

2002-11-20 Thread Everett, Al
> The end result of the above, is that the server.log file 
> grows alarmingly if 
> not closely monitored - once it grew to 1.5Gb (that's not a 
> typo) and took 
> up all the space on the server c:\ and crashed the server :-(

It's for that reason (and that CF slows down when the log files get that
big) that I have a nightly job that inspects the CF logs, checks if they're
over 1 MB in size and, if so, moves them to an archive directory. Archives
are cleaned up at least once a month.

> The log file cannot be deleted because CF is continually 
> writing to it, and the file is in use.

I've not found that to be so. I've never had a problem moving or deleting
one of CF's logs while it was running.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Robert Polickoski
Mike,

Based on what you say, and assuming that .htm pages load fine, I 
would say that you are correct in your assumption that the CF 
server is not running.  I would try to stop and start it from the 
Services menu under Control Panel/Administrative Tools (or 
something like that).

Robert J. Polickoski
Senior Programmer, ISRD Inc.
(540) 842-6339
[EMAIL PROTECTED]
AIM - RobertJFP



-- Original Message --
From: "Michael Kear" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Thu, 21 Nov 2002 00:44:41 +1100

>In my ongoing adventures with my rogue server, I'm getting a new 
problem
>now, as I try to solve the permissions thing that was going on 
over the last
>few days .
>
>
>Now any .cfm page gives the result "The page cannot be displayed" 
and the
>title of the page is "cannot find server".
>
>What, specifically does this mean?   Does it mean that the CF 
Server is no
>longer found by the web server?And what needs to be done to 
fix that?
>(Environment:  NT4sp6)
>
>
>(It's now nearly 1am or I'd call the support dept for help here, 
so I have
>to rely on you guys. I hope you don't mind)
>
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Frames Craziness.

2002-11-20 Thread Luce, Greg
I have this in my page:


top.myframe.location.replace("#request.root_url#/index.cfm?fuseaction=profil
e.profile8");


And I put this after just to see where I am:
Abort

It's just hitting the abort. I must be doing something wrong.

Greg

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 4:43 PM
To: CF-Talk
Subject: Re: Frames Craziness.


>  does not accept the target attribute. You can do the redirect
> with inline JS like this:

> 
> parent.location.href="#myurl#"
> 

> You could replace parent with  the name of the target frame. Does this
> help?

or top.myframe.location.replace("#myurl#"); which will replace the current
location of that frame in the browser's history stack ( the same as
cflocation ) and is viable all the way back to NS 3 and equivalent version
of IE.

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
Thanks for your suggestion Robert.  I did that.   Stopped and started the
application server and the executive service tasks (stopped both, then
restarted the executive and app server) . and it didn't make any difference.


Anything else to look at?


Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks



-Original Message-
From: Robert Polickoski [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 21 November 2002 1:06 AM
To: CF-Talk
Subject: Re: Page cannot be displayed .. what specifically does this mean?

Mike,

Based on what you say, and assuming that .htm pages load fine, I
would say that you are correct in your assumption that the CF
server is not running.  I would try to stop and start it from the
Services menu under Control Panel/Administrative Tools (or
something like that).

Robert J. Polickoski
Senior Programmer, ISRD Inc.
(540) 842-6339
[EMAIL PROTECTED]
AIM - RobertJFP



-- Original Message --
From: "Michael Kear" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Thu, 21 Nov 2002 00:44:41 +1100

>In my ongoing adventures with my rogue server, I'm getting a new
problem
>now, as I try to solve the permissions thing that was going on
over the last
>few days .
>
>
>Now any .cfm page gives the result "The page cannot be displayed"
and the
>title of the page is "cannot find server".
>
>What, specifically does this mean?   Does it mean that the CF
Server is no
>longer found by the web server?And what needs to be done to
fix that?
>(Environment:  NT4sp6)
>
>
>(It's now nearly 1am or I'd call the support dept for help here,
so I have
>to rely on you guys. I hope you don't mind)
>
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Frames Craziness.

2002-11-20 Thread Clint Tredway
Your abort is happening before your javascript is being run because the
abort is server side and happens before your javascript.

HTH

Clint

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 8:06 AM
To: CF-Talk
Subject: RE: Frames Craziness.


I have this in my page:


top.myframe.location.replace("#request.root_url#/index.cfm?fuseaction=pr
ofil
e.profile8");


And I put this after just to see where I am:
Abort

It's just hitting the abort. I must be doing something wrong.

Greg

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 4:43 PM
To: CF-Talk
Subject: Re: Frames Craziness.


>  does not accept the target attribute. You can do the 
> redirect with inline JS like this:

> 
> parent.location.href="#myurl#"
> 

> You could replace parent with  the name of the target frame. Does this

> help?

or top.myframe.location.replace("#myurl#"); which will replace the
current location of that frame in the browser's history stack ( the same
as cflocation ) and is viable all the way back to NS 3 and equivalent
version of IE.

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Frames Craziness.

2002-11-20 Thread Luce, Greg
D'oh! I shoulda figured that. :-)
When I remove the abort the page just processes on though. 
The javascript doesn't seem to be doing anything. Is the syntax screwy?

top.myframe.location.replace("#request.root_url#/index.cfm?fuseaction=profil
e.profile8");


Greg
-Original Message-
From: Clint Tredway [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:15 AM
To: CF-Talk
Subject: RE: Frames Craziness.


Your abort is happening before your javascript is being run because the
abort is server side and happens before your javascript.

HTH

Clint

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 8:06 AM
To: CF-Talk
Subject: RE: Frames Craziness.


I have this in my page:


top.myframe.location.replace("#request.root_url#/index.cfm?fuseaction=pr
ofil
e.profile8");


And I put this after just to see where I am:
Abort

It's just hitting the abort. I must be doing something wrong.

Greg

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 4:43 PM
To: CF-Talk
Subject: Re: Frames Craziness.


>  does not accept the target attribute. You can do the 
> redirect with inline JS like this:

> 
> parent.location.href="#myurl#"
> 

> You could replace parent with  the name of the target frame. Does this

> help?

or top.myframe.location.replace("#myurl#"); which will replace the
current location of that frame in the browser's history stack ( the same
as cflocation ) and is viable all the way back to NS 3 and equivalent
version of IE.

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



TID error in Mail log

2002-11-20 Thread Robert Orlini
Hello,

What are the TID= errors in my CF mail log?

For example:
"Error","TID=208","08/13/02","11:42:37","Failed to send the spooled mail file, 
C:\CFUSION\MAIL\spool\903.cfmail. SMTP server replied "Internal error: Pending mail 
operations must be completed." Moved file to C:\CFUSION\MAIL\undelivr\905.cfmail."

For the same error I get either TID=208 or 369.

Robert Orlini
HWW
Webteam
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Adrocknaphobia Jones
Check out your server connections in the file browser. Every so often
the FTP or RDS connection would get screwy on me, and would end up in
memory loss. Although restarting the app would fix it.

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


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:24 AM
To: CF-Talk
Subject: CFStudio 5.0 takes up 100% CPU Utilization

Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



OT: JS - submit/button problem

2002-11-20 Thread Uwe Degenhardt
Hi list,
at the end of a form I have:

but I need a

to let a JS-routine run, which is further up.

But I want to pass values to a action script.
So is there a way to only let the form submit parameters
if the onclick-routine is passed  ?

Thanks for ideas.

Uwe

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Yeah, restarting the app isn't working at all because it
won't restart.  I was using the ftp functionality within
cfstudio and I thought maybe a process got hung... So I 
restarted the pc but it didn't fix anything.

~Jason

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Check out your server connections in the file browser. Every so often
the FTP or RDS connection would get screwy on me, and would end up in
memory loss. Although restarting the app would fix it.

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


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:24 AM
To: CF-Talk
Subject: CFStudio 5.0 takes up 100% CPU Utilization

Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



More info after errors (Unix)

2002-11-20 Thread Chris Norloff
I'm trying to collect more info when we have a CF-logged error (CF 4.5 SP2, Solaris 
8). Specifically, top and cfstat would be great. [That was my intent in using 
cfexecute to run cfstat (but doesn't look like cfexecute runs under CF 4.5 SP2, 
Solaris 8)].

We're getting timeout errors for very simple database queries, so it looks like either 
CF is running out of threads, the drivers are running out of connections, or Oracle is 
running out of threads.

Both top and cfstat are command-line programs, and I can't think of another way to get 
their info.  Anybody?

thanks,
Chris Norloff



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: TID error in Mail log

2002-11-20 Thread Chris Norloff
TID is thread id, but I don't think that's of much use unless you get into stact-trace 
level of investigation.

It looks like your SMTP server is overloaded at the instant CF submits mail. 

If the SMTP server's okay I'd use a custom tag from the Developer Exchange called 
ResendUndeliverableMail (several versions, originally by Rob Brooks-Bilson, with later 
mods by Cameron Childress).  The custom tag will resubmit mail from the undelivr 
directory to the spool directory so it has more than one chance to be sent.

Chris Norloff


-- Original Message --
from: "Robert Orlini" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Wed, 20 Nov 2002 09:19:25 -0500

>Hello,
>
>What are the TID= errors in my CF mail log?
>
>For example:
>"Error","TID=208","08/13/02","11:42:37","Failed to send the spooled mail file, 
>C:\CFUSION\MAIL\spool\903.cfmail. SMTP server replied "Internal error: Pending mail 
>operations must be completed." Moved file to C:\CFUSION\MAIL\undelivr\905.cfmail."
>
>For the same error I get either TID=208 or 369.
>
>Robert Orlini
>HWW
>Webteam
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: SOT: CFDEV.com

2002-11-20 Thread Benjamin S. Rogers
> You do not appear to accept American Express (pretty strange
> for a US based company).

You mean there's someone who still does, who doesn't mind the horrible
rates that American Express inflicts on the merchant?

Benjamin S. Rogers
http://www.c4.net/
v.508.240.0051
f.508.240.0057

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: OT: JS - submit/button problem

2002-11-20 Thread Patric Stumpe
Hi Uwe,

could be something like:


And:

function something(form) {
 if  return true;
 else return false;
}
 



UD> Hi list,
UD> at the end of a form I have:
UD> 
UD> but I need a
UD> 
UD> to let a JS-routine run, which is further up.

UD> But I want to pass values to a action script.
UD> So is there a way to only let the form submit parameters
UD> if the onclick-routine is passed  ?

UD> Thanks for ideas.

UD> Uwe

-- 
Patric Stumpe
mailto:[EMAIL PROTECTED]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: SOT: CFDEV.com

2002-11-20 Thread Bryan F. Hogan
Email the company directly to ask a questions such as why not American
Express. This is of no interest to CF-Talk, WGAS!


Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:41 AM
To: CF-Talk
Subject: RE: SOT: CFDEV.com


> You do not appear to accept American Express (pretty strange
> for a US based company).

You mean there's someone who still does, who doesn't mind the horrible
rates that American Express inflicts on the merchant?

Benjamin S. Rogers
http://www.c4.net/
v.508.240.0051
f.508.240.0057


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: JS - submit/button problem

2002-11-20 Thread Adrocknaphobia Jones
Uwe,

If you formally submit a form, it's going to load the action page. If
you want to take those form values and do something with them first,
create a function that plays with the values, then submits the form via
'document.formName.submit();'.

If you use type="submit" the onClick will execute first then the page
will be submitted. So you wouldn't want to use it to run a validation
function, because regardless of what it returns, it will still submit.

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


-Original Message-
From: Uwe Degenhardt [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:32 AM
To: CF-Talk
Subject: OT: JS - submit/button problem

Hi list,
at the end of a form I have:

but I need a

to let a JS-routine run, which is further up.

But I want to pass values to a action script.
So is there a way to only let the form submit parameters
if the onclick-routine is passed  ?

Thanks for ideas.

Uwe


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
Given the permissions problem I had with the custom tag, and now this
problem with the web server presumably not seeing the CF server (even though
the service task is running)  do you think I might be best to go the 120km
to the server box and re-install ColdFusion server?


I've never reinstalled CFServer.  Does it do so gracefully? Picking up
settings and datasource definitions etc from the previous installation or
will I have to do all those again?


Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks


-Original Message-
From: Michael Kear [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 21 November 2002 12:59 AM
To: CF-Talk
Subject: RE: Page cannot be displayed .. what specifically does this mean?

Thanks for your suggestion Robert.  I did that.   Stopped and started the
application server and the executive service tasks (stopped both, then
restarted the executive and app server) . and it didn't make any difference.


Anything else to look at?


Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks



-Original Message-
From: Robert Polickoski [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 21 November 2002 1:06 AM
To: CF-Talk
Subject: Re: Page cannot be displayed .. what specifically does this mean?

Mike,

Based on what you say, and assuming that .htm pages load fine, I
would say that you are correct in your assumption that the CF
server is not running.  I would try to stop and start it from the
Services menu under Control Panel/Administrative Tools (or
something like that).

Robert J. Polickoski
Senior Programmer, ISRD Inc.
(540) 842-6339
[EMAIL PROTECTED]
AIM - RobertJFP



-- Original Message --
From: "Michael Kear" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Thu, 21 Nov 2002 00:44:41 +1100

>In my ongoing adventures with my rogue server, I'm getting a new
problem
>now, as I try to solve the permissions thing that was going on
over the last
>few days .
>
>
>Now any .cfm page gives the result "The page cannot be displayed"
and the
>title of the page is "cannot find server".
>
>What, specifically does this mean?   Does it mean that the CF
Server is no
>longer found by the web server?And what needs to be done to
fix that?
>(Environment:  NT4sp6)
>
>
>(It's now nearly 1am or I'd call the support dept for help here,
so I have
>to rely on you guys. I hope you don't mind)
>
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Big Corporations using Cold Fusion

2002-11-20 Thread Michael Greenberg
As a follow up to this thread from yesterday. I'm going to start compiling a
list of corporations using CF. Go here
(http://www.fusionstation.com/whosusingcf/) and fill out the form.

I'll update everyone when I get a decent amount of these in the database.
The plan moving forward from there is to pull these into a cool Flash
Remoting type of presentation.

If you have any questions give me a shout.

Thanks,
Michael

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Gif Pipes

2002-11-20 Thread Tipton Josh (orl1jdt)
Can someone please point me in the direction on information for creating,
implementing, and using gif pipes.
 
 
Thanks,
Joshua Tipton
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



perhaps OT process not being closed

2002-11-20 Thread Simon Whittaker
> Hi there,

>

> I am using cfx_ShellExec to run htmldoc to create pdf reports on the fly.
It

> all works very well - however I have noticed that the htmldoc.exe process

> is left running after the pdf has been created - in fact there were 30

> instances running when I came in this morning which had to be killed

> manually. Anyone have any ideas as to why this may be happening or how I
can

> cure it, is it a cf problem or not? I have noticed that I am also having

> this problem with some excel reports that we create (excel.exe is left

> running in the background). We are using CFMX on Win2k

>

> Cheers

>

> Simon

>

>



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Gif Pipes

2002-11-20 Thread Adrian Lynch
www.depressedpress.com used to have something but the site isn't working for
some reason.

Ade

-Original Message-
From: Tipton Josh (orl1jdt) [mailto:[EMAIL PROTECTED]]
Sent: 20 November 2002 15:12
To: CF-Talk
Subject: Gif Pipes


Can someone please point me in the direction on information for creating,
implementing, and using gif pipes.
 
 
Thanks,
Joshua Tipton

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Accessing DBF database

2002-11-20 Thread Frank Mamone
Does anyone have any experience connecting to a DBF database via CF, specically the 
Goldmine application, but I suspect the procedure shoud be the same.

We are on CFMX if that makes a difference.

Thank you,

Frank Mamone

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Ken Wilson
Had the same thing happen before and in my case I had Startup
configuration options set to start up in the last folder opened in the
file dialog. In my case, that happened to be an RDS site which was not
accessible any longer. Changing that path to a local drive within the
registry level cured the problem.

Ken



-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:32 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Yeah, restarting the app isn't working at all because it
won't restart.  I was using the ftp functionality within cfstudio and I
thought maybe a process got hung... So I 
restarted the pc but it didn't fix anything.

~Jason

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Check out your server connections in the file browser. Every so often
the FTP or RDS connection would get screwy on me, and would end up in
memory loss. Although restarting the app would fix it.

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


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:24 AM
To: CF-Talk
Subject: CFStudio 5.0 takes up 100% CPU Utilization

Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: SOT: CFDEV.com

2002-11-20 Thread samcfug
The rates are not mostly in line with other credit cards.

Paypal, for instance, processes AE cards at the same rate as
any other card.  Even checks.

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: "Benjamin S. Rogers" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 20, 2002 8:40 AM
Subject: RE: SOT: CFDEV.com


| > You do not appear to accept American Express (pretty
strange
| > for a US based company).
|
| You mean there's someone who still does, who doesn't mind
the horrible
| rates that American Express inflicts on the merchant?
|
| Benjamin S. Rogers
| http://www.c4.net/
| v.508.240.0051
| f.508.240.0057
|
|

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Gif Pipes

2002-11-20 Thread Jochem van Dieten
Adrian Lynch wrote:

> www.depressedpress.com used to have something but the site isn't 
> working for some reason.

There is always the Wayback Machine:
http://web.archive.org/web/20011005175052/http://www.depressedpress.com/DepressedPress/Content/ColdFusion/Essays/GIFAsPipe/Index.cfm

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Gif Pipes

2002-11-20 Thread Thane Sherrington
At 10:12 AM 20/11/02 -0500, Tipton Josh (orl1jdt) wrote:
>Can someone please point me in the direction on information for creating,
>implementing, and using gif pipes.

It's fairly simple.  You create a link like this:

http://www.mysite.com/mypage.cfm";>

Then you create the file mypage.cfm with whatever you want in it and end it 
with.



T

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Where in the registry are those entries?
That could definitely be it.

~Jason

-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:19 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Had the same thing happen before and in my case I had Startup
configuration options set to start up in the last folder opened in the
file dialog. In my case, that happened to be an RDS site which was not
accessible any longer. Changing that path to a local drive within the
registry level cured the problem.

Ken



-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:32 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Yeah, restarting the app isn't working at all because it
won't restart.  I was using the ftp functionality within cfstudio and I
thought maybe a process got hung... So I 
restarted the pc but it didn't fix anything.

~Jason

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Check out your server connections in the file browser. Every so often
the FTP or RDS connection would get screwy on me, and would end up in
memory loss. Although restarting the app would fix it.

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


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:24 AM
To: CF-Talk
Subject: CFStudio 5.0 takes up 100% CPU Utilization

Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
WooHoo!!!  That was it.  I just changed it to the temp
directory and I'm back up and running.

Thanks for the tip!

~Jason

-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:19 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Had the same thing happen before and in my case I had Startup
configuration options set to start up in the last folder opened in the
file dialog. In my case, that happened to be an RDS site which was not
accessible any longer. Changing that path to a local drive within the
registry level cured the problem.

Ken



-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:32 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Yeah, restarting the app isn't working at all because it
won't restart.  I was using the ftp functionality within cfstudio and I
thought maybe a process got hung... So I 
restarted the pc but it didn't fix anything.

~Jason

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Check out your server connections in the file browser. Every so often
the FTP or RDS connection would get screwy on me, and would end up in
memory loss. Although restarting the app would fix it.

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


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:24 AM
To: CF-Talk
Subject: CFStudio 5.0 takes up 100% CPU Utilization

Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Can't create ODBC connection in CFADMIN

2002-11-20 Thread Paul Wilson
I am trying to create an ODBC Socket DSN in the CFMX Administrator
but i get the following error.

Could not import the tag library specified by ../cftags/.  
The following error was encountered: 
C:\CFusionMX\wwwroot\CFIDE\administrator\datasources\..\cftags
The CFML compiler was processing:

a cfimport tag beginning on line 2, column 2.
 

If i try to create an Access DSN then I can't browse the server and I get the error...

Server Error! IO error on server communication.

How can I fix this?

Thanks

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Frames Craziness.

2002-11-20 Thread Luce, Greg
Isaac,
When I remove the abort the page just processes on though. 
The javascript doesn't seem to be doing anything. Is the syntax screwy?

top.myframe.location.replace("#request.root_url#/index.cfm?fuseaction=profil
e.profile8");


Greg

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 4:43 PM
To: CF-Talk
Subject: Re: Frames Craziness.


>  does not accept the target attribute. You can do the redirect
> with inline JS like this:

> 
> parent.location.href="#myurl#"
> 

> You could replace parent with  the name of the target frame. Does this
> help?

or top.myframe.location.replace("#myurl#"); which will replace the current
location of that frame in the browser's history stack ( the same as
cflocation ) and is viable all the way back to NS 3 and equivalent version
of IE.

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Importing a text file into SQL Server table

2002-11-20 Thread Bruce Sorge
Hello list. I have a text file that is comma and double-quote separated, with a line 
break that separates the lines. The first row contains the header information. What I 
am wanting to do is to import this into a SQL Server 2K table. I know that I can use 
DTS to do this, but I need to do this in ColdFusion code instead as a scheduled task. 
I have always in the past just used DTS Wizard to do this, not straight SQL. So, my 
question is, how do you import a text file into SQL Server? What would my query look 
like? I already have the cffile code in place looking at the text file.

Thanks,

Bruce
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Can't create ODBC connection in CFADMIN

2002-11-20 Thread Luce, Greg
Paul,
For some crazy reason I always do better using windows to create an
access ODBC connection. Then I test it in cf admin. I'm sure it's just
something I do wrong. I have no trouble with SQL connections though. :-)

Greg

-Original Message-
From: Paul Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:35 AM
To: CF-Talk
Subject: Can't create ODBC connection in CFADMIN


I am trying to create an ODBC Socket DSN in the CFMX Administrator
but i get the following error.

Could not import the tag library specified by ../cftags/.  
The following error was encountered:
C:\CFusionMX\wwwroot\CFIDE\administrator\datasources\..\cftags
The CFML compiler was processing:

a cfimport tag beginning on line 2, column 2.
 

If i try to create an Access DSN then I can't browse the server and I get
the error...

Server Error! IO error on server communication.

How can I fix this?

Thanks


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Ken Wilson
Wish I could point you to it easily but it's been a year now. All I
recall is that they were buried reeeaaalll deep in it but once found it
was obvious what to change. Sorry not to be more specific.

Ken


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 10:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Where in the registry are those entries?
That could definitely be it.

~Jason

-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:19 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Had the same thing happen before and in my case I had Startup
configuration options set to start up in the last folder opened in the
file dialog. In my case, that happened to be an RDS site which was not
accessible any longer. Changing that path to a local drive within the
registry level cured the problem.

Ken



-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:32 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Yeah, restarting the app isn't working at all because it
won't restart.  I was using the ftp functionality within cfstudio and I
thought maybe a process got hung... So I 
restarted the pc but it didn't fix anything.

~Jason

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Check out your server connections in the file browser. Every so often
the FTP or RDS connection would get screwy on me, and would end up in
memory loss. Although restarting the app would fix it.

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


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:24 AM
To: CF-Talk
Subject: CFStudio 5.0 takes up 100% CPU Utilization

Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Gif Pipes

2002-11-20 Thread Zac Spitzer
Jochem van Dieten wrote:
> Adrian Lynch wrote:
> 
> 
>>www.depressedpress.com used to have something but the site isn't 
>>working for some reason.

another way to do this that is becoming more common is like this

document.write('');

j.cfm then returns javascript which gets added to the body of the 
document...


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: Problem Determining Image Size

2002-11-20 Thread Lewis Sellers
On Tue, 19 Nov 2002 16:30:07 -0800, in cf-talk you wrote:

>I'm using the custom tag imagesize to get the width/height of uploaded
>images. I'm finding a problem sometimes with very simple jpeg uploads.
>Say the image is 200 x 200. I can upload it to the server and it
>remains 200 x 200 (I've checked), but the imagesize tag tells me the
>image is 112 x 112.
>
>If I take the same image into Fireworks and re-export, again as a jpeg
>with same 200 x 200 dimensions, this time the imagesize tag reports
>the correct dimensions.
>
>Is there a known issue with either CF and/or something to do with
>exporting jpegs -- eg, corrupt image info in the binary jpeg file?


I've written jpeg encoders/decoders from scratch in c++ before, so I
can tell you different graphics applications will save jpeg's in many
different, but still perfectly legal ways.

I don't think I'm familiar with the "imagesize" tag you're talking
about, but it feels like it's simply trying to assuming that the width
+ height values are always in the same fixed place in every jpeg file.
They are in the same place in quite a few simply because of the quirk
that a lot of apps are based on the same original open-source IJG JPEG
code.

But many also aren't. The 112 values most likely have nothing to do
with the size ... it's just what the tag sees when it looks where it
blindly thinks the data should be.

--min

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Importing a text file into SQL Server table

2002-11-20 Thread Robertson-Ravo, Neil (REC)
just use CF to call a DTS using CFEXECUTE

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED]]
Sent: 20 November 2002 15:40
To: CF-Talk
Subject: Importing a text file into SQL Server table


Hello list. I have a text file that is comma and double-quote separated,
with a line break that separates the lines. The first row contains the
header information. What I am wanting to do is to import this into a SQL
Server 2K table. I know that I can use DTS to do this, but I need to do this
in ColdFusion code instead as a scheduled task. I have always in the past
just used DTS Wizard to do this, not straight SQL. So, my question is, how
do you import a text file into SQL Server? What would my query look like? I
already have the cffile code in place looking at the text file.

Thanks,

Bruce

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Can't create ODBC connection in CFADMIN

2002-11-20 Thread Robertson-Ravo, Neil (REC)
is there any spaces or punctuation on the DSN?

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]]
Sent: 20 November 2002 15:40
To: CF-Talk
Subject: RE: Can't create ODBC connection in CFADMIN


Paul,
For some crazy reason I always do better using windows to create an
access ODBC connection. Then I test it in cf admin. I'm sure it's just
something I do wrong. I have no trouble with SQL connections though. :-)

Greg

-Original Message-
From: Paul Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:35 AM
To: CF-Talk
Subject: Can't create ODBC connection in CFADMIN


I am trying to create an ODBC Socket DSN in the CFMX Administrator
but i get the following error.

Could not import the tag library specified by ../cftags/.  
The following error was encountered:
C:\CFusionMX\wwwroot\CFIDE\administrator\datasources\..\cftags
The CFML compiler was processing:

a cfimport tag beginning on line 2, column 2.
 

If i try to create an Access DSN then I can't browse the server and I get
the error...

Server Error! IO error on server communication.

How can I fix this?

Thanks



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MX and UPS XML

2002-11-20 Thread Chad
Thanks for the code Erik.  It works well.

We will keep playing with all this new knowledge we have and see if we
can come up with a nice solid solution.



> -Original Message-
> From: Erik Yowell [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 10:18 PM
> To: CF-Talk
> Subject: RE: MX and UPS XML
> 
> Here's a UDF I adapted from an amalgamation of Jon's code and Ben
> Forta's HTTPGet UDF for Posting of UPS XML Posts - just append
together
> the XML request packet and the tracking or service selection packet
> using cfsavecontent to build the materials. Unless of course there's
> some sort of toString() method for converting XML structures to string
> for later appending, dunno - I just got lazy and used the savecontent
> tag. Oh, and it needs JRE 1.4 (SSL improvements) or I suppose you can
> load JSSE into the UDF, but once again - lazy.
> 
> function RawPost(urlString,messageString) {
>// Variables
>var oURL = "";
>var oPage = "";
>var oInputStream = "";
>var oOutputStream = "";
>var oConnection = "";
>var oReader = "";
>var oWriter = "";
>var oBuffer = "";
>var sLine = "";
>var sOutput = "";
> 
>// Init class
>oURL = CreateObject("java", "java.net.URL");
>oWriter = CreateObject("java", "java.io.OutputStreamWriter");
>oReader = CreateObject("java", "java.io.InputStreamReader");
>oBuffer = CreateObject("java", "java.io.BufferedReader");
> 
>// Create URL Instance
>oInstance = oURL.init(urlString);
> 
>// Open URL Connection
>oConnection = oInstance.openConnection();
>oConnection.setDoInput(true);
>oConnection.setDoOutput(true);
>oConnection.setUseCaches(false);
>oConnection.setAllowUserInteraction("false");
>oConnection.setFollowRedirects("false");
>oConnection.setRequestMethod("POST");
> 
>nContentLength = JavaCast("string",Len(messageString));
> 
>oConnection.setRequestProperty("HOST",CGI.REMOTE_HOST & ":80");
>oConnection.setRequestProperty("CONTENT-LENGTH",nContentLength);
>oConnection.setRequestProperty("ACCEPT","*/*");
>oConnection.setRequestProperty("USER_AGENT",CGI.HTTP_REFERER);
> 
>oOutputStream = oConnection.getOutputStream();
> 
>oWriter.init(oOutputStream);
>oWriter.write(messageString);
>oWriter.flush();
>oWriter.close();
> 
>// Get stream
>oInputStream = oConnection.getInputStream();
>oReader.init(oInputStream);
>oBufferStream = oBuffer.init(oReader);
> 
>sLine = oBuffer.readLine();
> 
>while (IsDefined("sLine")) {
>sOutput = sOutput & sLine;
>sLine = oBuffer.readLine();
> }
> 
>// Close stream (Close method doesn't seem to work too well here?)
>// Don't know if setting to nothing closes it or not, figure that
out
> later...
>oInputStream = "";
>oConnection.disconnect();
> 
>// Parse Response
>sOutput = XMLParse(sOutput);
> 
>return sOutput;
> }
> 
> Erik Yowell
> [EMAIL PROTECTED]
> http://www.shortfusemedia.com
> 
> 
> -Original Message-
> From: Jon Hall [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 3:07 PM
> To: CF-Talk
> Subject: Re: MX and UPS XML
> 
> I should write up a CF/UPS XML FAQ or something, seeing as how often
> this question comes up.
> 
> CFHTTP can not be used to POST XML because CFHTTP encodes all
> POSTS, unless the receiver specifically takes steps to decode the XML.
> These companies are in the minority in my experience though. UPS
> expects non-encoded XML. That's why it doesn't work. The type=xml does
> not construct the HTTP commands. It just opens a socket and sends xml.
> 
> cfx_rawsocket probably works with the 1.4 JRE, because the 1.4 JRE
> integrates SSL (JSSE), which the 1.3 JRE does not. CFHTTP with a
> default CF install will not work with SSL either. UPS requires SSL.
> 
> I posted some MX/Java code to do http posts, and the source for a
> java cfx tag was posted within the last few weeks. A raw socket tag
> will work as well, but you will need to construct the http posts
> yourself...not difficult, just another step. If you are using MX
> enterprise, you can use the Jakarta JSP Taglibs also, which are pretty
> neat imo.
> 
> 
> --
> jon
> mailto:[EMAIL PROTECTED]
> 
> Tuesday, November 19, 2002, 4:14:48 PM, you wrote:
> 
> C> We actually got MX to talk to UPS for tracking.  We had to use
> C> CFX_RawSocket http://www.iexp.com/
> 
> C> Of course according to all of CFX_RawSocket's documentation it
should
> C> not work under MX.  We upgraded the JRE to 1.4 and it appears to
work
> C> for UPS tracking numbers.
> 
> C> I have no idea what we will run into by upgrading to 1.4, but we
will
> C> keep playing with it and see if there are any downsides.
> 
> 
> 
> 
> 
> >> -Original Message-
> >> From: Chad [mailto:[EMAIL PROTECTED]]
> >> Sent: Tuesday, November 19, 2002 2:52 PM
> >> To: CF-Talk
> >> Subject: RE: MX and UPS XML
> >>
> >> I hate to beat this into the ground, but why won't this type of

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Already found it... Thanks for pointing it out.
~Jason

-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:41 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Wish I could point you to it easily but it's been a year now. All I
recall is that they were buried reeeaaalll deep in it but once found it
was obvious what to change. Sorry not to be more specific.

Ken


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 10:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Where in the registry are those entries?
That could definitely be it.

~Jason

-Original Message-
From: Ken Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:19 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Had the same thing happen before and in my case I had Startup
configuration options set to start up in the last folder opened in the
file dialog. In my case, that happened to be an RDS site which was not
accessible any longer. Changing that path to a local drive within the
registry level cured the problem.

Ken



-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:32 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Yeah, restarting the app isn't working at all because it
won't restart.  I was using the ftp functionality within cfstudio and I
thought maybe a process got hung... So I 
restarted the pc but it didn't fix anything.

~Jason

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 9:30 AM
To: CF-Talk
Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization


Check out your server connections in the file browser. Every so often
the FTP or RDS connection would get screwy on me, and would end up in
memory loss. Although restarting the app would fix it.

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


-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 9:24 AM
To: CF-Talk
Subject: CFStudio 5.0 takes up 100% CPU Utilization

Windows 2000 Professional
CFStudio 5.0

The splash screen disappears and then the cpu utilization
hits 99% and stays there.  This just started happening and
I have no idea what has caused this.

Any ideas?

Thanks,
Jason

-
Jason Dowdell
IM-AES Web Developer
321.799.6845
[EMAIL PROTECTED] 
-








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Importing a text file into SQL Server table

2002-11-20 Thread Randell B Adkins
Well you can also schedule the DTS package to run nightly or 
at anytime you desire. If in fact it is a scheduling thing you are 
looking for.

Not sure how you are reading your file, however, if you can read
line by line (CustomTag in the Gallery I think), the do a LOOP
over your read statement and insert the data that way.





>>> [EMAIL PROTECTED] 11/20/02 10:39AM >>>
Hello list. I have a text file that is comma and double-quote
separated, with a line break that separates the lines. The first row
contains the header information. What I am wanting to do is to import
this into a SQL Server 2K table. I know that I can use DTS to do this,
but I need to do this in ColdFusion code instead as a scheduled task. I
have always in the past just used DTS Wizard to do this, not straight
SQL. So, my question is, how do you import a text file into SQL Server?
What would my query look like? I already have the cffile code in place
looking at the text file.

Thanks,

Bruce

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Can't create ODBC connection in CFADMIN

2002-11-20 Thread Paul Wilson
No there isn't

-Original Message-
From: Robertson-Ravo, Neil (REC)
[mailto:[EMAIL PROTECTED]]
Sent: 20 November 2002 15:42
To: CF-Talk
Subject: RE: Can't create ODBC connection in CFADMIN


is there any spaces or punctuation on the DSN?

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]]
Sent: 20 November 2002 15:40
To: CF-Talk
Subject: RE: Can't create ODBC connection in CFADMIN


Paul,
For some crazy reason I always do better using windows to create an
access ODBC connection. Then I test it in cf admin. I'm sure it's just
something I do wrong. I have no trouble with SQL connections though. :-)

Greg

-Original Message-
From: Paul Wilson [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 10:35 AM
To: CF-Talk
Subject: Can't create ODBC connection in CFADMIN


I am trying to create an ODBC Socket DSN in the CFMX Administrator
but i get the following error.

Could not import the tag library specified by ../cftags/.  
The following error was encountered:
C:\CFusionMX\wwwroot\CFIDE\administrator\datasources\..\cftags
The CFML compiler was processing:

a cfimport tag beginning on line 2, column 2.
 

If i try to create an Access DSN then I can't browse the server and I get
the error...

Server Error! IO error on server communication.

How can I fix this?

Thanks




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



CF and Fed-Ex

2002-11-20 Thread Ciliotta, Mario
Hi,

I was wondering if anyone has had any experience using CF interfacing with the Fed-Ex 
Ship API.  I understand that you can use either a COM object or there Java Classes.  I 
was just wondering if anyone had any recommendations or experiences with either.

Thanks

Mario

This message is for the named person's use only. It may contain sensitive and private 
proprietary or legally privileged information. No confidentiality or privilege is 
waived or lost by any mistransmission. If you are not the intended recipient, 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. CREDIT SUISSE GROUP and each legal entity in the CREDIT SUISSE FIRST BOSTON 
or CREDIT SUISSE ASSET MANAGEMENT business units of CREDIT SUISSE FIRST BOSTON reserve 
the right to monitor all e-mail communications through its networks. Any views 
expressed in this message are those of the individual sender, except where the message 
states otherwise and the sender is authorized to state them to be the views of any 
such entity.
Unless otherwise stated, any pricing information given in this message is indicative 
only, is subject to change and does not constitute an offer to deal at any price 
quoted. Any reference to the terms of executed transactions should be treated as  
preliminary only and subject to our formal written confirmation.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



CF Error- redux

2002-11-20 Thread UXBinfo
We have just started seeing this error once in a while in the application
log on our CF4.01 server running NT4 SP5 - Dual 500Mhz PII / 1gb memory.

"Cannot create synchronization object for CFLock The error occurred while
processing an element with a general identifier of (CFLOCK),..."

Can anyone clue me in on what might be causing this? And for the grand
prize, how to prevent it from happening?


Best regards,

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



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



CF5 on .NET-Server

2002-11-20 Thread Patric Stumpe
Hi CF-Talkers,

did anyone of try to run CF5 on a .NET-Server Release-Candidate?
I found some infos on how to get CFMX working with IIS6 but nothing
about CF5.

Any experience???

Patric

-- 
Patric Stumpe
mailto:[EMAIL PROTECTED]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Douglas.Knudsen
In my experience, yes.  You should be able to do this remotely via
Telnet or one of those glorified telnet tools PCAnywhere or Terminal
Services.  Don't know what OS you are running.

Is this CF5?  Did you check your script mappings in IIS, assuming you
are using winblows?

Doug

>-Original Message-
>From: Michael Kear [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, November 20, 2002 9:40 AM
>To: CF-Talk
>Subject: RE: Page cannot be displayed .. what specifically does this
>mean?
>
>
>Given the permissions problem I had with the custom tag, and now this
>problem with the web server presumably not seeing the CF 
>server (even though
>the service task is running)  do you think I might be best to 
>go the 120km
>to the server box and re-install ColdFusion server?
>
>
>I've never reinstalled CFServer.  Does it do so gracefully? Picking up
>settings and datasource definitions etc from the previous 
>installation or
>will I have to do all those again?
>
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>
>-Original Message-
>From: Michael Kear [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, 21 November 2002 12:59 AM
>To: CF-Talk
>Subject: RE: Page cannot be displayed .. what specifically 
>does this mean?
>
>Thanks for your suggestion Robert.  I did that.   Stopped and 
>started the
>application server and the executive service tasks (stopped both, then
>restarted the executive and app server) . and it didn't make 
>any difference.
>
>
>Anything else to look at?
>
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>
>
>-Original Message-
>From: Robert Polickoski [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, 21 November 2002 1:06 AM
>To: CF-Talk
>Subject: Re: Page cannot be displayed .. what specifically 
>does this mean?
>
>Mike,
>
>Based on what you say, and assuming that .htm pages load fine, I
>would say that you are correct in your assumption that the CF
>server is not running.  I would try to stop and start it from the
>Services menu under Control Panel/Administrative Tools (or
>something like that).
>
>Robert J. Polickoski
>Senior Programmer, ISRD Inc.
>(540) 842-6339
>[EMAIL PROTECTED]
>AIM - RobertJFP
>
>
>
>-- Original Message --
>From: "Michael Kear" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>Date:  Thu, 21 Nov 2002 00:44:41 +1100
>
>>In my ongoing adventures with my rogue server, I'm getting a new
>problem
>>now, as I try to solve the permissions thing that was going on
>over the last
>>few days .
>>
>>
>>Now any .cfm page gives the result "The page cannot be displayed"
>and the
>>title of the page is "cannot find server".
>>
>>What, specifically does this mean?   Does it mean that the CF
>Server is no
>>longer found by the web server?And what needs to be done to
>fix that?
>>(Environment:  NT4sp6)
>>
>>
>>(It's now nearly 1am or I'd call the support dept for help here,
>so I have
>>to rely on you guys. I hope you don't mind)
>>
>>
>>Cheers,
>>Mike Kear
>>Windsor, NSW, Australia
>>AFP WebWorks
>>
>>
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
Yes, it's WinNT4 sp6, and CF5   The server has been in and stable for ages -
at least 8 months, and just in the last 2 weeks given me problems like this.
I've looked and looked for what changed and I'm damned if I can see what it
is.

We have VNC to log into the console.  We only have to go to the physical
server to change a backup tape or put a CD in to install something.   The CF
CD isn't in the slot so to install CF again I'll have to go over there.
Other wise I can do everything from here.

Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks




-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 21 November 2002 3:00 AM
To: CF-Talk
Subject: RE: Page cannot be displayed .. what specifically does this mean?

In my experience, yes.  You should be able to do this remotely via
Telnet or one of those glorified telnet tools PCAnywhere or Terminal
Services.  Don't know what OS you are running.

Is this CF5?  Did you check your script mappings in IIS, assuming you
are using winblows?

Doug

>-Original Message-
>From: Michael Kear [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, November 20, 2002 9:40 AM
>To: CF-Talk
>Subject: RE: Page cannot be displayed .. what specifically does this
>mean?
>
>
>Given the permissions problem I had with the custom tag, and now this
>problem with the web server presumably not seeing the CF
>server (even though
>the service task is running)  do you think I might be best to
>go the 120km
>to the server box and re-install ColdFusion server?
>
>
>I've never reinstalled CFServer.  Does it do so gracefully? Picking up
>settings and datasource definitions etc from the previous
>installation or
>will I have to do all those again?
>
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>
>-Original Message-
>From: Michael Kear [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, 21 November 2002 12:59 AM
>To: CF-Talk
>Subject: RE: Page cannot be displayed .. what specifically
>does this mean?
>
>Thanks for your suggestion Robert.  I did that.   Stopped and
>started the
>application server and the executive service tasks (stopped both, then
>restarted the executive and app server) . and it didn't make
>any difference.
>
>
>Anything else to look at?
>
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>
>
>-Original Message-
>From: Robert Polickoski [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, 21 November 2002 1:06 AM
>To: CF-Talk
>Subject: Re: Page cannot be displayed .. what specifically
>does this mean?
>
>Mike,
>
>Based on what you say, and assuming that .htm pages load fine, I
>would say that you are correct in your assumption that the CF
>server is not running.  I would try to stop and start it from the
>Services menu under Control Panel/Administrative Tools (or
>something like that).
>
>Robert J. Polickoski
>Senior Programmer, ISRD Inc.
>(540) 842-6339
>[EMAIL PROTECTED]
>AIM - RobertJFP
>
>
>
>-- Original Message --
>From: "Michael Kear" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>Date:  Thu, 21 Nov 2002 00:44:41 +1100
>
>>In my ongoing adventures with my rogue server, I'm getting a new
>problem
>>now, as I try to solve the permissions thing that was going on
>over the last
>>few days .
>>
>>
>>Now any .cfm page gives the result "The page cannot be displayed"
>and the
>>title of the page is "cannot find server".
>>
>>What, specifically does this mean?   Does it mean that the CF
>Server is no
>>longer found by the web server?And what needs to be done to
>fix that?
>>(Environment:  NT4sp6)
>>
>>
>>(It's now nearly 1am or I'd call the support dept for help here,
>so I have
>>to rely on you guys. I hope you don't mind)
>>
>>
>>Cheers,
>>Mike Kear
>>Windsor, NSW, Australia
>>AFP WebWorks
>>
>>
>
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Using a CFIF on RIGHT(#value#, 3)

2002-11-20 Thread Philip Arnold - ASP
Just a point, can I suggest you read Ben's "To # or not to #" article

> 
>   

Should read


   

Don't use #'s where you don't need them

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
Switchboard: +44 (0)20 8680 8099
Fax: +44 (0)20 8686 7911

www.aspmedia.co.uk
www.aspevents.net

An ISO9001 registered company.

**
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.
**


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Douglas.Knudsen
ugh...zip up the install files for CF and FTP them to your box.  I
haven't used VNC before, in PCAnywhere you can transfer files without an
FTP server running.  

good luck

Doug

>-Original Message-
>From: Michael Kear [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, November 20, 2002 10:56 AM
>To: CF-Talk
>Subject: RE: Page cannot be displayed .. what specifically does this
>mean?
>
>
>Yes, it's WinNT4 sp6, and CF5   The server has been in and 
>stable for ages -
>at least 8 months, and just in the last 2 weeks given me 
>problems like this.
>I've looked and looked for what changed and I'm damned if I 
>can see what it
>is.
>
>We have VNC to log into the console.  We only have to go to 
>the physical
>server to change a backup tape or put a CD in to install 
>something.   The CF
>CD isn't in the slot so to install CF again I'll have to go over there.
>Other wise I can do everything from here.
>
>Cheers,
>Mike Kear
>Windsor, NSW, Australia
>AFP WebWorks
>
>
>
>
>-Original Message-
>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, 21 November 2002 3:00 AM
>To: CF-Talk
>Subject: RE: Page cannot be displayed .. what specifically 
>does this mean?
>
>In my experience, yes.  You should be able to do this remotely via
>Telnet or one of those glorified telnet tools PCAnywhere or Terminal
>Services.  Don't know what OS you are running.
>
>Is this CF5?  Did you check your script mappings in IIS, assuming you
>are using winblows?
>
>Doug
>
>>-Original Message-
>>From: Michael Kear [mailto:[EMAIL PROTECTED]]
>>Sent: Wednesday, November 20, 2002 9:40 AM
>>To: CF-Talk
>>Subject: RE: Page cannot be displayed .. what specifically does this
>>mean?
>>
>>
>>Given the permissions problem I had with the custom tag, and now this
>>problem with the web server presumably not seeing the CF
>>server (even though
>>the service task is running)  do you think I might be best to
>>go the 120km
>>to the server box and re-install ColdFusion server?
>>
>>
>>I've never reinstalled CFServer.  Does it do so gracefully? Picking up
>>settings and datasource definitions etc from the previous
>>installation or
>>will I have to do all those again?
>>
>>
>>Cheers,
>>Mike Kear
>>Windsor, NSW, Australia
>>AFP WebWorks
>>
>>
>>-Original Message-
>>From: Michael Kear [mailto:[EMAIL PROTECTED]]
>>Sent: Thursday, 21 November 2002 12:59 AM
>>To: CF-Talk
>>Subject: RE: Page cannot be displayed .. what specifically
>>does this mean?
>>
>>Thanks for your suggestion Robert.  I did that.   Stopped and
>>started the
>>application server and the executive service tasks (stopped both, then
>>restarted the executive and app server) . and it didn't make
>>any difference.
>>
>>
>>Anything else to look at?
>>
>>
>>Cheers,
>>Mike Kear
>>Windsor, NSW, Australia
>>AFP WebWorks
>>
>>
>>
>>-Original Message-
>>From: Robert Polickoski [mailto:[EMAIL PROTECTED]]
>>Sent: Thursday, 21 November 2002 1:06 AM
>>To: CF-Talk
>>Subject: Re: Page cannot be displayed .. what specifically
>>does this mean?
>>
>>Mike,
>>
>>Based on what you say, and assuming that .htm pages load fine, I
>>would say that you are correct in your assumption that the CF
>>server is not running.  I would try to stop and start it from the
>>Services menu under Control Panel/Administrative Tools (or
>>something like that).
>>
>>Robert J. Polickoski
>>Senior Programmer, ISRD Inc.
>>(540) 842-6339
>>[EMAIL PROTECTED]
>>AIM - RobertJFP
>>
>>
>>
>>-- Original Message --
>>From: "Michael Kear" <[EMAIL PROTECTED]>
>>Reply-To: [EMAIL PROTECTED]
>>Date:  Thu, 21 Nov 2002 00:44:41 +1100
>>
>>>In my ongoing adventures with my rogue server, I'm getting a new
>>problem
>>>now, as I try to solve the permissions thing that was going on
>>over the last
>>>few days .
>>>
>>>
>>>Now any .cfm page gives the result "The page cannot be displayed"
>>and the
>>>title of the page is "cannot find server".
>>>
>>>What, specifically does this mean?   Does it mean that the CF
>>Server is no
>>>longer found by the web server?And what needs to be done to
>>fix that?
>>>(Environment:  NT4sp6)
>>>
>>>
>>>(It's now nearly 1am or I'd call the support dept for help here,
>>so I have
>>>to rely on you guys. I hope you don't mind)
>>>
>>>
>>>Cheers,
>>>Mike Kear
>>>Windsor, NSW, Australia
>>>AFP WebWorks
>>>
>>>
>>
>>
>>
>>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: You People Are AWESOME

2002-11-20 Thread Michael Wilson
Hi,

IF you're using CFMX, you might want to check the cfclasses directory
for the related .class file. I think it is
C:\CFusionMX\wwwroot\WEB-INF\cfclasses by default. The file won't be
named exactly the same, but you should be able to locate it. Delete the
class file and restart the CFserver (and sometimes the whole machine).
This should solve the problem.

Best regards,
Mike Wilson

-Original Message-
From: Hawkes, Keith A CIV 
Subject: You People Are AWESOME


And, after a little sucking up for successfully helping me with my last
question, here's another point of confusion for me.

Where are Cold Fusion sites retained in memory?  


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



CFMX Doesn't like to load on startup

2002-11-20 Thread Stacy Young
Odd. For the past few days CFMX on win2k pro has decided on it's own that it
doesn't want to startup when the puter boots. I have to kick it off
manually. It's worked fine for months up until now. Anyone seen this or know
a fix?

Cheers,

Stace


AVIS IMPORTANT: 
---
Les informations contenues dans le present document et ses pieces jointes sont 
strictement confidentielles et reservees a l'usage de la (des) personne(s) a qui il 
est adresse. Si vous n'etes pas le destinataire, soyez avise que toute divulgation, 
distribution, copie, ou autre utilisation de ces informations est strictement 
prohibee.  Si vous avez recu ce document par erreur, veuillez s'il vous plait 
communiquer immediatement avec l'expediteur et detruire ce document sans en faire de 
copie sous quelque forme.

WARNING:  
---
The information contained in this document and attachments is confidential and 
intended only for the person(s) named above.  If you are not the intended recipient 
you are hereby notified that any disclosure, copying, distribution, or any other use 
of the information is strictly prohibited.  If you have received this document by 
mistake, please notify the sender immediately and destroy this document and 
attachments without making any copy of any kind.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



mx debugging

2002-11-20 Thread S . Isaac Dealey
I noticed that the modes for debugging in the mx administrator are labelled
"classic.cfm" and "dockable.cfm" as opposed to "classic" and "dockable"
which leads me to think that there's some way I might be able to add my own
custom debugging scripts as alternatives to these... Does anyone know if
this is the case and if so, how I go about adding a custom script?

s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: mx debugging

2002-11-20 Thread Jim Campbell
well, on a Linux installation of MX, there are three cfm templates
(non-compiled!) in the debug directory (*cfroot*/wwwroot/WEB-INF/debug):

classic.cfm
dockable.cfm
dreamweaver.cfm

You could try adding something there to see if the administrator picks it
up, or try editing the two provided ones that show up in the admin.

- Jim

- Original Message -
From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 20, 2002 10:44 AM
Subject: mx debugging


> I noticed that the modes for debugging in the mx administrator are
labelled
> "classic.cfm" and "dockable.cfm" as opposed to "classic" and "dockable"
> which leads me to think that there's some way I might be able to add my
own
> custom debugging scripts as alternatives to these... Does anyone know if
> this is the case and if so, how I go about adding a custom script?
>
> s. isaac dealey954-776-0046
>
> new epoch  http://www.turnkey.to
>
> lead architect, tapestry cms   http://products.turnkey.to
>
> certified advanced coldfusion 5 developer
> http://www.macromedia.com/v1/handlers/index.cfm?ID=21816
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Christine Lawson
Hi Stacy,
This happened to me after I did a reinstall and didn't delete the CFMX folder, did you 
reinstall by any chance?

Christine

-Original Message-
From: Stacy Young [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 11:44 AM
To: CF-Talk
Subject: CFMX Doesn't like to load on startup


Odd. For the past few days CFMX on win2k pro has decided on it's own that it
doesn't want to startup when the puter boots. I have to kick it off
manually. It's worked fine for months up until now. Anyone seen this or know
a fix?

Cheers,

Stace


AVIS IMPORTANT: 
---
Les informations contenues dans le present document et ses pieces jointes sont 
strictement confidentielles et reservees a l'usage de la (des) personne(s) a qui il 
est adresse. Si vous n'etes pas le destinataire, soyez avise que toute divulgation, 
distribution, copie, ou autre utilisation de ces informations est strictement 
prohibee.  Si vous avez recu ce document par erreur, veuillez s'il vous plait 
communiquer immediatement avec l'expediteur et detruire ce document sans en faire de 
copie sous quelque forme.

WARNING:  
---
The information contained in this document and attachments is confidential and 
intended only for the person(s) named above.  If you are not the intended recipient 
you are hereby notified that any disclosure, copying, distribution, or any other use 
of the information is strictly prohibited.  If you have received this document by 
mistake, please notify the sender immediately and destroy this document and 
attachments without making any copy of any kind.



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



no posts?

2002-11-20 Thread Tony Weeg
no posts since 1:38 am this morning?

..tony

Tony Weeg
Senior Web Developer
Information System Design
Navtrak, Inc.
Fleet Management Solutions
www.navtrak.net
410.548.2337 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: CFMX Doesn't like to load on startup

2002-11-20 Thread Brian Scandale
Stace,

If you go to:

 -Start
  -Programs
   -Admin Tools
-Services

cfmx will show up in the list... mark them... or it automatic start... then it should.

hth
Brian



At 08:44 AM 11/20/02, you wrote:
>Odd. For the past few days CFMX on win2k pro has decided on it's own that it
>doesn't want to startup when the puter boots. I have to kick it off
>manually. It's worked fine for months up until now. Anyone seen this or know
>a fix?
>
>Cheers,
>
>Stace
>
>
>AVIS IMPORTANT: 
>---
>Les informations contenues dans le present document et ses pieces jointes sont 
>strictement confidentielles et reservees a l'usage de la (des) personne(s) a qui il 
>est adresse. Si vous n'etes pas le destinataire, soyez avise que toute divulgation, 
>distribution, copie, ou autre utilisation de ces informations est strictement 
>prohibee.  Si vous avez recu ce document par erreur, veuillez s'il vous plait 
>communiquer immediatement avec l'expediteur et detruire ce document sans en faire de 
>copie sous quelque forme.
>
>WARNING:  
>---
>The information contained in this document and attachments is confidential and 
>intended only for the person(s) named above.  If you are not the intended recipient 
>you are hereby notified that any disclosure, copying, distribution, or any other use 
>of the information is strictly prohibited.  If you have received this document by 
>mistake, please notify the sender immediately and destroy this document and 
>attachments without making any copy of any kind.
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Stacy Young
Thx Brian but it's always been auto-startup.  :-)


-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 12:32 PM
To: CF-Talk
Subject: Re: CFMX Doesn't like to load on startup

Stace,

If you go to:

 -Start
  -Programs
   -Admin Tools
-Services

cfmx will show up in the list... mark them... or it automatic start... then
it should.

hth
Brian



At 08:44 AM 11/20/02, you wrote:
>Odd. For the past few days CFMX on win2k pro has decided on it's own that
it
>doesn't want to startup when the puter boots. I have to kick it off
>manually. It's worked fine for months up until now. Anyone seen this or
know
>a fix?
>
>Cheers,
>
>Stace
>
>
>AVIS IMPORTANT: 
>---
>Les informations contenues dans le present document et ses pieces jointes
sont strictement confidentielles et reservees a l'usage de la (des)
personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
avise que toute divulgation, distribution, copie, ou autre utilisation de
ces informations est strictement prohibee.  Si vous avez recu ce document
par erreur, veuillez s'il vous plait communiquer immediatement avec
l'expediteur et detruire ce document sans en faire de copie sous quelque
forme.
>
>WARNING:  
>---
>The information contained in this document and attachments is confidential
and intended only for the person(s) named above.  If you are not the
intended recipient you are hereby notified that any disclosure, copying,
distribution, or any other use of the information is strictly prohibited.
If you have received this document by mistake, please notify the sender
immediately and destroy this document and attachments without making any
copy of any kind.
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: Can a web service call another local component?

2002-11-20 Thread Sean A Corfield
On Tuesday, Nov 19, 2002, at 22:31 US/Pacific, Brook Davies wrote:
> What I meant by this post, is that I have a component which in turn 
> uses
>  to invoke another component. This works fine when the 
> containing
> component is called locally.
>
> But when I try to call it as a webservice, I get an error. If I remove 
> the
> component reference within the web service component, then it works.

We do this all the time (have a web service that calls other 
components) so it definitely works just fine. Can you show us a simple 
code example that fails?

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Frames Craziness.

2002-11-20 Thread Sean A Corfield
On Wednesday, Nov 20, 2002, at 07:35 US/Pacific, Luce, Greg wrote:
> 

RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Christine Lawson
Actually, it should already be set to start automatically. A workaround would be to 
make it depend on another service such as IIS. Add a string value named 
"DependOnService" with the value "W3SVC" under: 
HKLM\SYSTEM\CurrentControlSet\Services\ColdFusion MX Application Server\

Christine

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 12:32 PM
To: CF-Talk
Subject: Re: CFMX Doesn't like to load on startup


Stace,

If you go to:

 -Start
  -Programs
   -Admin Tools
-Services

cfmx will show up in the list... mark them... or it automatic start... then it should.

hth
Brian



At 08:44 AM 11/20/02, you wrote:
>Odd. For the past few days CFMX on win2k pro has decided on it's own that it
>doesn't want to startup when the puter boots. I have to kick it off
>manually. It's worked fine for months up until now. Anyone seen this or know
>a fix?
>
>Cheers,
>
>Stace
>
>
>AVIS IMPORTANT: 
>---
>Les informations contenues dans le present document et ses pieces jointes sont 
>strictement confidentielles et reservees a l'usage de la (des) personne(s) a qui il 
>est adresse. Si vous n'etes pas le destinataire, soyez avise que toute divulgation, 
>distribution, copie, ou autre utilisation de ces informations est strictement 
>prohibee.  Si vous avez recu ce document par erreur, veuillez s'il vous plait 
>communiquer immediatement avec l'expediteur et detruire ce document sans en faire de 
>copie sous quelque forme.
>
>WARNING:  
>---
>The information contained in this document and attachments is confidential and 
>intended only for the person(s) named above.  If you are not the intended recipient 
>you are hereby notified that any disclosure, copying, distribution, or any other use 
>of the information is strictly prohibited.  If you have received this document by 
>mistake, please notify the sender immediately and destroy this document and 
>attachments without making any copy of any kind.
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: no posts?

2002-11-20 Thread Lewis Sellers
On Wed, 20 Nov 2002 12:25:18 -0500, in cf-talk you wrote:

>no posts since 1:38 am this morning?

The world ended last night at a little after Midnight. Guess you
didn't get the memo?

--min

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: mx debugging

2002-11-20 Thread S . Isaac Dealey
hmmm... the only thing I'm coming up with here is
wwwroot/cfide/administrator/WEB-INF/build.xml , wwwroot/cfide/debug and
wwwroot/cfide/aministrator/debugging but neither of these last directories
contain the specified file either, so ... maybe I should check it out later
on my own server where I can perform a file search for them ... I can't get
a file-search through the ftp on this server...

Thanks Jim,

> well, on a Linux installation of MX, there are three cfm templates
> (non-compiled!) in the debug directory (*cfroot*/wwwroot/WEB-INF/debug):

> classic.cfm
> dockable.cfm
> dreamweaver.cfm

> You could try adding something there to see if the administrator picks it
> up, or try editing the two provided ones that show up in the admin.

> - Jim

> - Original Message -
> From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, November 20, 2002 10:44 AM
> Subject: mx debugging


>> I noticed that the modes for debugging in the mx administrator are
> labelled
>> "classic.cfm" and "dockable.cfm" as opposed to "classic" and "dockable"
>> which leads me to think that there's some way I might be able to add my
> own
>> custom debugging scripts as alternatives to these... Does anyone know if
>> this is the case and if so, how I go about adding a custom script?
>>
>> s. isaac dealey954-776-0046
>>
>> new epoch  http://www.turnkey.to
>>
>> lead architect, tapestry cms   http://products.turnkey.to
>>
>> certified advanced coldfusion 5 developer
>> http://www.macromedia.com/v1/handlers/index.cfm?ID=21816


s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: BRAIN TEASER: Inserting a query into a table?

2002-11-20 Thread John Ceci
Novak,

Here ya go, works on MS SQL Server 7.0


INSERT INTO TableName(userid, username, password)
SELECT DISTINCT userid, username, password FROM Users_Main


NOTE: The column list in the select statement must pass all the rules for
insertion into the table, IE, data type, data length, ability to be NULL
etc...

HTH,
John


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 9:31 PM
To: CF-Talk
Subject: BRAIN TEASER: Inserting a query into a table?


Hi All,

Here's an interesting twist.  I have a "virtual" query (for lack of a better
term) that I created and populated in ColdFusion using the various query
functions in CFMX.  I can "CFDUMP" the query on the screen and everything
looks perfect.

BUT... what I really want to do is dump the contents of that query into an
SQL Server 2000 database.  I'd prefer something easy and automated such as:

INSERT INTO table
SELECT * FROM newQuery

I'd prefer it if I didn't have to loop over each row in my newQuery and
insert it one row at a time.  Can this be done?  Has anyone ever done
anything like this before?  Some example code would be fantastic.

-Novak


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Gif Pipes

2002-11-20 Thread Shawn Regan
What is it you achieve in doing this to display images? :)

Shawn Regan
pacifictechnologysolutions
15530-B Rockfield Blvd. Suite 4 
Irvine, CA 92618
949.830.1623
w w w . p t s 1 . c o m



-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 7:24 AM
To: CF-Talk
Subject: Re: Gif Pipes


At 10:12 AM 20/11/02 -0500, Tipton Josh (orl1jdt) wrote:
>Can someone please point me in the direction on information for creating,
>implementing, and using gif pipes.

It's fairly simple.  You create a link like this:

http://www.mysite.com/mypage.cfm";>

Then you create the file mypage.cfm with whatever you want in it and end it 
with.



T


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Gif Pipes

2002-11-20 Thread S . Isaac Dealey
The image as a data pipe trick is a means of accomplishing a request from
the server without reloading the page, usually using javascript to change
the src attribute of the image. As just one example:

A billing form with a credit card number field might have an image data pipe
which requests a page from the server to determine if the card number is
valid such as





  function validatecc() {
  document.images.validatecc.src
= "validatecc.cfm?ccno="
+ document.myform.cc.value;
  }


When the page finishes processing, it uses cfcontent to display an image
which may be the spacer if the number validated okay, or a warning message
if the card failed the validation routine.

I believe with some browsers you can also get javascript functionality from
the page called through the image, but I've not really worked with image
data pipes personally, so I can't give any real specifics.


s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816



> What is it you achieve in doing this to display images? :)

> Shawn Regan
> pacifictechnologysolutions
> 15530-B Rockfield Blvd. Suite 4
> Irvine, CA 92618
> 949.830.1623
> w w w . p t s 1 . c o m



> -Original Message-
> From: Thane Sherrington [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 20, 2002 7:24 AM
> To: CF-Talk
> Subject: Re: Gif Pipes


> At 10:12 AM 20/11/02 -0500, Tipton Josh (orl1jdt) wrote:
>>Can someone please point me in the direction on information for creating,
>>implementing, and using gif pipes.

> It's fairly simple.  You create a link like this:

> http://www.mysite.com/mypage.cfm";>

> Then you create the file mypage.cfm with whatever you want in it and end
> it
> with.

> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Gif Pipes

2002-11-20 Thread Lofback, Chris
The way I learned to use a GIF pipe was that you send data using URL
variables and get responses using cookies (which means the return data is
restricted by cookie limitations like size and number of cookies.)  The
client code has a timed loop that watches for the cookie to be returned and
then parses out the data.

To learn how they work, I built a GIF pipe JS library to use on our
corporate web site to validate ZIP codes on a form.  When someone enters a
ZIP code, the GIF pipe calls a CF template on my server that uses CFHTTP to
query the USPS for a city and state, which are then returned to populate the
matching form fields.  Admittedly, this is fairly trivial but it has
potential for many other uses.  I just haven't had time to look into it.

Chris Lofback
Sr. Web Developer

TRX Integration
28051 US 19 N., Ste. C
Clearwater, FL  33761
www.trxi.com


> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 20, 2002 1:41 PM
> To: CF-Talk
> Subject: RE: Gif Pipes
> 
> 
> The image as a data pipe trick is a means of accomplishing a 
> request from
> the server without reloading the page, usually using 
> javascript to change
> the src attribute of the image. As just one example:
> 
> A billing form with a credit card number field might have an 
> image data pipe
> which requests a page from the server to determine if the 
> card number is
> valid such as
> 
> 
> 
> 
> 
>   function validatecc() {
>   document.images.validatecc.src
> = "validatecc.cfm?ccno="
> + document.myform.cc.value;
>   }
> 
> 
> When the page finishes processing, it uses cfcontent to 
> display an image
> which may be the spacer if the number validated okay, or a 
> warning message
> if the card failed the validation routine.
> 
> I believe with some browsers you can also get javascript 
> functionality from
> the page called through the image, but I've not really worked 
> with image
> data pipes personally, so I can't give any real specifics.
> 
> 
> s. isaac dealey954-776-0046
> 
> new epoch  http://www.turnkey.to
> 
> lead architect, tapestry cms   http://products.turnkey.to
> 
> certified advanced coldfusion 5 developer
> http://www.macromedia.com/v1/handlers/index.cfm?ID=21816
> 
> 
> 
> > What is it you achieve in doing this to display images? :)
> 
> > Shawn Regan
> > pacifictechnologysolutions
> > 15530-B Rockfield Blvd. Suite 4
> > Irvine, CA 92618
> > 949.830.1623
> > w w w . p t s 1 . c o m
> 
> 
> 
> > -Original Message-
> > From: Thane Sherrington [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, November 20, 2002 7:24 AM
> > To: CF-Talk
> > Subject: Re: Gif Pipes
> 
> 
> > At 10:12 AM 20/11/02 -0500, Tipton Josh (orl1jdt) wrote:
> >>Can someone please point me in the direction on information 
> for creating,
> >>implementing, and using gif pipes.
> 
> > It's fairly simple.  You create a link like this:
> 
> > http://www.mysite.com/mypage.cfm";>
> 
> > Then you create the file mypage.cfm with whatever you want 
> in it and end
> > it
> > with.
> 
> > 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Gif Pipes

2002-11-20 Thread Joseph Thompson
They are also useful to extend sessions.  Add a function to reload the image
and that users session will exist until they close thier browser.

(this custom tag reloads a gif)
http://cfhub.com/forum//index.cfm?FuseAction=Thread&TopicID=2445


> The way I learned to use a GIF pipe was that you send data using URL
> variables and get responses using cookies (which means the return data is
> restricted by cookie limitations like size and number of cookies.)


> > A billing form with a credit card number field might have an
> > image data pipe
> > which requests a page from the server to determine if the
> > card number is
> > valid

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



SQL: self-joins and counts - lots of detail

2002-11-20 Thread Jeff Beer
Hi folks,

I'm stumped on a SQL query.  Using SQL Server 7.0.

I have two tables - one with a lot of detail info, and one as a cross
reference.  The detail table (msgs) has a primary key (message_id) and
an e-mail address (emailAddress), plus other stuff that doesn't matter
for now.  The cross reference table (xref_forwards) has
originalMessage_ID and newMessage_ID.

When someone forwards an e-mail message to another person, the system
currently checks to see if the new address (the forward to address) is
present in the system.  If so, it inserts a record into the cross
reference table with the message_id of the sender, and the existing
message_id of the recipient.  If the new address is not present, it adds
a record for that address, grabs the new message_ID, and inserts a
record into the cross reference table.

Pretty straightforward stuff so far.

What's beating me up is writing a query that will return the original
sender's email address and the people that person forwarded the message
to, with a count of how many mails were forwarded per original email
address.  So far I have:

SELECT a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS
SenderAddress, d.EMailAddress AS NewAddress, COUNT(a.originalMessage_ID)

  AS totalforwards
FROM xref_forwarding a INNER JOIN
  xref_forwarding b ON a.originalMessage_ID =
b.newMessage_ID INNER JOIN
  msgs c ON a.originalMessage_ID = c.Message_ID
INNER JOIN
  msgs d ON a.newMessage_ID = d.Message_ID
GROUP BY a.originalMessage_ID, a.newMessage_ID, c.EMailAddress,
d.EMailAddress
ORDER BY a.originalMessage_ID

This seems to work fine.  Here's example output from the above query:
(in all the output, the domain names are changed so I don't get
screenscraped by spammers - the numbers all match up with the original
domains).

a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS SenderAddress,
d.EMailAddress AS NewAddress
 663352 663352 [EMAIL PROTECTED] [EMAIL PROTECTED]
 663352 670110 [EMAIL PROTECTED] [EMAIL PROTECTED]
 663352 671038 [EMAIL PROTECTED] [EMAIL PROTECTED]
 663352 714066 [EMAIL PROTECTED] [EMAIL PROTECTED]
 663352 714187 [EMAIL PROTECTED] [EMAIL PROTECTED]
 663353 670109 [EMAIL PROTECTED] [EMAIL PROTECTED]
 663353 670110 [EMAIL PROTECTED] [EMAIL PROTECTED]
 663353 714066 [EMAIL PROTECTED] [EMAIL PROTECTED]
 670110 714046 [EMAIL PROTECTED] [EMAIL PROTECTED]
 670110 714188 [EMAIL PROTECTED] [EMAIL PROTECTED]
 671038 663352 [EMAIL PROTECTED] [EMAIL PROTECTED]
 671038 663353 [EMAIL PROTECTED] [EMAIL PROTECTED]
 671038 714186 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714066 671038 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714066 714181 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714066 714182 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714066 714183 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714066 714184 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714066 714185 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714188 671036 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714188 671038 [EMAIL PROTECTED] [EMAIL PROTECTED]
 714188 714187 [EMAIL PROTECTED] [EMAIL PROTECTED]

The counts add up fine - I tested manually, writing down who sent mail
to whom.

When I add a count column the results are still the same, but the counts
are wrong:

SELECT a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS
SenderAddress, d.EMailAddress AS NewAddress, COUNT(a.originalMessage_ID)

  AS TotalForwards
FROM xref_forwarding a INNER JOIN
  xref_forwarding b ON a.originalMessage_ID =
b.newMessage_ID INNER JOIN
  msgs c ON a.originalMessage_ID = c.Message_ID
INNER JOIN
  msgs d ON a.newMessage_ID = d.Message_ID
GROUP BY a.originalMessage_ID, a.newMessage_ID, c.EMailAddress,
d.EMailAddress
ORDER BY a.originalMessage_ID

outputting:

a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS SenderAddress,
d.EMailAddress AS NewAddress, COUNT(a.originalMessage_ID) 
 663352 663352 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 663352 670110 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 663352 671038 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 663352 714066 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 663352 714187 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 663353 670109 [EMAIL PROTECTED] [EMAIL PROTECTED] 1
 663353 670110 [EMAIL PROTECTED] [EMAIL PROTECTED] 1
 663353 714066 [EMAIL PROTECTED] [EMAIL PROTECTED] 1
 670110 714046 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 670110 714188 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 671038 663352 [EMAIL PROTECTED] [EMAIL PROTECTED] 3
 671038 663353 [EMAIL PROTECTED] [EMAIL PROTECTED] 3
 671038 714186 [EMAIL PROTECTED] [EMAIL PROTECTED] 3
 714066 671038 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 714066 714181 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 714066 714182 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 714066 714183 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 714066 714184 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 714066 714185 [EMAIL PROTECTED] [EMAIL PROTECTED] 2
 71418

Re: Gif Pipes

2002-11-20 Thread Bryan Stevenson
Ummm...isn't the point of timing out sessions to actually timeout the
session?? ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: "Joseph Thompson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 20, 2002 11:28 AM
Subject: Re: Gif Pipes


> They are also useful to extend sessions.  Add a function to reload the
image
> and that users session will exist until they close thier browser.
>
> (this custom tag reloads a gif)
> http://cfhub.com/forum//index.cfm?FuseAction=Thread&TopicID=2445
>
>
> > The way I learned to use a GIF pipe was that you send data using URL
> > variables and get responses using cookies (which means the return data
is
> > restricted by cookie limitations like size and number of cookies.)
>
>
> > > A billing form with a credit card number field might have an
> > > image data pipe
> > > which requests a page from the server to determine if the
> > > card number is
> > > valid
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



OT: DB - CF - Treeview

2002-11-20 Thread Paul E. Cross
Can someone help me, and yes, I'll pay?!. I want an Access database that I
can edit that contains link information. Pretty much a representation of the
Windows favorites directory.

I want to query it and represent the information in an explorer- like
treeview menu. A database driven tree structure as discussed by these guys
in experts exchange:

http://www.experts-exchange.com/Web/WebDevSoftware/ColdFusion/Q_20120662.html

Seen a working example? Have one you wanna give or sell, point me to, etc. 
Please?

--Paul Cross


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Image Resize on non MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm looking for a custom tag to handle image resizing (gif, jpg, etc) 
that doesn't require a MS server (and is preferably free). Any ideas?

Cutter
Falcon Knives

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Frames Craziness.

2002-11-20 Thread Mosh Teitelbaum
The replace method loads the specified URL in place of the current URL's
history entry.  It makes the current URL inaccessible via standard browser
history navigation (i.e., back/forward buttons).

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


> -Original Message-
> From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 20, 2002 12:58 PM
> To: CF-Talk
> Subject: Re: Frames Craziness.
>
>
> On Wednesday, Nov 20, 2002, at 07:35 US/Pacific, Luce, Greg wrote:
> > 

RE: self-joins and counts - lots of detail

2002-11-20 Thread Jeff Beer
Sorry about the formatting.. Grrr..  Should be in columns as:

a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS SenderAddress,
d.EMailAddress AS NewAddress

-Original Message-
From: Jeff Beer [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 2:29 PM
To: CF-Talk
Subject: SQL: self-joins and counts - lots of detail


Hi folks,

I'm stumped on a SQL query.  Using SQL Server 7.0.

I have two tables - one with a lot of detail info, and one as a cross
reference.  The detail table (msgs) has a primary key (message_id) and
an e-mail address (emailAddress), plus other stuff that doesn't matter
for now.  The cross reference table (xref_forwards) has
originalMessage_ID and newMessage_ID.

When someone forwards an e-mail message to another person, the system
currently checks to see if the new address (the forward to address) is
present in the system.  If so, it inserts a record into the cross
reference table with the message_id of the sender, and the existing
message_id of the recipient.  If the new address is not present, it adds
a record for that address, grabs the new message_ID, and inserts a
record into the cross reference table.

Pretty straightforward stuff so far.

What's beating me up is writing a query that will return the original
sender's email address and the people that person forwarded the message
to, with a count of how many mails were forwarded per original email
address.  So far I have:

SELECT a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS
SenderAddress, d.EMailAddress AS NewAddress, COUNT(a.originalMessage_ID)

  AS totalforwards
FROM xref_forwarding a INNER JOIN
  xref_forwarding b ON a.originalMessage_ID =
b.newMessage_ID INNER JOIN
  msgs c ON a.originalMessage_ID = c.Message_ID
INNER JOIN
  msgs d ON a.newMessage_ID = d.Message_ID GROUP BY
a.originalMessage_ID, a.newMessage_ID, c.EMailAddress, d.EMailAddress
ORDER BY a.originalMessage_ID

This seems to work fine.  Here's example output from the above query:
(in all the output, the domain names are changed so I don't get
screenscraped by spammers - the numbers all match up with the original
domains).

a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS SenderAddress,
d.EMailAddress AS NewAddress  663352 663352 [EMAIL PROTECTED]
[EMAIL PROTECTED]  663352 670110 [EMAIL PROTECTED] [EMAIL PROTECTED]
663352 671038 [EMAIL PROTECTED] [EMAIL PROTECTED]  663352 714066
[EMAIL PROTECTED] [EMAIL PROTECTED]  663352 714187 [EMAIL PROTECTED]
[EMAIL PROTECTED]  663353 670109 [EMAIL PROTECTED] [EMAIL PROTECTED]
663353 670110 [EMAIL PROTECTED] [EMAIL PROTECTED]  663353 714066
[EMAIL PROTECTED] [EMAIL PROTECTED]  670110 714046 [EMAIL PROTECTED]
[EMAIL PROTECTED]  670110 714188 [EMAIL PROTECTED]
[EMAIL PROTECTED]  671038 663352 [EMAIL PROTECTED] [EMAIL PROTECTED]
671038 663353 [EMAIL PROTECTED] [EMAIL PROTECTED]  671038 714186
[EMAIL PROTECTED] [EMAIL PROTECTED]  714066 671038 [EMAIL PROTECTED]
[EMAIL PROTECTED]  714066 714181 [EMAIL PROTECTED] [EMAIL PROTECTED]
714066 714182 [EMAIL PROTECTED] [EMAIL PROTECTED]  714066 714183
[EMAIL PROTECTED] [EMAIL PROTECTED]  714066 714184 [EMAIL PROTECTED]
[EMAIL PROTECTED]  714066 714185 [EMAIL PROTECTED] [EMAIL PROTECTED]
714188 671036 [EMAIL PROTECTED] [EMAIL PROTECTED]  714188 671038
[EMAIL PROTECTED] [EMAIL PROTECTED]  714188 714187 [EMAIL PROTECTED]
[EMAIL PROTECTED]

The counts add up fine - I tested manually, writing down who sent mail
to whom.

When I add a count column the results are still the same, but the counts
are wrong:

SELECT a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS
SenderAddress, d.EMailAddress AS NewAddress, COUNT(a.originalMessage_ID)

  AS TotalForwards
FROM xref_forwarding a INNER JOIN
  xref_forwarding b ON a.originalMessage_ID =
b.newMessage_ID INNER JOIN
  msgs c ON a.originalMessage_ID = c.Message_ID
INNER JOIN
  msgs d ON a.newMessage_ID = d.Message_ID GROUP BY
a.originalMessage_ID, a.newMessage_ID, c.EMailAddress, d.EMailAddress
ORDER BY a.originalMessage_ID

outputting:

a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS SenderAddress,
d.EMailAddress AS NewAddress, COUNT(a.originalMessage_ID) 
 663352 663352 [EMAIL PROTECTED] [EMAIL PROTECTED] 2  663352
670110 [EMAIL PROTECTED] [EMAIL PROTECTED] 2  663352 671038
[EMAIL PROTECTED] [EMAIL PROTECTED] 2  663352 714066
[EMAIL PROTECTED] [EMAIL PROTECTED] 2  663352 714187
[EMAIL PROTECTED] [EMAIL PROTECTED] 2  663353 670109
[EMAIL PROTECTED] [EMAIL PROTECTED] 1  663353 670110
[EMAIL PROTECTED] [EMAIL PROTECTED] 1  663353 714066
[EMAIL PROTECTED] [EMAIL PROTECTED] 1  670110 714046 [EMAIL PROTECTED]
[EMAIL PROTECTED] 2  670110 714188 [EMAIL PROTECTED]
[EMAIL PROTECTED] 2  671038 663352 [EMAIL PROTECTED]
[EMAIL PROTECTED] 3  671038 663353 [EMAIL PROTECTED]
[EMAIL PROTECTED] 3  671038 714186 [EMAIL PROTECTED]
[EM

Re: Gif Pipes

2002-11-20 Thread Eric Dawson
well isn't wasn't more than 16 hours ago that I  could have used this. I 
think I will implement.

Eric

From: "Joseph Thompson" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: Re: Gif Pipes
Date: Wed, 20 Nov 2002 11:28:04 -0800

They are also useful to extend sessions.  Add a function to reload the image
and that users session will exist until they close thier browser.

(this custom tag reloads a gif)
http://cfhub.com/forum//index.cfm?FuseAction=Thread&TopicID=2445


 > The way I learned to use a GIF pipe was that you send data using URL
 > variables and get responses using cookies (which means the return data is
 > restricted by cookie limitations like size and number of cookies.)


 > > A billing form with a credit card number field might have an
 > > image data pipe
 > > which requests a page from the server to determine if the
 > > card number is
 > > valid


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Stacy Young
I'm running Apache but it's installed as a service, I'll try that...thx

-Original Message-
From: Christine Lawson [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 1:04 PM
To: CF-Talk
Subject: RE: CFMX Doesn't like to load on startup

Actually, it should already be set to start automatically. A workaround
would be to make it depend on another service such as IIS. Add a string
value named "DependOnService" with the value "W3SVC" under:
HKLM\SYSTEM\CurrentControlSet\Services\ColdFusion MX Application Server\

Christine

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 12:32 PM
To: CF-Talk
Subject: Re: CFMX Doesn't like to load on startup


Stace,

If you go to:

 -Start
  -Programs
   -Admin Tools
-Services

cfmx will show up in the list... mark them... or it automatic start... then
it should.

hth
Brian



At 08:44 AM 11/20/02, you wrote:
>Odd. For the past few days CFMX on win2k pro has decided on it's own that
it
>doesn't want to startup when the puter boots. I have to kick it off
>manually. It's worked fine for months up until now. Anyone seen this or
know
>a fix?
>
>Cheers,
>
>Stace
>
>
>AVIS IMPORTANT: 
>---
>Les informations contenues dans le present document et ses pieces jointes
sont strictement confidentielles et reservees a l'usage de la (des)
personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
avise que toute divulgation, distribution, copie, ou autre utilisation de
ces informations est strictement prohibee.  Si vous avez recu ce document
par erreur, veuillez s'il vous plait communiquer immediatement avec
l'expediteur et detruire ce document sans en faire de copie sous quelque
forme.
>
>WARNING:  
>---
>The information contained in this document and attachments is confidential
and intended only for the person(s) named above.  If you are not the
intended recipient you are hereby notified that any disclosure, copying,
distribution, or any other use of the information is strictly prohibited.
If you have received this document by mistake, please notify the sender
immediately and destroy this document and attachments without making any
copy of any kind.
>
>
>


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Shopping Carts & PayPal IPN

2002-11-20 Thread Chris Montgomery
Friday, October 18, 2002, 5:58:54 PM, Bud wrote:

> Below is the important part of my IPN page. I'm including it because
> maybe others can use it.

After a month-long hiatus...

First, thanks to Bud for his code. I used that (and I found an earlier
post of his from back in June with similar info), plus what I found from
a tutorial site (
http://www.easycfm.com/tutorials/index.cfm?tutorial_id=23 ) to get
PayPal to work with a simple payment form.

Now I have another question. My script has some cfmail tags that send
some test data, plus a receipt that goes to the customer. PayPal's IPN
site hits the script page continuously and these mails get sent over and
over again. I'm not worried about the test data getting sent, but I
don't want the receipt to be sent continuously to customers. PayPal
explains this in the Help section thusly:

"Q. Why is my script being continuously called for the same transaction?

A. PayPal's IPN system re-posts to your script after 1 second, then 2
seconds, 4 seconds, 8 seconds, etc., (up to a 4 hour duration), until we
receive a basic HTTP "200 OK" response from your web server or 1.5 days
have passed since the initial post."

My question: is there a way to account for this by testing the HTTP
response, or to short circuit this so that only one email gets sent to
the customer?

Any ideas would be appreciated. Thanks.

-- 
Chris Montgomerymonty @ airtightweb.com 
Airtight Web Services   http://www.airtightweb.com
Web Development, Web Project Management, Software Sales
210-490-3249/888-745-7603

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: BRAIN TEASER: Inserting a query into a table?

2002-11-20 Thread Matthew Fusfield
Hey John!

Would this work? Sounds like Novak created the query in CF (ie with QueryNew()), so I 
don't know if SQL server could "see" the query object for an insert...select statement.

We've done this before by looping through but I don't know that QoQ could do this.

Good to "see" ya again, talk to ya soon!

Matt

> -Original Message-
> From: John Ceci [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 20, 2002 1:23 PM
> To: CF-Talk
> Subject: RE: BRAIN TEASER: Inserting a query into a table?
> 
> 
> Novak,
> 
> Here ya go, works on MS SQL Server 7.0
> 
> 
> INSERT INTO TableName(userid, username, password)
> SELECT DISTINCT userid, username, password FROM Users_Main
> 
> 
> NOTE: The column list in the select statement must pass all 
> the rules for
> insertion into the table, IE, data type, data length, ability 
> to be NULL
> etc...
> 
> HTH,
> John
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 9:31 PM
> To: CF-Talk
> Subject: BRAIN TEASER: Inserting a query into a table?
> 
> 
> Hi All,
> 
> Here's an interesting twist.  I have a "virtual" query (for 
> lack of a better
> term) that I created and populated in ColdFusion using the 
> various query
> functions in CFMX.  I can "CFDUMP" the query on the screen 
> and everything
> looks perfect.
> 
> BUT... what I really want to do is dump the contents of that 
> query into an
> SQL Server 2000 database.  I'd prefer something easy and 
> automated such as:
> 
> INSERT INTO table
> SELECT * FROM newQuery
> 
> I'd prefer it if I didn't have to loop over each row in my 
> newQuery and
> insert it one row at a time.  Can this be done?  Has anyone ever done
> anything like this before?  Some example code would be fantastic.
> 
> -Novak
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Frames Craziness.

2002-11-20 Thread Sean A Corfield
Ah... learn something new every day! Thanx!

On Wednesday, Nov 20, 2002, at 11:33 US/Pacific, Mosh Teitelbaum wrote:
> The replace method loads the specified URL in place of the current 
> URL's
> history entry.  It makes the current URL inaccessible via standard 
> browser
> history navigation (i.e., back/forward buttons).

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Session vs. Client

2002-11-20 Thread Everett, Al
I've been asked to write up a document to detail what is involved in turning
our session-dependent site into one that uses client variables instead. (The
latest issue with the load balancer not maintaining session state on a
server apparently was the proverbial straw.)

I know the obvious issue with going from SESSION to CLIENT variables (no
complex data type in CLIENT) but is there anything else I should be aware
of? Does anyone have a write-up of methods they've used? For instance, which
is better: converting out current structures stored in SESSION to WDDX
packets stored in CLIENT, or using simple ID fields in CLIENT and running
queries in Application.cfm and putting those queries in the REQUEST scope?

Hints and tips would be appreciated.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Image Resize on non MS server

2002-11-20 Thread Bob Haroche
> I'm looking for a custom tag to handle image resizing (gif, jpg,
etc)
> that doesn't require a MS server (and is preferably free). Any
ideas?


I'm using cfx_image (free) on my development machine -- Win2K running
Apache server/CF 5.

-
Regards,
Bob Haroche
O n P o i n t  S o l u t i o n s
www.OnPointSolutions.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Gif Pipes

2002-11-20 Thread Eric Dawson
but you might be more interested in tying a open session to an open browser.

I agree there is potentially more overhead - but if you keep a shorter 
session expiration- you might actually reduce overhead.

Eric

From: "Bryan Stevenson" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: Re: Gif Pipes
Date: Wed, 20 Nov 2002 11:31:51 -0800

Ummm...isn't the point of timing out sessions to actually timeout the
session?? ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Gif Pipes

2002-11-20 Thread Kevin Graeme
Agreed! I remember reading about gif pipes a couple years ago, but didn't
have an immediate need then and forgot about them entirely. Now I can think
of several places to use them. This thread was a good refresh of that
information.

Thanks all!

-Kevin

> -Original Message-
> From: Eric Dawson [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 20, 2002 1:38 PM
> To: CF-Talk
> Subject: Re: Gif Pipes
>
>
> well isn't wasn't more than 16 hours ago that I  could have used this. I
> think I will implement.
>
> Eric
>
> From: "Joseph Thompson" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Re: Gif Pipes
> Date: Wed, 20 Nov 2002 11:28:04 -0800
>
> They are also useful to extend sessions.  Add a function to
> reload the image
> and that users session will exist until they close thier browser.
>
> (this custom tag reloads a gif)
> http://cfhub.com/forum//index.cfm?FuseAction=Thread&TopicID=2445
>
>
>  > The way I learned to use a GIF pipe was that you send data using URL
>  > variables and get responses using cookies (which means the
> return data is
>  > restricted by cookie limitations like size and number of cookies.)
>
>
>  > > A billing form with a credit card number field might have an
>  > > image data pipe
>  > > which requests a page from the server to determine if the
>  > > card number is
>  > > valid
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Interfacing with MSMQ

2002-11-20 Thread Todd Dancer
Has anyone written anything that will submit a message to the MSMQ via
CF?

 

Thanks

 

Todd A Dancer
TechSquid1
[EMAIL PROTECTED]
504-525-0990

"E-mail-- when it absolutely positively has to get lost at the speed of
light. "

 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Image Resize without MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm trying to find a custom tag that will resize images on upload that 
does not require an MS server. Any suggestions?

Cutter
Falcon-Knives.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Odd error in MX - anyone seen this?

2002-11-20 Thread Rob Rohan
I have a test page that has ~10 lines of code on it and if I add ANY cold
fusion tags I get the following error:

Error Occurred While Processing Request
Index: 149, Size: 46

Please try the following:

* Check the CFML Reference Manual to verify that you are using the
correct syntax.
* Search the Knowledge Base to find a solution to your problem.

Browser   Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1)
Gecko/20020823 Netscape/7.0
Remote Address
Referrer
Date/Time   20-Nov-02 11:55 AM
Stack Trace


[Ljava.lang.StackTraceElement;@aa68a
+==+
Execution Time

No top level page was found.
+==+
Exceptions

11:55:28.028 - java.lang.IndexOutOfBoundsException - in : line -1

Index: 149, Size: 46

//

It worked yesterday. Any thoughts, anyone seen this?

page looks like

factory = createObject("java","coldfusion.server.ServiceFactory");
hndl = factory.SecurityService.getClass();
methods = arrayNew(1);

tmethods = hndl.getMethods();
for(x=1; x lte arraylen(tmethods); x=x+1){
methods[x] = tmethods[x].Name;
}


Thanks

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: BRAIN TEASER: Inserting a query into a table?

2002-11-20 Thread John Ceci
Hey Matt!

Didn't realize he was using a query sim, missed that

Hmmm...not sure past a loop how else you would do it either...brute force is
sometimes best :)

John

-Original Message-
From: Matthew Fusfield [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 2:42 PM
To: CF-Talk
Subject: RE: BRAIN TEASER: Inserting a query into a table?


Hey John!

Would this work? Sounds like Novak created the query in CF (ie with
QueryNew()), so I don't know if SQL server could "see" the query object for
an insert...select statement.

We've done this before by looping through but I don't know that QoQ could do
this.

Good to "see" ya again, talk to ya soon!

Matt

> -Original Message-
> From: John Ceci [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 20, 2002 1:23 PM
> To: CF-Talk
> Subject: RE: BRAIN TEASER: Inserting a query into a table?
>
>
> Novak,
>
> Here ya go, works on MS SQL Server 7.0
>
> 
> INSERT INTO TableName(userid, username, password)
> SELECT DISTINCT userid, username, password FROM Users_Main
> 
>
> NOTE: The column list in the select statement must pass all
> the rules for
> insertion into the table, IE, data type, data length, ability
> to be NULL
> etc...
>
> HTH,
> John
>
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 9:31 PM
> To: CF-Talk
> Subject: BRAIN TEASER: Inserting a query into a table?
>
>
> Hi All,
>
> Here's an interesting twist.  I have a "virtual" query (for
> lack of a better
> term) that I created and populated in ColdFusion using the
> various query
> functions in CFMX.  I can "CFDUMP" the query on the screen
> and everything
> looks perfect.
>
> BUT... what I really want to do is dump the contents of that
> query into an
> SQL Server 2000 database.  I'd prefer something easy and
> automated such as:
>
> INSERT INTO table
> SELECT * FROM newQuery
>
> I'd prefer it if I didn't have to loop over each row in my
> newQuery and
> insert it one row at a time.  Can this be done?  Has anyone ever done
> anything like this before?  Some example code would be fantastic.
>
> -Novak
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Image Resize without MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm trying to find a custom tag that will resize images on upload that 
does not require an MS server. Any suggestions?

Cutter
Falcon-Knives.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



OT: Apologies

2002-11-20 Thread Cutter (CF_Talk)
Sorry for the multiple postings, mail server issues...


Cutter
Falcon-Knives.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm




RE: Image Resize without MS server

2002-11-20 Thread Rob Rohan
So if I understand you correctly, you are looking for a custom tag that will
resize images on upload that
does not require an MS server.


-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 12:11 PM
To: CF-Talk
Subject: Image Resize without MS server


I'm trying to find a custom tag that will resize images on upload that
does not require an MS server. Any suggestions?

Cutter
Falcon-Knives.com


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Encryption gurus please read

2002-11-20 Thread Bryan Stevenson
Hey All,

I'm not entirely sure why I'm getting the results I am, so I'll ask this
question:

Why is it that the returned encrypted value can vary even though the string
being encrypted and the key used remains constant (i.e. when encrypting
"yeehaw" with the key "boohoo" will not always return the same encrypted
value)?

BTW I've tested this situation against cf_cryp, cf_crypt, and Encrypt()

TIA ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Image Resize without MS server

2002-11-20 Thread Rob Rohan
If the offlist thing I sent doesn't help search the archive, there was talk
of this very thing about 2 days ago.

Cheers,
rob

-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 12:11 PM
To: CF-Talk
Subject: Image Resize without MS server


I'm trying to find a custom tag that will resize images on upload that
does not require an MS server. Any suggestions?

Cutter
Falcon-Knives.com


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Encryption gurus please read

2002-11-20 Thread JLH All Turbo
If it did return the same exact encrypted result... it'd be
waaay to easy to reverse engineer.
WAY.

Secure communications wouldn't exist.

jacob.
- Original Message -
From: "Bryan Stevenson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 20, 2002 3:25 PM
Subject: Encryption gurus please read


> Hey All,
>
> I'm not entirely sure why I'm getting the results I am, so I'll ask this
> question:
>
> Why is it that the returned encrypted value can vary even though the
string
> being encrypted and the key used remains constant (i.e. when encrypting
> "yeehaw" with the key "boohoo" will not always return the same encrypted
> value)?
>
> BTW I've tested this situation against cf_cryp, cf_crypt, and Encrypt()
>
> TIA ;-)
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> t. 250.920.8830
> e. [EMAIL PROTECTED]
>
> -
> Macromedia Associate Partner
> www.macromedia.com
> -
> Vancouver Island ColdFusion Users Group
> Founder & Director
> www.cfug-vancouverisland.com
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Odd error in MX - anyone seen this?

2002-11-20 Thread Sean A Corfield
Your .class file has gotten out of sync I think. Go into  
WEB-INF/cfclasses and delete the .class file that corresponds to your  
source file (or delete all of them if you can't spot the sucker).

That will force a recompile which should solve your problem.

On Wednesday, Nov 20, 2002, at 12:07 US/Pacific, Rob Rohan wrote:

> I have a test page that has ~10 lines of code on it and if I add ANY  
> cold
> fusion tags I get the following error:
>
> Error Occurred While Processing Request
> Index: 149, Size: 46
>
> Please try the following:
>
> * Check the CFML Reference Manual to verify that you are using the
> correct syntax.
> * Search the Knowledge Base to find a solution to your problem.
>
> Browser   Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1)
> Gecko/20020823 Netscape/7.0
> Remote Address
> Referrer
> Date/Time   20-Nov-02 11:55 AM
> Stack Trace
>
>
> [Ljava.lang.StackTraceElement;@aa68a
> +==+
> Execution Time
>
> No top level page was found.
> +==+
> Exceptions
>
> 11:55:28.028 - java.lang.IndexOutOfBoundsException - in : line -1
>
> Index: 149, Size: 46
>
> //
>
> It worked yesterday. Any thoughts, anyone seen this?
>
> page looks like
> 
>   factory = createObject("java","coldfusion.server.ServiceFactory");
>   hndl = factory.SecurityService.getClass();
>   methods = arrayNew(1);
>
>   tmethods = hndl.getMethods();
>   for(x=1; x lte arraylen(tmethods); x=x+1){
>   methods[x] = tmethods[x].Name;
>   }
> 
>
> Thanks
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Odd error in MX - anyone seen this?

2002-11-20 Thread Rob Rohan
Groovy, That worked. Thanks Sean.

-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 12:32 PM
To: CF-Talk
Subject: Re: Odd error in MX - anyone seen this?


Your .class file has gotten out of sync I think. Go into
WEB-INF/cfclasses and delete the .class file that corresponds to your
source file (or delete all of them if you can't spot the sucker).

That will force a recompile which should solve your problem.

On Wednesday, Nov 20, 2002, at 12:07 US/Pacific, Rob Rohan wrote:

> I have a test page that has ~10 lines of code on it and if I add ANY
> cold
> fusion tags I get the following error:
>
> Error Occurred While Processing Request
> Index: 149, Size: 46
>
> Please try the following:
>
> * Check the CFML Reference Manual to verify that you are using the
> correct syntax.
> * Search the Knowledge Base to find a solution to your problem.
>
> Browser   Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1)
> Gecko/20020823 Netscape/7.0
> Remote Address
> Referrer
> Date/Time   20-Nov-02 11:55 AM
> Stack Trace
>
>
> [Ljava.lang.StackTraceElement;@aa68a
> +==+
> Execution Time
>
> No top level page was found.
> +==+
> Exceptions
>
> 11:55:28.028 - java.lang.IndexOutOfBoundsException - in : line -1
>
> Index: 149, Size: 46
>
> //
>
> It worked yesterday. Any thoughts, anyone seen this?
>
> page looks like
> 
>   factory = createObject("java","coldfusion.server.ServiceFactory");
>   hndl = factory.SecurityService.getClass();
>   methods = arrayNew(1);
>
>   tmethods = hndl.getMethods();
>   for(x=1; x lte arraylen(tmethods); x=x+1){
>   methods[x] = tmethods[x].Name;
>   }
> 
>
> Thanks
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



  1   2   >