RE: BLACKSTONE: Software Development Times Article

2004-08-18 Thread Benjamin S. Rogers
Like all things CF, it's more accessible to people who aren't Java experts. Writing an event gateway requires knowledge of Java therefore yours is not a valid argument. Declaring that it's not a valid argument does not make it so. As many people have already stated, there will be

RE: BLACKSTONE: Software Development Times Article

2004-08-18 Thread Benjamin S. Rogers
You are missing the context of the thread though. Maybe I am. I don't think so, but it's always possible. :) This thread has been very long, and, as most mailing list conversations go, it's covered quite a bit of territory. The original statement was as follows. Which itself was a reply to

RE: foreach?

2004-08-11 Thread Benjamin S. Rogers
Not exactly. You can do a foreach style loop over a structure, but even then you are limited to looping over the key names rather than their values: cfloop collection=#myStruct# item=myKey cfoutput#myStruct[myKey]#/cfoutput /cfloop Or... cfscript for (myKey in myStruct) {

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-19 Thread Benjamin S. Rogers
In The Art of Unix Programming, you get an interesting history on WHY various OS's are the way they are It's also horribly misinformed. Though ESR seems to know a good deal about Unix, his knowledge of other operating system seems to be very shallow. In particular, some of the statements he

RE: OT- SQL backup question

2004-07-13 Thread Benjamin S. Rogers
You need to wrap the active portion of the log file to the beginning of the log. To do this, you have to issue a bunch of dummy queries. This page explains a bit more: http://www.tek-tips.com/gfaqs.cfm/pid/183/fid/345 Here's a script:

RE: Microsoft acknowledges CF!

2004-05-10 Thread Benjamin S. Rogers
They also only talked about the general functionality of CF. There are so many built in functions in CF that I think we all take for granted because they've been in there so long. Things like manipulating lists, queries, dates, display formatting. The list of CF's *real development benefits,

RE: Microsoft acknowledges CF!

2004-05-10 Thread Benjamin S. Rogers
What do you mean by shallow support? There's a good deal of Java that simply can't be used directly from within CF. A lack of support for null values is a big reason. There's also a good deal that requires workarounds or hacks. It's certainly possible to use a lot of Java from within CF, but it

RE: CFMX cfcontent

2004-04-16 Thread Benjamin S. Rogers
Try attachment instead of inline in your cfheader tag. Ben Rogers http://www.c4.net v.508.240.0051 f.508.240.0057 From: Mickael [mailto:[EMAIL PROTECTED] Sent: Friday, April 16, 2004 11:34 AM To: CF-Talk Subject: Re: CFMX cfcontent Hi Dave, Let's say

RE: RE: What is a Factory?

2004-02-26 Thread Benjamin S. Rogers
I don't know of any official definition of a Manager, but here's my definition. It's not so much a definition as an explanation of how I end up with classes that have Manager in their name. :) I start with a class that has grown far too large and unwieldy. I take methods which I've subconsciously

RE: OT: windows mailing list

2004-02-19 Thread Benjamin S. Rogers
This is just my experience, but it seems rather hard to get anyone who works with windows to help on a newsgroup. They want you to buy a book or get MCS-idontrealyknowwhatsup-E certified. You'll find people that will help, but not to the same degree as in the open source world - where people

RE: Safari Issues

2003-11-26 Thread Benjamin S. Rogers
A lot of the benefits of web standards will only be available in the future, so they offer little current benefit. However, if you're building a web application that you expect will be around for three to five years, it makes sense to build it in such a way that you won't have to replace

RE: OO Design

2003-11-18 Thread Benjamin S. Rogers
A native data type like a ColdFusion structure or array will be much faster than a component. Additionally, in writing your own component, you will introduce complexity and, as a result, more opportunity for bugs. So, in general, I'd say use a native data type unless you specifically need a

RE: VB Functions -- Coldfusion?

2003-10-22 Thread Benjamin S. Rogers
or 1 based index this time?), more predictable (i.e. in its conversion between datatypes), and just generally easier to use. When something does go wrong, error messages tend to be a bit more informative, and, when in doubt, CFDump it to see what you've got. Benjamin S. Rogers http://www.c4.net/ v

RE: Sorting IP Addresses

2003-10-17 Thread Benjamin S. Rogers
Message - From: Benjamin S. Rogers To: CF-Talk Sent: Thursday, October 16, 2003 4:38 PM Subject: RE: Sorting IP Addresses that doesn't work perfectly. 166.141.22.4 166.141.22.40 166.141.22.41 166.141.22.47 166.141.22.48 166.141.22.5 Sorry about that. I forgot to convert the substrings

RE: Sorting IP Addresses

2003-10-17 Thread Benjamin S. Rogers
, I think that's just his brand of humor. although not very funny sometimes, its just jochem, and we deal. he is a db wizard. ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Benjamin S. Rogers [mailto

RE: Sorting IP Addresses

2003-10-17 Thread Benjamin S. Rogers
of a SQL Server equivalent functionality wise. Perhaps Yukon with C# will address this, though a multi-thousand dollar upgrade for an IP datatype would just be silly. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 [Todays Threads] [This Message] [Subscription] [Fast

RE: Sorting IP Addresses

2003-10-16 Thread Benjamin S. Rogers
)) - 1)), REVERSE(SUBSTRING(REVERSE(SourceIP), 1, CHARINDEX('.', REVERSE(SourceIP)) - 1)) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: David Delbridge [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 3:06 PM To: CF-Talk Subject

RE: Sorting IP Addresses

2003-10-16 Thread Benjamin S. Rogers
Sure. I would use: SELECT* FROM SourceIPSpamCount ORDER BYSourceIP But I don't use MS SQL Server ;-) I'm afraid that comment was lost on me? If you could give me a bit more information, perhaps I could come up with an equivalent in SQL Server for Tony. Benjamin S. Rogers http://www.c4

RE: Sorting IP Addresses

2003-10-16 Thread Benjamin S. Rogers
('.', REVERSE(SourceIP)) + 1) - CHARINDEX('.', REVERSE(SourceIP)) - 1))), CONVERT(INT, REVERSE(SUBSTRING(REVERSE(SourceIP), 1, CHARINDEX('.', REVERSE(SourceIP)) - 1))) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 [Todays Threads] [This Message] [Subscription] [Fast

RE: CFDump stopped working (along w/ cftrace)

2003-10-02 Thread Benjamin S. Rogers
the DOCTYPE tag, which will place many modern browsers (Internet Explorer, Mozilla) in compatibility or quirky mode. Of course, the rendering of the rest of your page may change, so you may want to make the inclusion of the DTD dependent on a debug parameter. Benjamin S. Rogers http://www.c4.net/ v

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
in as many browsers as we reasonably can. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
. However, most customers do not care to pay us to test on the others. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
browsers. It's a simple business decision. Our average proposal is about 15 pages long, and it explains browser support in depth about half way through. So far, no one has opted to pay us more to ensure compatibility on the Mac. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
Explorer on the Mac renders text at 96 dpi instead of the system 72 dpi. So, though I might use nothing but the paragraph tag, I can't possibly foresee what the site will look like. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
of a couple different Operating Systems on the Mac. I consider addressing my customers' concerns my entire job. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/lists.cfm

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
editor, you could provide a feature rich, seamless experience for each browser. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
it would take much more time to write a feature rich, cross platform HTML editor. I'd much rather just leverage the work done by other individuals. I don't have any desire to reinvent the wheel. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
to the PC Internet Explorer version 6.x (which did come out later). However, they are a much closer pedigree than the 5.x versions as far as HTML rendering goes. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
Most(*) mail clients auto-hyperlink things that look like http://blah.blah.blah - you don't need HTML for that. Yes, but most e-mail clients also have a problem with long URLs. HTML e-mail would solve that problem. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
mailing list. This is not to say that everyone on those lists uses HTML formatting. Most people don't. However, many do, and for the most part is unobtrusive. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
work, then get yourself a real Web browser. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
which send mail break the line at around line 80. Outlook 2002 tries to sense these breaks and remove them, but it isn't very good at it. If you can suggest an e-mail client that guesses correctly every time, I'd be impressed. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
Well, Jochem, if text is illegible on your system at that size, then hold down control and scroll up. Control + actually. I was speaking of the of the mouse wheel on a Windows system in Internet Explorer, the normal behavior or which is scrolling. Benjamin S. Rogers http://www.c4.net/ v

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
what I'm about to click. Nevertheless, this would seem to be a client specific issue, not necessarily a problem with HTML formatted e-mail altogether. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
like you tested Outlook Express (because Outlook does not have an news reader)? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http

RE: (Admin) List upgrades

2003-09-15 Thread Benjamin S. Rogers
break and remove it before rendering the message. However, it guesses incorrectly almost as often as it guesses correctly. Which e-mail client do you use, and how does it handle such lines? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: Debugging ColdFusion (was: DWMX 2004 - Whats new for us?

2003-08-29 Thread Benjamin S. Rogers
But those versions were effectively interpreters, not compilers and the debugging mechanism was built into the interpreter. And it sounds like people complained that it never really worked very well? Yes, but we held out hope that things would get better, not worse. Benjamin S. Rogers http

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

2003-08-06 Thread Benjamin S. Rogers
Same thing happened on my workstation yesterday. I had to uninstall everything and reinstall from scratch to get it working. That was, of course, before I read this thread. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Dustin Snell [Unisyn

RE: How can I ORDER BY RANDOM ?

2003-04-03 Thread Benjamin S. Rogers
This will generally order them according to the clustered index or the order in which they were added. Either way, it's not random. I would expect to see the same results every time. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Bryan

RE: How can I ORDER BY RANDOM ?

2003-04-03 Thread Benjamin S. Rogers
A quick search produced this list of articles: http://www.sqlteam.com/FilterTopics.asp?TopicID=135 Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Tom Forbes [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 5:06 PM To: CF-Talk

RE: CFCs - any way to reload other than cycle CF service?

2003-03-09 Thread Benjamin S. Rogers
that on, you'd probably know it, and wouldn't be posting to the mailing list. :) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED] Sent: Sunday, March 09, 2003 1:39 PM To: CF-Talk Subject: CFCs - any way

RE: New MM.com

2003-03-07 Thread Benjamin S. Rogers
(such as IE handing the compressed data off to plugins such as Flash instead of the uncompressed data). Is this no longer the case? Are people using HTML compression in production environments successfully? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: Apache on Win2k - WAS: win 2000 professional for web server?

2003-03-04 Thread Benjamin S. Rogers
address, all you have to do is create virtual directories with the same name as the user name and IIS will automatically throw the user into the appropriate directory. Perhaps I misunderstood you? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFFILE and carriage returns

2003-02-26 Thread Benjamin S. Rogers
It will also cover you one most things Internet related. Most RFCs that I've seen, especially those dealing with mail, require cr/lf value pairs. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent

RE: Web Disservices

2003-02-10 Thread Benjamin S. Rogers
, especially the free ones. :) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Monday, February 10, 2003 5:58 PM To: CF-Talk Subject: Re: Web Disservices On Sunday, Feb 9, 2003, at 20:54 US/Pacific

