RE: Billing System Query Help

2004-04-22 Thread Heald, Tim
Do you have link (foreign key) columns? With what you have here I am not sure how you would write a join. Also what db?It matters :) -- Timothy Heald Web Portfolio Manager Diplomatic Security U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect

RE: Dumping Local Vars Scope

2004-04-21 Thread Heald, Tim
Go download cf_dump from the macromedia exchange. -- Timothy Heald Web Portfolio Manager Diplomatic Security U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these

RE: Dumping Local Vars Scope

2004-04-21 Thread Heald, Tim
Thought they were in 5 but hadn't been in 4.5 and previous.My bad.Hmm how would you do it then? -- Timothy Heald Web Portfolio Manager Diplomatic Security U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or

RE: Writing formatted data to Excel

2004-04-19 Thread Heald, Tim
There is a Jakarta project called POI that is making java objects that can create all different types of office documents.Se it here: http://jakarta.apache.org/poi/index.html http://jakarta.apache.org/poi/index.html -- Timothy Heald Web Portfolio Manager Diplomatic Security U.S. Department

Exchange/Outlook Tie-Ins

2004-04-16 Thread Heald, Tim
Does anyone have experience getting access to the GAL in exchange from cf?We are not permitted to use LDAP here.I think I have seen active x controls that would give this access, but I can't seem to find anything that does what I need. Basically my CF app is putting together task information.Then

RE: Exchange/Outlook Tie-Ins

2004-04-16 Thread Heald, Tim
approved or sanctioned by these organizations. This e-mail is unclassified based on the definitions in E.O. 12958. -Original Message- From: Heald, Tim Sent: Friday, April 16, 2004 12:01 PM To: CF-Talk Subject: Exchange/Outlook Tie-Ins Does anyone have experience getting access to the GAL

RE: Exchange/Outlook Tie-Ins

2004-04-16 Thread Heald, Tim
Isn't COM mainly broken in MX? -- Timothy Heald Web Portfolio Manager Diplomatic Security U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these opinions been

RE: Exchange/Outlook Tie-Ins

2004-04-16 Thread Heald, Tim
are using SQL Server) to pump it in nightly. This might not be the most elegant solution, but without using LDAP (which Exchange and Active Directory both use) you are kinda hosed... HTH, Jeff Garza - Original Message - From: Heald, Tim To: CF-Talk Sent: Friday, April 16, 2004 8:53 AM

RE: Securing CF Apps.

2004-03-24 Thread Heald, Tim
This is one more thing.There is of course a firewall (three or four actually before you get to the db) and there is and IDS, and there is virus protection software, and the OS is locked down and so on and so on. We were not advocating doing away with basic security practices, just saying take

RE: why are procedures better? (was: RE: Securing CF Apps.)

2004-03-24 Thread Heald, Tim
Additionally, if your on a team with a good PL/SQL developer they are going to write packages and procedures for you to call.They can then do cross tabs, array loops and all sorts of other things that you can't do in a regular query block, such as work with the oracle session, db user accounts,

RE: why are procedures better? (was: RE: Securing CF Apps.)

2004-03-24 Thread Heald, Tim
Ok, Access to the db security model through the use of oracle users and roles. You cannot do this with a cfquery. Try working with a pl/sql array in a query block. or a clob.Or any kind of advanced PL/SQL.What kind of work can you do with the OID?None. These are oracle specific

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
1. If your properly encrypting the url your going to change your seed (key) every request.That way it is different every time 2. By using plain text variable names your going to give the potential intruder a decent insight into your application design, and this will give them the ability to

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these opinions been approved or sanctioned by these organizations. This e-mail is unclassified based on the definitions in E.O. 12958. -Original Message- From: Heald, Tim Sent: Tuesday, March 23, 2004 2

RE: RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
1. If your properly encrypting the url your going to change your seed (key) every request.That way it is different every time What possible value does this bring? If my user.login is encrypted one time as kjdfljsldfland the user comes back and types in kjdfljsldfl they don't get taken to

RE: RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
There are very specific equations that can help you decide how much you need to spend on risk mitigation and security.Unfortunately most web developers don't know where to look for information like this.Also doing a large scale risk analysis can be expensive and time consuming, enough that it will

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
The majority of my points are in regards to web applications.When talking about a web site I can understand your point, however much of what we do are actually applications ion the true sense, and not just sites.The security of our public sites is very different. -- Timothy Heald Web Portfolio

