CF9 - cfgrid posting empty form data

2011-02-23 Thread Dominic Howard
Hi I'm having a mare with an HTML cfgrid which will not post any data whatever I do to it. I've used Flash grids before and not had any problems but this HTML grid I just cannot work out at all. It is bound to a CFC and populates itself just fine. However, once a row is selected and Submit

Problem connecting to MS Exchange 2007 on SBS 2008

2010-12-06 Thread Dominic Howard
I am having problems connecting to Exchange via cfexchangeconnection. Our ColdFusion environment is CF9 Enterprise on Win 2008, and the Exchange host is Win SBS 2008 (which uses IIS7). After having worked through the documentation and following all procedures outlined at

dead display for ADMIN page in a new installation

2009-11-18 Thread Howard Gillison
, Howard ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328489 Subscription: http

Re: WireFrame Viewer/Editor

2008-07-25 Thread Howard Fore
is watching those. Anyone know how I can get hold of them for help? Or whether there's a newer version of this software elsewhere out there? -- Howard Fore, [EMAIL PROTECTED] In any moment of decision, the best thing you can do is the right thing, the next best thing is the wrong thing

Re: Dynamic Code Execution

2008-05-30 Thread Lee Howard
Try this http://code.google.com/p/coldquery/source/browse/trunk/src/org/coldquery/UDFCreator.cfc It doesn't execute the code, but it creates a udf from a string. Then you can call the udf. The string can be cfml or script. So an example using script would be: cfscript yourcfmlcode = {read

Re: Exporting from ColdFuion to a Excel file

2007-10-13 Thread Howard Fore
You could also just use the CF XML functions to write the file out in OpenXML format for Office. See http://openxmldeveloper.org/ for docs on the format. Hofo -- Howard Fore, [EMAIL PROTECTED] In any moment of decision, the best thing you can do is the right thing, the next best thing

Re: Security recommendations for a beginner

2007-09-28 Thread Howard Fore
-5DC0A6906F8999B4 and http://www.petefreitag.com/item/270.cfm. Use one of the SHA hash methodologies, not MD5 (MD5 has been reliably cracked). /hofo -- Howard Fore, [EMAIL PROTECTED] In any moment of decision, the best thing you can do is the right thing, the next best thing is the wrong thing

Re: Automated Way of Getting # of lines of code?

2007-09-28 Thread Howard Fore
http://blog.strikefish.com/blog/index.cfm?mode=entryentry=02007134-1422-201A-550F66FDEA46EFAB, althought I haven't tried it myself... On 9/28/07, Rey Bango [EMAIL PROTECTED] wrote: Is there any way to grab the total # of lines of code that a particular CF app has? -- Howard Fore, [EMAIL

Re: CFDocument - Another question

2007-09-28 Thread Howard Fore
The only way I've been able to do this is to drop back to HTML 4.0 and ignore CSS altogether. My experience was in what I consider to be a really simple request. I've got tabular data, represented in a html table, and need the headers for that table running in the section header. The only way I

Re: CF 8 Book by Ben Forta, Ray Camden and others - now in stock

2007-09-27 Thread Howard Fore
But keep in mind that the CF8 CFWACK is split into three pieces, this is just the first. Volume 3, the advanced section, has a December publication date, and I don't even see vol 2 on the Peachpit site at all. /hofo On 9/27/07, David Morgan [EMAIL PROTECTED] wrote: I posted a while back when

Re: dynamic drop down box

2007-09-26 Thread Howard Fore
too). On 9/26/07, erik tom [EMAIL PROTECTED] wrote: I have CF component which supposed to populate the requirements and of thwe selected program. I wrote the code but there is something wrong -- Howard Fore, [EMAIL PROTECTED] In any moment of decision, the best thing you can do is the right

Re: Passing a Structure to a ColdFusion Report

2007-09-26 Thread Howard Fore
, you could serialize the structs using CFWDDX and pass the string value of each struct in separate parameters. Then use custom report functions to unserialize them into structs again and extract the values on demand. /hofo -- Howard Fore, [EMAIL PROTECTED] In any moment of decision, the best

Scaffolding from CFCs?

