Return Variables for CFCs

2002-09-23 Thread Alexander Sherwood
Question: When returning variables from CFCs, has anyone figured out a decent way to wrap the return variable in a container? I've done something like this, but it gets to be a pain in the a*s duplicating the code: cfscript stReturn = structNew(); stReturn.bOK = 1;

Re: Return Variables for CFCs

2002-09-23 Thread Alexander Sherwood
At 03:18 PM 9/23/2002 -0400, you wrote: At 03:12 PM 9/23/2002 -0400, you wrote: Question: When returning variables from CFCs, has anyone figured out a decent way to wrap the return variable in a container? I've done something like this, but it gets to be a pain in the a*s duplicating

Re: Return Variables for CFCs

2002-09-23 Thread Alexander Sherwood
At 12:26 PM 9/23/2002 -0700, you wrote: On Monday, September 23, 2002, at 12:12 , Alexander Sherwood wrote: cfscript stReturn = structNew(); stReturn.bOK = 1; stReturn.details = ''; stReturn.result = ''; /cfscript Why not use exceptions for the error case? I

RE: Return Variables for CFCs

2002-09-23 Thread Alexander Sherwood
At 03:14 PM 9/23/2002 -0400, you wrote: If you want to indicate a failure in your CFC, why not simply cfthrow an error? You can set both a type, details, and message for the error. Sounds good. Thanks, Jedi. Another question, since you're the Jedi master: If I create a complex data type via a

RE: Return Variables for CFCs

2002-09-23 Thread Alexander Sherwood
At 04:02 PM 9/23/2002 -0400, you wrote: At 03:14 PM 9/23/2002 -0400, you wrote: If you want to indicate a failure in your CFC, why not simply cfthrow an error? You can set both a type, details, and message for the error. Sounds good. Thanks, Jedi. Another question, since you're

RE: WYSIWYG html editor applet?

2002-09-23 Thread Alexander Sherwood
At 03:09 PM 9/23/2002 -0500, you wrote: Try one from these guys. Just the framework, not a lot of fluff. Good under the hood info, too. http://webfx.eae.net I don't think any of these 3 are Java based. I'm also looking to purchase a JAVA or Flash based WYSIWYG html editor if anyone has

CFTRY in CFCs

2002-09-23 Thread Alexander Sherwood
Am I correct to assume that all processing for a UDF stops if an error is thrown with CFTHROW? Meaning that the CFRETURN statement is not needed? What about an error that is caught within a CFCATCH bloc?. Am I correct in assuming that, unless I throw a custom error, I must return something

Log File Option missing in CF Administrator

2002-09-25 Thread Alexander Sherwood
Strange: Log File option is missing in the CF Administrator (CFMX). WinNT. Only similar forums post was Unix permissions issue. The options to set the log files directory and log settings are there, but no option to view/filter the log files. Anyone else see this before? Thanks,

ToString() function and XML Nodes

2003-02-27 Thread Alexander Sherwood
Is there a way to get CF to not return the xml version=1.0 encoding=UTF-8 declaration node when using ToString() on a XML Document Object? Thanks! -- Alex Sherwood PHS Collection Agency THE COLLECTORS T: 301.215.4200 F: 301.664.6834 W: www.phs-net.com

Moving Elements from one XML Document to another?!

2003-02-27 Thread Alexander Sherwood
Anyone know a way to move or copy and XML Element node from one XML document to another (other than the crazy series of ToString() conversions?). Thanks, -- Alex Sherwood PHS Collection Agency THE COLLECTORS T: 301.215.4200 F: 301.664.6834 W: www.phs-net.com

Re: PHP versus CF Development Speed?

2003-02-27 Thread Alexander Sherwood
At 02:28 PM 2/27/2003 -0500, you wrote: Anyone have any good case studies or articles explaining development time coparisons between CF and PHP? I've statistics stating ASP takes 60% more dev time than CF. Anyone have any numbers comparing CF to PHP? At least 60%, I would imagine! ***Sterling

Re: Access date issue

2003-02-27 Thread Alexander Sherwood
At 11:54 AM 2/27/2003 -0800, you wrote: Trying to query a database to get all the records where the bdate is in the same month and year. This example is only the month. But it is not working what am I missing. I am using CF5 and Access CFQUERY datasource=#application.db# name=howmany select

RE: Access date issue

