Re: ColdFusion Express?

2009-01-02 Thread Dave l
cf express... isn't that what rick uses?

@mysql gui tools
if you're on a mac I ran across a new one that is pretty good if you need a 
freebie one http://www.sequelpro.com/ 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317329
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Express?

2009-01-02 Thread Rick Faircloth
cf express +  :oP

 -Original Message-
 From: Dave l [mailto:cfl...@jamwerx.com]
 Sent: Friday, January 02, 2009 3:51 AM
 To: cf-talk
 Subject: Re: ColdFusion Express?
 
 cf express... isn't that what rick uses?
 
 @mysql gui tools
 if you're on a mac I ran across a new one that is pretty good if you need a 
 freebie one
 http://www.sequelpro.com/



~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317330
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: directory masking

2009-01-02 Thread William Seiter
Thank you very much, I will use your suggestions today for the 404 issues.

Can anyone give any ideas on the directory masking?

William

-Original Message-
From: Chuck [mailto:h...@coldfusionguru.com] 
Sent: Thursday, January 01, 2009 5:51 PM
To: cf-talk
Subject: RE: directory masking

Yes, I have done this before.

You want to go into IIS and change the file that the 404 errors are pointing
to.

In IIS:

Right click on the website you want and go to properties.  The go to the
Custom Errors Tab.  Scroll down in the errors and you want to change 404,
404;2 and 404;3.  Select one and click the edit button.  Next change the
Message type to URL and in the URL textbox you want to put a relative URL to
the site, like this /404Handler.cfm with no quotes.  Make this change for
all 3 and you are good to go.

Chuck




~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317331
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: directory masking

2009-01-02 Thread David Low
William,

For the second part of your question (URL rewriting) there are two
ways you can do it.

Firstly you can redirect _all_ requests (including 404s) to a default
page - let's say index.cfm - and let that page decide what to do with
the request, based on the URL passed in.  For example if the URL is
/directory/1/2/3/ then you could parse your way through that URL.

What the URL rewrite does is send the request to the web server in a
different way.  I don't use ISAPI rewrite since I've got Apache
running (mod_rewrite being the equivalent) but most of the time it
works something like this:

Public-facing URL: http://david.low.me.uk/category/railo/

URL rewritten and sent to web server behind the scenes:
http://david.low.me.uk/index.cfm?category=railo

It can be done a lot more complicated than that, but that's the basic
idea.  URLs are rewritten based on a set of rules supplied.

Hope that's of some use...

David


2009/1/2 William Seiter will...@seiter.com:
 Thank you very much, I will use your suggestions today for the 404 issues.

 Can anyone give any ideas on the directory masking?

 William

 -Original Message-
 From: Chuck [mailto:h...@coldfusionguru.com]
 Sent: Thursday, January 01, 2009 5:51 PM
 To: cf-talk
 Subject: RE: directory masking

 Yes, I have done this before.

 You want to go into IIS and change the file that the 404 errors are pointing
 to.

 In IIS:

 Right click on the website you want and go to properties.  The go to the
 Custom Errors Tab.  Scroll down in the errors and you want to change 404,
 404;2 and 404;3.  Select one and click the edit button.  Next change the
 Message type to URL and in the URL textbox you want to put a relative URL to
 the site, like this /404Handler.cfm with no quotes.  Make this change for
 all 3 and you are good to go.

 Chuck




 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317332
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Express?

2009-01-02 Thread Will Tomlinson
 cf express +  :oP
 

 I think rick uses cf express beta. 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317333
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: directory masking

2009-01-02 Thread William
Thankyou for the assistance .  I am currently using that type of redirect 
system inside of my application.  What the client wants is for the user to see 
the url in the url bar only.  No directory names. No page names. Nothing beyond 
the '.com' ind the web address.

Any ideas?

william

William Seiter (mobile)
--
Web Developer / ColdFusion Programmer

-Original Message-
From: David Low eskele...@gmail.com
To: cf-talk cf-talk@houseoffusion.com
Sent: 1/2/2009 7:36 AM
Subject: Re: directory masking

William,

For the second part of your question (URL rewriting) there are two
ways you can do it.

Firstly you can redirect _all_ requests (including 404s) to a default
page - let's say index.cfm - and let that page decide what to do with
the request, based on the URL passed in.  For example if the URL is
/directory/1/2/3/ then you could parse your way through that URL.

