RE: Debugger for Oracle storeprocedures

2003-08-14 Thread Dave Carabetta
Have you tried PL/SQL Developer from AllAround Solutions. http://www.allroundautomations.nl/products.html OraEdit Pro is really good too, and much cheaper than TOAD ($99 for single user license). It has built-in integration with all the major version control packages too, which is convenient.

Re: No more ColdFusion Professional?

2003-08-14 Thread Jochem van Dieten
Peter Tilbrook wrote: See: http://www.macromedia.com/macromedia/proom/pr/2003/cfmx_ship.html The ColdFusion MX editions have been streamlined as part of this update, so users can more easily select the option that fits their needs. ColdFusion MX 6.1 is available in both an Enterprise and

RE: cfquery not working after migrating from MySQL to MS SQL

2003-08-14 Thread Bryan F. Hogan
p.s. if your trying to do an update query, just change your query to update database not insert database -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 2:19 PM To: CF-Talk Subject: RE: cfquery not working after migrating from MySQL to MS

Redsky-Still issues with CFINSERT and CFUPDATE.

2003-08-14 Thread Angel Stewart
Hey all, We are still having issues with CFINSERT and CFUPDATE after installing Redsky. We uninstalled and reinstalled Coldfusion MX 6.1 after our first install attempt produced these errors. The system was updated to MDAC 2.7. We then installed CFMX and then applied the Redsky update.

FCan not connect to RDS with CFMX 6.1 on JRun

2003-08-14 Thread Stacy Young
For the life of me I can not figure out what the heck I'm doing wrong. I can get to the administrator just fine...I see the RDS app has deployed successfully at /CFIDE but when I try and connect, DWMX throws 5,000 HTTP errors (grrr). My admin

RE: XML Best Practices - Resources

2003-08-14 Thread Brad Roberts
Just because I like a certain format, doesn't mean it's the best way to do it. A good analogy is how data is stored in a database. Sure, I can store a persons full name in one field of my db, but it's better to store first, middle, and last names separately. So, I'm wondering if there are Best

RE: CF 6.1: Problem with Remote COM

2003-08-14 Thread Tim Soslow
Check to see if your COM is currently processing in the task manager. If it is, kill it. Is the COM registered on both the CF server and the remote server? Also make sure that coldfusion has priveleges to run the COM (using dcomcnfg). -Original Message- From: Fuzion - CFTalk

RE: Simple html question

2003-08-14 Thread John McCosker
Cheers Charlie that works :) -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: 12 August 2003 17:44 To: CF-Talk Subject: Re: Simple html question give this a try: table style=border:1px solid #00; charlie - Original Message - From: John McCosker

Re: SQL: Brain Teaser

2003-08-14 Thread Bud
CFQUERY DATASOURCE=??? NAME=getcomments SELECT U.UserID,Username,CommentID,Comment FROM Users U LEFT OUTER JOIN Comments C ON U.UserID = C.UserID Order By U.UserID, CommentID /CFQUERY CFOUTPUT query=getcomments group=UserID #UserID#,#UserName#CFOUTPUTbr#Comment#/CFOUTPUT /CFOUTPUT Perhaps this

SOT - Request Entity too large error on CF page

2003-08-14 Thread Ciliotta, Mario
Hi, I think this slightly off topic but I am getting an Request Entity Too Large error back from a CF page. I checked with the user and he is entering almost no data, basically just filling in a few (10) text boxes. If he sends me the data, I can successfully enter it but if tries he get

Re: CF 6.1 upgrade causes sitewide 500 error!! Pain!

