PDF Support with CF8 - Can this be done?

2007-11-02 Thread Frank Mamone
it into an existing PDF with place holders and then save the file and email it as an attachement. Can CF 8 do the PDF portion natively? Thank you, Frank Mamone ~| ColdFusion 8 - Build next generation apps today, with easy PDF

Re: PDF Support with CF8 - Can this be done?

2007-11-02 Thread Frank Mamone
Thanks everyone...I'll start looking at those tags on Adobe. It feels strange to say Adobe. Last time I used CF it was MM. Great to be back! Frank On Nov 2, 2007 1:19 PM, Bryan Stevenson [EMAIL PROTECTED] wrote: Yes it can...CFDOCUMENTpretty straightforward welcome back ;-) Cheers

Re: A newbie approaches user authentication

2005-02-13 Thread Frank Mamone
If you're doing Windows authentication, this article will help. Either way this will help: http://www.macromedia.com/devnet/mx/coldfusion/articles/ntdomain_1.html On Sun, 13 Feb 2005 20:52:05 +, Chris Kavanagh [EMAIL PROTECTED] wrote: Dear list, So, my first app is finished - except for

Simulating sub-domains with hosts file

2005-02-07 Thread Frank Mamone
Does anyone know how I can simulate subdomains with my hosts file in my local Windows machine? More specifically, I need know if using a wildcard is possible. I used this for testing; 127.0.0.1 home.mywebsite.com and it works. I am trying to achieve this: 127.0.0.1 *.mywebsite.com The

Re: Simulating sub-domains with hosts file

2005-02-07 Thread Frank Mamone
Thanks Barney. - Frank On Mon, 7 Feb 2005 15:45:02 -0800, Barney Boisvert [EMAIL PROTECTED] wrote: Nope, host files don't have any wildcard support, so you'll have to add a record for each subdomain, as well as the bare domain. cheers, barneyb On Mon, 7 Feb 2005 18:27:57 -0500, Frank

Re: Oracle help please

2005-01-21 Thread Frank Mamone
TABLE1.KEY = TABLE2.KEY AND TABLE1.FIELD = 'Y' ) (You don't need the outer table in your inner query.) - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, January 20, 2005 6:28 PM Subject: Re: Oracle help please I

Re: Oracle help please

2005-01-20 Thread Frank Mamone
of the message -- if you are familiar with it. From what I read, both tables being joined must both have primary keys defined. Do they mean defined as physical attributes of the tables? Thanks, --Frank On Tue, 18 Jan 2005 21:12:50 +0100, Jochem van Dieten [EMAIL PROTECTED] wrote: Frank Mamone wrote

Re: Oracle help please

2005-01-20 Thread Frank Mamone
- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 4:42 PM To: CF-Talk Subject: Re: Oracle help please Frank Mamone wrote: With everyone's help I finally did get the syntax working but I get the famous 'non-preserved key' message. I finally did

Re: Oracle help please

2005-01-18 Thread Frank Mamone
' ) On Mon, 17 Jan 2005 16:42:23 -0500, Frank Mamone [EMAIL PROTECTED] wrote: I am having trouble doing an update with a join in Oracle. I am getting this error: SQL command not properly ended. Here is the generic syntax I am using: UPDATE TABLE1 SET TABLE1.FIELD = TABLE2.FIELD

Re: Oracle help please

2005-01-18 Thread Frank Mamone
to upate multiple rows in the same table. - Frank On Tue, 18 Jan 2005 08:44:34 -0500, Frank Mamone [EMAIL PROTECTED] wrote: Greg, I tried this: UPDATE EIM_CONTACT SET A.CON_CUST_STAT_CD = ( SELECT B.PC_STATUS FROM EIM_CONTACT A , EIM_CONTACT B WHERE A.ROW_ID = B.CON_PERSON_UID

Re: Oracle help please

2005-01-18 Thread Frank Mamone
TABLE2 is actually the same table so I need to use an alias. Without a from I cannot give it an alias name. Thanks. -Frank On Tue, 18 Jan 2005 12:38:48 -0400, Rebecca Wells [EMAIL PROTECTED] wrote: Just remove the From line, i.e.: UPDATE TABLE1 SET TABLE1.FIELD = TABLE2.FIELD WHERE

Re: Oracle help please

2005-01-18 Thread Frank Mamone
EIM_CONTACT.CON_CUST_STAT_CD = EIM_CONTACT1.PC_STATUS FROM EIM_CONTACT , EIM_CONTACT EIM_CONTACT1 WHERE EIM_CONTACT.ROW_ID = EIM_CONTACT1.CON_PERSON_UID AND CON_PR_POSTN = 'Y' I hope this clarifies the situation. - F On Tue, 18 Jan 2005 19:18:01 +0100, Jochem van Dieten [EMAIL PROTECTED] wrote: Frank Mamone

Re: Oracle help please

2005-01-18 Thread Frank Mamone
PROTECTED] wrote: Frank Mamone wrote: ROW_ID CON_PERSON_UID PC_STATUS CON_CUST_STATUS CON_PR_POSTN I need to put the value of PC_STATUS into CON_CUST_STATUS where CON_PERSON_UID matches ROW_ID and marked as CON_PR_POSTN = 'Y' Remember this is denormalized data. So, essentially I

Oracle help please

2005-01-17 Thread Frank Mamone
I am having trouble doing an update with a join in Oracle. I am getting this error: SQL command not properly ended. Here is the generic syntax I am using: UPDATE TABLE1 SET TABLE1.FIELD = TABLE2.FIELD FROM TABLE1, TABLE2 WHERE TABLE1.KEY = TABLE2.KEY AND TABLE1.FIELD = 'Y' Thanks for your

Re: OT .NET

2004-10-22 Thread Frank Mamone
I agree with Kwang. Learning the C# syntax is a better investment as you will become familiar with many other languages with similar syntax. It's also a little less verbose. Writing Web Services and Windows Services has now become trivial with .NET. Have fun and join the .NET - Talk list on HOF.

Re: Help Macromedia! MX service is crashing constantly!

2004-09-15 Thread Frank Mamone
A good way to troubleshoot this problem is by using the Cold Fusion performance counters. It will show you if requests are staying in the queue and will give you a general direction on where else to look. - Frank Mamone - Original Message - From: Luis Menchu [EMAIL PROTECTED] Date: Tue

OT: OSQL Cannot find my Northwind

2004-09-15 Thread Frank Mamone
I am running an instance MSDE with on my machine called HOMEFRANKMA. One instance is called NETSDK and contains a database called Northwind (of course). I am trying to access it with OSQL but it gives me an error saying that it's not found in sysdatabases. here is what I use: use Northwind

Re: SOT: ASP book for CF programmer?

2004-08-12 Thread Frank Mamone
I've been using MCAD/MCSD Developing nd Implementing Wev Applications wit Visual C# .NET and Visual Studio .NET. I like it a lot because it's a certification book it covers most topics. Of course,you will alsohave to use other books for in-depth discussions of specific topics like ADO.NET for

Re: Web Team Project Management App

2004-08-08 Thread Frank Mamone
Looks like a nice product. I wonder how they did the Gantt chart? -Frank - Original Message - From: Matthew Fusfield [EMAIL PROTECTED] Date: Sat, 7 Aug 2004 09:11:23 -0400 Subject: Re: Web Team Project Management App To: CF-Talk [EMAIL PROTECTED] We've been pretty happy with dotProject

Re: SOT: Learning Java for a CF programmer

2004-08-01 Thread Frank Mamone
Thanks Dick! Great resources. -Frank - Original Message - From: Dick Applebaum [EMAIL PROTECTED] Date: Sat, 31 Jul 2004 14:40:27 -0700 Subject: SOT: Learning Java for a CF programmer To: CF-Talk [EMAIL PROTECTED] There has been some interest posted to CF-Talk about learning Java --

Best Free Java IDE

2004-07-26 Thread Frank Mamone
I'm looking to get into Java for some integration with CF etc. What would you recommend as a free Java IDE? Thanks, Frank [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Best Free Java IDE

2004-07-26 Thread Frank Mamone
I was looking at Eclipse but I didn't see a free version. I saw only trial versions. I'll take a second look. Thanks for your suggestions, Frank Mamone - Original Message - From: Massimo Foti [EMAIL PROTECTED] Date: Mon, 26 Jul 2004 15:41:59 +0200 Subject: Re: Best Free Java IDE To: CF

Re: Best Free Java IDE

2004-07-26 Thread Frank Mamone
Thanks Dave...I was using a link from a Google search last night and was on the wrong site. I am however having trouble connecting to eclipse.org right now. -Frank - Original Message - From: Dave Watts [EMAIL PROTECTED] Date: Mon, 26 Jul 2004 11:54:21 -0400 Subject: RE: Best Free Java

Re: Best Free Java IDE

2004-07-26 Thread Frank Mamone
] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Mamone Sent: Monday, July 26, 2004 12:04 PM To: CF-Talk Subject: Re: Best Free Java IDE Thanks Dave...I was using a link from a Google search last night and was on the wrong site. I am however having trouble connecting to eclipse.org