2003-02-27 Thread Alexander Sherwood
At 12:01 PM 2/27/2003 -0800, you wrote: The error I am getting is : Error resolving parameter BDATE Make sure bdate is a valid variable in your template! At 12:00 PM 2/27/2003 -0800, you wrote: you may need to put a # around the date if it is a date field in access.. ex..

Re: Whats wrong with this code?

2003-02-27 Thread Alexander Sherwood
At 01:09 PM 2/27/2003 -0700, you wrote: What is the error you are getting? There are some serious design issues with your DB if everything is a VARCHAR, LONG LIVE VARCHAR! ~| Archives:

Re: CFC's and transactions

2003-02-28 Thread Alexander Sherwood
At 03:21 PM 2/28/2003 +, you wrote: I'm still trying to work out how I can build on CFC's for my new site template system, and I was worried to read something on the list recently saying that CFC's have problems calling methods in parent components. Say I've got a 'people' DB table, with

Re: Response.Buffer?

2003-02-28 Thread Alexander Sherwood
At 10:17 AM 2/28/2003 -0600, you wrote: I am re-writing a bunch of ASP code into CF and it has been quite a while since I wrote ASP code. Each of the files I am working on have a line at the top that says Response.Buffer = True with a comment stating that 'all content should always be buffered'.

RE: XPath in CFMX