RE: RE: RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
Obscuring an encryption method is different form hiding the architecture or structure of your application. The open source community likes to make the point that security through obscurity doesn't work.Just because someone says it doesn't make it true. the methods I use to secure my site are

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
Good post man, and your right, for the most part the applications I am talking about are not available over the internet, or only through VPN or other methods. Like I said earlier, for public sites you are going to use very different resources than you will use on a closed/classified

RE: RE: RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
There are different controls that you would use for different purposes. Obviously an ecommerce SITE (which is what Amazon is) needs users to be able to return to a specific product. Web services security is very different from either public site or application security.You're comparing apples

RE: RE: RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
I don't like giving the user browser controls even.Which is why I tend to pop my apps in a new window with no controls (back forward and so on).Why? I have business rules that I want them to have to follow.I want them to follow a specific process for accessing and entering information. Also as

RE: RE: RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
What is funny to me is that the number of Linux vulnerabilities far surpasses the number of M$ ones.Look into it.It's just that M$ products are more commonly used, and therefore more commonly attacked. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
: Tuesday, March 23, 2004 08:42 PM To: 'CF-Talk' Subject: RE: Securing CF Apps. Munging URLs provides a little, if any, benefit for web apps. - Original Message - From: Heald, Tim [EMAIL PROTECTED] Date: Tuesday, March 23, 2004 1:34 pm Subject: RE: Securing CF Apps. Good post

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
Subject: Re: Securing CF Apps. Heald, Tim wrote: I don't like giving the user browser controls even.Which is why I tend to pop my apps in a new window with no controls (back forward and so on). You must not like the following enhancement to Mozilla 1.7: A new option to prevent sites using

RE: RE: RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
Precisely my point. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these opinions been

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
approved or sanctioned by these organizations. This e-mail is unclassified based on the definitions in E.O. 12958. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 23, 2004 4:38 PM To: CF-Talk Subject: Re: Securing CF Apps. Heald, Tim wrote: What

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
I think something used to either sell products on the web, or provide information on the web is a site.Now the site might be controlled by a back end content management system, or some sort of inventory application, but the rest of it is a web site. -- Timothy Heald Web Portfolio Manager

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
more secure; it pisses me off. It is possibly to have strong security and provide an application that meets the users' needs. Taking away bookmarks, back buttons, etc. doesn't do that. -Matt On Mar 23, 2004, at 2:23 PM, Heald, Tim wrote: Here's my take on it.You layer security on like

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
It was already proven by someone else in another post. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
I have said time and again that I follow a layered approach to security. Would security through obscurity work in and of itself?No, it wouldn't. However combined with many of the other best practices we have discussed here today it can make for a reasonably well protected application. So Matt

why are procedures better? (was: RE: Securing CF Apps.)

