Re: Remote Control

2006-02-13 Thread clark slater
. Clark On 2/13/06, Pete Ruckelshaus [EMAIL PROTECTED] wrote: Is the machine a client, or is it the web server? On 2/11/06, clark slater [EMAIL PROTECTED] wrote: Hey Folks, I have a requirement to send commands to a machine from a web interface via a serial port. Has anyone got any

Re: Remote Control

2006-02-13 Thread clark slater
version at: http://www.serialio.com/products/serialport/serialport.htm To learn how to use it, here is a python implementation to give you examples: http://sourceforge.net/projects/pyserial/ On 2/13/06, clark slater [EMAIL PROTECTED] wrote: Sorry should have been way more explicit

Remote Control

2006-02-11 Thread clark slater
Hey Folks, I have a requirement to send commands to a machine from a web interface via a serial port. Has anyone got any tips or advice on where to start or possible approaches? Thanks, Clark ~| Message:

Mime Type

2006-01-19 Thread clark slater
Hey Folks, I need to verify the mime type of some uploaded image files. Specifically I need to determine if the files are plain jpg's or progressive jpg's. Unfortunatley I am finding that the same mime type is returned for both file types 'image/jpeg' whereas I would expect 'image/pjpeg' for the

Email Server Commands

2005-10-22 Thread clark slater
. Clark Slater ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221945

Re: Email Server Commands

2005-10-22 Thread clark slater
is in the message and act on it as needed. Jeff -Original Message- From: clark slater [mailto:[EMAIL PROTECTED] Sent: Saturday, October 22, 2005 2:57 PM To: CF-Talk Subject: Email Server Commands I have a requirement to allow changes to a live application via email. Basically

Re: When will Dave Watts finally blog?

2005-10-20 Thread clark slater
If anyone at MAX deserved a damn good drink it's the man himself. On 10/20/05, Paul Hastings [EMAIL PROTECTED] wrote: Fred Urban wrote: I don't think Dave can stop drinking long enough to blog. I hear he got extremely drunk at MAX this week. since when are people's private lives fodder

Recursive Functions in CFC

2005-09-26 Thread Clark Slater
Hi Folks, I'm using a CFC as a proxy for Flash remoting calls to Google Adwords API. I've found that the Google SOAP services choke on complex object types and Arrays sent from Flash unless I rebuild those objects in the CFC before invoking the Google webservice (despite the fact CF has no

Re: Recursive Functions in CFC

2005-09-26 Thread clark slater
Doh! I wasn't using var to declare the local variable so the recursion was overwriting the variable representing my new array and object. Clark Hi Folks, I'm using a CFC as a proxy for Flash remoting calls to Google Adwords API. I've found that the Google SOAP services choke on complex object

Flash Array - CF Array - Google Adwords API

2005-09-23 Thread Clark Slater
Hey Folks, I'm working with the Google Adwords API webservices, using a CFC to proxy Flash remoting calls to the webservice. Everything works stunningly well except for one issue. When I send an Array from Flash to the CFC, the webservice invocation fails. However, if I use an Array created in

Dynamic Method Invocation

2005-09-22 Thread Clark Slater
I'm building a CFC that will simply create a SOAP header and call a remote webservice as a proxy for Flash remoting. I'd like to be able to supply the names of the service and the method of that service as parameters to the component, but don't know how to dynamically invoke a method in

RE: Dynamic Method Invocation

2005-09-22 Thread Clark Slater
Cool thanks! -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 3:53 AM To: CF-Talk Subject: Re: Dynamic Method Invocation On Thursday 22 September 2005 09:00, Clark Slater wrote: cfscript ws = CreateObject(webservice, #serviceName

RE: (Security) Nigerian Scam Artist CAUGHT!

2005-08-23 Thread Clark Slater
Stil haven't figured out exactly how to handle giving him a USPS tracking number. hm... Will Serving suggestion: http://www.sendaturd.com/ ~| Logware (www.logware.us): a new and convenient web-based time tracking

RE: getting the record I just inserted

2005-05-10 Thread Clark Slater
Within a cftransaction use SELECT @@IDENTITY - returns the ID of the last record inserted. cftransaction prevents a race condition. -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 10, 2005 2:59 PM To: CF-Talk Subject: getting the record I just inserted

cfqueryparam/SQL Injection

2005-04-27 Thread Clark Slater
I have a requirement to store long URLs in my database (VARCHAR (256)). Of course this URL is often a parameter in my queries. How can I prevent a SQL injection attack using cfqueryparam? Checking for max length is not going to help because there could easily be a nasty SQL statement far shorter

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Clark Slater
wanker -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Saturday, April 09, 2005 11:26 AM To: CF-Talk Subject: Re: Built a dirty word checker, testing please? Toss my salad passed with flying colors! :) On Apr 9, 2005 12:23 PM, Will Tomlinson [EMAIL PROTECTED]

cfselect: default selection

2005-03-30 Thread Clark Slater
I have been given a project to build a web traffic reporting system and I am having some problems with cfselect. Specifically I need to know how to automatically select a manually added option. cfselect name = referrerFilter message = size = 1 query = referrerList value = referrer required

RE: WDSL Q's

2005-02-16 Thread Clark Slater
Thanks Dave, you are the shiznit of ColdFusion. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 5:30 PM To: CF-Talk Subject: RE: WDSL Q's I'm trying to find the answers to a couple of (slightly) odd questions regarding consuming a non

RE: Consuming Web Services

2004-12-14 Thread Clark Slater
Thanks Dave and Thanks Dave, My client has actually supplied all the SOAP templates so I do know what the service is expecting, just uncertain of how to invoke the service in the absence of WSDL. Wish I was at the DenverCFUG meeting, it sounds like it would have been enlightening. Sincerely hope

Consuming Web Services

2004-12-14 Thread Clark Slater
Every tutorial I have found online regarding web service consumption with CFMX refers to WSDL. Is it possible to consume a SOAP web service without WSDL? Apologies for the newbie question. Clark ~| Special thanks to the CF

RE: Consuming Web Services

2004-12-14 Thread Clark Slater
PROTECTED] Sent: Tuesday, December 14, 2004 1:32 PM To: CF-Talk Subject: RE: Consuming Web Services tell me a lil bit more about what u got and what ur doing and i will try to help you use cfivoke like a cfc -- Original Message -- From: Clark Slater [EMAIL

RE: Consuming Web Services

2004-12-14 Thread Clark Slater
Yeah I wish I could use Flash Remoting but no chance because the web service is actually running on a machine within the client's LAN, accessible only via secure shell tunnel from the webserver (and hence the coldfusion app server). Bit of a nightmare, looks like the best option might be to try