2003-03-12 Thread Alexander Sherwood
At 07:45 AM 3/12/2003 -0600, you wrote: I don't know what parser CFMX uses, though since I know nothing about the details of parsers, if I did know the name of the parser they are using, that wouldn't help me one iota (-; The Xpath example you are using below is not quite what I am after.

RE: XPath in CFMX

2003-03-12 Thread Alexander Sherwood
At 11:19 AM 3/12/2003 -0600, you wrote: That's sort of what I was afraid of. If it's legal XPath syntax, then why doesn't the XmlSearch function support it? Is it a weakness in MX, or is this a deliberate omission? And does anybody know if MM has plans to support this in the future? Well, i

RE: XPath in CFMX

2003-03-12 Thread Alexander Sherwood
missing? -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 1:47 PM To: CF-Talk Subject: RE: XPath in CFMX At 11:19 AM 3/12/2003 -0600, you wrote: That's sort of what I was afraid of. If it's legal XPath

RE: XPath in CFMX

2003-03-12 Thread Alexander Sherwood
At 01:42 PM 3/12/2003 -0800, you wrote: Uh, //[EMAIL PROTECTED] and //rule/@name aren't equivalent XPATH expressions. The first is all element rule nodes which have a name attribute while the second is all name attribute nodes belonging to a rule element node Running this with your example

RE: DevCon 2003

2003-03-28 Thread Alexander Sherwood
At 02:51 PM 3/28/2003 -0500, you wrote: Goodness, this may change a lot. If it's still going to be in Sept., we only have 6 months to go (and one week to budget for it) They had the dates on literature at DevCon 2002. This means the contract was signed 1-2 years in advance, as large events like

Re: DevCon 2003

2003-03-31 Thread Alexander Sherwood
At 10:08 AM 3/30/2003 -0700, you wrote: You run a chance of not having decent snow in Nov. in Salt Lake. I think its a HUGE mistake to have it in Salt Lake. For one, not every one skis, and unless you want to bring your ski equipment with you, the cost of enjoying other events at the venue

RE: DevCon 2003

2003-03-31 Thread Alexander Sherwood
At 10:10 AM 3/31/2003 -0600, you wrote: Just out of curiosity, Kevin, what is your ethnicity, and religious faith, if I may ask? As for Bryan's Comments: I agree with Adam and Dave, that this list should not be subject to Fantasyland, Tree-huggin communist views. I'm sure Mike D could set up

Missing Web Service Operation

2002-11-13 Thread Alexander Sherwood
I am baffled: A CFC that executes perfectly when invoked as a component from the host machine fails to execute when invoked as a web service from another CFMX server. Here is the error message: Web service operation retTextBox with parameters..{params listed here}could not be found.

RE: Missing Web Service Operation

2002-11-13 Thread Alexander Sherwood
At 01:26 PM 11/13/2002 -0500, you wrote: I've tried renaming the method, and tried to access other methods in the CFC to no avail - cant find any of the methods in the CFC. I removed the Web Service from the CF Admin, restarted the CF service, re-added the service and nada.

CFTHROW with Webservices

2002-11-13 Thread Alexander Sherwood
When using CFTHROW with Web Services, is there a way to trim down the error message returned? When called as a component, the cfcatch.detail and cfcatch.message are fine, but when called as a web service, they are loaded with AXIS fault codes, etc. How has anyone else handled this? Thanks!

Re: CFTHROW with Webservices

2002-11-13 Thread Alexander Sherwood
At 11:24 AM 11/13/2002 -0800, you wrote: I debated on whether or not to adopt this methodology (structure-based return variables), but decided to go with the cftry/catch. Might have to rethink this now. Thanks for the insight. On Wednesday, Nov 13, 2002, at 10:57 US/Pacific, Alexander

Re: Missing Web Service Operation

2002-11-13 Thread Alexander Sherwood
At 04:08 PM 11/13/2002 -0500, you wrote: Are all your arguments required? Remember that web services treat all arguments of a component function as required. I actually had no arguments defined in the function call. I pass all fields as an argumentsCollection struct. Do you see this as being a

Invoking: Web Service vs. COMPONENT

2002-11-13 Thread Alexander Sherwood
Is there a way at runtime to determine if a CFC is being invoked as COMPONENT object or a Web Service? I suppose to could pass the method as an argument, but that opens room for passing the wrong type. Thanks, -- Alex Sherwood PHS Collection Agency THE

LSIsCurrency Bug?!?!?!?!

2002-11-22 Thread Alexander Sherwood
The LSIsCurrency function returns YES when passed the following string: 125..25. Two periods? Since when is that a valid currency for the US/English locale?! Anyone have any ideas? Thanks, -- Alex Sherwood PHS Collection Agency THE COLLECTORS 301.215.4200 T

Re: LSIsCurrency Bug?!?!?!?!

2002-11-22 Thread Alexander Sherwood
LSIsCurrencyFormat within A CFTRY block to trap the error (with $ and commas removed). I will try the LSParse and see how it works... Thanks! - Original Message - From: Alexander Sherwood [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, November 22, 2002 10:35 AM Subject

IIF() and IsDefined()

2003-04-04 Thread Alexander Sherwood
Help: #IIF(StructKeyExists(struct, 'keyname'),DE(struct.keyname),DE('no key'))#.fails if the key is not present. BUT, cfif StructKeyExists(struct, 'keyname') #struct.keyname# cfelse no key /cfif doesn't. Am I missing something about IIF() and DE()? It looks as if both

Re: encrypting stored data

2003-01-30 Thread Alexander Sherwood
At 09:21 AM 1/30/2003 -0500, you wrote: What methods are being used by everyone to encrypt data before storing it in a MS SQL database? Has anyone used Blowfish encryption algorithm? Thank You, Dave Bosky ~Sr. Multimedia Web Designer ~HTC Web Services ~[EMAIL PROTECTED] ~office: 843.369.8613

CFMX JDBC Drivers

2002-07-22 Thread Alexander Sherwood
Man, this is maddening. I have CFMX installed on a Win2K box that can make JDBC connections using the supplied drivers to several different SQL Server 2000 boxes. I cannot, however, make a connection to an instance of SQL Server 2000 Enterprise Edition. A thread on the CF Forums had several

RE: CFMX JDBC Drivers

2002-07-22 Thread Alexander Sherwood
Macromedia Certified Instructor Certified Advanced ColdFusion 5 Developer Fig Leaf Software 1400 16th St NW, # 500 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 5:12 PM To: CF-Talk

RE: CFMX JDBC Drivers

2002-07-22 Thread Alexander Sherwood
At 05:24 PM 7/22/2002 -0400, you wrote: I have CFMX installed on a Win2K box that can make JDBC connections using the supplied drivers to several different SQL Server 2000 boxes. I cannot, however, make a connection to an instance of SQL Server 2000 Enterprise Edition. A thread on

RE: CFMX JDBC Drivers

2002-07-22 Thread Alexander Sherwood
At 03:01 PM 7/22/2002 -0700, you wrote: Simon said it: 1) Make sure the RDBMS is running SP2. I ran into this problem during Beta 2, and Raymond Camden pointed this out. If you don't have SP2, you can download it here: http://www.microsoft.com/sql/downloads/2000/sp2.asp Thanks! Installing

RE: CFMX JDBC Drivers

2002-07-23 Thread Alexander Sherwood
At 09:55 AM 7/23/2002 -0400, you wrote: Just a sanity check: be sure your SQL Server is configured to accept TCP/IP socket connections (rather than Named Pipe connections) and is not set to Trusted Authentication Only. Thanksit was configured properly all around. Installing SP2 did the

Re: MX inSite Magazine

2002-07-23 Thread Alexander Sherwood
At 11:38 AM 7/23/2002 -0400, you wrote: You'd figure the site would run of CFMX...nope! Problem is, they want your credit card to get the FREE issue. I don't want to do that. Dave - Original Message - From: Chambers, Bryan (NE) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: Mach II

2003-07-29 Thread Alexander Sherwood
At 06:25 PM 7/29/2003 +0100, you wrote: I had a quick look at the example too. It seems like machII is really adding a lifecycle to cfcs?? Am I wrong? WG I always thought that Fusebox was a little too much. It was a little overkill for most CF apps, and it often confused developers and

Page Context Bug?

2003-08-01 Thread Alexander Sherwood
That sort of stuff will be resolved as Mach II nears release - and it will almost certainly require Red Sky (because of the page context bug, mainly). What is the behavior (or lack thereof) of this bug?! Thanks.. -- Alex Sherwood PHS Collection Agency THE

RE: Page Context Bug?

2003-08-01 Thread Alexander Sherwood
: www.camdenfamily.com/morpheus/blog Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 6:53 AM To: CF-Talk Subject: Page Context Bug? That sort

Re: Page Context Bug?

2003-08-01 Thread Alexander Sherwood
At 11:19 AM 8/1/2003 -0400, you wrote: When JSPs are created they have no relationship to a request and its subsequent response. Thus, they need a context to tie the request and response to themselves. The Servlet engine does this by providing a PageContext object. Since CFMs -- and

Re: Braindead stripping question

2003-08-06 Thread Alexander Sherwood
At 10:59 AM 8/6/2003 -0500, you wrote: Mustgetmorecoffee... I have a variable passed, ie SG101 or SG 1004 I have to strip the first two characters as those are always constant. So I can't use right() since the numerical portions after the reliable two characters may fluctuate in

OT: Just Plain Dumb HTML/JS Question

2003-08-06 Thread Alexander Sherwood
I know it's off topic, but some here has probably done this: HTML page with multiple named anchors: a name='A1' a name='A2' How can you navigate to them using a select box in another frame?!?!\ I've tried using frames[0].window.location.href = {anchor name}, but it re-requests the page from

Re: OT: Just Plain Dumb HTML/JS Question

2003-08-14 Thread Alexander Sherwood
At 11:45 AM 8/6/2003 -0400, you wrote: oi Alexander!! index.cfm#A1 no? Tried it: select name=sel onChange=window.frames[0].location.href = 'index.cfm#A+this.value Each option has values 1-N, where the value is appended to create the anchor name. BUT, instead of navigating to the

Re: XSLT question

2005-08-22 Thread Alexander Sherwood
{listen} is an attribute template in XSLT. I represents an attribute of the current context node. -- Alex Rick Root wrote: How do I do this with XSLT? xsl:template match=//track a href=/jukebox/audio/player.cfm?filename=xsl:value-of select=listen/ target=_blanklisten/a /xsl:template

Re: Loop through a structure of structures

2005-10-12 Thread Alexander Sherwood
Try this: [CFLOOP collection=RSStructure item=itm] [cfset thisQuery =RSStructure[itm]] [cfoutput query =thisQuery] .. query output code here [/cfoutput] [/CFLOOP] Hope this helps. -- Alex Andy Mcshane wrote: Hi all, I think I have been looking at this for too long

Recommend a good CF-based LMS/WBT Application?

2005-10-13 Thread Alexander Sherwood
Hello All, Anyone have experience with a CFML-based Learning Management System and/or Web Based Training Application? We are considering purchasing vs. rolling our own, so any links/resources would be helpful. Thanks much, -- Alex Sherwood Hunter Warfield

Re: Recommend a good CF-based LMS/WBT Application?

2005-10-13 Thread Alexander Sherwood
I know BB used to be CF-based, but it looks like it's JSP now, no? -- Alex Dawson, Michael wrote: I may be a bit OT, but in case you didn't know, Blackboard and WebCT have shown intent to merge their companies. We started using Blackboard recently (I'm no big fan of BB) but it may be

Re: Recommend a good CF-based LMS/WBT Application?

2005-10-13 Thread Alexander Sherwood
Under Construction! Qasim Rasheed wrote: edufolio.net On 10/13/05, Alexander Sherwood [EMAIL PROTECTED] wrote: I know BB used to be CF-based, but it looks like it's JSP now, no? -- Alex Dawson, Michael wrote: I may be a bit OT, but in case you didn't know, Blackboard and WebCT

Re: Recommend a good CF-based LMS/WBT Application?

2005-10-13 Thread Alexander Sherwood
www.edufolio.com does work, though! Thanks much... -- Alex Alexander Sherwood wrote: Under Construction! Qasim Rasheed wrote: edufolio.net On 10/13/05, Alexander Sherwood [EMAIL PROTECTED] wrote: I know BB used to be CF-based, but it looks like it's JSP now, no? -- Alex

CFSCRIPT equiv. of CFPARAM?

2003-09-11 Thread Alexander Sherwood
Anyway to easily emulate CFPARAM using CFSCRIPT (without conditional logic?) -- Alex Sherwood ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4

XUpdate and CF

2003-12-01 Thread Alexander Sherwood
Has anyone written an Xupdate implementation in CFML or a wrapper tag/CFC for one of the open-source or freeware XML DBs that support the XUpdate Working draft? Anyone know know where MAX 2004 will be held? -- Alex Sherwood PHS Collection Agency THE COLLECTORS

XmlSearch() returning Attribute Values

2003-12-02 Thread Alexander Sherwood
It seems as if XML Search only returns element nodes, and that's it. Poor, poor, poor planning, IMHO. Has anyone created a work around, for example, for doing the following: --- XMLSearch(xmlDoc, '/document/node/@attributeVal') --- to return the string value of the attribute attributeVal for

RE: XmlSearch() returning Attribute Values

2003-12-03 Thread Alexander Sherwood
-- Alex Sherwood PHS Collection Agency THE COLLECTORS T:301.215.4200 F:301.664.6834 W: www.phs-net.com [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

CFC Not showing in CFC Explorer

2003-12-16 Thread Alexander Sherwood
What would cause a CFC/CFC package to not show in the CFC explorer? If I type the direct URL as in: http://www.myserver.com/CFIDE/componentutils/componentdetail.cfm?component=mypath.mypackage.mycfc I can browse the data. It does not appear, however, in the listing of CFCs on my server. I can

RE: CFC Not showing in CFC Explorer

2003-12-17 Thread Alexander Sherwood
need to create a CF mapping to the directory where the CFC is found. Then it should show. -Gel -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] What would cause a CFC/CFC package to not show in the CFC explorer? If I type the direct URL as in: HYPERLINK

CFTHROW in a CFC/Webservice

2003-12-17 Thread Alexander Sherwood
If you use CFTHROW within CFC that is invoked via a webservice, the default error returned is an Application/Axis fault. Is there any way to return just the native error type/information thrown in the CFC without the Axis wrapper? How have others worked around this? Thanks,

Re: Importing Tag Libraries

2003-12-18 Thread Alexander Sherwood
At 10:48 AM 12/18/2003 -0500, you wrote: Hi All I have the following code that throws an error that I don't understand. Hoping someone can help. cfimport taglib=/WEB-INF/lib/taglibs-scrape.jar prefix=scrp scrp:page url="" time=20 scrp:scrape id=qt begin=table border=1 end=/table anchors=true/

XMLSearch() woes

2003-12-18 Thread Alexander Sherwood
If you do the following: XMLSearch(xmlDoc, '/addresses/address[1]/@city'), you get back an array with one element that contains an empty string. Wouldn't you expect it to either return and empty array (because it found nothing), or an array with the value of the attribute? I know the docs

RE: XMLSearch() woes

2003-12-18 Thread Alexander Sherwood
/products/charting -- -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 3:59 PM To: CF-Talk Subject: XMLSearch() woes If you do the following: XMLSearch(xmlDoc, '/addresses/address[1]/@city'), you

Tricky XML/XPath Question!

2003-12-19 Thread Alexander Sherwood
Here's an XML samplefile: addresses address city=New York / address city=Tampa / address city=Bethesda / /addresses Using the following Xpath and instruction: Xpath: /addresses/address[2] Instruction: Insert a new address element before (as a preceding-sibling) the element selected with the

Re: MACR Stock price?

2003-12-30 Thread Alexander Sherwood
At 03:45 PM 12/30/2003, you wrote: Adam Wayne Lehman wrote: That was some funny sh*t about Linux kernel directly ripped from Videoworks in the early 90'sI haven't laughed that hard in a while Bravo! -- Shiz Hehehehe.. It's true. But this is my last day.. Check the new signature.

RE: XFORMS and BLACKSTONE

2004-07-02 Thread Alexander Sherwood
At 07:06 AM 7/2/2004, you wrote: i believe the example is xsl.xsl(file), meaning it is a style sheet for rendering the xml. Yes, but how do you address the file? xsl.xsl implies that CF knows where to look for the file...perhaps in the same directory as the ACTION attribute of the form itself?

Re: I have a new email address! [no more flames please.]

2004-07-12 Thread Alexander Sherwood
At 08:09 AM 7/12/2004, you wrote: [EMAIL PROTECTED] wrote: Hey, You know who this is, ha ha if you emailed me then you must be dumb, because i got a new email address.Dont worry if I dont like you I already blocked your ip from my email list, blocked your address from my email address, but

Re: grabbing the id of an item just entered into DB

2004-07-26 Thread Alexander Sherwood
At 11:00 AM 7/26/2004, you wrote: Hi gang I remember hearing something a while back where someone wanted to grab the id of an item they just entered into the database all in one sql statement. [sql query here] SELECT @@IDENTITY AS 'NEW_ID' Usually you access the NEW_ID as a column in a

Re: need help

2004-08-03 Thread Alexander Sherwood
At 10:36 AM 8/3/2004, you wrote: I am reading an excel file into a table.There is a field in the table for # of datapoints that I need to get from counting the records in another table that match the test number.Tables are tblPlan strTestNo intDpCount tblDatapoints intDatapointID strTestNo so I

Where is CFSCHEDULE data stored?

2004-08-05 Thread Alexander Sherwood
Anyone know where the data for tasks scheduled with CFSCHEDULE is stored? Thanks! -- Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Where is CFSCHEDULE data stored?

2004-08-05 Thread Alexander Sherwood
At 11:15 AM 8/5/2004, you wrote: Hey, The data for Scheduled Tasks is in the following location (on MX - in 5 its in the registry) {CFUSION}\lib\neo-cron.xml HTH Neil Thanks, Hoss. -- Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Alexander Sherwood
At 11:36 AM 8/17/2004, you wrote: This seems to be a very hot topic, so, I have to jump on this wagon too :) all right, in all earnestness, how about adding a feature to allow a developer to be able to distribute his/her app (eval copy, expires in 30 days etc. flexible, so he or she can set any

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Alexander Sherwood
At 11:46 AM 8/17/2004, you wrote: LMAO! TTFN, Alex That was the best acronym-ed post this list has ever seen Ray http://www.crystalvision.org At 11:40 AM 8/17/2004, you wrote: But I think it is not unrealistic to expect the built-in gateways (plus a few extensions that will

Re: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Alexander Sherwood
At 01:31 PM 8/17/2004, you wrote: CF Isn't perfect, but BlueDragon is. Instead of investing in gateways and silly things like flash-based forms, New Atlanta included the CFDRYCLEAN tag. This is the first Web application server with a truly mass appeal feature: pickup your dry cleaning. You

RE: BLACKSTONE: Software Development Times Article

2004-08-18 Thread Alexander Sherwood
At 09:56 AM 8/18/2004, you wrote: matt, i respect your intelligence, i respect your message, you are way off the scales on the iq chart im sure, butyour delivery sucks. if your personality was half of what your intelligence was, man, im sure you could be president.i hope this doesnt

Re: SQL Query problem

2004-08-18 Thread Alexander Sherwood
At 10:00 AM 8/18/2004, you wrote: This is giving me fits.In a membership listing, each member could have many transactions (one to many relationship). I want to retrieve each member ID, and their corresponding most recent (MAX) transactionID.The memberID joins the two tables. I've tried several

RE: SQL Query problem

2004-08-18 Thread Alexander Sherwood
At 10:14 AM 8/18/2004, you wrote: MemberID from the members table corresponds to the memberID in the transaction table.So I must be writing the join wrong? Seems that way. Post the whole query, just as you have it the code. -- Alex [Todays Threads] [This Message] [Subscription] [Fast

RE: Event Gateway on BlueDragon, etc. ( was:BLACKSTONE: Software Development Times Article)

2004-08-18 Thread Alexander Sherwood
At 11:05 AM 8/18/2004, you wrote: This is good news, Vince. Thank's for the update and keeping the greater CF community in mind. Keep up the good work. -- Alex Sherwood Now that we also have the BlueDragon infrastructure in place (on both Java and .NET), adding new features can be done fairly

Re: BLACKSTONE: Software Development Times Article

2004-08-18 Thread Alexander Sherwood
Commodore PET, soon) to my Pentium box via the gateway. Decoupling CFMX from the jaws of HTTP has opended new doors for legacy integration. And FB4 makes this possible. -- Alex - Original Message - From: Alexander Sherwood [EMAIL PROTECTED] Date: Wed, 18 Aug 2004 10:00:05 -0400 Subject

RE: SQL Query problem

2004-08-18 Thread Alexander Sherwood
At 11:08 AM 8/18/2004, you wrote: OK, you asked for it :o)-- the select statement was my latest try at retrieving just the highest numbered transaction ID and corresponding data for each member.FYI - the filtering statements are only invoked after someone does a new search from a form.The inital

RE: Event Gateway on BlueDragon, etc.

2004-08-18 Thread Alexander Sherwood
At 11:44 AM 8/18/2004, you wrote:\ Quick question, Vince. On the BD product page, a graphic neare the bottom asks How can I leverage Fusebox with BlueDragon? Is this a teaser for some FB-specific tags in BD, or more geared towards showing how FB works within the standard CFML tag/function set?

Re: Consuming CFC web methods in VB.NET

2004-08-18 Thread Alexander Sherwood
At 11:57 AM 8/18/2004, you wrote: http://www.rohanclan.com/products/neuromancer/ Dick - I gotta ask: is Nueromancer a DD name? -- Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: SQL Query problem

2004-08-18 Thread Alexander Sherwood
At 12:05 PM 8/18/2004, you wrote: OK, a couple of things: 1) Below is the complete code for the query page. SorryI meant the actual SQL code that gets passed to the DB. CF will display the actual, parsed SQL code in the debugging output. Could you post this? Thanks! -- Alex [Todays

RE: BLACKSTONE: Software Development Times Article

2004-08-18 Thread Alexander Sherwood
At 01:35 PM 8/18/2004, you wrote: Probably. But very few (if any) are using their own application schemes instead of cfapplication. What does that have to do with cflogin or frameworks? -Matt It has to do with Mach-II blowing all other frameworks away. That is, except Java Server Faces and

RE: BLACKSTONE: Software Development Times Article

2004-08-18 Thread Alexander Sherwood
At 01:46 PM 8/18/2004, you wrote: It has to do with Mach-II blowing all other frameworks away. That is, except Java Server Faces and Struts. Glad you cleared that up. ;) I'm sorry...I just can't help myself. As I was typing the above response, I could see a red-faced FuseBoxer knee-deep in a