2003-08-14 Thread Michael Dinowitz
Go to the services and see if the 2 MX ODBC services are running. If not, try to start them. If they fail, then go to the cfusion/db dir and do a search for any *.ini with the words merant in them. Change all references to c:\program files\merant to c:\cfusionmx\db (assuming the cfusionmx is in

CFMX performance issue

2003-08-14 Thread Alan Ford
I've raised the size of the template cache to 400 and raised the running thread count to 200 (from 200 and 96 respectively). Today we had several serious overloads at peak time (22k hits / hour, 500 connections). Alan ~|

RE: Okay, here's what I did Re: Inserting Currency Values...I bet this is a silly question...

2003-08-14 Thread David Collie (itndac)
And what if they have javascript turned off? Needs to be done server side as well (since you mention the error happens in an INSERT). -Original Message- From: Jeff [mailto:[EMAIL PROTECTED] Sent: 13 August 2003 20:23 To: CF-Talk Subject: Okay, here's what I did Re: Inserting Currency

RE: Sessions and CFCs

2003-08-14 Thread Raymond Camden
Some issues here. First, you need to var scope ALL variables not passed in as arguments, so you need to add cfset var verify_login = Now, notice how if verify_login has a recordcount of 0, the session vars won't set. Well, could that be the issue? Are you 100% sure you are sending a valid

RE: CFMX performance issue

2003-08-14 Thread Tim Soslow
This sounds like a CFLOCK problem. Do you have any exclusive locks in your code? If every once in a while, one process runs into a large loop within a cflock, it could potentially keep all other processes from continuing. Make sure that you are only exclusive locking when necessary and that

COM error

2003-08-14 Thread Dale Coyner
Folks, For some months we have been successfully using a server-side application for converting PowerPoint slides to JPG images. We control this conversion utility using the COM interface in CFMX. Recently, at varying intervals, the conversion fails and returns a long JSP error headed with the

More Client Variable Storage Troubles

2003-08-14 Thread Jillian Carroll
First I created a blank MySQL database, and configured it in the CF Admin to be the default store for client variables. CF couldn't create the tables automatically, so I found the code and did it manually. The variables weren't being written to the database, but instead, still written to the

Re: WOT: Demoing software

2003-08-14 Thread Marlon Moyer
We use camtasia studio for demoing and training of our web apps. It basically captures the screen to an avi file. We've made self booting cd's with menus and the whole shebang using this product. Now, it also has the added bonus of being able to produce swf files, although we haven't tried

Any good JRun mailing lists out there?

2003-08-14 Thread Stacy Young
I've got some very specific JRun questions/issues, anyone know of a good list? Lastest Issue: Appears the mime type handler in Apache doesn't really do anything AddHandler jrun-handler .cfm .cfc .jsp .cfml .jws If we remove .jsp, JRun still hogs all the jsp requests. What's the point of this

Re: Redsky-Still issues with CFINSERT and CFUPDATE.

2003-08-14 Thread Jochem van Dieten
David Schmidt wrote: We are experiencing similar weirdness with CFMX 6.1 and MS Access DSNs -- but ONLY when the datasources are passworded and passed username/password at runtime (in the tag). Strip away the database password in the MDB, set default username in the CFMX administrator

RE: Brain Teaser2

2003-08-14 Thread Bill Grover
That's pretty much how you do it in MS SQL (SQL7, SQL2000). The difference is that you use the database name, which may or may not be the same as your datasource name. So your example is more like: SELECT * FROM database1.dbo.anytable dt1 INNER JOIN database2.dbo.anytable dt2 ON

RE: Mach II 1.0 released

2003-08-14 Thread Tony Weeg
so do those files always have to right under the wwwroot? I have it like.. c:\inetpub\wwwroot\research\machII\contactManager\ and then the files are under there 3 of them, application.cfm | index.cfm | mach-ii.cfm and then the folders 4 of them, config | filters | model | views what am

Mach II 1.0 released

2003-08-14 Thread Freddys Garcia
Hal, I'll be honest.. your work is way beyond my scope, but thank you for addressing any possible problems. Where do you find the time of day. Thanks, Freddys Freddys, We need to enable this for international dates; we're doing that right now. Give us 30 mins. Hal Helms Java for CF

Re: When to switch databases??

2003-08-14 Thread Jochem van Dieten
Dave Watts wrote: On the other hand, if you're primarily using Access to store data for reporting purposes, and your site is more content than application, you might find Access serves you well, even with relatively large datasets. I'm sending this message through an MS Exchange 5.5 server,

Re: Problem calling CFC from .NET

2003-08-14 Thread Sean A Corfield
On Thursday, Aug 7, 2003, at 11:57 US/Pacific, Ruggiero, Kevin D. wrote: The problem with doing this from ASP.NET is that the CFC does not appear to maintain its state between the function calls. Of course not - Web Services are effectively stateless - you are creating a new instance for

ColdFusionMX 6.1 to JRUN with CFMX61/J2EE

2003-08-14 Thread Chris White
Is it possible to take a stand alone ColdFusionMX 6.1 Ent. to the full version of JRUN and ColdfusionMX 6.1 J2EE and not have to set everything back up, datasources, custom tag paths, ect.??? ~| Archives:

CFMX won't restart

2003-08-14 Thread Benoit Hediard
Hi everyone, Running CFMX6.1 on production. Pretty cool, except for one thing : each time we stop CFMX Service, there is no way to restart it except with a complete reboot of the server. We got the famous The ColdFusion MX Application Server service terminated with service-specific error 2. in

Re: XML Best Practices - Resources

2003-08-14 Thread Jochem van Dieten
Brad Roberts wrote: What's the best way to store phone numbers in XML? phone1234567890/phone or maybe... phone title=Main number=1234567890 ext=10 type=Mobile/ Is there a standard? ITU E164 (http://www.itu.int/) is the standard defining the format of a phone number. That would be a

RE: SQL: Brain Teaser

2003-08-14 Thread Bill Grover
What there are others!!! :-)) __ 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