RE: Why are my clients having so many login problems all of a sudden?

2003-02-03 Thread Benjamin S. Rogers
will all the sudden experience the problems you've described. The only foolproof work around we've found is to have user add our site to their list of trusted sites, which apparently bypasses whatever causes the problem. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

File Not Found Error

2003-01-31 Thread Benjamin S. Rogers
and forums, and every bit of documentation we can find and haven't come across anything. Thanks. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid

RE: CFMX Log Viewer

2003-01-27 Thread Benjamin S. Rogers
I believe one of the ColdFusion MX updaters makes it available again: http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenote s_mx_updater.html ID: 46600 The Log Viewer was not available in the ColdFusion MX Administrator in Professional Edition. Benjamin S. Rogers http

RE: Protecting scope of cffunction variables

2003-01-24 Thread Benjamin S. Rogers
cfargument name=first required=true cfargument name=second required=true cfset var sum=arguments.first + arguments.second cfreturn sum /cffunction Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Jon Gunnip [mailto:[EMAIL PROTECTED]] Sent

RE: Multihomed Hosts and ColdFusion MX

2003-01-10 Thread Benjamin S. Rogers
it takes, but I was hoping that there was a real solution to this problem, something simple that I was overlooking, or a bug fix in the works, because there certainly does seem to be a problem here. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

Multihomed Hosts and ColdFusion MX

2003-01-09 Thread Benjamin S. Rogers
comfortable deploying it. Thanks. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists

RE: BlueDragon J2EE on OSX - Working !!!

2003-01-09 Thread Benjamin S. Rogers
believe so, might you have taken the higher road instead of taking a pot shot at a competitor? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: John Dowdell [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 4:52 PM To: CF-Talk Subject

RE: CFC - Var vs. This

2003-01-06 Thread Benjamin S. Rogers
arbitrary restrictions, you end up with variables that are declared no where near where they actually get used. It just makes code harder to read by my way of thinking. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Adrocknaphobia Jones [mailto:[EMAIL

RE: RE: CFMX and Java

2003-01-03 Thread Benjamin S. Rogers
mixing up workstation and productivity software licensing with server licensing. While quite a few are upset about the former, IBM/Oracle/Sun/Bea compete in the latter. If we're comparing Oracle's licensing to Microsoft's, well, I'll take Microsoft's any day of the week. Benjamin S. Rogers http

RE: ODBC Date Question

2002-12-30 Thread Benjamin S. Rogers
field that accepts a date, I end up with at least 25 lines of validation code and exception handling. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Julia Green [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 9:47 AM To: CF-Talk

RE: SOT: CFDEV.com

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

RE: ColdFusion practical limits

2002-11-19 Thread Benjamin S. Rogers
to take into consideration. Nevertheless, even if that number has grown to, say, 20 for your average Web server, and you have dual processor boxes (still the best bang for the buck?), that would be 50 servers. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message

RE: ColdFusion practical limits

2002-11-19 Thread Benjamin S. Rogers
executing. Which is the correct definition in this sense? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http

RE: (Admin) New spam code

2002-11-12 Thread Benjamin S. Rogers
simply blocking outbound port 25? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists

RE: Shorter urls?

2002-10-29 Thread Benjamin S. Rogers
) to rewrite the URL before it even gets to ColdFusion. There's a free one for IIS called ISAPI_Rewrite (http://www.isapirewrite.com). Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Ian Lurie [mailto:ian;portentinteractive.com] Sent: Tuesday, October

RE: How to remove URL references from printed pages

2002-10-25 Thread Benjamin S. Rogers
Have a look at Mead Company's ScriptX. They have a free, lite version. It only runs in Internet Explorer, however, but it works very well. You can even control it with JavaScript. Very cool. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From

RE: Urgent : GURU Required: Excel vs COM in CFMX

2002-10-24 Thread Benjamin S. Rogers
of what we do, and sometimes it is the only way to get the job done. I'd really like to see Macromedia fix COM support in ColdFusion than have presenters haranguing the death of COM at Devcon. COM is years away from being dead in any practical sense. Benjamin S. Rogers http://www.c4.net/ v

RE: BlueDragon (was RE: How is CFMX J2EE implemented?)

2002-10-15 Thread Benjamin S. Rogers
just the opposite, take the Microsoft approach (DRDOS and OS2) and break compatibility wherever possible. I personally doubt they will do this, however. There position in the CF market is secure. There's no need to resort to such tactics. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Benjamin S. Rogers
Nothing changed on the SQL Server, correct? No one checked the Boost SQL Server priority on Windows NT checkbox or changed any SMP settings? Is ColdFusion the only thing that talks to SQL? Don't rule out coincidence. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFMX: cfcontent/deletefile/IE - bug?

2002-10-07 Thread Benjamin S. Rogers
I believe the behavior of the CFMail tag was changed so that it no longer immediately embeds the attachment, but rather, waits until it sends the message. This probably doesn't directly relate to Marcello's problem. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFMX issues

2002-10-07 Thread Benjamin S. Rogers
Are you sure #1 isn't the Internet Explorer 6 cookie/privacy bug? http://www.c4.net/Index.cfm?Method=Support.FAQ.IE6Privacy Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Brook [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 6:03

RE: Fastest way to convert a csv file to cf array/query?

2002-10-04 Thread Benjamin S. Rogers
Won't be extremely fast, but I have a set of custom tags written in CFML for reading a CSV formatted file into a ColdFusion query object. Let me know (off list) if you'd like a copy. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: jon hall

RE: Header info displaying on site?

2002-10-03 Thread Benjamin S. Rogers
=http://www.domain.com/page.cfm; Or, you might just try a HTTP temporary redirect: cfheader name=location value=http://www.domain.com/page.cfm; cfheader statuscode=302 statustext=Document Temporarily Moved Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message

RE: Deleting Compiled Java

2002-10-02 Thread Benjamin S. Rogers
idea to me. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 10:22 AM To: CF-Talk Subject: Deleting Compiled Java How do I do this and why can't I purge all the compiled

RE: Switching to CFMX

2002-10-01 Thread Benjamin S. Rogers
|ColdFusion's) fault. :) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http

RE: Switching to CFMX

2002-09-30 Thread Benjamin S. Rogers
request is always interminably slow. I don't have any in production, However. I've only ported several such applications to a Developer Version of ColdFusion MX for testing purposes. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: Switching to CFMX

2002-09-30 Thread Benjamin S. Rogers
Good to know. That explains why I haven't run into it as I tend to nest fuses (I don't actually use Fusebox but something akin to it). I try to keep individual switch statements to between 5 and 10 case statements with no more than 20. Gets to hard to read otherwise. Benjamin S. Rogers http

RE: WDDX to XML

2002-09-24 Thread Benjamin S. Rogers
the structure of WDDX as much as possible as quite a bit of time and energy went into designing it. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Brian Thornton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 24, 2002 3:45 PM To: CF-Talk

RE: CFMX: how to deal with type java.util.Hashtable$Enumerator

2002-09-11 Thread Benjamin S. Rogers
Outlook XP does not treat it as a single, clickable link. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 11:48 AM To: CF-Talk Subject: Re: CFMX: how to deal

RE: Big problem- session vars not saved in IE6 on CF5

2002-08-29 Thread Benjamin S. Rogers
encountered. This is reasonably good work around for Intranet/Extranet sites. Obviously, however, it is not so good for public Internet sites. So far, we've left these sites broken and simply pointed our fingers at Microsoft. So, if someone has a true fix, please share it. Benjamin S. Rogers http

RE: Missing form fields - anyone experienced this error ?

2002-08-29 Thread Benjamin S. Rogers
blamed it on a thousand different things, everything from AOL's proxy servers, to browser caching, to corporate firewalls. The truth is we never figured it out. Looking back, the only regret I have is that I spent so much time trying to fix a problem that I had no control over. Benjamin S. Rogers http

RE: Big problem- session vars not saved in IE6 on CF5

2002-08-29 Thread Benjamin S. Rogers
to the listed of allowed sites, which seems to bypass the whole privacy engine. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Smith, Matthew P -CONT(DYN) [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 11:05 AM To: CF-Talk Subject

RE: Big problem- session vars not saved in IE6 on CF5

2002-08-29 Thread Benjamin S. Rogers
To be honest, I do not know. However, I believe it has something to do with corrupted cookie files. In which case, you are more likely to see it in sites that people revisit frequently. That has been our experience, at least. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CF vs. ASP

2002-08-26 Thread Benjamin S. Rogers
in a lot of situations. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 4:35 PM To: CF-Talk Subject: RE: CF vs. ASP CASE IN POINT TOO MANY LINES/CHARACTERS OF BS VBSHIT

RE: [SOT] Server Hard Drives

2002-08-02 Thread Benjamin S. Rogers
If you want to know more, go to www.storagereview.com and have a look around. StorageReview.com? You mean the site which has perpetually listed the ATA-100 Western Digital SE drives in the top 5 for just about every performance test for the past 6 months. :) Benjamin S. Rogers http://www.c4

RE: [SOT] Server Hard Drives

2002-08-02 Thread Benjamin S. Rogers
that they have to fail two times over before I start losing data and time. :) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 __ This list and all House of Fusion resources hosted by CFHosting.com. The place

RE: ColdFusion Mail Server

2002-07-31 Thread Benjamin S. Rogers
as bad as not wrapping your outgoing mail. Are there really that many antiquated e-mail clients and gateways out there still? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 __ Get the mailserver

RE: cfimage

2002-07-25 Thread Benjamin S. Rogers
the image: cfexecute name=C:\ImageMagick\mogrify.exe arguments=-fill ##FFF -draw rectangle 181,46 268,138 -crop 200 -quality 100 c:\Image.jpg timeout=10 /cfexecute Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: JLH All

RE: Using THIS scope in CFCs

2002-07-17 Thread Benjamin S. Rogers
make it necessary to implement inelegant workarounds. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk

RE: Webtrends alternative

2002-06-03 Thread Benjamin S. Rogers
issues with early 6.x releases, the latest version is by far the fastest, most stable statistics analysis application we have ever run. That server has been running flawless for months. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: Webtrends alternative

2002-06-03 Thread Benjamin S. Rogers
anxious to get away from 5.x. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http

RE: CFPOP Question

2002-05-21 Thread Benjamin S. Rogers
1. The date field when it comes in is not a TRUE date field thus I can not use CreateODBCDate or DateFormat on this field to grab JUST THE DATE and then JUST the time. IDEAS??? ParseDateTime(Date, POP) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFPOP Question

2002-05-21 Thread Benjamin S. Rogers
Not off hand, sorry. :( Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Randell B Adkins [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 10:48 AM To: CF-Talk Subject: RE: CFPOP Question Thanks.. any idea on the 2nd question

RE: printing

2002-05-14 Thread Benjamin S. Rogers
To my knowledge, there is no way to do it without plugins like ScriptX from MeadCo: http://www.meadroid.com/scriptx/index.htm Even then, it only works in IE. However, the same company makes a product which embeds IE in the Netscape browser. :) Benjamin S. Rogers http://www.c4.net/ v

RE: Macromedia Folks: What are you thinking?

2002-05-06 Thread Benjamin S. Rogers
just bring this up because the attitude is a little disconcerting: treating something as simple and fundamental to the HomeSite experience as file browsing as a feature which needs justification just doesn't fly. Anyway, I'll relent now. :) Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f

RE: [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionWrite

2002-04-16 Thread Benjamin S. Rogers
ColdFusion templates. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Tracy Bost [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 12:31 AM To: CF-Talk Subject: [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionWrite Has anyone

RE: [Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionWrite

2002-04-16 Thread Benjamin S. Rogers
Actually, it was a problem specific to ADO. We switched the site to ODBC and the problem went away. Queries stayed the same. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16

RE: options for image resizing tags

2002-04-15 Thread Benjamin S. Rogers
the CFEXECUTE tag. You'll probably find more hosts willing to install a custom tag than who've enabled the CFEXECUTE tag. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 8:53 AM To: CF-Talk

RE: How do you change this number 70.0500 to 70.05?

2002-04-04 Thread Benjamin S. Rogers
of the decimal point. Increase the 8 to something higher for more. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 6:22 PM To: CF-Talk Subject: Re: How do you change

RE: How do you change this number 70.0500 to 70.05?

2002-04-03 Thread Benjamin S. Rogers
Multiply the number b7 100, round it off, and then divide by 100. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 4:22 PM To: CF-Talk Subject: Re: How do you change

RE: UDF question

2002-03-18 Thread Benjamin S. Rogers
have row level locking but that is, in essence, how ColdFusion behaves: lock the whole scope instead of the variable being modified. MySQL has seen the light. Hopefully Macromedia will one of these days. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: resendundeliverablemail4.cfm and lastModified

2002-03-14 Thread Benjamin S. Rogers
) cfset MessageDate = ParseDateTime(MessageDate, POP) CFIF DateDiff(y, MessageDate, Now()) GT LocalDateTrigger Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Phil Cruz [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 5:37 PM To: CF

RE: CFABORT vs CFEXIT in CFCATCH TAG

2002-02-07 Thread Benjamin S. Rogers
CFABORT. If, however, you are within an included file or a custom tag and you merely want to exit that template but continue on with the rest of the request, then use the CFEXIT tag with the appropriate Method attribute. Both tags will work within a CFCATCH tag. Benjamin S. Rogers http://www.c4.net

RE: Macromedia.com

2002-01-30 Thread Benjamin S. Rogers
If I recall, ColdFusion support for .Net did not include running on the CLR but support for things like .Net services. Perhaps interoperability would be a more accurate word to describe Macromedia's proposed support for .Net. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

  1   2   3   >