RE: BlueDragon cfinclude issues

2004-08-19 Thread Alexander Sherwood
At 11:09 AM 8/19/2004, you wrote: I didn't think it through very well before posting. I just got frustrated and asked. So, in the end, I'm not sure if I'm going to be switching over to BD at all. Why switch to begin with? Do you need functionality in BD that is not in CFMX, or is it the price

Re: My First Shopping Cart

2004-08-19 Thread Alexander Sherwood
At 11:46 AM 8/19/2004, you wrote: Okay guys/gals, I am going to start doing the planning for my first custom shopping cart and would like any pointers you all can give me? The best I can tell so far, my best bet is to use session variables because it is a high traffic site - please correct me if

OT: www.cfm-applications.com ???

2004-08-26 Thread Alexander Sherwood
OT here: Anyone know what happen to www.cfm-applications and/or its creator? I had it in my RSS feeds and its been erroring out for 7-10 days. Thanks. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Exception Handling Frameworks?

2004-05-18 Thread Alexander Sherwood
A CFC/modeling/design related question: I am in the process of creating an application that CFTHROWS several different types of custom exceptions in several parts of the application. They include: 1) Form validation errors 2) Business logic validation errors 3) Database errors 4) Unexpected

Re: CFCOMPONENT/CFINVOKE: Help

