Re: ColdFusion SMS Text Messages to Cell?

2007-04-18 Thread Robert Rawlins
Hello Bud, I went through a conversation about this stuff over on the easycfm boards about a month back along with some of the other developers, you may want to give it a read through. You have plenty of choices on how to distribute the mail. As Sean has suggested one option is to use the

RE: Who is wrong ?

2007-04-17 Thread Robert Rawlins - Think Blue
Yeah I'll agree with Dave, From my experience you need to escape those ampersands, especially in the more strict document types or else they will not pass validation, they will not however cause issues when you come to interpret the values, you can still grab them as URL.id and URL.cat. Rob

This Is Gooooooood!

2007-04-17 Thread Robert Rawlins - Think Blue
I had to share this with you guys for a moment, Whilst working on some stuff this morning, I came across the site for one of the applications I use on a regular basis, and notices all the little 'edit' buttons on the site, so I clicked one out of curiosity, and it would seem that I'm able to

RE: This Is Gooooooood!

2007-04-17 Thread Robert Rawlins - Think Blue
Ah ok, and its meant to be open to abuse like it is? Rob -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 17 April 2007 11:33 To: CF-Talk Subject: Re: This Is Gd! On Tuesday 17 Apr 2007, Robert Rawlins - Think Blue wrote: of the applications I use

RE: This Is Gooooooood!

2007-04-17 Thread Robert Rawlins - Think Blue
! On Tuesday 17 Apr 2007, Robert Rawlins - Think Blue wrote: Ah ok, and its meant to be open to abuse like it is? Some wiki's allow anonymous edits, some don't. It's normally a configuration option. I;m slightly surprised you've not come across them before, as they're very 2.0-user-generated-content

RE: XML Vs. CSV/Text

2007-04-16 Thread Robert Rawlins - Think Blue
data needs to be more heavily processed (like lookups on ids to match something else, date parsing, etc) or it may end up being used by other applications in the future, then I'd go the XML route because its more verbose and self-descriptive. Judah Robert Rawlins - Think Blue wrote: Hello Guys

Parsing CSV

2007-04-16 Thread Robert Rawlins - Think Blue
Hello Guys, I'm looking to get some advice on the best method to parse a CSV into my SQL Server 2k5 database. The idea is that the data will be passed in as a string to a web service. In the past I've spoken to people who seem to think that the DTS is the best method for getting the text into

RE: Basic CFM shopping cart tutorial/Dreaweaver extension

2007-04-16 Thread Robert Rawlins - Think Blue
Nice work Ben, I spent some time working on a shopping cart system a while back but never got round to completing the project. It's interesting to see you using the query method, any particular reason for using that instead of a standard arrays and structures? Cheers, Rob -Original

RE: Parsing CSV

2007-04-16 Thread Robert Rawlins - Think Blue
... Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Monday, April 16, 2007 8:53 AM To: CF-Talk Subject: Parsing CSV Hello Guys, I'm

RE: Parsing CSV

2007-04-16 Thread Robert Rawlins - Think Blue
to import a file. That would probably be the fastest. Chris Peterson -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Monday, April 16, 2007 8:53 AM To: CF-Talk Subject: Parsing CSV Hello Guys, I'm looking to get some advice on the best method to parse

RE: CF CAPTCHA - need help!

2007-04-16 Thread Robert Rawlins - Think Blue
Hi Steve, I use Lyla captcha and it seems easy enough to implement, I know allot of people are also fond of cfformprotect which is a non captcha solution I'm yet to try out. See this link: http://lyla.maestropublishing.com/ As for the mailto links, I'm sure they are the root cause of the issue,

RE: CF CAPTCHA - need help!

2007-04-16 Thread Robert Rawlins - Think Blue
Hi Steve, Firstly, here is a great tutorial on lyla from Ray http://ray.camdenfamily.com/index.cfm/2006/11/14/Quick-and-dirty-CAPTCHA-Gui de I found it a great help when I started out with it. Next thing I notice about that contact form, is that you're only using JS client side stuff to validate

RE: CF CAPTCHA - need help!