What the URL rewrite does is send the request to the web server in a
different way.  I don't use ISAPI rewrite since I've got Apache
running (mod_rewrite being the equivalent) but most of the time it
works something like this:

Public-facing URL: http://david.low.me.uk/category/railo/

URL rewritten and sent to web server behind the scenes:
http://david.low.me.uk/index.cfm?category=railo

It can be done a lot more complicated than that, but that's the basic
idea.  URLs are rewritten based on a set of rules supplied.

Hope that's of some use...

David


2009/1/2 William Seiter will...@seiter.com:
 Thank you very much, I will use your suggestions today for the 404 issues

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317334
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: directory masking

2009-01-02 Thread David Low
Well you can do that with frames/iframes or AJAX navigation, or
something like that, if I understand you correctly - but you would
only ever have one public URL.  Depending on your ambitions within
search engines (and cross-browser support) it could be done.  For a
public-facing site I wouldn't ever recommend it, but I guess it's up
to your client as long as he knows the potential pitfalls.

David

2009/1/2  will...@seiter.com:
 Thankyou for the assistance .  I am currently using that type of redirect 
 system inside of my application.  What the client wants is for the user to 
 see the url in the url bar only.  No directory names. No page names. Nothing 
 beyond the '.com' ind the web address.

 Any ideas?

 william

 William Seiter (mobile)
 --
 Web Developer / ColdFusion Programmer

 -Original Message-
 From: David Low eskele...@gmail.com
 To: cf-talk cf-talk@houseoffusion.com
 Sent: 1/2/2009 7:36 AM
 Subject: Re: directory masking

 William,

 For the second part of your question (URL rewriting) there are two
 ways you can do it.

 Firstly you can redirect _all_ requests (including 404s) to a default
 page - let's say index.cfm - and let that page decide what to do with
 the request, based on the URL passed in.  For example if the URL is
 /directory/1/2/3/ then you could parse your way through that URL.

 What the URL rewrite does is send the request to the web server in a
 different way.  I don't use ISAPI rewrite since I've got Apache
 running (mod_rewrite being the equivalent) but most of the time it
 works something like this:

 Public-facing URL: http://david.low.me.uk/category/railo/

 URL rewritten and sent to web server behind the scenes:
 http://david.low.me.uk/index.cfm?category=railo

 It can be done a lot more complicated than that, but that's the basic
 idea.  URLs are rewritten based on a set of rules supplied.

 Hope that's of some use...

 David


 2009/1/2 William Seiter will...@seiter.com:
 Thank you very much, I will use your suggestions today for the 404 issues

 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317335
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: directory masking

2009-01-02 Thread Dave Watts
 Thankyou for the assistance .  I am currently using that type of redirect 
 system inside of
 my application.  What the client wants is for the user to see the url in the 
 url bar only.
 No directory names. No page names. Nothing beyond the '.com' ind the web 
 address.

You would need to use frames or a RIA interface (AJAX, Flex) to do
that. If you're not building a single RIA interface, this is a
monumentally bad idea for a variety of reasons. You should tell your
client that, in no uncertain terms.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317336
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion Express?

2009-01-02 Thread Rick Faircloth
You mean they finally put out the non-beta?
Oh, man...I've been dealing with beta issues all these years! :o\


 -Original Message-
 From: Will Tomlinson [mailto:w...@wtomlinson.com]
 Sent: Friday, January 02, 2009 1:20 PM
 To: cf-talk
 Subject: Re: ColdFusion Express?
 
  cf express +  :oP
 
 
  I think rick uses cf express beta.
 
 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317337
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Problem with javascript window.open

2009-01-02 Thread Jim Sidway
I have a standard javascript function on a CF page intended to open a popup 
window:

function openProfileWindow(url)
{
popupWin = window.open(url, 'detail', 
'width=600,height=350,left=1,top=1,scrollbars=yes,resizable=yes');popupWin.window.focus();
}

On the CF page I loop through the results of a query and output them.  I made 
one of the values a hyperlink in order to open a popup window to display the 
potentially lengthy content of another data item. I need to pass a primary key 
value in the URL so I want it to be encrypted. I use this code:

td class=bioinfa 
href=javascript:openProfileWindow('view_profile.cfm?fi=#JSStringFormat(URLEncodedFormat(Encrypt(key_value,banana)))#');#My
 Link#/a/td

Here is a sample of the resulting value passed to the javascript function:

javascript:openProfileWindow('view_profile.cfm?fi=%29%3FG%2F%3CZXG1P%3DWC%0A')

I end up with an 'error on page' message in the browser status bar and the 
popup fails to open.  The generated string is the same with or without the 
JSStringFormat function and the results are the same.  If I pass the 
unencrypted primary key value it works fine.

Note: If instead of trying to open the popup I simply open a new CFM using the 
same logic (minus the JSStringFormat) it works fine:

td class=bioinfa 
href=view_profile2.cfm?fi=#URLEncodedFormat(Encrypt(key_value,banana))#;#My
 Link#/a/td 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317338
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Problem with javascript window.open

2009-01-02 Thread Dave Watts
 I have a standard javascript function on a CF page intended to open a popup 
 window:

 ...

 On the CF page I loop through the results of a query and output them.  I made 
 one of the values a
 hyperlink in order to open a popup window to display the potentially lengthy 
 content of another data
 item. I need to pass a primary key value in the URL so I want it to be 
 encrypted.

Rather than actually addressing your main question, I would recommend
that you not bother with encrypting primary key values. If your
application is properly constructed, a user should only be able to
view items based on proper permissions. So, if I change the primary
key from a value that I'm allowed to see to one that I'm not, your
application should not allow me to see the corresponding item.

That said, you shouldn't have to use JSStringFormat on a string that
has been formatted with URLEncodedFormat. The URLEncodedFormat
function URL-encodes all nonalphanumeric characters.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317339
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: market rates

2009-01-02 Thread Daryl James
 On Saturday 31 May 2008, Richard White wrote:
  we are based in the UK, does anyone know of anywhere we could go to 
 fund
  out the current market rates for coldfusion and mysql web 
 application
  developers?
 
 Ring a company that offers a CF coding service and pretend your a 
 potential 
 customer ?
 
 -- 
 Tom Chiverton
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in 
 England and Wales under registered number OC307980 whose registered 
 office address is at Halliwells LLP, 3 Hardman Square, Spinningfields, 
 Manchester, M3 3EB.  A list of members is available for inspection at 
 the registered office. Any reference to a partner in relation to 
 Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
 Solicitors Regulation Authority.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named above 
 and may be confidential or legally privileged.  If you are not the 
 addressee you must not read it and must not use any information 
 contained in nor copy it nor inform any person other than Halliwells 
 LLP or the addressee of its existence or contents.  If you have 
 received this email in error please delete it and notify Halliwells 
 LLP IT Department on 0870 365 2500.
 
 For more information about Halliwells LLP visit www.halliwells.com.



We have a wealth of rate and trend statistics available over at 
http://www.odesk.com/community/oconomy.  Just click on rate statistics and 
browse through the categories.  These are real-time freelance/outsourcing 
statistics.  Hope this helps.

Daryl James
- oDesk 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317340
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: market rates

2009-01-02 Thread James Holmes
Wow, I'd literally earn more pushing shopping carts at my local supermarket.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2009/1/3 Daryl James coldfus...@daryljamesodesk.otherinbox.com:

 We have a wealth of rate and trend statistics available over at 
 http://www.odesk.com/community/oconomy.  Just click on rate statistics and 
 browse through the categories.  These are real-time freelance/outsourcing 
 statistics.  Hope this helps.

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317341
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Modify an error object prior to rethrowing it

2009-01-02 Thread brad
OK, here's an interesting question.  I'll bypass the gory details of why
for now and get to it.  Is it possible to catch an error, modify that
error object and then rethrow it without have to extract all the pieces
of it to re-create the error (which may or may not even be possible).

If you cfthrow an error, you can add in properties like Extendedinfo
into the error which you can use later on down the road.  However, the
Java error object that CF errors throw don't have ExtendedInfo and as of
CF8 (according to the docs) error objects cannot be modified.

I know that you can create a Java.lang.exception object with cfobject
and pass that into cfthrow for throwing, but I don't think that solves
my problem.

~Brad
 



~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317342
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4