Re: Java now available on Google App engine - how long til CFML?

2009-04-09 Thread Tom Chiverton
On Wednesday 08 Apr 2009, Jeff Gladnick wrote: How long til we get CFML on there? Isn't BroadChoice Workspace running on AWS ? So not long ? -- Helping to continuously target eligible real-time high-yield materials as part of the IT team of the year, '09 and '08 Tom Chiverton Developer

Re: Stumped by cfexchange integration

2009-04-09 Thread Tom Chiverton
On Thursday 09 Apr 2009, Victor Moore wrote: I can connect fine from IE using the same credentials I have in the cfexchangeconnect tag ... Quick batman ! To the packet tracer ! -- Helping to confidentially repurpose m-commerce as part of the IT team of the year, '09 and '08 Tom Chiverton

Re: encrypt database column

2009-04-09 Thread Richard White
yes good point, thanks Dave In fact, yes i know we are both thinking 'if someone is good enough to hack into the backend database then they will be good enough to decrypt the data if they really wanted' so the cf app would definitely be sufficient enough The problem with encrypting data

Re: Stumped by cfexchange integration

2009-04-09 Thread Victor Moore
Any recommendation? Thx On Thu, Apr 9, 2009 at 7:26 AM, Tom Chiverton tom.chiver...@halliwells.com wrote: On Thursday 09 Apr 2009, Victor Moore wrote: I can connect fine from IE using the same credentials I have in the cfexchangeconnect tag ... Quick batman ! To the packet tracer !

Re: Stumped by cfexchange integration

2009-04-09 Thread Tom Chiverton
On Thursday 09 Apr 2009, Victor Moore wrote: Any recommendation? Wireshark. -- Helping to greatly revolutionize user-centric enterprise slick services as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44 0161 618 5032 Fax: +44 0161 618 5099

Re: Stumped by cfexchange integration

2009-04-09 Thread Scott Stroz
Have you tried different formats of username? such as {domain}\{username} or {userna...@{domain}? On Wed, Apr 8, 2009 at 9:04 PM, Victor Moore victor.mo...@gmail.com wrote: Hi James, Yes, I have seen that one. My problem is a little bit different in the sens that I can't even connect. I

RE: Stumped by cfexchange integration

2009-04-09 Thread Frew, Matthew
Another thought that came to mind - is the SSL certificate for your exchange environment ( I believe you should be connecting to the HUB server?) in your CF keystore? Matt Frew Systems Programmer - Core Systems The Wharton School of the University of Pennsylvania 215-573-5924 /

Re: Stumped by cfexchange integration

2009-04-09 Thread Victor Moore
I have tried any combination I can think of. It doesn't complain about the user or password (even though the error message can be misleading some time). Unable to connect to the Exchange server using HTTP/HTTPS protocol. HTTP response code : 440 Thanks Victor On Thu, Apr 9, 2009 at 10:00 AM,

Re: Stumped by cfexchange integration

2009-04-09 Thread James Holmes
These links discuss a 440 error with Exchange: http://www.chicagotech.net/netforums/viewtopic.php?t=2438 http://msmvps.com/blogs/cgross/archive/2004/08/08/11472.aspx http://krva.blogspot.com/2008/01/owa-2007-error-440-login-timeout.html Hope they're useful. mxAjax / CFAjax docs and other

how to handle in-appropriate image uploads

2009-04-09 Thread Chad Gray
Hello, How do big web sites like myspace police image uploads? It seems like they let users report abuse then take action. Is there any other way? I really don't want an approval system where an admin user has to approve an image before it is displayed.

Re: how to handle in-appropriate image uploads

2009-04-09 Thread Tony Bentley
The viewers are able to flag it as inappropriate content. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

Re: how to handle in-appropriate image uploads

2009-04-09 Thread David McGuigan
Check out Amazon Turk. On Thu, Apr 9, 2009 at 11:34 AM, Tony Bentley t...@tonybentley.com wrote: The viewers are able to flag it as inappropriate content. ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: how to handle in-appropriate image uploads

2009-04-09 Thread Ian Skinner
Chad Gray wrote: Hello, How do big web sites like myspace police image uploads? Staff reviews and approves images or users review and approve images or both. Computers can not tell much about images yet, though they are beginning to get better. I've been thinking I might play with some of

RE: how to handle in-appropriate image uploads

2009-04-09 Thread Adrian Lynch
It's scary what they're doing with images now! http://www.ted.com/index.php/talks/blaise_aguera_y_arcas_demos_photosynth.ht ml Adrian -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent: 09 April 2009 17:59 To: cf-talk Subject: Re: how to handle in-appropriate image

Re: how to handle in-appropriate image uploads

2009-04-09 Thread Nick G
Check what myspace is using. It's pretty good at determining offensive images. On Thu, Apr 9, 2009 at 9:58 AM, Ian Skinner h...@ilsweb.com wrote: Chad Gray wrote: Hello, How do big web sites like myspace police image uploads? Staff reviews and approves images or users review and

Re: how to handle in-appropriate image uploads

2009-04-09 Thread Nathan Strutz
I've worked at a company where we had personals sites, like match.com or something, a few million users. We spent a lot of time creating a user content review system, meaning, anything that goes up has to be looked at by the company filters (in our case, a handful of girls) before other users on

Re: GoogleCalendar.cfc troubles

2009-04-09 Thread Raymond Camden
The offset is passed to the CFC constructor: cfset application.gCal = createObject(component, GoogleCalendar).init(yourlogin,password,-5) In the example above, the offset is -5. FYI, I don't read cf-talk very often. Your best bet is to contact me directly, or use the Contact Project Owner link

Re: how to handle in-appropriate image uploads

2009-04-09 Thread Andrew Grosset
Thank you Nathan, that was a brilliant post! andrew. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

url click capture with coldfusion7

2009-04-09 Thread Don L
That is, upon user clicking a URL/link, capture the click/counter in a db. It's real easy with cf8's cfajax-driven tag but for coldfusion7 how do we go about that? It's going to be involved with some javascripting I think. Oh, remember some kind of js var conversion into cf var, right? what's

Re: url click capture with coldfusion7

2009-04-09 Thread Azadi Saryev
the way i used to do it was through an intermediary page, which is passed the actual link to forward user to, or a link id from db. this page records the click event in the db and cflocates the user to actual link. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Don L wrote: That is,

Re: url click capture with coldfusion7

2009-04-09 Thread Azadi Saryev
and if you are using one of ajax-enabled js frameworks, you can create js proxies to your cfc functions without cf, capture the click event on a link, pass the href attribute of the link to your function, and in the callback relocate the user. i think ben nadel had a blog post about it not long

Re: Question about hack

2009-04-09 Thread Nathan Bruer
Ok, I wanted to post here because I have been looking around on google the last few days because we had the same issue to give an update on to all the findings we have found from our investigation... First off this IS an issue with either mssql/msaccess or ColdFusion or the combination of the

Re: Question about hack

2009-04-09 Thread Nathan Bruer
Ok, I wanted to post here because I have been looking around on google the last few days because we had the same issue to give an update on to all the findings we have found from our investigation... First off this IS an issue with either mssql/msaccess or ColdFusion or the combination of the