RE: Good News: (was RE: Mach II 1.0 )

2003-08-14 Thread Andre Mohamed
Murat, There are plenty of resources covering OOP which are language agnostic and indeed OOAD is of course language neutral. I believe that's what Hal was referring to and even if he wasn't it's still a valid. I'm pretty sure there have been recommendations for OO books/resources on this list

Re: I sent this before and got no response...maybe someone can help?

2003-08-14 Thread Bryan Stevenson
yer right Tony..it's supposed to to produce a decimal value ;-) 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

RE: Verson control Software: What should I consider?

2003-08-14 Thread Sarsoun, Jeff
I use CS-RCS and find it does most of what you want. http://www.componentsoftware.com/ Jeff Sarsoun -Original Message- From: Kenneth Ketsdever [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 3:42 PM To: CF-Talk Subject: Verson control Software: What should I consider?

RE: Mach II 1.0 released

2003-08-14 Thread Tony Weeg
I don't have a mapping in my cfadministrator? what am I missing? is there some sort of install this this way freakin doc somewhere? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From:

RE: Mach II 1.0 released

2003-08-14 Thread Dave Carabetta
I'm puzzled too, Tony. All I've done is open the MachII_1_0_0.zip file and extract it to c:\inetpub\wwwroot. It happily installed all the files into folders under c:\inetput\wwwroot\machii. Dave Carabetta said I also had to unpack the contactmanager app, but there is already a contactmanager

RE: File management system in CF

2003-08-14 Thread Sicular, Alexander
I recently released such a system integrated into my medical record management system. The question you need to ask is whether or not you want fancy features like 'ocr' or document recognition capabilities. When buying a package like xerox offers you will probably get those features built in

RE: XML Best Practices - Resources

2003-08-14 Thread Brad Roberts
Can you elaborate on why? I've not done any xslt transformations. Is it because of the way you have to reference attributes? -Brad -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 3:32 PM To: CF-Talk Subject: RE: XML Best Practices -

Mach II 1.0 released

2003-08-14 Thread Freddys Garcia
Tony, I didn't change any file.. I figured I was suppose to though since it didn't seem to work for me.. freddy.what file did you change? and how? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337

Re: XML Best Practices - Resources

2003-08-14 Thread I-Lin Kuo
There's one significant difference between attributes and tag content. Tag content allows the possibility of extension via further subdivision in the future. For example, phone number=123-555-/, unlike phone number123-555-/number /phone cannot be extended to phone

Re: XML Best Practices - Resources

2003-08-14 Thread Calvin Ward
But couldn't phone number=123-555-/, be extended to phone number=555- areacode=123/? Just a thought :) - Calvin - Original Message - From: I-Lin Kuo [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 14, 2003 7:15 AM Subject: Re: XML Best Practices -

File management system in CF

2003-08-14 Thread Mary Jo Sminkey
You might want to take a look at DocuTrak, I think it might fit the bill, it includes a web-based component in Cold Fusion. http://www.ctiplanet.com/products/docutrak.cfm Mary Jo Sminkey [EMAIL PROTECTED] http://www.cfwebstore.com

RE: I sent this before and got no response...maybe someone can he lp?

2003-08-14 Thread DURETTE, STEVEN J (AIT)
This works for a select: declare @myTest varchar(10) set @myTest = '7/8' select (cast(left(@myTest, charindex('/', @myTest) - 1) as float) / cast(right(replace(@myTest, '', ''), len(replace(@myTest, '', '')) - charindex('/', @myTest)) as float) ) So your where would be: WHERE 0=0 AND

CFX_RawSocket issue w/eBay resolved!

2003-08-14 Thread Tony Schreiber
Yay! Now, why this made such a huge difference I don't know, but here's what I did: I changed HTTPRequest = HTTPRequest #Method# #Path# HTTP/1.1 to HTTPRequest = HTTPRequest #Method# #Path# HTTP/1.0 And presto! From 120 seconds to under 1 second. Tony Schreiber, Senior Partner

Detecting Flash

2003-08-14 Thread G-matcomkc
Is there a simple and effective way to programmatically determine in CF whether a user has installed the Flash player? TIA, Brian ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: File management system in CF

2003-08-14 Thread Ryan Kime
Whoa, that is pricey. You might want to check into http://www.canto.com/. They supposedly have good digital asset management software. Plus they just announced they are working with IBM to integrate with WebSphere, therefore you might be able to get CFMX 6.1 Enterprise (J2EE mode) to work with

RE: OT- RE: XML Best Practices - Resources