2004-05-18 Thread Alexander Sherwood
At 11:48 AM 5/18/2004, you wrote: Help I'm using a CFC to create a Web service. One of the columns in my query past through the Web service has HTML tags in the ntext data type column.The Web Service doesn't like it and throws an error for just this column. I think the markup needs to be

COM.Allaire.ColdFusion.HTTPAuthFailure

2004-05-19 Thread Alexander Sherwood
Has anyone gotten CFHTTP to throw this error? I can dump the CFHTTP result struct and plainly see that authentication is failing, but I cannot get CFHTTP to throw the COM.Allaire.ColdFusion.HTTPAuthFailure exception as annotated in the docs. Anyone else run into this?

CFHTTP problems!

2004-05-19 Thread Alexander Sherwood
Has anyone gotten CFHTTP to throw the COM.Allaire.ColdFusion.HTTPAuthFailure error? I can dump the CFHTTP result struct and plainly see that authentication is failing, but I cannot get CFHTTP to throw the COM.Allaire.ColdFusion.HTTPAuthFailure exception as annotated in the docs. Anyone else run

Re: SOT - Last nights NYCFUG meeting.

2004-05-20 Thread Alexander Sherwood
At 11:13 AM 5/20/2004, you wrote: The cfdocument tag and its ability to produce PDF from HTML in the body of the tag is public knowledge and has been for sometime. Although, Macromedia hasn't committed in anyway to this tag, so it might not be there at all. Of course, I highly doubt they would