2004-03-23 Thread Heald, Tim
1. They execute faster.The db (I only know from Oracle and SQL Server, if others are different it doesn't really concern me) can optimize the execution plan. 2. You can often times do more. There are things I can do in a pl/sql package/procedure that I cannot do in a query call 3. You can

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
Why do I need someone to agree with me?I have my own mind.I can asses the objective reality of whether I feel something is useful to me.You should check out some Ayn Rand some time. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State

RE: Securing CF Apps.

2004-03-23 Thread Heald, Tim
Again, that provides insight into your encryption algorithm Again, I am using an open algorithm.You can break it.It's a speed bump. Your techniques do not give people less to go on. You just give them a different set of things to go on. It also makes it more difficult to get something to go

Oracle System password recovery

2004-03-03 Thread Heald, Tim
I am in the middle of deploying an application.I need to grant some privileges to select from some system tables and our dbas have been gone for hours.Is there a way to easily recover the system user password? -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S.

RE: Site Compiler that will handle CF

2004-02-12 Thread Heald, Tim
You can run cf off of iis just fine on a decent lap top.I do. If your using IIS then you can do ASP. The database is where you will usually run into problems, but I have SQL 2000 running fine on mine, or you can just demo off of access.Hell we have Oracle 8 and 9i running on laptops with CF

RE: CFDJ isn't exactly kicking bootay

2004-01-08 Thread Heald, Tim
If it ever actually gets to you.We haven't seen one in months.This isn't the first time either, I have finally just just given up and won't be resubscribing. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions

Oracle 8i, CFMX 6.1 LOB issues

2004-01-08 Thread Heald, Tim
I'm experiencing quite an oddity with our Oracle 8.1.7 servers when dealing with any LOB data via CF 6.1 Enterprise. Via my CFML front-end, I'm able (as the oracle schema owner) to pull back (any) LOB data correctly with no issues. However, if I should log in as a user whom has execute

RE: Oracle 8i, CFMX 6.1 LOB issues

2004-01-08 Thread Heald, Tim
Not a stupid question at all, but yes we do. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor

iMail Web Messaging through IIS

2004-01-06 Thread Heald, Tim
Has anyone ever gotten the iMail web mail app to run through IIS? -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated

OT: RE: iMail Web Messaging through IIS

2004-01-06 Thread Heald, Tim
- From: Heald, Tim [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 06, 2004 1:53 PM To: CF-Talk Subject: iMail Web Messaging through IIS Has anyone ever gotten the iMail web mail app to run through IIS? -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department

RE: MACR Stock price?

2003-12-30 Thread Heald, Tim
He must work in the education sector. We al know those pikers don't make any money :) -- Tim The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these opinions been approved or sanctioned by these

RE: MACR Stock price?

2003-12-30 Thread Heald, Tim
is unclassified based on the definitions in E.O. 12958. -Original Message- From: Heald, Tim [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 30, 2003 12:48 PM To: CF-Talk Subject: RE: MACR Stock price? He must work in the education sector. We al know those pikers don't make any money

RE: MACR Stock price?

2003-12-30 Thread Heald, Tim
is unclassified based on the definitions in E.O. 12958. -Original Message- From: Heald, Tim [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 30, 2003 12:48 PM To: CF-Talk Subject: RE: MACR Stock price? He must work in the education sector. We al know those pikers don't make any money

RE: seven days earlier

2003-12-12 Thread Heald, Tim
You would use dateAdd() and add 7 days. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have

RE: queryNew / array functions

2003-12-12 Thread Heald, Tim
something like arrayMax(myQuery[myColumn]) should do the trick. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated

RE: Run HTML through CFMX

2003-12-10 Thread Heald, Tim
You make .htm or .html get parsed by CF in your web server.Then you add your security. How to do this depends on the web server. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily

RE: JS help

2003-12-09 Thread Heald, Tim
That's the page that's created with window.open() It's probably using just window.open('myfile.cfm') or something and you need to be more specific.Send the code for the originating page. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State

RE: JS help

2003-12-09 Thread Heald, Tim
Ok but what does that tag produce in html and _javascript_?It has to be using a window.open in order to pop the new window somewhere. -- Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not

RE: Can this be done??

2003-11-26 Thread Heald, Tim
_javascript_. Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these opinions been approved or

RE: Can this be done??

2003-11-26 Thread Heald, Tim
Subject: RE: Can this be done?? Do you know where I could find some examples? --Original Message Text--- From: Heald, Tim Date: Wed, 26 Nov 2003 08:56:10 -0500 _javascript_. Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions

RE: Can this be done??

2003-11-26 Thread Heald, Tim
hieve what you want -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: 26 November 2003 14:02 To: CF-Talk Subject: RE: Can this be done?? Do you know where I could find some examples? --Original Message Text--- From: Heald, Tim Date: Wed, 26 Nov 200

RE: Can this be done??

2003-11-26 Thread Heald, Tim
e examples? --Original Message Text--- From: Heald, Tim Date: Wed, 26 Nov 2003 08:56:10 -0500 _javascript_. -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 26, 2003 8:56 AM To: CF-Talk Subject: re: Can this be done?? H

RE: CF Certification

2003-11-26 Thread Heald, Tim
ack no not again. Go look in the archives /me runs and hides. Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated

RE: cfargument required=no in cfscript???

2003-11-18 Thread Heald, Tim
You use the arguments array's length to determine how many arguments you have.When writing functions in CF script the arguments have to be in order, first the required attributes, and then the optional ones, so something like this: function checkName(cFirstName){ if(arrayLen(arguments) gt 1){

RE: Cold Fusion MX - Looping over application Structure

2003-11-14 Thread Heald, Tim
You do still need to lock shared scope variables that would have a risk of race conditions.Why you don't run into problems with that on CF 4.5 is beyond me, but a simple cflock should fix it right up. Timothy Heald Web Portfolio Manager Overseas Security Advisory Council U.S. Department of

RE: Comparing Values

2003-11-12 Thread Heald, Tim
Use valueList() to get a comma delimited list from the c=id column of the first query then use IN in the second query sorta like this: cfset idList = valueList(firstQuery.idField) cfquery name=secondQuery datasource=blah select columns from table where table.idField in (#valueList)

Task Scheduler Issues Yet Again

2003-10-31 Thread Heald, Tim
I have 2 tasks that run daily at 9:00 and 9:15.Each delivers several thousand emails with a daily news items.Really basic stuff. Since daylight savings they have been all hosed up.At first they were being sent out at the wrong time.I deleted and then recreated them, now one goes out at the

RE: Task Scheduler Issues Yet Again

2003-10-31 Thread Heald, Tim
not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these opinions been approved or sanctioned by these organizations. This e-mail is unclassified based on the definitions in E.O. 12958. -Original Message- From: Heald, Tim Sent: Friday, October 31

RE: OT multiple submits and the ENTER key

2003-10-29 Thread Heald, Tim
If you don't have a submit button then hitting enter doesn't work. Tim The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s).Nor have these opinions been approved or sanctioned by these organizations. This e-mail is

Scheduled Tasks executing at wrong time

2003-10-28 Thread Heald, Tim
Hey kids, Anyone know of scheduled task problems caused by daylights savings time? The server clock set it self correctly but my tasks are still running an hour early.Not sure what to do. Has anyone run into this before?I recreated the tasks and they are still running to soon. Weird.Guess I

RE: How can it be done ?

2003-10-28 Thread Heald, Tim
What about adding the userid as part of the file name that they download? Timothy Heald Information Systems Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any

Top n in Oracle

2003-10-15 Thread Heald, Tim
I need to pull Top n (lets say three) from an oracle 8i db.Now SQL Server makes this really easy to do.How would I go about doing it in Oracle?I have tried sub selects and rownum and stuff, but the order gets al hosed up if I use those.Basically I need them ordered by date desc. Any help would

RE: Top n in Oracle

2003-10-15 Thread Heald, Tim
AM To: CF-Talk Subject: Re: Top n in Oracle On Wednesday 15 Oct 2003 12:39 pm, Heald, Tim wrote: I need to pull Top n (lets say three) from an oracle 8i db.Now SQL Server makes this really easy to do.How would I go about doing it in Oracle?I have tried sub selects and rownum and stuff

RE: Top n in Oracle

2003-10-15 Thread Heald, Tim
Subject: RE: Top n in Oracle did you try ... where rownum = 3 ... ? -Original Message- From: Heald, Tim [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 3:27 PM To: CF-Talk Subject: RE: Top n in Oracle The table has something like 250,000 records.The performance would make

RE: Top n in Oracle

2003-10-15 Thread Heald, Tim
* FROM ( SELECT * FROM foo WHERE goo = 'koo' ORDER BY gooey ) WHERE rownum 101 - Original Message - From: Heald, Tim [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 6:39 AM Subject: Top n in Oracle I need to pull Top n (lets say three) from an oracle

RE: (Admin) List upgrades

2003-09-15 Thread Heald, Tim
The Fusebox lists on Topica used to. They no longer exist though. Timothy Heald Information Systems Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated

RE: CFTry/CFCatch

2003-09-11 Thread Heald, Tim
Custom tag? Timothy Heald Information Systems Manager Overseas Security Advisory Council U.S. Department of State 571.345.2319 The opinions expressed here do not necessarily reflect those of the U.S. Department of State or any affiliated organization(s). Nor have these opinions been approved or

RE: decrypt() not working on CF5

2003-09-09 Thread Heald, Tim
Start by not using encrypt and decrypt. Instead use cfusion_encrypt() and cfusion_decrypt(). Much better functions. The results are pure alphanumeric. Weird that this shouldn't work though. What error is CF 5 throwing? Or is it decrypting incorrectly? Is the encrypted value the same on

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Heald, Tim
In government the CF market is growing, at least here at state. I know the market in general in D.C. for CF developers with a security clearances is awesome. Tim -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 2:18 PM To: CF-Talk Subject:

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Heald, Tim
You mean aside from the licenses we just bought? Tim -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 3:27 PM To: CF-Talk Subject: Re: DWMX 2004 - Whats new for us? In government the CF market is growing, at least here at state. I know

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Heald, Tim
Also when talking about how much of the market share CF has, you have to look at the installed base, which I know is huge. I mean hell, how many 4.5.1 installs do you think are still floating around out there. I know we have several. Declining sales != declining market share Timothy Heald

RE: NN6+ document.all

2003-08-22 Thread Heald, Tim
document.getElementById() instead of document.all Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From: John Wilker [mailto:[EMAIL PROTECTED] Sent: Friday, August 22, 2003 12:38 PM To: CF-Talk

J2EE CFMX install error

2003-08-20 Thread Heald, Tim
When we get the point where we should be brought to the administrator, after the install, we get an error: No such role cfadmin84f49b8e2fd010bc479ba763218432c4 anyone see this before? Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State

RE: ambiguous

2003-08-18 Thread Heald, Tim
Prefix it with the table name of the one you really want. Probably want to alias it as well. myTable.customerID as thisCustomerID Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From: Robert Orlini

RE: TEST - Please reply *at least once

2003-08-15 Thread Heald, Tim
Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From: Clint [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2003 4:37 PM To: CF-Talk Subject: Re: TEST - Please reply *at least once got it ;)

Oracle Application Server and CF 6.1

2003-08-14 Thread Heald, Tim
Anyone done this before? Pointers? Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription:

RE: RE: re: Mach-II

2003-07-31 Thread Heald, Tim
nono it's like building a house silly. Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 3:07 AM To: CF-Talk Subject:

RE: cfobjectcache for cf5?

2003-07-30 Thread Heald, Tim
structDelete? Depends on the scope in 5. Some were structs and some weren't if I remember correctly. Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED]

RE: RE: re: Mach-II

2003-07-30 Thread Heald, Tim
hehe troll. Silly people. -Original Message- From: Angus McFee [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 4:22 PM To: CF-Talk Subject: RE: RE: re: Mach-II Hal - I've heard from plenty of people looking for a way to beat up on Fusebox, but usually they have nothing to

RE: RE: RE: re: Mach-II

2003-07-30 Thread Heald, Tim
hehe you people really don't see the troll? Matt != Fuseboxer; Hal == FuseboxGhod; Angus == Troll; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 6:51 PM To: CF-Talk Subject: Re: RE: RE: re: Mach-II Sigh... Where did he say

RE: RE: re: Mach-II

2003-07-30 Thread Heald, Tim
Ahhh, I was wondering when the name of Stan was going to come into this. Where has he been anyway? Rock the House and Horse and stuff :P Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From:

RE: Search engine safe urls

2003-07-28 Thread Heald, Tim
The two main things I have heard about this are: 1. Make sure to have a base tag in you head 2. Uncheck the check for files existence (or something like that) in Internet Services Manager Home Directory Configuration So far neither of those have fixed my Server Not Found error. If it's a 404

rds error

2003-07-25 Thread Heald, Tim
I am suddenly getting a 405 error when trying to browse my dev box with CF Studio 5 RDS. Anyone seen this? I checked and the servlet mapping is still in web.xml, and the path is what the mm site says it should be, only /cfide/main/ide.cfm doesn't exist. This is after installing updater 3 a few

RE: Funky Column Names

2003-07-24 Thread Heald, Tim
myQuery = SDE.DBO.TMLS_PARCELS; pin = myQuery.pin; Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 1:54 PM To: CF-Talk Subject:

RE: Funky Column Names

2003-07-24 Thread Heald, Tim
doh, got to read better :( Sorry man, Tim -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 2:20 PM To: CF-Talk Subject: Re: Funky Column Names oi Tim!! that's not the query though: out_queryTable is the query... oh well for now this will work

RE: Red sky

2003-07-23 Thread Heald, Tim
Red Sky will be free for all existing ColdFusion MX customers and will be released sometime this summer. Tim -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 11:23 AM To: CF-Talk Subject: Re: Red sky Hey Christian, Perhaps you know

RE: Red sky

2003-07-23 Thread Heald, Tim
- Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Heald, Tim [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 8:21 AM Subject: RE: Red sky

RE: Strange Administrator Error

2003-07-22 Thread Heald, Tim
571.345.2235 -Original Message- From: Heald, Tim Sent: Monday, July 21, 2003 4:48 PM To: CF-Talk Subject: Strange Administrator Error Any of you ever see this before? How would I go about fixing it? BTW this is an error when I try to get to the administrator, and just started after

RE: Strange Administrator Error

2003-07-22 Thread Heald, Tim
NM, I reinstalled updater three and it fixed it. Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State 571.345.2235 -Original Message- From: Heald, Tim Sent: Tuesday, July 22, 2003 8:52 AM To: CF-Talk Subject: RE: Strange Administrator

Strange Administrator Error

2003-07-21 Thread Heald, Tim
Any of you ever see this before? How would I go about fixing it? BTW this is an error when I try to get to the administrator, and just started after installing SQL Server 200. THX Error Occurred While Processing Request Method selection Exception. An exception occurred during method

RE: Structure, Array, Both?

2003-07-18 Thread Heald, Tim
Why not either cache the query or put the query in a memory resident scope? Tim -Original Message- From: James Blaha [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 1:34 PM To: CF-Talk Subject: Structure, Array, Both? All: Structure or Array? I have a large table that I want

RE: Browser resize looses attributes scope

2003-06-27 Thread Heald, Tim
F5 is another request, it just mirrors the last request, so it passes any form variables along as it should. There isn't a script or anything causing it to reload the page or send it to the new URL, without accounting for the form variables is there? Ok using FB I assume that the variables your

RE: CSS and vertical text - help!

2003-06-25 Thread Heald, Tim
pre L O O K S L I K E T H I S /pre Remove the tabs if it looks wrong :) Timothy Heald Information Systems Specialist Overseas Security Advisory Council U.S. Department of State

RE: CFMX looses CFM mime type at reboot

2003-06-19 Thread Heald, Tim
Very cool. Fixed me right up. Thanks, Tim -Original Message- From: Dan G. Switzer, II [SMTP:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:18 PM To: CF-Talk Subject: RE: CFMX looses CFM mime type at reboot Tim, On reboot we can now browse the home page by

RE: CFUN 2k3 Rollcall

2003-06-19 Thread Heald, Tim
I'm local too. Tim -Original Message- From: Adam Wayne Lehman [SMTP:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 10:15 AM To: CF-Talk Subject: RE: CFUN 2k3 Rollcall Well, I live in rockVegas (aka Rockville, MD), so I'm always here. My question is... should I bring the

RE: CFUN 2k3 Rollcall

2003-06-18 Thread Heald, Tim
hehe meee to Bald Pierced Light :) Tim -Original Message- From: Critz [SMTP:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 3:00 PM To: CF-Talk Subject: Re: CFUN 2k3 Rollcall oi cfmail!! I'll be there. bald pierced. find me buy my drinks Crit

CFMX looses CFM mime type at reboot

2003-06-18 Thread Heald, Tim
Sounds weird right? Windows 2K Server CFMX Ent IIS 5 Oracle 8i New install of CFMX. Runs great. MM went the extra mile helping us with some problems we were having with cfmail and the oracle driver. Happy Hapy Joy Joy. Today we started getting time outs back from the machine. Term Serv in

RE: Definfing system environment variables

2003-06-05 Thread Heald, Tim
Use the command line path=%path%+c:\myNewPath\; Or whatever Tim -Original Message- From: Bushy [SMTP:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 8:07 AM To: CF-Talk Subject: re: Definfing system environment variables Hi, I've developed a web interface that

RE: Block Competitors from Web site

2003-05-27 Thread Heald, Tim
VPN? Tim Heald MCP/CCFD Information Systems Specialist Overseas Security Advisory Council U.S. Department of State (202) 663-0130 -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:11 PM To: CF-Talk Subject: Block Competitors from

RE: Encrypt/Decrypt

2003-05-27 Thread Heald, Tim
Use cfusion_encrypt() instead. Tim Heald MCP/CCFD Information Systems Specialist Overseas Security Advisory Council U.S. Department of State (202) 663-0130 -Original Message- From: Greg Luce [SMTP:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 4:23 PM To: CF-Talk Subject: