RE: Inserting data by email

2005-05-22 Thread Phillip B. Holmes
You could look into CFX_pop3. Great cpp cfx tag. Warmest Regards, Phillip B. Holmes = -Original Message- From: Bram Plessers [mailto:[EMAIL PROTECTED] Sent: Saturday, May 21, 2005 4:11 AM To: CF-Talk Subject: Inserting data by email

RE: Dynamic Struct/Query Path

2005-05-22 Thread Ewok
Yup.. forgot to take them out when I was looking to see if it was building it right...blah blah. thanks -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Sunday, May 22, 2005 12:05 AM To: CF-Talk Subject: RE: Dynamic Struct/Query Path got some extra quotes and

Re: SQL Query Question

2005-05-22 Thread Jochem van Dieten
Ewok wrote: this is by far the easiest way to link tables. No... It’s the only way to link tables that's why we do it. Not at all, you can link tables in many ways: you just have to do it all by hand instead of using the features that are provided by the database. It seems that you are

Re: SQL Query Question

2005-05-22 Thread Jochem van Dieten
S.Isaac Dealey wrote: I would expect in this case that having a primary key on the table he described wouldn't change the sql syntax much (if at all). It wouldn't change the syntax at all. For all we know it has a primary key and if not, how about the following one: ALTER TABLE ADD PRIMARY

Re: cfftp problem

2005-05-22 Thread Jochem van Dieten
S.Isaac Dealey wrote: so... in theory, as long as you're connected to an ftp server, an existsDir call should never return cfftp.succeeded=false correct? ... I'm consistently getting these results from existsDir on CF 6.1 arguments.item = /ontap/_components/_cfc/test cfftp

Re: String to SHA1 to Base 64 Encryption Help!

2005-05-22 Thread Jochem van Dieten
Aldon Moore wrote: I am completing the integration of a payment processora and the processor requires me to convert a string to SHA1 then to BASE64. I used a SHA1 UDF script from Cflib.org for the conversion but in comparison to the string created by the dotnet SHA1CryptoServiceProvider its

Re: Sessions Dropping in CF5

2005-05-22 Thread Jochem van Dieten
Ali Awan wrote: I have an application that runs fine when I test it from several different browsers, but once in a while when a client tries the app throws an error that it can't find a specific session variable. This only happens once in a while. A specific sessio variable or any session

Flash form error in CFM

2005-05-22 Thread vishnu prasad
Hi Friends i recently installed CFMX 7 in my Pc , the O/S installed in Windows XP Sp2 This is the Following code i have in the File index.cfm !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; html head InvalidTag http-equiv=Content-Type

re: Flash form error in CFM

2005-05-22 Thread dave
for starters, a patch isnt going to fix sp2, a well placed stick of dynamite usually does the trick. whats on the action page since that is where you are getting errors, it says Error : lc_id is undifined, but i dont see where you have identified were lc_id is or what it is. ~Dave the

Re: Flash form error in CFM

2005-05-22 Thread C. Hatton Humphrey
Error : lc_id is undifined Pls suggest me what i have to do ??? is there is any setting or pacth has to be installed for windows XP SP 2 The error is caused because your web server can't load the CF standard javascript files; make sure that the /CFIDE directory can bee seen from the

Re: Inserting data by email

2005-05-22 Thread C. Hatton Humphrey
I was wondering how you could insert/update data in a mysql db using email ? How can you let the server read out new mail ( once per 5 minutes ) or so, so that the new data is inserted imediately ? PS: functionality like in Flickr: send an image in an email by mobile phone - the image is

Re: Enable Robust Exception Information - Tradeoff

2005-05-22 Thread S . Isaac Dealey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 S.Isaac Dealey wrote: You should really only have robust exception information on on a development server. I think you might be thinking about debugging. Nope, I was thinking about robust exception information: sure, it might be security

Re: cfftp problem

2005-05-22 Thread S . Isaac Dealey
You are going to need to more tools to find out what is really going on. Either you need to watch the connection realtime on the FTP server (does it have a debugger), or you are going to need a packetsniffer. Thanks Jochem, sigh I was afraid of this... Can you recommend a good packetsniffer

DB Design, Engineering Re-Engineering Software

2005-05-22 Thread Bruce A. Bergman
Bruce, could you say some more about what made CaseStudio win out over DDS? Dave Merrill Ugh. I didn't keep any of my comparison notes (I thought about it, though ;-), so I'll have to go by memory. I'll add comments for my runner-up choice, Dezign, too. CaseStudio (1st choice): + better

Re: cfftp problem

2005-05-22 Thread Jochem van Dieten
S.Isaac Dealey wrote: You are going to need to more tools to find out what is really going on. Either you need to watch the connection realtime on the FTP server (does it have a debugger), or you are going to need a packetsniffer. Thanks Jochem, sigh I was afraid of this... Can you

(OT) Object tag - text/html in IE Cross Domain

2005-05-22 Thread James Holmes
I was playing with client-side includes as I recall them mentioned in CT-Talk recently (although I'm stuffed if I can find the threads in the archives). I discovered that the following: object type=text/html data=http://whatever.com/somefile.html; breaks in IE if the data URL is in a different

RE: (OT) Object tag - text/html in IE Cross Domain

2005-05-22 Thread Jim Davis
-Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Sunday, May 22, 2005 11:48 AM To: CF-Talk Subject: (OT) Object tag - text/html in IE Cross Domain I was playing with client-side includes as I recall them mentioned in CT-Talk recently (although I'm stuffed if I

RE: (OT) Object tag - text/html in IE Cross Domain

2005-05-22 Thread James Holmes
It works in NS 7 and Opera 7.5 too. -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Monday, 23 May 2005 12:09 To: CF-Talk Subject: RE: (OT) Object tag - text/html in IE Cross Domain -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent:

RE: SQL Query Question

2005-05-22 Thread Ewok
You seem to be going out of the way and way off the topic of the question to prove that it's okay to use your methods Jochem. No one said it wasn't okay. My point was that if he's having trouble with something that shouldn’t be hard, then break it down to its simplest form and give every column

Re: Dynamic Struct/Query Path

2005-05-22 Thread Kevin Aebig
Thanks guys. Thats what I thought... it ended up being an issue with cfloop'ing over a List. Cheers, Kevin - Original Message - From: Kevin Aebig [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Saturday, May 21, 2005 4:40 PM Subject: Dynamic Struct/Query Path Hey all,

Re: Enable Robust Exception Information - Tradeoff

2005-05-22 Thread Matt Robertson
What Isaac just said :-) I'd have to shut it off to find out for sure, but I'm pretty sure the REI setting, if off, also restricts the information that my error handler delivers. Isaac mentioned the stack trace and I believe this also includes error.tagcontext (but maybe not... again I'd have to

Re: Enable Robust Exception Information - Tradeoff

2005-05-22 Thread S . Isaac Dealey
What Isaac just said :-) Did I say something? :) I'd have to shut it off to find out for sure, but I'm pretty sure the REI setting, if off, also restricts the information that my error handler delivers. Isaac mentioned the stack trace and I believe this also includes error.tagcontext I

Re: Enable Robust Exception Information - Tradeoff

2005-05-22 Thread Matt Robertson
Array of structs actually... :P Just to be nit-picky. :) yeah yeah... sheesh. :P I'd accept the performance hit to turn it on for a day or so at a time in order to help debug and fix the application and then when the application was reasonably stable I'd turn it off again. If the code