2007-03-28 Thread Howard Fore
. Is there a scaffolding solution that uses a CFC (or multiple CFCs) as the datamodel? -- Howard Fore, [EMAIL PROTECTED] In any moment of decision, the best thing you can do is the right thing, the next best thing is the wrong thing, and the worst thing you can do is nothing. - Theodore Roosevelt

decrypt an old tag

2006-07-26 Thread Howard Owens
I have an old custom tag I bought and paid for years and years ago and still need . Apparently, after moving it to an upgraded server (4.0 to MX), it no longer works. Apparently, the company that sold it to me is now out of business. I don't think the tag is supported or sold. It's

log4CF and other DRK goodies

2006-07-18 Thread Howard Fore
Hey, Anybody know where the publicly available DRKs have gone in the post-Macromedia world? The Adobe.com site search finds a page for them, but links to the actual DRK content result in a 404 page. I was looking for log4cf, which I believe is in DRK 4. -- Howard Fore, [EMAIL PROTECTED] Gliddy

Re: Installing CF 7.0.2 on RHEL 4 Update 3

2006-07-15 Thread Howard Fore
Stephen Erat of TalkingTree has a great Breeze presentation on installing CFMX 7 on RHEL with SElinux. You might to check it out: http://www.talkingtree.com/blog/index.cfm/2005/10/13/OCFMG20051013 On 7/15/06, Hans Omli [EMAIL PROTECTED] wrote: Based on what I see in /var/log/messages, this

RE: BlogCFC

2006-07-14 Thread Howard Owens
I was just getting ready to play with this. Any reason I can't do a global search and replace on all table names to match the naming convention I use on my server? Also, I would like to know when 5.1 is out. Thanks, Raymond. H.

RE: BlogCFC

2006-07-14 Thread Howard Owens
Also, if I'm understanding correctly, BlogCFC allows multiple different blogs under the same installation, correct? Any limit on the number of blogs? H. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

RE: There's got to be an easier way to parse this structure

2006-07-11 Thread Howard Owens
10:43 PM To: CF-Talk Subject: Re: There's got to be an easier way to parse this structure Yes, this is what XMLSearch() is for. You need to use XPath to search for all PostalCodeNumber nodes. An intro to XPath: http://www.w3schools.com/xpath/default.asp On 7/11/06, Howard Owens [EMAIL PROTECTED

XPath help

2006-07-11 Thread Howard Owens
this structure That's strange, because when I use cfset MyPostCodes = XMLSearch(GeoCodeXML,//PostalCodeNumber) and CFDUMP the result, I get an array of length 1, when using it on the XML sample at http://www.google.com/apis/maps/documentation/ On 7/11/06, Howard Owens [EMAIL PROTECTED] wrote: Yes, I

RE: XPath help

2006-07-11 Thread Howard Owens
you have // vs /? On 7/11/06, Howard Owens [EMAIL PROTECTED] wrote: Anybody else have any clue why my XMLSearch(GeoCodeXML,//PostalCodeNumber) might be returning an empty string? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 12:40 AM

RE: XPath help

2006-07-11 Thread Howard Owens
Hey, that returns something useful. An array. Thanks. Now to figure out how to extract the one piece of info I want. H. -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 12:02 PM To: CF-Talk Subject: RE: XPath help I have had problems with

RE: CF Studio Edits Not Being Saved?

2006-07-11 Thread Howard Owens
Are you doing local saves, or remote (FTP) saves? I've found that Studio will stop saving sometimes on FTP edits. It takes a restart to get it saving again. Usually, this happens if I use any kind of search and replace over FTP. I've never had the problem on a local file. H. -Original

RE: Component for Creating CSS

2006-07-10 Thread Howard Owens
I thought that would be a good tip -- hadn't even thought of looking there but I didn't find anything. One frustrating thing about the cflib.org search -- since RSS is in the navigation, searching for rss returns every single page. -Original Message- From: Robertson-Ravo, Neil

RE: Good Programming Books or Other Resources

2006-07-10 Thread Howard Owens
2006 Subject: RE: Good Programming Books or Other Resources I second the nod for Code Complete. Terrence Ryan Senior Systems Programmer Wharton Computing and Information Technology E-mail:[EMAIL PROTECTED] -Original Message- From: Howard Owens [mailto:[EMAIL

RE: Good Programming Books or Other Resources

2006-07-10 Thread Howard Owens
From the perspective of a guy who was a literature major, worked most of his life as a newspaper reporter, and never took any kind of computer class in his life (interestingly, though, I've taught classes!), Code Complete helped me understand basic coding principles. I have warm, fuzzy feelings

There's got to be an easier way to parse this structure

2006-07-10 Thread Howard Owens
To pull a zip code from the Google Maps API, the zip can be returned in one of three different locations (that I've found so far). kml.Response.Placemark.AddressDetails.Country.AdministrativeArea.Locality.Po stalCode.PostalCodeNumber.XmlText

RE: Good Programming Books or Other Resources

2006-07-09 Thread Howard Owens
I liked pragmatic programmer and code complete. -Original Message- From: PETER SHEATS [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 05, 2006 6:17 AM To: CF-Talk Subject: Good Programming Books or Other Resources So my question would be this: What books, tutorials, or resources would

Getting Mime Type before CFFILE

2006-07-09 Thread Howard Owens
I know I can get all kinds of information about a file being uploaded after its run through CFFILE action=upload, but I'm trying to figure out how to identify the file type BEFORE CFFILE has run. I want to CFSWITCH on the mime type. Any one know how to determine the mime type? I tried

Component for Creating CSS

2006-07-09 Thread Howard Owens
Would any body have a recommendation for a robust CFC or custom tag for creating RSS feeds? On the site I'm building now I would like to have multiple RSS feeds, and maybe even allow users to build custom feeds. The custom tag I've used on previous sites probably won't cut it for that.

I don't get why this directory isn't creating

2006-07-09 Thread Howard Owens
not be created. The most likely cause of this error is that 'C:\Inetpub\vhosts\bakersfield99.com\httpdocs\userpages\Howard \images' already exists on your file system. The exception occurred during a cfdirectory action=CREATE. I've tried various configurations of the directory = attributes

RE: I don't get why this directory isn't creating

2006-07-09 Thread Howard Owens
Nevermind. I think I just found the problem ... the variable is coming out of a CHAR field ... wasn't trimming it. H. -Original Message- From: Howard Owens [mailto:[EMAIL PROTECTED] Sent: Monday, July 10, 2006 3:29 AM To: CF-Talk Subject: I don't get why this directory isn't creating

Pasing XML with colons

2006-07-02 Thread Howard Owens
I'm reading an XML file that has colons in the elements, and that is causing my error, so I'm wondering how to extract the data . GeoLong = GeoCodeXML.rdf:RDF.geo:Point.geo:long.XmlText; Invalid CFML construct found on line 9 at column 23. ColdFusion was looking

RE: Pasing XML with colons

2006-07-02 Thread Howard Owens
I figured it out. I needed this: GeoLong = GeoCodeXML[rdf:RDF][geo:Point][geo:long].XmlText; -Original Message- From: Howard Owens [mailto:[EMAIL PROTECTED] Sent: Sunday, July 02, 2006 12:43 PM To: CF-Talk Subject: Pasing XML with colons I'm reading an XML file that has colons

RE: If the structure exists, otherwise ... consistency needed

2006-06-29 Thread Howard Owens
-Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 9:18 AM To: CF-Talk Subject: RE: If the structure exists, otherwise ... consistency needed Are you sure any of your conditional logic ever returns true? Can you put some output or something to

RE: If the structure exists, otherwise ... consistency needed

2006-06-29 Thread Howard Owens
Here's my scratch page, where I'm doing my testing: http://www.howardowens.com/amazon.cfm For the current query, look at the author field in the CFDUMP (top) of the entire XML, and the CFDUMP (bottom) of my book structure. You'll see in the top dump, author is there, but in the parsed

RE: If the structure exists, otherwise ... consistency needed

2006-06-29 Thread Howard Owens
-Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 2:03 PM To: CF-Talk Subject: Re: If the structure exists, otherwise ... consistency needed I think you may want: if(structKeyExists(AmazonXML.ItemLookupResponse.Items.Item.ItemAttributes,

RE: If the structure exists, otherwise ... consistency needed

2006-06-29 Thread Howard Owens
: If the structure exists, otherwise ... consistency needed Do what I did in my example code I sent you which was a check for smaller and then a check for the next one. On 6/29/06, Howard Owens [EMAIL PROTECTED] wrote: -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED

If the structure exists, otherwise ... consistency needed

2006-06-28 Thread Howard Owens
I posed a question yesterday -- if it got answered, I can't find the thread on the HouseOfFusion site and Google hasn't indexed it yet. Working with Amazon API, I'm trying to build an array of the results set. Some items in the result set don't always exist, so I'm trying to figure how how to

Re: If the structure exists, otherwise ... consistency needed

2006-06-28 Thread Howard Owens
I think it is a problem of the value being reset. Here's the thing ... the code without conditionals works just fine. I wasn't having values reset. As soon as I added the conditionals, values started getting reset. I didn't change how the array or structures are created or appended. H.

Re: If the structure exists, otherwise ... consistency needed

2006-06-28 Thread Howard Owens
I'm still not sure why my variables are being overwritten. Here's the entire script ... variables not tested by a conditional output unique, tested variables do not come out blank every time ... even for items where the book as the missing element : cfscript AmazonXML =

Array/Structure and Amazon API

2006-06-27 Thread Howard Owens
I'm running a specific query against the Amazon API/AWS. The problem is, certain of my attributes seem to be overwritten by the last result of the query set, and I don't understand why. Here's my script (with some variables removed for brevity): cfscript AmazonXML =

Re: Array/Structure and Amazon API

2006-06-27 Thread Howard Owens
The titles are outputed unique though? I'd thought with the way that is written you would get 10 records with the same title, rank, and asin displayed but I am going on next to no sleep today. Try replacing: AddBook = ArrayAppend(BookList,Book); With BookList[i] = Duplicate(Book); Brain

I know it's not defined ... that's the problem

2006-06-27 Thread Howard Owens
I'm still working on my Amazon AWS application. Got one query working, now I want to reuse some code. But the new query doesn't return quite the same results set XML. So for SalesRank, I run into an undefined error, so I thought I'd try the following, but it returns the same error ... how do I

Re: I know it's not defined ... that's the problem

2006-06-27 Thread Howard Owens
You need to put quotes in isDefined... and you probably want to use StructKeyExists (although isDefined will probably let you skip some levels of checking, since you need to know that the parent struct exists if you use StructKeyExists I'd tried the single quotes ... got this error: Parameter 1

Re: I know it's not defined ... that's the problem

2006-06-27 Thread Howard Owens
structKeyExists(AmazonXML.ItemSearchResponse.Items.Item[i],SalesRank) maybe. That did the trick. Thanks. CF-Talk is one of the main reasons I love Cold Fusion ... so many helpful people ... I've dabbled in other things, but getting help is usually much harder ...

Test for structKeyExists, and nothing does

2006-06-27 Thread Howard Owens
Back to my AWS work ... using the suggestion of another CF-Talker, I used structKeyExists to test whether a particular XML node existed. That solved the isDefined error problem, but now if the element doesn't exist in the first result set of the results set, it doesn't exist for any items in

Re: CFMX 7.01 on Centos 4 (aka RHEL)

2006-06-20 Thread Howard Fore
There is a tech note that addesses it, you download a new zip file that has the jar file. On 6/20/06, Denny Valliant [EMAIL PROTECTED] wrote: How did you get around the missing driver files? Sounds like a class-path issue, but besides that, no clue... :d -- Howard Fore, [EMAIL PROTECTED

Bad Google RSS

2006-06-09 Thread Howard Owens
I’ve tried XMLParse() and CFWDDX … Google’s RSS newsfeed doesn’t appear to be correct XML/RSS, which I find hard to believe http://news.google.com/news?q=%22Abu+Mussab+al-Zarqawi%22ie=UTF-8output=rss Has anybody run into this before? What to do about it? H.

Re: Bad Google RSS

2006-06-09 Thread Howard Owens
step is an XMLParse()). I assume you're making a CFHTTP call to retrieve the content? Check that content to see whether whitespace - or any other character data - is being introduced before the declaration. On 6/9/06, Howard Owens [EMAIL PROTECTED] wrote

Re: Bad Google RSS

2006-06-09 Thread Howard Owens
I get the same error using the RE below. I know just enough RE at this point to understand what you're suggesting, but not enough to fix it -- it's apparently not stripping out everything above the declaration tag. H. See if you can strip it before trying to use the content: cfset

Re: Bad Google RSS

2006-06-09 Thread Howard Owens
Ah, good suggestion ... I'm not actually getting the RSS feed. I'm getting: title403 Forbidden/title . Your client does not have permission to get URL Google is blocking my application for some reason. H. Have you cfdumped cfhttp.fileContent to see what's there? Might be

Re: Bad Google RSS

2006-06-09 Thread Howard Owens
That did the trick. Thanks. H. You have to put in a standard User Agent like: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) When doing the CFHTTP otherwise Google blocks it. ~| Message:

Mail App Error

2006-06-02 Thread Howard Owens
I keep getting this error on my bulk mail app: javax.mail.SendFailedException: 550 Requested action not taken I can't find how to search the CF-Talk archives on the house of fusion site, but I know I've seen something somewhere on error handling for the CFMAIL tag. Please help. H.

Re: Mail App Error

2006-06-02 Thread Howard Owens
for me ... application worked fine for four or five years on our old 4.0 server ... now forced to CFMX server (something I actually begged for for years) and now I'm complainling g Howard Owens wrote: I keep getting this error on my bulk mail app: javax.mail.SendFailedException: 550 Requested

Re: Mail App Error

2006-06-02 Thread Howard Owens
On the search -- my mistake -- the search has changed and isn't as robust as before, so when the search string returned no errors, I just that I was just using some Google search and not the list search, but I see now I was ... Also, after digging around I found what I was looking for on my own

cfmail error

2006-05-01 Thread Howard Owens
I have a bulk mail application I've used for years using CFMAIL on a 4.0server. Recently, I was FORCED (not that I'm complaining at all) to a CFMX server. Now I'm getting this error: A problem occurred when attempting to deliver mail. This exception was caused by:

Re: Who is using a large scale CMS?

2006-01-27 Thread Howard Fore
I think Voice of America is using CommonSpot (ask someone from FigLeaf), and I think PGA.com uses it as well. On 1/27/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Erm...Surely there must be someone?!?! -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL

Re: Coldfuion Life Spam

2006-01-27 Thread Howard Fore
to an end. I am about to build a major system using coldfusion but the company now has doubts over the future of coldfusion. I know its not going anywhere but is there anything I can provide to this company to stop there fears. -- Howard Fore, [EMAIL PROTECTED] The less you know, the more you believe

Re: Scope Woes Virtual Directories

2006-01-24 Thread Howard Fore
request, requires a user unique key. -- Howard Fore, [EMAIL PROTECTED] ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230319 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http

Re: Scope Woes Virtual Directories

2006-01-24 Thread Howard Fore
through this script. One parameter is the eventual final URL and all the others are variables to stuff into the new session. The downside here is that URL parameters are inherently insecure. On 1/24/06, jonese [EMAIL PROTECTED] wrote: Howard: Nice idea but the SQL cost is more than we want to deal

Re: Web Analytics

2005-12-11 Thread Howard Fore
Prior to its acquisiton Google Analytics was known as Urchin. On 12/11/05, Dan O'Keefe [EMAIL PROTECTED] wrote: Did this product become Google Analytics? Dan -- Howard Fore, [EMAIL PROTECTED] ~| Logware (www.logware.us

Re: CF Server stops without a whisper

2005-12-09 Thread Howard Fore
On 12/9/05, Marlon Moyer [EMAIL PROTECTED] wrote: Thanks, I was able to find the error in the jrun logs. Now I just have to translate just what the h3ll it means. What does it say? -- Howard Fore, [EMAIL PROTECTED

Re: Small CF Job

2005-11-30 Thread Howard Fore
After some Googling, I'm going to guess evolutionary multi-criterion optimization. On 11/29/05, Kevin Aebig [EMAIL PROTECTED] wrote: EMO? Ah... out of curiousity, what's that? -- Howard Fore, [EMAIL PROTECTED] ~| Discover

CF Session vars timing out at different times

2005-10-28 Thread Howard Cope
to understand it rather than just evade it many thanks best regards howard -- Web Designer Accent Design Group Ltd The Studio, Adam Eve Yard 94B St Benedicts Street Norwich Norfolk NR2 4AB +44 (0) 1603 766062 http://www.accentdesign.co.uk

Re: Reset the 6.1 Developer Edition IP address

2005-01-11 Thread Howard Fore
Stop and start the server? On Tue, 11 Jan 2005 14:37:37 -0500, Matthew Small [EMAIL PROTECTED] wrote: I know it's in the archive, but I haven't been able to find it. Help, please? -- Howard Fore, [EMAIL PROTECTED

Re: Currently running page requests

2004-09-15 Thread Lee Howard
- From: Lee Howard [EMAIL PROTECTED] Date: Tue, 14 Sep 2004 18:26:04 -0400 Subject: Re: Currently running page requests To: CF-Talk [EMAIL PROTECTED] If you are using jrun for your J2EE server I don't know what the problem could be. What kind of error message are you getting? Can you compile

Re: Currently running page requests

2004-09-14 Thread Lee Howard
I like that.It worked great for me, but if you are not using enterprise it will not work.For those people you can also do the same thing with a servlet.Here is the java code. import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class threads extends HttpServlet{ public

Re: Currently running page requests

2004-09-14 Thread Lee Howard
= (jrun.servlet.http.WebEndpoint)t.getServletRequest(); maybe there is something missing in my classpath or maybe a differnet JVM Doug - Original Message - From: Lee Howard [EMAIL PROTECTED] Date: Tue, 14 Sep 2004 15:24:51 -0400 Subject: Re: Currently running page requests To: CF-Talk [EMAIL PROTECTED] I like

Re: HTTPS post

2004-09-13 Thread Lee Howard
How about using a com object.Something like this in VB. Dim objXMLHTTP, xml, response Set xml = CreateObject(MSXML2.XMLHTTP) ' Notice the two changes in the next two lines: xml.Open POST, http://www.webserver.com/Find, false xml.setRequestHeader Content-Type, application/x-www-form-urlencoded

Re: RDS support (was Re: CFEclipse release - beta

2004-06-16 Thread Howard Fore
to Monty Python) -- Howard Fore, [EMAIL PROTECTED] On Jun 16, 2004, at 11:21 AM, Paul Kenney wrote: Just think of those poor developers that are forced to work off of shared hosting accounts with no WebDav, a single FTP account, an Access database and no RDS access.Oh, the humanity!They could

Re: rualivecftalk

2004-06-02 Thread Howard Fore
All your list are belong to us. -- Howard Fore, [EMAIL PROTECTED] On Jun 2, 2004, at 9:45 AM, Tony Weeg wrote: speak to me cftalk, are you alive today [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: eclipse install

2004-06-02 Thread Howard Fore
What version of Eclipse will He3 require? -- Howard Fore, [EMAIL PROTECTED] On Jun 2, 2004, at 5:52 PM, Matt Liotta wrote: On a side note, the He3 beta goes into CD production this Friday for CFUN-04. I expect people to have any easy time installing it. [Todays Threads] [This Message

Re: Mach-II

2004-05-28 Thread Howard Fore
specialization, some things aren't. Again, your choice. One size doesn't fit all, whether it is FB, Mach-II, onTap, JSP, Tapestry, or WebObjects. But each has it's good and bad points. It is counterproductive to present subjective, one-sided answers to those looking for an objective view. -- Howard

Re: download cf5

2004-05-28 Thread Howard Fore
Kola, If you search the list archives at houseoffusion.com you'll find this was answered not too long ago. Sorry, don't remember the answer off the top of my head. -- Howard Fore, [EMAIL PROTECTED] On May 28, 2004, at 12:02 PM, Kola Oyedeji wrote: Anyone have the link to the CF5 download? I

Re: Mach-II

2004-05-28 Thread Howard Fore
and third statements they would, as you point out, be incorrect. -- Howard Fore, [EMAIL PROTECTED] On May 28, 2004, at 1:50 PM, Claude Schneegans wrote: as it is was Claude's choice to read OO allows code reuse as OO allows code reuse for the first time in the history of mankind. C'mon, please

Re: Mach-II

2004-05-27 Thread Howard Fore
Will I have to spend $15 on a set of blades to use it? -- Howard Fore, [EMAIL PROTECTED] On May 27, 2004, at 1:03 PM, Alexander Sherwood wrote: Look for the release of Mach-3, a combination of both FuseBox 4 and Mach-II. Framework should be out mid-July along with mailing lists, web site

Re: Mach-II

2004-05-27 Thread Howard Fore
, there is no substitution for good planning. -- Howard Fore, [EMAIL PROTECTED] On May 27, 2004, at 9:36 AM, Alexander Sherwood wrote: At 06:48 AM 5/27/2004, you wrote: just plan it very well at first and document it very well. This might account for a large portion of the 9500h you plan

Re: Mach-II

2004-05-27 Thread Howard Fore
Nor did I. -- Howard Fore, [EMAIL PROTECTED] On May 27, 2004, at 3:44 PM, Michael Haggerty wrote: I'm people. I would not read it that way. Was there supposed to be a disclaimer stating someone else did this before? M Claude Schneegans [EMAIL PROTECTED] wrote: Perhaps you can point

Re: Mach-II

2004-05-27 Thread Howard Fore
web application framework, OS X for my development platform, and Linux for my server platform. They work, and I can spend my time solving problems created by my business users and less on creating tools to do so, or workstation administration, or server administration. -- Howard Fore, [EMAIL

Re: Don't mean to be picky

2004-05-21 Thread Howard Fore
Huh? I don't understand what you mean. I use a ton of CSS with FB3 and have no problems. Where's the deficiency? -- Howard Fore, [EMAIL PROTECTED] On May 21, 2004, at 12:58 PM, Chunshen (Don) Li wrote: Has anyone looked into the deficiency of CSS for presentation (with a twist if necessary

Re: Serious breach of NDA - a polite warning

2004-05-14 Thread Howard Fore
So in order to keep certain things secret, you publicly alert people who may not know they are talking about secrets to the fact that secrets are being discussed? -- Howard Fore, [EMAIL PROTECTED] On May 14, 2004, at 5:24 AM, Peter Tilbrook wrote: Knock any further discussion of the breach

Re: Serious breach of NDA - a polite warning

2004-05-14 Thread Howard Fore
Well, I interpreted this as that Peter knows that someone on the list is under NDA and has been talking about something they shouldn't. But calling attention to secrets is no way to keep them so. -- Howard Fore, Web Developer, Professional Career Development Institute [EMAIL PROTECTED], 770-729

Re: OT Qforms Gone?

2004-05-13 Thread Howard Fore
I still get a few every so often. There's usually a burst when someone has a question and then nothing for a while. -- Howard Fore, [EMAIL PROTECTED] On May 13, 2004, at 5:20 PM, Dave Carabetta wrote: Hi All, Sorry for being OT.But I am sure that many people use Qforms on this list.Has

Re: http_referer

2004-05-11 Thread Howard Fore
never remember it). -- Howard Fore, [EMAIL PROTECTED] On May 10, 2004, at 10:37 PM, Andrew Grosset wrote: I don't follow...couldn't I just copy the uuid and place it in a hidden field in MY form and submit that? Stick a uuid in a hidden field and check that you get the same one back

The other shoe drops

2004-05-11 Thread Howard Fore
like that. -- Howard Fore, [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: The other shoe drops

2004-05-11 Thread Howard Fore
available. But neither are officially supported CFMX platforms by MM, right? And as far as that goes, the choices as I understand them are Weblogic and Websphere. From past experience I believe that either would make the software investment in CFMX seem like a drop in the bucket. -- Howard Fore

Re: The other shoe drops

2004-05-11 Thread Howard Fore
. -- Howard Fore, [EMAIL PROTECTED] On May 11, 2004, at 12:25 PM, Dave Watts wrote: I would recommend trying a different J2EE application server. Sun One and JBoss are both freely available. But neither are officially supported CFMX platforms by MM, right? Sun ONE is supported, JBoss

Re: add a column in oracle

2004-05-05 Thread Howard Fore
I don't have my big red book handy, but isn't there a restriction in Oracle where you can add columns but not drop them (or vice versa)? -- Howard Fore, [EMAIL PROTECTED] On May 5, 2004, at 2:16 PM, Daniel Kessler wrote: I'm trying to add a column in my DB in Oracle.I'm doing: ALTER TABLE

Re: add a column in oracle

2004-05-05 Thread Howard Fore
As for your other question: SELECT TOP 3 FROM FOO -- Howard Fore, [EMAIL PROTECTED] On May 5, 2004, at 2:16 PM, Daniel Kessler wrote: I'm trying to add a column in my DB in Oracle.I'm doing: ALTER TABLE whatsnew ADD (imagevarchar2(100)); I also tried: ALTER TABLE whatsnew ADD column

Re: add a column in oracle

2004-05-05 Thread Howard Fore
Sorry, wrong database... SELECT * FROM foo WHERE rownum 4 -- Howard Fore, [EMAIL PROTECTED] On May 5, 2004, at 3:00 PM, Howard Fore wrote: As for your other question: SELECT TOP 3 FROM FOO -- Howard Fore, [EMAIL PROTECTED] On May 5, 2004, at 2:16 PM, Daniel Kessler wrote: I'm

Re: ColdFusion and XML

2004-04-16 Thread Howard Fore
What kind of encoding? Do you mean that the XML document you posted is the value of a form element, a textarea for instance, and you'd like to access the data in the XML document? -- Howard Fore, Web Developer, Professional Career Development Institute [EMAIL PROTECTED], 770-729-8400, x5258

Re: Fusebox on a web hosting service?

2004-04-16 Thread Howard Fore
I think most people are using FB3 because it's been around longer. If I were starting from scratch I'd use FB4 or Mach-II. -- Howard Fore, [EMAIL PROTECTED] On Apr 15, 2004, at 11:15 PM, Johnny Le wrote: Thank you, Cameron.Which version of Fusebox do you think I should use?I know it has

Re: Proving you are legitimate from CFMail

2004-04-14 Thread Howard Fore
dictionary words but aren't in most people's common vocabulary. These words don't appear in the token list from previous emails and skew the probability towards ham. /NonTechnicalAnswer -- Howard Fore, [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe

End of session

2004-04-07 Thread Howard Fore
is logged in. The logic in the cflogin would see that the user isn't logged in and that the URL parameter says they were and therefore the user should be directed to the login screen rather than the public area they were requesting. Any comments/ideas/suggestions? -- Howard Fore, [EMAIL PROTECTED

Re: Need some backup here

2004-04-07 Thread Howard Fore
No multicast packets were received. -- Howard Fore, [EMAIL PROTECTED] On Apr 7, 2004, at 1:05 PM, Cutter (CF-Talk) wrote: I need a favor. Internal debate going on here about the feasability of multicast streaming. I'm being told that multicast enabled routers are not in high enough

Re: Script vs Tags (was Re: ColdFusion Coding Contest)

2004-04-06 Thread Howard Fore
stopped using cfscript altogether, simply because of the time I lose trying to maintain a logical block of code in one paradigm or the other. As always your mileage may vary, products may settle during shipping, and objects may be closer than they appear. -- Howard Fore, [EMAIL PROTECTED] On Apr

Re: desktop application

2004-04-06 Thread Howard Fore
I'm not sure how far it's gotten, but there is the XRE: XUL Runtime Environment, so you can have standalone apps without bundling (or requiring) Mozilla. http://www.mozilla.org/projects/xul/xre.html -- Howard Fore, [EMAIL PROTECTED] On Apr 6, 2004, at 11:40 AM, Dave Watts wrote: Except

Re: Devnet Pro now only $599!

2004-04-06 Thread Howard Fore
The online store has that price as an upgrade from Studio MX. -- Howard Fore, [EMAIL PROTECTED] On Apr 6, 2004, at 5:20 PM, Kwang Suh wrote: Blark, it's actually only for renewals.Ah well. - Original Message - From: Irvin Gomez [EMAIL PROTECTED] Date: Tuesday, April 6, 2004 3:18 pm

Re: Code formatter?

2004-04-02 Thread Howard Fore
/cfscript parsers in Java maybe all it would take is creating the same thing and convincing checkstyle to use it. -- Howard Fore, [EMAIL PROTECTED] On Apr 1, 2004, at 11:12 PM, [EMAIL PROTECTED] wrote: look up a program called prettyhtml does wonders! it supports cfml gives u several choices

  1   2   3   4   5   6   7   >