Re: Errors 232s Long running requests, and lots more stuff

2004-07-21 Thread Frank Mamone
Simon, I had similar problems like this causing CF5 to restart several times a day. In my case it was problems with querres taking to long to process. I used SQL Profiler and the log files to find the offending query. Hope this helps, Frank - Original Message - From: Simon Whittaker

Re: Help! All of a sudden one of my sites is not working

2004-07-12 Thread Frank Mamone
Brook, Try deleting all the compiled class files in the CFCLASSES directory and restart CFMX service. Probably a corrupt file in cacahe which is not being recompiled. -Frank - Original Message - From: Brook Davies [EMAIL PROTECTED] Date: Mon, 12 Jul 2004 09:57:45 -0700 Subject: Help!

Re: Process Modeling Tool

2004-07-09 Thread Frank Mamone
You bulit this in Flash? - Original Message - From: Nick de Voil [EMAIL PROTECTED] Date: Fri, 9 Jul 2004 11:43:42 +0100 Subject: Re: Process Modeling Tool To: CF-Talk [EMAIL PROTECTED] I am looking for a tool/software so that I can create graphical respresentation of processes.I guess

Re: Updating multiple records

2004-07-04 Thread Frank Mamone
Mark, Try this: cfloop index=memberID from=1 to=3300 cfquery name=updateRecords datasource=dsn UPDATE myTable SET controlID = '#createUUID()#' WHERE memberID = #memberID# /cfquery /cfloop -Frank - Original Message - From: Mark Leder [EMAIL PROTECTED] Date: Sun, 4 Jul 2004

GMAIL - Anyone have an extra?

2004-07-01 Thread Frank Mamone
If anyone has an extra invite, I need one for my wife. Her email is [EMAIL PROTECTED] I got only one invite so far and it failed when my wife received it. It gave the error page has expired. Have you heard of this? -Frank [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: Blackstone @ CF-FUN '04

2004-06-29 Thread Frank Mamone
Is this an original feature of common web development platforms? Is something like this already available in .NET, J2EE, Websphere etc? -F - Original Message - From: Samuel R. Neff To: CF-Talk Sent: Monday, June 28, 2004 12:14 PM Subject: RE: Blackstone @ CF-FUN '04 What he demoed was

Help with CF5 Queued Requests

2004-06-18 Thread Frank Mamone
I have been tasked with stabilizing a legacy CF 5 application which had several problems including CF restarts and loss of client variables etc. I managed to solve most of the issues -- many caused by application variables not being locked. There is one issue which I need help with. Using

Re: Help with CF5 Queued Requests

2004-06-18 Thread Frank Mamone
task folder and find out if there's a regular data import or web scraping application or some other ap put there for utility reasons. Sometimes these tasks run for years with no one noticing them and then suddenly start hanging. -Mark -Original Message- From: Frank Mamone [mailto:[EMAIL

Help: CF5 Prof. connecting to Oracle with Merant

2004-06-03 Thread Frank Mamone
I have setup a ODBC connection usingMerant 3.7 OEM drivers in the Windows Datasource Admin. It connects properly. However, in CF ADMIN it does not connect. The proper username and password have been entered. I'll keep searching the archives etc, but if you have heard of such a problem please let

Re: Application Security Confusion

2004-05-31 Thread Frank Mamone
Jeff, What happens if you set the Timeout to 0? Do they timeout then? -Frank - Original Message - From: Jeff Chastain To: CF-Talk Sent: Monday, May 31, 2004 10:08 AM Subject: RE: Application Security Confusion Okay, Hal's tutorial fixed the browser close issue. However, I still

Re: CF in montreal (quebec) ?

2004-05-26 Thread Frank Mamone
I'm in Montreal and there doesn't seem to be many companies using CF here. -Frank - Original Message - From: CFDEV To: CF-Talk Sent: Friday, May 21, 2004 7:52 AM Subject: CF in montreal (quebec) ? Hi there, does anyone of you knows if there is a big community of CF programmer in

Cannot assign result to symbol????

2004-05-25 Thread Frank Mamone
I'm getting this strange error in my Production environment. Not sure what it means. Not reproducible in DEV. Anyone see this before? An error occurred while evaluating the _expression_: PPRE url.ThisIsGoodPathToGetBack = #cgi.PATH_INFO# /PRE/P/PError near line 237, column 11.HRPCannot assign

Re: Cannot assign result to symbol???? SOLVED

2004-05-25 Thread Frank Mamone
Strange one. I removed the assignment saved. Put it back and it works. Go figure. -Frank - Original Message - From: Frank Mamone To: CF-Talk Sent: Tuesday, May 25, 2004 10:34 AM Subject: Cannot assign result to symbol I'm getting this strange error in my Production environment

Help with stored procedure

2004-05-08 Thread Frank Mamone
Hi, I have three tables for a roles-based security systems; USERS, ROLES, and an intersection table USERS_ROLES. Pretty typical way of doing it. I would like the stored procedure to return the Roles as a column in each record as a comma separated list. Thanks for any pointers. -Frank

Slow query on CF5 why?

2004-03-29 Thread Frank Mamone
WHat are the possible reasons for a query taking 2.3 seconds thru CF(CF5) but a few milliseconds in Query Analyzer? Same DB server. Thanks, Frank [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Slow query on CF5 why?

2004-03-29 Thread Frank Mamone
Hi Steve, This particular one returns one record but there are others with the same symptom which return around 30 or so rows. Granted they are lengthy queries. It's a shared server so there are several applications accessing the same DB server and CF server. It is consistently slow. -Frank

Re: Windows CF5 Custom Tags Bug?

2004-03-25 Thread Frank Mamone
Had the same problem with CFMODULE. As Dave explained, that is the solution, however I'm not sure if you can use that code with CFMODULE. We just stopped using the using the /. -Frank - Original Message - From: Jon Block To: CF-Talk Sent: Thursday, March 25, 2004 11:51 AM Subject:

Re: BlueDragon and Dreamweaver MX

2004-03-10 Thread Frank Mamone
I just downloaded it too and it looks awesome, but am having problems connecting to MSDE instances. I'm not sure where to specify the instance name. I am guessing that MS does this by using different ports for each instance. I have it setup to use Windows Auth. I don't see that option in this

Re: Monthly Scheduled Task

2004-02-11 Thread Frank Mamone
There is a port ofWGET for WIN32. Beware though, it leaves a file for every call. Apparently,using the right options does eliminate this problem. -Frank - Original Message - From: Rob Rohan To: CF-Talk Sent: Tuesday, February 10, 2004 12:12 PM Subject: RE: Monthly Scheduled Task On

Re: SOT: Web server's www publishing service keeps shutting down

2004-02-02 Thread Frank Mamone
and produces a log file which we sent to them for analysis and found out what it was. Hope this helps, -Frank Mamone - Original Message - From: [EMAIL PROTECTED] To: CF-Talk Sent: Monday, February 02, 2004 4:42 PM Subject: Re: SOT: Web server's www publishing service keeps shutting down

HTMLDoc and Processes on CFMX

2004-01-16 Thread Frank Mamone
Has anyone else had problems with processes staying open when using HTMLDOC on CFMX? We use it on a high traffic site and it leaves several processes open eventually bringing down the services. As a work around we created a scheme that dynamically creates a batch file with a unique name to call

Strange problem with Oracle/WordXP

2003-12-12 Thread Frank Mamone
to upside down question marks. The problem does not occur on the CF 4.0 server. Can this be an ODBC driver problem or a setting withing CF5? Thanks! -Frank Mamone [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Strange problem with Oracle/WordXP

2003-12-12 Thread Frank Mamone
Hi Steve, Big Fat Varchars! I'm pasting into a web form in a CF application. Cheers! -Frank What are you pasting it into (Ektron, etc.)...Is this store in a BLOB, CLOB, or a big fat VARCHAR. Steve -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED] Sent: Friday

Re: Help with Transact SQL

2003-09-25 Thread Frank Mamone
PROTECTED]Sent: Thursday, September 25, 2003 9:41 AMSubject: Re: Help with Transact SQL you can use the following to update all rows at once: update tablename set uri_column = 'http://etc.com/etc' + uri_column - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED

Help with Transact SQL

2003-09-24 Thread Frank Mamone
from path2 on. Thanks in advance for your help. Frank Mamone ~| Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138371 Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com

Scheduled Tasks dissappear!!!!!!!!

2003-08-14 Thread Frank Mamone
For a couple of weeks now, my scheduled tasks dissappear Luckily I have a .car file which I can deploy. Any ideas? Frank Mamone ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http

Help! CFMX Admin Throws error

2003-07-30 Thread Frank Mamone
Hi, I can no longer use CFMC Administrator. I'm getting this error: Variable GETEDITION is undefined. The error occurred in C:\Inetpub\wwwroot\CFIDE\administrator\navserver.cfm: line 132 -1 : Unable to display error's location in a CFML template I appreciate any help. -Frank

REGEX

2003-07-27 Thread Frank Mamone
Hi all, I'm looking for a solution to strip the alpha from a string. The string is something like PTK191919. I need to get the part after the letters. Note the number of letters is not constant. I'll keep trying, but if you've done this type of thing before please let me know. Thanks, Frank

Re: REGEX

2003-07-27 Thread Frank Mamone
Thanks Dave. Works! I was trying to use REFIND. This is much easier. -Frank - Original Message - From: Dave Carabetta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, July 27, 2003 6:57 PM Subject: Re: REGEX Hi all, I'm looking for a solution to strip the alpha

Re: I knew your name was Neo

2003-07-09 Thread Frank Mamone
Same rules as CFMX Updaters. So, if you have a legal registered copy it will be free for you. -Frank - Original Message - From: Ben Koshy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 3:31 PM Subject: RE: I knew your name was Neo I would just like to

Re: Why can't COM just work in CFMX?

2003-07-08 Thread Frank Mamone
Do you have CFMX Updater 3 installed? - Original Message - From: Matt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 2:58 PM Subject: Why can't COM just work in CFMX? Ok, two lines that basically do the same thing, one in ASP and the other in CFMX: ASP:

Re: Why can't COM just work in CFMX?

2003-07-08 Thread Frank Mamone
According to this note http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenotes_mx _updater01.html they supposed to have solved that Automation error. Must be another cause with same error. -Frank - Original Message - From: Matt [EMAIL PROTECTED] To: CF-Talk [EMAIL

Help: CF Admin is down

2003-07-07 Thread Frank Mamone
Hello people, Strange problem this morning with CF Adminstrator MX Enterprise. I'm getting this error. Variable GETEDITION is undefined. Corrupt config file? Thanks, Frank Mamone ~| Archives: http://www.houseoffusion.com

Re: Schedule in MX

2003-06-18 Thread Frank Mamone
Hi Craig, Did you find a way to have WGET *not* produce the result files every time it runs? I tried every switch documented and can't get it right. Thanks, -Frank Mamone - Original Message - From: Craig Dudley [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 18

Re: MS AD

2003-06-18 Thread Frank Mamone
asked DN. :-) - Original Message - From: Michael T. Tangorre [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, June 17, 2003 7:04 AM Subject: Re: MS AD it stands for Distinguished Name. - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF

Re: MS AD

2003-06-16 Thread Frank Mamone
Just for reference, what is DC? - Original Message - From: Shahzad.Butt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 16, 2003 12:48 PM Subject: RE: MS AD Got it working. Dc was missing thx -Original Message- From: Shahzad.Butt Sent: 16 June 2003

Re: Consuming CFMX Web Services in ASP.NET

2003-06-11 Thread Frank Mamone
IMO, if ASP.NET cannot consume a Web Service built in CFMX, it greatly reduces the benefit of writing it in CFMX. I think the touted benefit of Web Services is that they can be consumed by the most common platforms, no? Can anyone confirm that they are incompatible? -Frank Mamone

Contract Question

2003-06-06 Thread Frank Mamone
I'm doing some contract work and I need a contract that will protect me. This must be standard for web development/software developement. Like if there's a bug in the program and they lose a sale, can I be sued or be held liable? I would appreciate any references. Thanks for your advice. Frank

A Little OT: Re: Contract Question

2003-06-06 Thread Frank Mamone
Associate Partner www.macromedia.com - Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday

Re: UNC / Share Path in CFFILE (CFMX)

2003-06-03 Thread Frank Mamone
and on the DBMS. In case you don't know, you can change what account the CF service is running under in the CF Application Service properties. Hope this helps, Frank Mamone - Original Message - From: Jeff Chastain [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 02, 2003

Re: DevCon 2003

2003-03-29 Thread Frank Mamone
How's the weather there in November? - Original Message - From: Candace Cottrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 28, 2003 3:11 PM Subject: OT: DevCon 2003 Got this from the CFDJ list: snipI just emailed MM the other day asking about DevCon and

Re: DevCon 2003

2003-03-29 Thread Frank Mamone
will vary from 30-60F. There should be decent skiing by that time. - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 29, 2003 4:28 PM Subject: Re: DevCon 2003 How's the weather there in November? - Original Message

Re: Verity Performance

2003-03-26 Thread Frank Mamone
In my experience, K2 's performance became more of a resource hog as more collections were added. We needed about 60 and it wasn't usable, so we switched to MS Full Text Indexing. Note that in my case, we weren't indexing documents just database tables. - Original Message - From: Jeff

Re: Remoting...

2003-03-17 Thread Frank Mamone
I see what your trying to do do, but somewhere, something has to poll to see if an update has happenned. How does the CFC know if there was an update? Do you mean a DB update? BTW, it's a great question. Looking forward to other's responses. -Frank - Original Message - From: Tim Blair

Re: CFMX Easter egg (I think)

2003-03-14 Thread Frank Mamone
It popped up on the list a few months ago. But, it wasn't a straight URL. There was an programmed way to get there through the pop up I think. - Original Message - From: Matt Robertson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 14, 2003 5:08 PM Subject: RE: CFMX

Re: Coldfuion journal archives

2003-03-13 Thread Frank Mamone
You need to write to them to ask for it. they change it periodically. - Original Message - From: Edwards Robert (air0rae) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 9:59 AM Subject: Coldfuion journal archives I'm trying to read the Cold Cup of Joe

Re: system integration

2003-03-12 Thread Frank Mamone
It all depends on your internal ticket system. We use Siebel here and we just completed a web Help Desk to be released soon. Let me know a little more and maybe I can help. Frank Mamone - Original Message - From: Tangorre, Michael [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

CFRETURN Problem

2003-03-12 Thread Frank Mamone
Just experimenting with CFC's. I'm using CFRETURN 0/ or CFRETURN True but getting this error on calling page: The value returned from function addLog() is not of type struct. Thanks, Frank ~| Archives:

CFRETURN Problem - SOlved

2003-03-12 Thread Frank Mamone
I apologize for wasting bandwidth:) I was copying and pasting samples and didn't know about the returntype attribute. -Frank ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFLOGIN - newbie question

2003-03-12 Thread Frank Mamone
Yes you can do it. http://www.macromedia.com/devnet/mx/coldfusion/articles/ntdomain.html - Original Message - From: Richmond, Pamela [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 1:30 PM Subject: CFLOGIN - newbie question I'm experienced w/CF but

Flash Remoting w/CF

2003-03-12 Thread Frank Mamone
We've been experimenting with Flash Remoting and MX and found that the performance is a little slow. We are using a CFC to get a recordset of about 700 and populating a combobox with it. Is there any known performance issues with Flash Remoting and where can I read about them. Thanks, Frank

Re: Com and CFMX

2003-03-12 Thread Frank Mamone
Updater 2 fixed alot of issues but there's still one for me where it doesn't release the object from memory for a few seconds. Not a real issue if your object is multi-threaded but a problem for me as the object I'm using is not. So ASP it is for the COM stuff. - Original Message -

Re: Com and CFMX

2003-03-12 Thread Frank Mamone
: RE: Com and CFMX even the updater did not help the server, ugh Thanks! Robert Bailey Famous for nothing -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 3:54 PM To: CF-Talk Subject: Re: Com and CFMX Updater 2 fixed alot

Strange CFC problem

2003-03-11 Thread Frank Mamone
I'm using CFINVOKE to call a CFC and I get an error saying that certain arguments are undefined when in fact they are. The error is: Element WATERCHANGE is undefined in ATTRIBUTES cfcomponent cfset DATASOURCENAME = #request.dsn# / cffunction name=addLog access=remote returntype=struct

Re: Strange CFC problem

2003-03-11 Thread Frank Mamone
: Frank Mamone [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 10:29 PM To: CF-Talk Subject: Strange CFC problem I'm using CFINVOKE to call a CFC and I get an error saying that certain arguments are undefined when in fact they are. The error is: Element WATERCHANGE is undefined

Re: This is DEFINITELY a faulty download file and install routine.

2003-03-08 Thread Frank Mamone
Michael, Sorry to hear that it's still not working. Did you try getting using install package from someone else in the group? -Frank - Original Message - From: Michael Kear [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 08, 2003 8:39 PM Subject: This is

Re: Payment Gateway

2003-03-06 Thread Frank Mamone
I use the Payflow Link from Verisign and am very satisfied. It's really been reliable and easy to setup. The payflow site is written in CF too! - Original Message - From: Michael Ross [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 06, 2003 4:16 PM Subject: Re:

Re: HELP -- CFMX Very High Queued Requests/Hanging

2003-03-04 Thread Frank Mamone
We having a similar problem on our servers. In our case it brings down the WWW service(NT). We are working with support but no solution yet. - Original Message - From: Jeremy Bruck [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 10:49 AM Subject: HELP --

Re: FREE BlueDragon Server Released!

2003-02-22 Thread Frank Mamone
Vince, I apologize if I missed your response on this, but my question was if CFMX and BlueDragon can co-exist on a development server for testing and maybe access blue dragon on a port other that 80? Thanks, Frank Mamone - Original Message - From: Vince Bonfanti [EMAIL PROTECTED

Re: SOAP, CF, ASP and web services

2003-02-20 Thread Frank Mamone
Just curious, do all web services with .NET require this procedure or is it only because it's written in CF? - Original Message - From: Scott Van Vliet [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 6:14 PM Subject: RE: SOAP, CF, ASP and web services

Re: OT - Canadian sales tax question

2003-02-18 Thread Frank Mamone
Here's the way Amazon.ca did it for me. It was shipped from outside the province so no PST. SubTotal: 32.89 SH :5.90 Total: 38.79 GST: 2.71 PST: 0.00 - Grand Total: 41.50 - Original Message - From: Bud [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: Anyone ever seen this error on CF 4.52

2003-02-18 Thread Frank Mamone
Did you move the box /change IP or did you rebuild on a new box? - Original Message - From: Debbie McDaniel [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 18, 2003 11:10 AM Subject: Anyone ever seen this error on CF 4.52 We have moved our production server

Re: CFMX Upgrade Woes

2003-02-17 Thread Frank Mamone
Are you using JDBC or ODBC Socket drivers? - Original Message - From: Candace Cottrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 17, 2003 2:51 PM Subject: CFMX Upgrade Woes I upgraded to CFMX from CF 5 last week. Everything seemed to be going ok until

Re: Developer Edition IP address

2003-02-14 Thread Frank Mamone
That's exactly what I need! I need to setup a Development server for 3 developers. Are you 100% sure that the CFMX license will accomadate at least 3 connections? Thanks! - Original Message - From: Christian Cantrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday,

The error that doesn't make sense

2003-02-14 Thread Frank Mamone
Some users sporadically get this message one EVERY page on our site. Error Occurred While Processing Request 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/4.0

Re: The error that doesn't make sense

2003-02-14 Thread Frank Mamone
this string seems to cause issues for some reason. Also make sure the link to this site is URLEncodedFormat() WG -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED]] Sent: 14 February 2003 16:45 To: CF-Talk Subject: The error that doesn't make sense Some users

Re: Developer Edition IP address

2003-02-14 Thread Frank Mamone
the following URLs: http://www.macromedia.com/desdev/subscriptions/licensing.html http://www.macromedia.com/desdev/subscriptions/resources/eula.html Christian On Friday, February 14, 2003, at 11:27 AM, Frank Mamone wrote: That's exactly what I need! I need to setup a Development server for 3

RE: Developer Edition IP address

2003-02-14 Thread Frank Mamone
. For more information on the DevNet EULA, see the following URLs: http://www.macromedia.com/desdev/subscriptions/licensing.html http://www.macromedia.com/desdev/subscriptions/resources/eula.html Christian On Friday, February 14, 2003, at 11:27 AM, Frank Mamone wrote: That's exactly

Re: Hosting Question

2003-02-11 Thread Frank Mamone
I had the same experience. - Original Message - From: Robert Bailey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 11, 2003 1:12 PM Subject: RE: Hosting Question Yeah, I used them for a while, nothing but problems with them and would not recommend them at

Re: Hosting Question --- sorry should have put the (OT) in the or iginal post

2003-02-11 Thread Frank Mamone
address can changebut other than that are there any recommendations anyone would have for not doing this. Security issues, things like that. I'd really like to get around paying for hosting when I have broadband access and all the software already... -Original Message- From: Frank

Re: Jeremy Allaire leaving MM

2003-02-05 Thread Frank Mamone
Where can I read about this? - Original Message - From: Rafael Alan Bleiweiss [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, February 05, 2003 8:32 PM Subject: Re: Jeremy Allaire leaving MM Just read this and understand his wanting to stretch and change... an

Re: CFML Forever!

2003-02-04 Thread Frank Mamone
Sounds great, but does it support every feature of CFMX? If so, why would I purchase CFMX since it's cost is so high? - Original Message - From: Vince Bonfanti [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 11:31 AM Subject: CFML Forever! I thought

Re: AAARRRGGGHHH!! Character Encoding

2003-02-03 Thread Frank Mamone
Did you install CFMX Updater 2 and using the JDBC drivers? We had a similar problem on our Intranet and that solved it. - Original Message - From: Bud [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 03, 2003 2:11 PM Subject: AAARRRGGGHHH!! Character Encoding I'M

RE: [OT] Resizable Flash Ad (Sample)

2003-01-30 Thread Frank Mamone
Hi Scott, Is the ad expanding or is it done with DHTML? -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 2:23 AM To: CF-Talk Subject: RE: [OT] Resizable Flash Ad (Sample) Here's a very simple example a Resizable Flash Ad. Example:

Re: cfreport...licensing issues?

2003-01-30 Thread Frank Mamone
We use this heavily on our Intranet. To be more productive we use a product called Recrystallize. It writes the input form which we discard and rewrite it with dynamic queries for the input form elements. We then use their ASP processing page which launches the viewer and report which is pretty

Re: [OT] Resizable Flash Ad (Sample)

2003-01-30 Thread Frank Mamone
the bigger shape off stage - any numerous creative ways. that really should help answer everything jay miller Frank Mamone wrote: Hi Scott, Is the ad expanding or is it done with DHTML? -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30

  1   2   3   4   >