2007-04-16 Thread Robert Rawlins - Think Blue
Hi Steve, Ok, I hadn't noticed the email address as a hidden field, this is a pretty bad idea as the bots will trawl if from the source and have a field day. How are you processing that form once its submitted? Using a cfmail tag? If so then I would take the hidden field out all together and just

Secure Web Service

2007-04-16 Thread Robert Rawlins - Think Blue
Hi Guys, I'm looking for the best method to secure a web service so that it can only be accessed by particular clients. The service simply returns and XML structure but some of the data contained can be quite sensitive and I'd rather keep it as safe as possible. I am a little worried about

RE: Secure Web Service

2007-04-16 Thread Robert Rawlins - Think Blue
and wspassword or something similar. On 4/16/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 16 Apr 2007, Robert Rawlins - Think Blue wrote: I am a little worried about putting too much overhead on this as they could potentially get quite busy, am I ok to simple request a username

RE: Client-side validation or Server-side Validation?

2007-04-16 Thread Robert Rawlins - Think Blue
Also right, only hackers will get to the server with invalid data, so why should I care about them? Are you serious? -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: 16 April 2007 16:26 To: CF-Talk Subject: Re: Client-side validation or Server-side Validation?

RE: CF CAPTCHA - need help!

2007-04-16 Thread Robert Rawlins - Think Blue
No you wouldn't bud, You can just save the HTML template and edit it in notepad :-D Rob -Original Message- From: Steven Sprouse [mailto:[EMAIL PROTECTED] Sent: 16 April 2007 16:44 To: CF-Talk Subject: Re: CF CAPTCHA - need help! Well not exactly. It's not as bad as it sounds. My

RE: Client-side validation or Server-side Validation?

2007-04-16 Thread Robert Rawlins - Think Blue
Not having proper server side validation is one of the 7 deadly sins isn't it? Looking at the latest published W3C statistics you would educate a guess of about 10% of browsers not having JS enabled on them, that's a fairly hefty chunk. Rob -Original Message- From: Les Mizzell

RE: Client-side validation or Server-side Validation?

2007-04-16 Thread Robert Rawlins - Think Blue
I don't think it's very user friendly at all, but I'm quite a big web standards and accessibility fan. You should always have an alternative version of your site that can be viewed on a small screen or text only browser and things like that. You can achieve a perfectly rich feel from server side

XML Vs. CSV/Text

2007-04-13 Thread Robert Rawlins - Think Blue
Hello Guys, I'm building a non-cf application at the moment, who's logs will be parsed by a ColdFusion application after having them passed to it via a web service. I'm now making the choice of log format for my other application, what are the benefits of using XML over CSV or other delimited

Webservice Issue

2007-04-12 Thread Robert Rawlins - Think Blue
Hello Guys, I'm having a very strange issue with Web Services, well, maybe it's NOT strange, I'm just new to it :-D I have two identical functions, with different names within the component, yet when I call them, one works, the other doesn't. cfcomponent name=Location

RE: Webservice Issue

2007-04-12 Thread Robert Rawlins - Think Blue
= factory.XmlRpcService cfset RpcService.refreshWebService(http://www.mydomain.co.uk/webservicetester/ip. cfc?wsdl) Cheers, !k -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 5:57 AM To: CF-Talk Subject: Webservice Issue Hello Guys

RE: Access my SessionService from Gateway (MG, CS, Reactor)

2007-04-12 Thread Robert Rawlins - Think Blue
Thanks for that Rich, I've been playing around with this the past couple of days and have a working model. But I'm always interested to learn the most efficient ways to achieve these kinds of things, I'll be playing with your code for sure. Thanks, Rob -Original Message- From: Richard

RE: Access my SessionService from Gateway (MG, CS, Reactor)

2007-04-11 Thread Robert Rawlins - Think Blue
- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 10, 2007 9:36 AM To: CF-Talk Subject: Access my SessionService from Gateway (MG, CS, Reactor) Hello Guys, this should be a quick and easy one I hope. I've made a habit of accessing all my scopes like

RE: Contract rates

2007-04-11 Thread Robert Rawlins - Think Blue
Hello Rich, A couple of years back I did a fair amount of contracting, it wasn’t for ColdFusion development work, more of a technical type roll doing networking installations and client support, things like that. I know for sure that I was earning more than the other guys on the job, all of them

Access my SessionService from Gateway (MG, CS, Reactor)

2007-04-10 Thread Robert Rawlins - Think Blue
Hello Guys, this should be a quick and easy one I hope. I've made a habit of accessing all my scopes like Application and Session through a facade cfc passed to me by one of the other developers. When I need to access it from my controllers i just have CS auto wire it to the controller. I now

RE: Access my SessionService from Gateway (MG, CS, Reactor)

2007-04-10 Thread Robert Rawlins - Think Blue
bean id=sessionFacade class=path.to.sessionFacade / Then when you ask CS for your gateway, it will have the session façade wired in. HTH Rich Kroll -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 10, 2007 9:36 AM To: CF-Talk

Direct User after Login

2007-04-10 Thread Robert Rawlins - Think Blue
Hey Chaps, I've been working on my security system this past week, and I've pretty much got a working model for the application, but I've got a couple of little features I'd like to try and achieve, one of which is redirecting a user after login, to the page they were trying to access in the

RE: Direct User after Login

2007-04-10 Thread Robert Rawlins - Think Blue
Ok great thanks for that Casey, So I do the cflocation manually rather than having Model-Glue do it for me? Thanks, Rob -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: 10 April 2007 16:14 To: CF-Talk Subject: Re: Direct User after Login If they are not logged

RE: Direct User after Login

2007-04-10 Thread Robert Rawlins - Think Blue
in the viewcollection -- result name=notLoggedIn do=needLogin/ or !-- Send them to the login page -- result name=notLoggedIn do=login redirect=true/ HTH, Jon On Apr 10, 2007, at 10:56 AM, Robert Rawlins - Think Blue wrote: Hey Chaps, I've been working on my security system this past week

RE: ColdSpring From Within App.cfc (MG)

2007-04-09 Thread Robert Rawlins - Think Blue
the standard app.cfc method? If not then how do I manually pass in init'd versions of my 'credentials' and 'entitlements' beans into the constructor of my 'user' bean as arguments? Cheers for any help you guys can offer. Thanks, Rob -Original Message- From: Robert Rawlins - Think Blue [mailto

ColdSpring From Within App.cfc (MG)

2007-04-06 Thread Robert Rawlins - Think Blue
Hello Guys, I'm trying to build a user bean onSessionStart() for my application. However the user bean has a few dependencies when its created, which store the users credentials and entitlements. These dependencies are passed in through the constructor method of the user object. I'd ideally

P.s.

2007-04-06 Thread Robert Rawlins - Think Blue
Happy Easter Everyone. ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new features. http://www.adobe.com/products/coldfusion?sdid=RVJR Archive:

Stange Controller Issues (MG)

2007-04-05 Thread Robert Rawlins - Think Blue
Hey guys, I'm having trouble trying to implement a security controller into my MG application. It hasn't even got any functions in it yet, but it keeps crashing my app, no errors, just a blank screen in front of me. Here is my model-glue.xml definition for the controller.

RE: Stange Controller Issues (MG)

2007-04-05 Thread Robert Rawlins - Think Blue
It's ok guys, I'd forgotten to extend ModelGlue.unity.controller.Controller. Doh! Thanks, Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 05 April 2007 14:57 To: CF-Talk Subject: Stange Controller Issues (MG) Hey guys, I'm having trouble

RE: Mailer Service Bean Issues (MG and CS)

2007-04-04 Thread Robert Rawlins - Think Blue
Thanks for getting back to me buddy, Looks as if all my woes were caused by a spelling mistake, my fault for making a variable name so damn long, I has setOutgoingServer() but getOutogingServer(). All sorted now and my contact forms working a charm, Thanks, Rob -Original Message-

Mailer Service Bean Issues (MG and CS)

2007-04-03 Thread Robert Rawlins - Think Blue
then create the message and post it from inside the controller with a simple script within any given function: // If passed validation then process the mail VARIABLES.MailerService.setTo([EMAIL PROTECTED],Robert Rawlins); // Set the to address VARIABLES.MailerService.setSubject

Looping Over Array

2007-03-26 Thread Robert Rawlins - Think Blue
Hello Guys, I've got an array sat in my ViewState that I'm trying to loop over it and output the elements, but I can't get it working, silly I know. cfif VARIABLES.ViewState.exists(Errors) cfloop from=1 to=#arrayLen(VARIABLES.ViewState.getValue(Errors))# index=i

RE: Looping Over Array

2007-03-26 Thread Robert Rawlins - Think Blue
#ArrayLen(VARIABLES.ViewState.getValue(Errors))#/cfoutput Does it contain anything? (The dump would show this anyway, but...) What's not happening anyway? Adrian -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 26 March 2007 14:40 To: CF-Talk Subject

RE: OT: css n00b question

2007-03-23 Thread Robert Rawlins - Think Blue
Hello Doug, I'm unable to test this, but you may want to try something like this. div class=col /div div class=col /div div class=col /div div class=clearer/div div class=bottom /div div.col { float:left; margin-right:10px; } div.clearer { clear:both; }

RE: OT: css n00b question

2007-03-23 Thread Robert Rawlins - Think Blue
No, no, I'm just lazy ;-) -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: 23 March 2007 13:24 To: CF-Talk Subject: RE: OT: css n00b question Unable to test? Don't have a browser installed on your computer? :) -Original Message- From: Robert Rawlins