2003-08-14 Thread Tony Weeg
there is one in the yahoo groups...xsl-fo I think? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Bruce Rojas-Rennke [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003

RE: XML Best Practices - Resources

2003-08-14 Thread Bryan F. Hogan
It's getting late. Good Luck to me? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 4:46 PM To: CF-Talk Subject: RE: XML Best Practices - Resources yeh, but I moved on, got what I needed to work to work, and now looking back it wasn't soo

RE: Mach II 1.0 released

2003-08-14 Thread Tony Weeg
freddy.what file did you change? and how? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Freddys Garcia [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 10:37 AM

sql help, easy one

2003-08-14 Thread Tony Weeg
If I wanted to change the datatype of a column that is BigInt and change it to int is this possible with an alter table query? thanks/ tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337

RE: Mach II 1.0 released

2003-08-14 Thread Stacy Young
Dropping the framework files into a custom tag path should also work and possibly more convenient for ya. Stace -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 2:17 PM To: CF-Talk Subject: RE: Mach II 1.0 released GOT IT! finally

Re: Mach II 1.0 released

2003-08-14 Thread Matthew Walker
I hate to go on about it, but this version still doesn't use the standard location for CFC's[*], preferring to put them in /MachiII instead. So how does that work for geographical domains? e.g. electricsheep.co.nz -- is the accepted practice to use nz.co.electricsheep? Or com.electricsheep?

testing to see if cfid and cftoken already exist in database

2003-08-14 Thread Tim Laureska
I'm trying to get my head around client variables ... in a scenario where they're placed in a database for later testing for existence ... but I can't figure out how to test for there existence??? I know this is probably a no-brainer, but that would be me at this point Here's how I'm insert them

RE: File management system in CF

2003-08-14 Thread Mark Stewart
I have yet to find a decent one and may go a completely different route. We are considering using Docushare (by Xerox http://www.xerox.com/go/xrx/equipment/product_details.jsp?prodID=DocuShare). It's really pricey (about 60k), but it really does everything you need. I'm still searching for a

RE: Mach II 1.0 released

2003-08-14 Thread Tony Weeg
like a zombie walkingout of a dark tunnelll must get core filesmust get core files. thanks... tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Critz [mailto:[EMAIL

RE: XML Best Practices - Resources

2003-08-14 Thread Tony Weeg
yeh, all that gobbledyGOOP xsl:value-of select=[EMAIL PROTECTED]/ at the time, was just more than I felt like devouring...so, I loved the simple value-of's ... plus I was dealing with multiple rows/attributes and had to loop through them all, and at the time I was finishing a huge project and

Re: Caller access to query

2003-08-14 Thread Bryan Stevenson
before tag. cfset Request.MyQuery = MyQuery 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

RE: Mach II 1.0 released

2003-08-14 Thread B G
Has anyone noticed www.mach-ii.com not available? 8-13-03 5pm Central Time. _ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail

Caller access to query

2003-08-14 Thread Venable, John
Is there a way to access an existing query recordset from a custom tag called on the page? So if I have a query in a page, and I call a custom tag, can i use the query data through come sort of caller scope object? I can't seem to make it work. Thanks John Venable

RE: cfquery not working after migrating from MySQL to MS SQL

2003-08-14 Thread Bushy
That worked! Thanks On Wed, 13 Aug 2003 14:16:56 -0400, Bryan F. Hogan wrote: You need to have it say insert into not just insert -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 2:08 PM To: CF-Talk Subject: re: cfquery not working after

RE: Moving from MySQL to MS SQL Server 2000

2003-08-14 Thread Bryan F. Hogan
Bushy, double check that your datasource is pointing to the correct database. -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 9:45 AM To: CF-Talk Subject: RE: Moving from MySQL to MS SQL Server 2000 HmmmI just changed all the table names to

Re: Any other (java) HTTP tags besides CFX_RawSocket?

2003-08-14 Thread Tony Schreiber
Yes. But it doesn't support SSL which I need (eBay) and it looked quite daunting. ;) There were a hella lot of classes. Guess I'll have to poke in it a bit harder. Have you checked out HTTPClient yet? -Matt On Wednesday, August 13, 2003, at 12:37 PM, Tony Schreiber wrote: I can't seem to

RE: Moving from MySQL to MS SQL Server 2000

2003-08-14 Thread Ben Forta
Execute sp_tables and see what tables get returned, make sure tbllogin is listed. -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 9:45 AM To: CF-Talk Subject: RE: Moving from MySQL to MS SQL Server 2000 HmmmI just changed all the table

RE: XML Best Practices - Resources

2003-08-14 Thread Tony Weeg
yeh, but I moved on, got what I needed to work to work, and now looking back it wasn't soo crazy hard, just needed the right assistance! good luck!!! tony tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337

Re: Quick SQL Sum Question

2003-08-14 Thread Alan Ford
To use SUM( ) the column in question MUST be numeric type (int, decimal, float etc). It doesn't have to be - this works (as long as all the rows can be cast) - select sum (cast(Value as decimal)) as val Regards, Alan Ford

Encryption on unix

2003-08-14 Thread Smith, Don , CTR , WHS/PSD
Our Unix admins over here are completely overworked. I have not worked directly with this previously, so I have to ask the CF multitudes... I used the cf_crypt on an old windows server. It used a dll file to handle the decryption part. Is there a similar downloadable custom tag that utilizes

RE: XML Best Practices - Resources

2003-08-14 Thread Ian Skinner
Or you could do this phone type=home country??/country citycodecitycode area916/area exchange338/exchange number1234/number extension34/extionsion /phone I'm not sure about best practices... but I do remember from my XML studies, it depends on

viewing cf pages in local browser

2003-08-14 Thread cf
after battling this dam virus and reinstalling everything i have a quick ? i didnt install IIS this time and installed cfmx 6.1 as a stand alone server. My question is what do i need to do to view these pages locally (xp pro dwmx). What i mean is that i can view them if i manually change the

Re: XML Best Practices - Resources

2003-08-14 Thread Michael T. Tangorre
I have been reading up on XML and there seems to be alot of people that favor more of an element approach as apposed to an attribute approach. phone typemobile/type number555-555-/number extension1234/extension /phone Mike - Original Message - From: Brad Roberts

MX 6.1 custom tags?

2003-08-14 Thread Kris Pilles
Where do custom tags live in 6.1 Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED] ~| Archives:

RE: Mach II 1.0 released

2003-08-14 Thread Mike Kear
Looks like exactly the same place I got an error, Freddys, but you got a different message to me. Both of our setups fell over at line 29 on AppLoader.cfc. Mine because a string isn't a date, and yours because it's null. Cheers, Michael Kear Windsor, NSW, Australia AFP Webworks.

re: cfquery not working after migrating from MySQL to MS SQL

2003-08-14 Thread Bushy
What's wrong with this. It's giving me a syntax error. SYntax error near the keyword 'SET'. cfquery name=update_alias DATASOURCE=database INSERT database SET

Re: XML Best Practices - Resources

2003-08-14 Thread Massimo Foti
Brad Roberts [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] What's the best way to store phone numbers in XML? phone1234567890/phone or maybe... phone title=Main number=1234567890 ext=10 type=Mobile/ Is there a standard? Best practice? Does anyone know of resources that would

Redsky-Still issues with CFINSERT and CFUPDATE.

2003-08-14 Thread dcooper
We're on it. The issue number is #53257 for reference. I have it with an engineer now. Well -- Macromedia has acknowledged it as a bug -- from my Forums postings and my back and forths with Christine Lawson @ MM, please see: http://webforums.macromedia.com/coldfusion/messageview.

RE: Moving from MySQL to MS SQL Server 2000

2003-08-14 Thread Craig Dudley
Forgive me if I'm wrong , but double and triple check the datasource is actually pointing at the correct database ;-) -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: 13 August 2003 14:45 To: CF-Talk Subject: RE: Moving from MySQL to MS SQL Server 2000 HmmmI

RE: Caller access to query

2003-08-14 Thread David Collie (itndac)
why not pass it in as an attribute? -Original Message- From: Venable, John [mailto:[EMAIL PROTECTED] Sent: 13 August 2003 17:45 To: CF-Talk Subject: Caller access to query Is there a way to access an existing query recordset from a custom tag called on the page? So if I have a query in

RE: Good News: (was RE: Mach II 1.0 )

2003-08-14 Thread Charlie Griefer
-Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 4:58 AM To: CF-Talk Subject: RE: Good News: (was RE: Mach II 1.0 ) snippage But I'm sure you can get by without knowing anything about OOP, just as CF programmers have since CF1.0. It's

OT: NEED HELP WITH SELLING CF TO MAJOR COMPANY

2003-08-14 Thread Don
I second. I need some help or guidance where I can get some information, documentation, and imagery on the Architecture of CF MX. I am doing a code review for a Client and I would like to help them keep the CF application that they have designed in the company, and make the case for them to not

Multiple instances of CFMX - licensing

2003-08-14 Thread pcosta
Licensing is per 2 CPUs. So if you're running it on a dual box, one CF Enterprise license is sufficient, no matter how many instances you are running. If you're running it on a quad box, you'd need two licenses (2x2=4), no matter how many instances. Phil

RE: Objects Everywhere!

2003-08-14 Thread Rich Z
Umm, not sure really. Lemme throw out an extreme example. Let's say a user (to further the illustration below) has 230 bookmarks. Let's also assume that there are all sorts of properties associated with a bookmark (e.g. description, date added, title, url, etc.) but all I need to display are the

RE: CFMX 6.1 on RedHat Didn't work. Need Updater 3 for Linux

2003-08-14 Thread Stacy Young
Hey, tell him MM is offering free install support for 6.1! Stace -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 6:11 AM To: CF-Talk Subject: CFMX 6.1 on RedHat Didn't work. Need Updater 3 for Linux oi CF-Talk,!! figured i'd squeeze it all

Re: MM Exchange lack of proper nav Suggested Design Change

2003-08-14 Thread Sean A Corfield
On Thursday, Aug 7, 2003, at 21:42 US/Pacific, Rafael Bleiweiss wrote: Sean, thanks for getting quick action on this issue it was one of the most frustrating. With the bread-crumb I can now at least feel better about diving in. Glad it's an improvement. What are the odds that the other

RE: Cold Fusion Studio 5 CFMX tag updater?

2003-08-14 Thread Peter Tilbrook
Not gospel but the HomeSite+ updater should work on CF Studio 5 (oh I miss it - still installed - no longer used - nobody does it better than HomeSite+ - blame MM for dropping Studio however. Follow the install instructions VERY carefully and you will have CFMX version 1 (ie: ColdFusion 6.0

Re: OT: NEED HELP WITH SELLING CF TO MAJOR COMPANY

2003-08-14 Thread David Delbridge
Could a little name-dropping help your sales pitch? Visit Ben Forta's website for an exhaustive list of Who's Using ColdFusion? -- BMW, Ford, Sanyo, etc. -- at http://www.forta.com/cf/using/ Best of luck! -- David M. Delbridge Circa 3000 ColdFusion Hosting http://www.circa3k.com Sean A

Re: Apache + cfmx j2ee problems

2003-08-14 Thread Sean A Corfield
On Friday, Aug 8, 2003, at 13:21 US/Pacific, Dave Watts wrote: I'm not very knowledgeable about Apache either, but on my machine, I've got the JRunConfig Serverstore and JRunConfig Bootstrap stuff enabled in the first IfModule directive, not in the VirtualHost directives. Yes, unless it

Redsky-Still issues with CFINSERT and CFUPDATE.

2003-08-14 Thread David Schmidt
Jochem wrote: Have you tried the unicode drivers? No, not yet...Do you think it will make a difference? Who do we report this to at Macromedia? http://www.macromedia.com/support/contact/ Thanks. :) ...David ~| Archives:

Call webservice via javascript

2003-08-14 Thread Kris Pilles
Does anyone have an example of calling a webservice with javascript? Thanks Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED] ~| Archives:

Re: Database layout question...

2003-08-14 Thread Paul Giesenhagen
Create PageTable -- pageID, content Fuse Table (this table brings the pages and sections together) -- fuseID, sectionID, pageID Section Table -- sectionID, sectionName Then, you can call ALL pages that have sectionID = XX Thus, a

Re: Database layout question...

2003-08-14 Thread Matt Robertson
I did a thing I called 'mirroring' wherein the user decides individually whether or not a page somewhere else should be shown in the current location. The page record has a 'mirror' field that, if an ID is in there, then that ID is used for data retrieval rather than the 'true' current page.

No more ColdFusion Professional?

2003-08-14 Thread Peter Tilbrook
See: http://www.macromedia.com/macromedia/proom/pr/2003/cfmx_ship.html The ColdFusion MX editions have been streamlined as part of this update, so users can more easily select the option that fits their needs. ColdFusion MX 6.1 is available in both an Enterprise and Standard edition. Peter

RE: Shared Windows Hosting - Licensing

2003-08-14 Thread Josh Remus
I hate to say it, but I kind of doubt MOUS certification (Microsoft Office User Specialization) would count for MCP in this case, but regardless, getting an MCP is not a big deal. -Original Message- From: cfhelp [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 4:53 PM To:

RE: Page Expiring when back button used

2003-08-14 Thread Qasim Rasheed
Hello Try this cfheader name=cache-control value=7200 -Original Message- From: Dustin Snell [Unisyn Software, LLC] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 7:35 PM To: CF-Talk Subject: Page Expiring when back button used Hello All, Using CFMX 6.1 on Windows 2003

Add C++ CFX in 6.1

2003-08-14 Thread Sean Daniels
Just did an install of 6.1. I am trying to add a CFX tag in admin and getting this response: You must configure your application server to enable native CFX support. For instructions, see Configuring ColdFusion MX in the Installing and Using ColdFusion MX book for your application server. I

Client Variable Storage Configuration

2003-08-14 Thread Jillian Carroll
Hey all! I'm trying to migrate a server from using the Registry for client variable storage to using either cookie or ODBC. What's the best action plan? I've been searching the web for a good 'how-to' guide... does anybody know of / have one? I'd love to learn some 'best practice' tips. --

SES dummy file names

2003-08-14 Thread DougF
What would the best SES friendly replacement for spaces in a string being used as a dummy file name. SESconverter.cfm is being used on a FB3/CF5 application? Should the space be REReplaced with an underscore, a dash, or...? Example: String: Kirk Creek National Forest Dummy file name:

Re: pricing (was Re: Multiple instances of CFMX - licensing)

2003-08-14 Thread Jochem van Dieten
Matt Liotta wrote: You bring up a good point I haven't thought of till now. Previously, CFMX Enterprise was licensed on a per server basis meaning that if you had a 4 CPU box the price was still only 5k. However now, I believe CFMX Enterprise will cost you 12k on a 4 CPU box. Ouch!

RE: Separating IIS from CF

2003-08-14 Thread Stacy Young
Some folks will say it's no more secure than having it all on one box...but I believe it *does* offer you the opportunity to at least *implement* additional security if need be...although simply separating the two and having them in the same network segment is not going to do much for you. In our

Repost: Regular Expression Help

2003-08-14 Thread Patricia G . L . Hall
I tried to post this yesterday from the archives and I screwed it up. So.. reposting. I am dealing with a site that has been ripped apart by search and replace in Homesite+. Tags that used to look like: td select name=sel_costarts size=20 class=formSelectColumnsLarge td

URLSessionFormat adding ?NULL to URL

2003-08-14 Thread Andy Ousterhout
Why would URLSessionFormat add ?NULL to URL instead of a session ID? Andy ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Convert number to Hex numbers??

2003-08-14 Thread Tony Weeg
so cfscript /** * Converts from decimal(base10) to hexadecimal (base16). * * @param strDecimal number to convert to hexadecimal. * @return Returns a string. * @author Rob Brooks-Bilson ([EMAIL PROTECTED]) * @version 1, November 6, 2001 */ function DecToHex(str){ return

RE: File management system in CF

2003-08-14 Thread Dave Watts
I have yet to find a decent one and may go a completely different route. We are considering using Docushare (by Xerox http://www.xerox.com/go/xrx/equipment/product_details.jsp?prod ID=DocuShare). It's really pricey (about 60k), but it really does everything you need. I'm still searching

RE: What type of cookies does MX automatically set?

2003-08-14 Thread Stacy Young
Dave I think the JSESSION is just a long integer. I may be wrong but I think only CTOKEN is UUID if set that way in the admin. Stace -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Saturday, August 09, 2003 2:37 PM To: CF-Talk Subject: RE: What type of cookies does

  1   2   3   4   5   6   7   8   9   10   >