Re: Flash form error in CFM

2005-05-22 Thread dave
hum, I have seen issues on a live server but not on a local dev machine where you need the cfide folder in root. Might also note that I believe CFMX 7 needs the current version of java installed, 1.5 or whatever it is now. ~Dave the disruptor~ From:

REGEX parse a datetime string

2005-05-22 Thread Richard Colman
Any REGEX afficiandoes out there wish to tell how to parse: 2005 5 20 14 48 33 into its component parts: 2005 (year) 5(month) 20 (etc) 14 48 33 so I can build a CF datetime object? Yes, I know I should do it myself. Yes, I know it is relatively simple. WHINE But, I only need to do one

RE: REGEX parse a datetime string

2005-05-22 Thread Jim Davis
-Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Sunday, May 22, 2005 11:32 PM To: CF-Talk Subject: REGEX parse a datetime string Any REGEX afficiandoes out there wish to tell how to parse: 2005 5 20 14 48 33 Is this the actual format? If so you just

global module call

2005-05-22 Thread dave
is there anyway to make this call a global call? meaning accessable from any page, since you cant put the actual path in/ cfmodule id=this module template=../store/123/tags/Links.cfm ~Dave the disruptor~ ~| Logware

RE: global module call

2005-05-22 Thread James Holmes
A CF custom tag path would do the trick if it's a custom tag. -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Monday, 23 May 2005 11:48 To: CF-Talk Subject: global module call is there anyway to make this call a global call? meaning accessable from any page, since you

RE: global module call

2005-05-22 Thread dave
i wish but at the moment i have a work around ~Dave the disruptor~ From: James Holmes [EMAIL PROTECTED] Sent: Monday, May 23, 2005 12:01 AM To: CF-Talk cf-talk@houseoffusion.com Subject: RE: global module call A CF custom tag path would do the trick if