RE: SOT - Last nights NYCFUG meeting.

2004-05-20 Thread Alexander Sherwood
At 02:17 PM 5/20/2004, you wrote: RedSky beta lasted 6-8 months, I think. If the beta starts soon (if not already), then EOY 2004, Early 2005 looks correct. Any tidbits on the new event-based programming features? I also heard that MM is adding a CFFUSEBOX tag to do fusebox stuff because its

Re: XPath Help

2004-05-21 Thread Alexander Sherwood
At 07:04 AM 5/21/2004, you wrote: Hi, I'm trying to get some XPath to work with respect to a navigation tree. ?xml version=1.0 encoding=utf-8 ? tree node objectid=3456 title=Informationa node objectid=2134 title=Contact / node objectid=5656 title=Top 1.2 / node objectid=5672 title=Top 1.3 / node

Re: 'Select' statement question!

2004-05-21 Thread Alexander Sherwood
At 11:42 AM 5/21/2004, you wrote: The following code is in a stored procedure. Can somebody please just confirm if this is a valid SQL Statement. I appreciate this is not a SQL Forum. I'm a ColdFusion developer and am trying to query the db. SET @SQLStatement = @SQLStatement + 'SELECT * From

Re: hotel reservation systems

2004-05-21 Thread Alexander Sherwood
At 02:04 PM 5/21/2004, you wrote: Anyone have an apps out there for making hotel reservations? I need something that does it all pretty much. So people can see what rooms are open, bed types, times, all that. A comany I am looking at wants to totally upgrade there reservation system, and whatever

Re: Portable datatypes, revisited

2004-05-21 Thread Alexander Sherwood
At 02:23 PM 5/21/2004, you wrote: I've given up on the idea of returning an array of complex datatypes.. it doesn't work... if anyone can prove me wrong, please do. I have a CFC that needs to return query results to a Visual Basic application. But if the query fails, I need to return an error

RE: retreive the FORM name?

2004-05-21 Thread Alexander Sherwood
At 02:32 PM 5/21/2004, you wrote: Sure, but a template can contain several forms which all call the same template, even if only one is submitted. My question is then to detect the one that fired the template. You will then need to send additional information within the form itself.

RE: hotel reservation systems

2004-05-21 Thread Alexander Sherwood
At 02:23 PM 5/21/2004, you wrote: Well my boss wants me to so we can sell it to one of his buddies that owns a hotel. But I was thinking that would not be very efficient for the hotel owner. I mean it does indeed sound complex, lots of time and money. Which is what my boss want to charge, but it

Re: Portable datatypes, revisited

2004-05-21 Thread Alexander Sherwood
At 02:51 PM 5/21/2004, you wrote: Alexander Sherwood wrote: You mean the serialization of the return data types by a foreign (i.e. VB) application fails? I don't really know what that means. Are you calling the CFC via a SOAP request? Yes. VB does not understand the Map or QueryBean

  1   2   >