RE: OT: css n00b question

2007-03-23 Thread Robert Rawlins - Think Blue
Robert, Thanks a lot that seems to do the trick...Back to the learning drawing board :) Doug -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Friday, March 23, 2007 7:20 AM To: CF-Talk Subject: RE: OT: css n00b question Hello Doug, I'm unable

Java Pluggin for Eclipse`

2007-03-23 Thread Robert Rawlins - Think Blue
Chaps, Does anyone have any recommendations on eclipse plug-in's for developing JAVA code? I don't need anything fancy, just something that'll give me the basics for writing java and class files. Thanks, Rob ~|

RE: Java Pluggin for Eclipse`

2007-03-23 Thread Robert Rawlins - Think Blue
. Mark -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Friday, March 23, 2007 12:59 PM To: CF-Talk Subject: Java Pluggin for Eclipse` Chaps, Does anyone have any recommendations on eclipse plug-in's for developing JAVA code? I don't need

Java Resources

2007-03-23 Thread Robert Rawlins
Hey guys, Well today has been my first day of getting my head around Java, I'm looking to expand my programming knowledge and Java seemed to be the natural progression, considering i've got a demmand for event gateways comming up soon, I thought it made sense. To be honest I'm finding it

RE: Broadband Wireless

2007-03-21 Thread Robert Rawlins - Think Blue
It may be more competitive for you to buy the broadband in on a reseller account, it'll give you a much more competitive pricing structure. Most major ISP's will offer this kind of reseller account, may be worth speaking to your current hosting provider about it. Rob -Original Message-

RE: Model-Glue Form Validation

2007-03-21 Thread Robert Rawlins - Think Blue
Morning Tom, Thanks for the in-depth explanation on this stuff. The bean method sounds quite intriguing and it's not one I had considered before you mentioned it. Whilst this first form is nothing special, just a basic contact form which allows the user to send us a sales enquiry, I'd rather go

RE: Form Field Names in Upper Case?

2007-03-21 Thread Robert Rawlins - Think Blue
This is interesting Jeff, I'm also running MX7, and although I've not tested any of my forms, I do have a function that returns a structure and it changes all the element names to upper case, but I have other functions that return structs in their original case, it IS odd. Rob -Original

A quick referance guide to OOP MVC

2007-03-21 Thread Robert Rawlins - Think Blue
Hi Chaps, I'm looking for someone to give me a rough rundown of some of the OOP terms that I keep seeing thrown around and yet still baffle me. I've got some elements of my application that I've been handed by other people, and they refer to them as 'Facades' or 'Utilities' or 'Services' what

RE: A quick referance guide to OOP MVC

2007-03-21 Thread Robert Rawlins - Think Blue
that represents a row of table data? Thanks, Rob -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 21 March 2007 15:43 To: CF-Talk Subject: Re: A quick referance guide to OOP MVC On Wednesday 21 Mar 2007, Robert Rawlins - Think Blue wrote: refer to them as 'Facades

Ordered Lists

2007-03-20 Thread Robert Rawlins - Think Blue
Hello Guys, Feel a bit silly asking this questions as I'm usually ok with XHTML, but I'm struggling to try and find any examples of this. Basically I'm looking to create an ordered list from a grouped query that would have a nested element like so. 1. 1.1

Model-Glue Form Validation

2007-03-20 Thread Robert Rawlins - Think Blue
Hey Guys, How is everyone handling their form validation in MG? Before I moved to the framework I had a CFC that contained a bunch of validation methods, It was originally built by Javier Julio and was perfect for my requirements, as pre-processing the form I could pass the values into the

RE: GotCFM.com - Need Opinion on Whether to Approve a Site

2007-03-20 Thread Robert Rawlins - Think Blue
I disagree, I vote more porn the better :-D Seriously, if we REALLY want to get CF on the map, porno is the way to do it :-D, it won VHS the battle against Betamax back when, and it pretty much doing the same with HD-DVD vs Blueray, if we could convince porn developers to use CF, it'd be 'job

RE: GotCFM.com - Need Opinion on Whether to Approve a Site

2007-03-20 Thread Robert Rawlins - Think Blue
away the legitimate and/or family oriented business to attract the porn business. If that's what this GotCFM community project is about, count me out. Greg On 3/20/07, Robert Rawlins - Think Blue [EMAIL PROTECTED] wrote: I disagree, I vote more porn the better :-D Seriously, if we REALLY want

RE: GotCFM.com - Need Opinion on Whether to Approve a Site

2007-03-20 Thread Robert Rawlins - Think Blue
Debate? What debate... it was a JOKE!!! Lol -Original Message- From: Michael E. Carluen [mailto:[EMAIL PROTECTED] Sent: 20 March 2007 17:47 To: CF-Talk Subject: RE: GotCFM.com - Need Opinion on Whether to Approve a Site Here's a suggestion in an effort to satisfy both sides of the

RE: IIRF Rewrite Rules

2007-03-19 Thread Robert Rawlins - Think Blue
/([^/]+)/([^/]+) /index.cfm?event=viewarticlearticleid=$1 This rule would also put 'i-wonder-how-i-achieve-this' into $2 On 3/19/07, Robert Rawlins [EMAIL PROTECTED] wrote: Hello Guys, My regex is pretty poor to be honest, and its somthing i REALLY need to start learning, so in addition to any help

Dealing with Reactor Record Objects

2007-03-19 Thread Robert Rawlins - Think Blue
Hello Guys, A quick 'best practice' type question when it comes to dealing with record objects/beans within the model-glue MVC pattern. At the moment I'm working on a template that displays a news article, so in my event I have a broadcast that says 'NeedArticle', this then gets dealt

RE: Help Desk / Trouble Ticket recommendation?

2007-03-19 Thread Robert Rawlins - Think Blue
The www.cornfeed.com seems to have been down for the past 3 or 4 days. I'm also in the market for a ticket system and would be keen to take a look around this, I did look into building a custom system a while back but it's quite a hefty project for what will essentially be a low traffic section

RE: Paymentech ...

2007-03-19 Thread Robert Rawlins - Think Blue
I'm not quite sure what problem this is referring too, but I'd say that relying on client side only authentication for this kind of thing is pretty ropey, id look to implement something server side that won't break if the user has scripting disabled. Rob -Original Message- From: Ashley

RE: Create an Excel Spreadsheet

2007-03-19 Thread Robert Rawlins - Think Blue
I'm not sure how flexible it is, but I know in the past when working with Excel sheets I always worked with the XML model as it allowed quite a nice set of features. Without the funny hacks of changing HTML into excel files. Rob -Original Message- From: Dana Kowalski [mailto:[EMAIL

TC's and Privacy Policy

2007-03-19 Thread Robert Rawlins - Think Blue
Hello Guys, I'm looking for a pretty standard 'terms and conditions' I can sit on my site, after googling around a little it seems that most firms want you to cough up money for a copy. Does anyone have a fairly generic terms and conditions as well as a privacy policy they wouldn't mind

RE: TC's and Privacy Policy

2007-03-19 Thread Robert Rawlins - Think Blue
of this... Does the copy right cover the copy right itself??? ... Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent

Eclipse FTP Issues

2007-03-19 Thread Robert Rawlins - Think Blue
Hello Guys, I've got beef with my eclipse FTP this afternoon, the one that comes bundled with Aptana. Basically as I'm running reactor it creates a set of data objects, such as DAO, Gateway, TO and so forth on the server, which I now need to amend and add in a couple of new functions, so I

IIRF Rewrite Rules

2007-03-18 Thread Robert Rawlins
Hello Guys, My regex is pretty poor to be honest, and its somthing i REALLY need to start learning, so in addition to any help on this some reccomendations of books or resources on the subject would be greatly appreciated. I've currently got a bunch of urls for model-glue events, and most

Me and My Butter Fingers

2007-03-18 Thread Robert Rawlins
Hello Chaps, Seems I made a bit of a mistake whilst building my database and set one of the fields to VarBinary() instead of VarChar(). It would seem that Reactor has set its heart on using the binary field, and i'm now getting an error since setting it back to a varchar field. Message Error

RE: FTP in Eclipse

2007-03-15 Thread Robert Rawlins - Think Blue
Thanks for all your help on this guys, I've now got it up and running like a charm. I'm pretty sure this will work nicely for me, at least it's not crashing every few minutes on my Vista box like Dreamweaver has been. Thanks again guys, Rob -Original Message- From: Mark Flewellen

RE: SQL Login Faliure

2007-03-15 Thread Robert Rawlins - Think Blue
Good morning guys, Thanks for all your help yesterday with this stuff, I've not got a net admin friend of mine to start playing around with IPSec to try and resolve the issues. Now, I've come back into the office this morning and found another stack of request errors in my application event log,

RE: Windows 2003 Service Pack 2 has been released

2007-03-15 Thread Robert Rawlins - Think Blue
Ooooh, great stuff Paul, thanks for the heads up. I look forward to seeing your results. Rob -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: 15 March 2007 11:26 To: CF-Talk Subject: Windows 2003 Service Pack 2 has been released I didn't realise that it was coming

Dynamic title In Model-Glue

2007-03-15 Thread Robert Rawlins - Think Blue
Hello Guys, Has anyone done any work with dynamic titles and meta tags using MG? I'm a little lost on how best to achieve it, the idea is the content for the tags will change for every page to make them more relevant to the exact content. I've using the standard dspTemplate.cfm method at

RE: Dynamic title In Model-Glue

2007-03-15 Thread Robert Rawlins - Think Blue
://blog.cutterscrossing.com Robert Rawlins - Think Blue wrote: Hello Guys, Has anyone done any work with dynamic titles and meta tags using MG? I'm a little lost on how best to achieve it, the idea is the content for the tags will change for every page to make them more relevant to the exact content

RE: Dynamic title In Model-Glue

2007-03-15 Thread Robert Rawlins - Think Blue
your template, so that you call the getValue() method for that variable only once. Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Robert Rawlins - Think Blue wrote: Nice work Cutter

Bean Getter/Setter Return Types

2007-03-14 Thread Robert Rawlins - Think Blue
Hello Guys, This is just a little something I've been meaning to check up for a long time. If I've got bean which has other bean instances passed into its constructors or setters, what is the value of the 'type' attribute meant to be? At the moment I have it set to 'any' but have a feeling

Password Protect My DSN

2007-03-14 Thread Robert Rawlins - Think Blue
Hello Guys, My DSN doesn't currently require a username and password, just the DSN will do. Now I've read a few 'best practices' and security type documents in the past and they've always stated that my DSN should require a username and password to keep it nice and secure. Now, my database

RE: Password Protect My DSN

2007-03-14 Thread Robert Rawlins - Think Blue
that un/pwd to the CF Administrator. Like I said, it's not completely locked down and I know that, but it's enough to do what I need it to do - limit my exposure. Whatever you do, make sure you stop using sa. That has the potential to end really badly for you. :-) On 3/14/07, Robert Rawlins

SQL Login Faliure

2007-03-14 Thread Robert Rawlins - Think Blue
Hello Guys, After my discussions this morning regarding my database security, I've uncovered some reasonably worrying details in my server application event logs. It would appear that I'm getting 3 to 5 failed login attempts a second on my SQLServer and have been for the past few weeks, all

RE: Password Protect My DSN

2007-03-14 Thread Robert Rawlins - Think Blue
Thanks for that Dana its greatly appreciated. I had set my new users to datareader and datawriter as well as removing any further access using the ColdFusion admin panel, and everything seems to be working just fine. I'll be sure to check around for those documents. Thanks, Rob -Original

FTP in Eclipse

2007-03-14 Thread Robert Rawlins - Think Blue
Hello Guys, I'm completely new to the Eclipse interface, until now I've been using Dreamweaver quite happily, but after hearing such great things about eclipse, I thought I'd give it a shot. I've got eclipse running with Aptana and CFEsclipse installed and I've started a new 'CFML Project'

RE: SQL Login Faliure

2007-03-14 Thread Robert Rawlins - Think Blue
Also, 'Kowalski' is a VERY cool name! :-D Rob -Original Message- From: Dana Kowalski [mailto:[EMAIL PROTECTED] Sent: 14 March 2007 14:30 To: CF-Talk Subject: Re: SQL Login Faliure are you on a co-locate, home network, virtual hosting etc? Normally I would just put blocks at the

RE: SQL Login Faliure

2007-03-14 Thread Robert Rawlins - Think Blue
Afternoon Dana, My web and database are on the same box, its a dedicated box in telihouse, but I'm on a shared firewall so they're reluctant to place a block on the IP's as it may affect other customers traffic. I've contact the ISP for the offending clients with copies of the server event logs,

RE: SQL Login Faliure

2007-03-14 Thread Robert Rawlins - Think Blue
Thanks Jochem, I'll give that a go this afternoon. Rob -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: 14 March 2007 16:24 To: CF-Talk Subject: Re: SQL Login Faliure Robert Rawlins - Think Blue wrote: Is there a method for closing the server so it only

RE: Stop that Flash of Unstyled Content in IE

2007-03-13 Thread Robert Rawlins - Think Blue
That link appears to solve the image flicker issue, not slow loading of styles on a template, from memory I always thought the issue with styles jumping in late was the use of @import to attach a style sheet as this causes the style sheet to load -after- the unformatted document, I'm not sure if

Flow Chart Icons

2007-03-09 Thread Robert Rawlins - Think Blue
Hello Guys, A little off topic this one, But I'm currently placing together a presentation for a client meeting scheduled for the back end of next week and I'm looking for some decent icons to use in my flow diagrams and things like that, on my apps I tend to use the famfamfam.com icons, which

RE: User Authentication

2007-03-08 Thread Robert Rawlins - Think Blue
PROTECTED] wrote: how about having the user.cfc expose all the functions from the other CFCs and it calls the correct function? so Session.User.getProfile().getName() would become Session.User.getName() where getName() calls Profile.getName() On 3/7/07, Robert Rawlins - Think Blue [EMAIL

RE: improved js for form validation?

2007-03-08 Thread Robert Rawlins - Think Blue
I still don't get why people use JS for form validation, Why not just place some decent server side stuff on it? It's allot less hassle and allot more secure. Rob -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] Sent: 08 March 2007 09:28 To: CF-Talk Subject: Re: improved

Hash Algorithems

2007-03-08 Thread Robert Rawlins - Think Blue
Hello Guys, For a while I've been wondering about the HASH() function and the different algorithms available on it, the cfdocs list the following. .. CFMX_COMPAT: Generates a hash string identical to that generated by ColdFusion MX and ColdFusion MX 6.1 (default). .. MD5:

RE: improved js for form validation?

2007-03-08 Thread Robert Rawlins - Think Blue
I'm not so sure I agree that it does benefit the user experience, Perhaps for some of the more complex validations, but generally when I click the 'submit' button and I get a horrible windows style 'BP!!!' and a notice window that I've missed out my name I find it to be a little offensive more

RE: Hash Algorithems

2007-03-08 Thread Robert Rawlins - Think Blue
Algorithems On Thursday 08 Mar 2007, Robert Rawlins - Think Blue wrote: Presumably they become more complex, and therefore more secure from top to bottom, so why would you not specify the SHA-512 on all hash encryption you do, I know that hash is generally regarded as a one way encryption so why do

RE: CF Report Builder

2007-03-08 Thread Robert Rawlins - Think Blue
Afternoon Jay, Which version of vista are you running, home, business, ultimate? I would recommend running the install as Administrator and in XP Compatibility mode, you can do this by right clicking the install exe and choosing properties, and then the 'compatibility' tab. Hope that helps, Rob

RE: bad cfc practice but why?

2007-03-08 Thread Robert Rawlins - Think Blue
Doug is right, the idea is that you keep your logic and presentation separate. If you want all the forms and things to be reusable, keep them out of your CFC's and build a CFM file, this can then be called a custom tag, or with a cfinclude at any point in the application. Have a read of this

RE: CF Report Builder

2007-03-08 Thread Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] Sent: 08 March 2007 13:00 To: CF-Talk Subject: RE: CF Report Builder Afternoon Rob It is ultimate, and yes, that fixed it nicely, cheers. Jay -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 08 March 2007 11:24 To: CF-Talk

A Few Design Pattern Questions

2007-03-07 Thread Robert Rawlins
Hello Chaps, I’m new to the world of MVC, and I’m currently using MG to initiate myself into this type of design pattern, and on the most parts I’ve now found my feet, but there are a few of the more simple concepts that I’m still a little fuzzy on. The first element that confuses me

IIRF ISAPI Rewrite

2007-03-07 Thread Robert Rawlins - Think Blue
Hello Guys, After reading Ray Camden's blog post about SES type URLS I downloaded the IIRF ISAPI filter onto my website. The install appeared to go fine, fairly simple instructions, I've now rebooted my box but the website is still dead. I just get a 'page cannot be found' error message on

User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
Hello Guys, Wanted to run a couple of ideas past you with regards to a comprehensive user authentication system. Basically the system needs to be a 'role' or 'entitlements' based security system, so all users can login using the same process, they are then offered access to particular tasks

RE: User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
Hehe, it does, but it's not efficient or OOP based :-D Thanks anyway. Rob -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 11:20 To: CF-Talk Subject: Re: User Authentication CFLOGIN provides role based security. On 3/7/07, Robert Rawlins - Think

RE: User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
always has one entitlement? That's correct, every user would have at least one entitlement. Hope that helps, Rob -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 12:04 To: CF-Talk Subject: Re: User Authentication Robert Rawlins - Think Blue said

RE: User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
to read. What are the benefits of placing them all into a single component? Performance? Efficiency? Rob -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 12:48 To: CF-Talk Subject: RE: User Authentication Robert Rawlins - Think Blue said: Can

RE: Reactor XML - Throwing Error's

2007-03-06 Thread Robert Rawlins - Think Blue
Subject: Re: Reactor XML - Throwing Error's On Monday 05 Mar 2007, Robert Rawlins - Think Blue wrote: After removing that code I then get the following error. Rinse and repeat until you get a native error message. -- Tom Chiverton Helping to quickly fashion robust e-services On: http

Creating HTML Content Wrapper for Email

2007-03-06 Thread Robert Rawlins
Hello Guys, I'm building a general utility component for sending emails from my application, so I can use it for error reporting, contact forms, newsletters, order confirmations and alike. I'm looking for the best method to create an HTML wrapper for the content. At the moment a variable

RE: Creating HTML Content Wrapper for Email

2007-03-06 Thread Robert Rawlins - Think Blue
: Creating HTML Content Wrapper for Email In the midst of your HTML file, place a string like [[CONTENT]] where you want the content to go. Then open the file, read it into a variable, and replace that string with the actual content. -Original Message- From: Robert Rawlins [mailto:[EMAIL

RE: Creating HTML Content Wrapper for Email

2007-03-06 Thread Robert Rawlins - Think Blue
: Creating HTML Content Wrapper for Email You're mostly out of luck when trying to use CSS in emails. It sucks, but you're stuck with using inline styles (in my experience). -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 06, 2007 10:06

<    1   2   3   4   5   >