Re: Secure Hosted Subversion Services: Suggestions and experiences?

2010-08-09 Thread Dominic Watson

Great guys, thanks :)

On 9 August 2010 05:16, Sean Corfield seancorfi...@gmail.com wrote:

 On Sun, Aug 8, 2010 at 9:10 PM, David Mineer Jr min...@gmail.com wrote:
 I used codesion for years, then switched to unfuddle.  Little cheaper and
 lots more features (at that time).  Both are good but I sure love unfuddle.

 I'll second the recommendation for Unfuddle for ease of use and great 
 features.

 Codesion is definitely industrial strength and I used them back in
 their CVSDude days for CVS and SVN hosting. Not always the fastest
 service, nor the richest feature set, but rock solid and scalable and
 they take security very seriously:

 http://codesion.com/security.html
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

 If you're not annoying somebody, you're not really alive.
 -- Margaret Atwo

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336115
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Syntax checking generated code: CF9

2010-08-09 Thread Dominic Watson

Thanks guys. Certainly, compiling the code and checking for errors
would be the ideal - just need to make sure the code does not execute.
Any ideas about an explicit way to do that? I've thought of a hack,
roughly:

function checkSyntax( templatePath ){

 var content = 'cfif ColdFusion EQ Rocks'  fileRead(
arguments.templatePath )  '/cfif';
 FileWrite('/some/tmp/file', content);
 try{
include '/some/tmp/file';
fileDelete('/som/tmp/file');
} catch(any e){
 return false;
}

return true;


}

d

On 6 August 2010 22:35, denstar valliants...@gmail.com wrote:

 If I'm understanding right, you could compile the code and it should
 throw an error if there's a validation problem.

 But I might not be understanding correctly.

 :Den

 --
 Of two pleasures, if there be one which all or almost all who have
 experience of both give a decided preference, irrespective of any
 feeling of moral obligation to prefer it, that is the more desirable
 pleasure.
 John Stuart Mill

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336116
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


JDBC ODBC Bridge

2010-08-09 Thread Steve Monteith

I am using 4Dv11SQL Server as my ODBC source and I am trying to get JDBC-ODBC 
bridge working. I have tried 3 different bridges: Sun, Sequelink and Easysoft. 
I seem to be the closest with Easysoft but I have one last hurdle.

Using the EasySoft JAVA test applet, I am able to retrieve data from my 
4Dv11SQL database. I do notice that each field returned has an extra character 
at the end. When I perform a cfquery in ColdFusion...

cfquery name=test datasource=v11
Select MyField1 From MyTable1
/cfquery

 and I try to cfoutput the column data,...

cfoutput query=test
 #MyField1#
/cfoutput

I get a  ColdFusion error Element MyField1 is not recognized.

Note: A cfdump is successful.

When I cfoutput just the column name, the extra character is present. The extra 
character is chr(65533) which from what I can tell is a replacement character 
so I assume I do not know what the real character is.

Any suggestions... 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336117
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


application variables and a clustered enviroment

2010-08-09 Thread Chad McCue

My company has two servers each having enterprise level coldfusion 
administrator installed on it. My site has code that will handle various 
counters based on user activity via application variables, I will have a main 
admin login that will be able to process these application variables and view 
hit counters.

My question is if my admin is logged in on server 1, how can I access the 
numbers saved in the application variables by users that are on server 2 to 
combine with the numbers from application variables on server 1? 

Is it possible to use server variables with the ability to reference them from 
either server based on the servers IP?

I am trying to do this without having to save the information in a DB table so 
I don't have to handle adding and removing based on session timeout issues, 
this data has to be as real time as possible. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336118
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: application variables and a clustered enviroment

2010-08-09 Thread James Holmes

You'll need a webservice or another remote method of supplying the
data to the other server.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 9 August 2010 22:08, Chad McCue ch...@icsciences.com wrote:

 My company has two servers each having enterprise level coldfusion 
 administrator installed on it. My site has code that will handle various 
 counters based on user activity via application variables, I will have a main 
 admin login that will be able to process these application variables and view 
 hit counters.

 My question is if my admin is logged in on server 1, how can I access the 
 numbers saved in the application variables by users that are on server 2 to 
 combine with the numbers from application variables on server 1?

 Is it possible to use server variables with the ability to reference them 
 from either server based on the servers IP?

 I am trying to do this without having to save the information in a DB table 
 so I don't have to handle adding and removing based on session timeout 
 issues, this data has to be as real time as possible.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336119
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfqueryparam question

2010-08-09 Thread Eric Roberts

We are putting a cfqueryparam aound all of our sql vars...I am not sure how
to handle this one:

Here's the line:

*

AND* DatePart(m,inv_date)=CFQUERYPARAM Value=#variables.month# cfsqltype=
CF_SQL_date null=false list=false



Should that be date or varchar since it is looking at the part of the date
(which I am assuming returns a char or varchar value).  The actual column in
the DB, inv_date is of type datetime.



Thanks!

Eric


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336120
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfqueryparam question

2010-08-09 Thread John M Bliss

DatePart will return an integer so CF_SQL_INTEGER

On Mon, Aug 9, 2010 at 10:46 AM, Eric Roberts 
ow...@threeravensconsulting.com wrote:


 We are putting a cfqueryparam aound all of our sql vars...I am not sure how
 to handle this one:

 Here's the line:

 *

 AND* DatePart(m,inv_date)=CFQUERYPARAM Value=#variables.month#
 cfsqltype=
 CF_SQL_date null=false list=false



 Should that be date or varchar since it is looking at the part of the date
 (which I am assuming returns a char or varchar value).  The actual column
 in
 the DB, inv_date is of type datetime.



 Thanks!

 Eric


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336121
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


re: cfqueryparam question

2010-08-09 Thread Eric Roberts

Thanks John!

Eric


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


WAY WAY OT: Book Readers, and your own words

2010-08-09 Thread Marc Funaro

This is way OT, won't blame anyone a bit if you want to tell me to go pound 
salt... but you're a creative bunch and we've struggled with this long enough.

The situation:  Rock band with over 4 hours of music... lots of lyrics.  
Frequent set changes, meaning that standard 3-ring-binder full of lyrics has to 
get re-arranged in order to step through a show.  Lyrics MOSTLY memorized, but 
nice to have on stage as back-up for brainfart moments.

The Idea:  An eBook reader, like a Kindle or some such device, that can flip 
pages by touching the screen, placed on music stand.  Lyrics all assembled in a 
Word doc, rendered in whatever format necessary to view on said device.  Words 
appearing on screen large enough to be viewed without having to be too 
up-close-and-personal with the device.

Anyone have experience with eBook readers like the Kindle, and is it possible 
to get your own file(s) onto such a device so that one could simply modify the 
files when the sets change, and place on the device for performances?  Any 
other ideas?  We continue to add songs and tweak the set list order, and it's 
making the vocalist insane having to keep her book up-to-date.  Mine too.

Fire up those creative minds and let me know what ideas you have! 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336123
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: WAY WAY OT: Book Readers, and your own words

2010-08-09 Thread John M Bliss

No personal experience...but...http://www.musicreader.net

On Mon, Aug 9, 2010 at 12:50 PM, Marc Funaro subscripti...@advantex.netwrote:


 This is way OT, won't blame anyone a bit if you want to tell me to go pound
 salt... but you're a creative bunch and we've struggled with this long
 enough.

 The situation:  Rock band with over 4 hours of music... lots of lyrics.
  Frequent set changes, meaning that standard 3-ring-binder full of lyrics
 has to get re-arranged in order to step through a show.  Lyrics MOSTLY
 memorized, but nice to have on stage as back-up for brainfart moments.

 The Idea:  An eBook reader, like a Kindle or some such device, that can
 flip pages by touching the screen, placed on music stand.  Lyrics all
 assembled in a Word doc, rendered in whatever format necessary to view on
 said device.  Words appearing on screen large enough to be viewed without
 having to be too up-close-and-personal with the device.

 Anyone have experience with eBook readers like the Kindle, and is it
 possible to get your own file(s) onto such a device so that one could simply
 modify the files when the sets change, and place on the device for
 performances?  Any other ideas?  We continue to add songs and tweak the set
 list order, and it's making the vocalist insane having to keep her book
 up-to-date.  Mine too.

 Fire up those creative minds and let me know what ideas you have!

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336124
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: WAY WAY OT: Book Readers, and your own words

2010-08-09 Thread Brook Davies

Ipad?

-Original Message-
From: Marc Funaro [mailto:subscripti...@advantex.net] 
Sent: August-09-10 9:51 AM
To: cf-talk
Subject: WAY WAY OT: Book Readers, and your own words


This is way OT, won't blame anyone a bit if you want to tell me to go pound
salt... but you're a creative bunch and we've struggled with this long
enough.

The situation:  Rock band with over 4 hours of music... lots of lyrics.
Frequent set changes, meaning that standard 3-ring-binder full of lyrics has
to get re-arranged in order to step through a show.  Lyrics MOSTLY
memorized, but nice to have on stage as back-up for brainfart moments.

The Idea:  An eBook reader, like a Kindle or some such device, that can flip
pages by touching the screen, placed on music stand.  Lyrics all assembled
in a Word doc, rendered in whatever format necessary to view on said device.
Words appearing on screen large enough to be viewed without having to be too
up-close-and-personal with the device.

Anyone have experience with eBook readers like the Kindle, and is it
possible to get your own file(s) onto such a device so that one could simply
modify the files when the sets change, and place on the device for
performances?  Any other ideas?  We continue to add songs and tweak the set
list order, and it's making the vocalist insane having to keep her book
up-to-date.  Mine too.

Fire up those creative minds and let me know what ideas you have! 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336125
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: WAY WAY OT: Book Readers, and your own words

2010-08-09 Thread Maureen

I use this.  http://corporate.freehandmusic.com/products-musicpadpro.php

On Mon, Aug 9, 2010 at 9:50 AM, Marc Funaro subscripti...@advantex.netwrote:


 The Idea:  An eBook reader, like a Kindle or some such device, that can
 flip pages by touching the screen, placed on music stand.  Lyrics all
 assembled in a Word doc, rendered in whatever format necessary to view on
 said device.  Words appearing on screen large enough to be viewed without
 having to be too up-close-and-personal with the device.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336126
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Syntax checking generated code: CF9

2010-08-09 Thread denstar

Sorry, should have included the link the first time:

http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf364104-7fd0.html

The cfcompile utility shouldn't execute your code, just compile it.
Theoretically throwing errors on bad syntax.  :)

You could also create an Ant script for it.  Google knows...

:Den

-- 
The person who has nothing for which he is willing to fight, nothing
which is more important than his own personal safety, is a miserable
creature and has no chance of being free unless made and kept so by
the exertions of better men than himself.
John Stuart Mill

On Mon, Aug 9, 2010 at 4:08 AM, Dominic Watson wrote:

 Thanks guys. Certainly, compiling the code and checking for errors
 would be the ideal - just need to make sure the code does not execute.
 Any ideas about an explicit way to do that? I've thought of a hack,
 roughly:
...

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336127
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: WAY WAY OT: Book Readers, and your own words

2010-08-09 Thread Dave Watts

 Anyone have experience with eBook readers like the Kindle, and is it possible 
 to get your own file(s) onto such a device so that
 one could simply modify the files when the sets change, and place on the 
 device for performances?  Any other ideas?  We
 continue to add songs and tweak the set list order, and it's making the 
 vocalist insane having to keep her book up-to-date.  Mine
 too.

I have a bunch of Kindles, and some other e-ink devices. You can
certainly put your own files on them, and if you wanted to be able to
just treat it like a book (reading it at close range) it would be
suitable for this. The larger Kindle DX supports PDF as well as the
native Amazon (MobiPocket) format. But I don't think it would work too
well at a distance, as the contrast isn't very high.

Why not just use a laptop?

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsi

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336128
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: WAY WAY OT: Book Readers, and your own words

2010-08-09 Thread Mike Chabot

The Mac Break Weekly crew was discussing an iPad app called Teleprompt
on episode 200 that might be relevant to your interests.
http://www.bombingbrain.com/teleprompt.html

-Mike Chabot

On Mon, Aug 9, 2010 at 12:50 PM, Marc Funaro subscripti...@advantex.net wrote:

 This is way OT, won't blame anyone a bit if you want to tell me to go pound 
 salt... but you're a creative bunch and we've struggled with this long enough.

 The situation:  Rock band with over 4 hours of music... lots of lyrics.  
 Frequent set changes, meaning that standard 3-ring-binder full of lyrics has 
 to get re-arranged in order to step through a show.  Lyrics MOSTLY memorized, 
 but nice to have on stage as back-up for brainfart moments.

 The Idea:  An eBook reader, like a Kindle or some such device, that can flip 
 pages by touching the screen, placed on music stand.  Lyrics all assembled in 
 a Word doc, rendered in whatever format necessary to view on said device.  
 Words appearing on screen large enough to be viewed without having to be too 
 up-close-and-personal with the device.

 Anyone have experience with eBook readers like the Kindle, and is it possible 
 to get your own file(s) onto such a device so that one could simply modify 
 the files when the sets change, and place on the device for performances?  
 Any other ideas?  We continue to add songs and tweak the set list order, and 
 it's making the vocalist insane having to keep her book up-to-date.  Mine too.

 Fire up those creative minds and let me know what ideas you have!

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336129
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF9 Tag info for CFEclipse

2010-08-09 Thread Eric Roberts

Anyone know if there is a update for the tag hints for CFEclipse for CF9 and
if so where I can get it?  I getting attributes marked as errors becuae they
apparently didn't exist in 7 or 8.

Thanks
Eric


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Forums using CFCs?

2010-08-09 Thread Jake Pilgrim

I know I'm kicking a dead dog asking about forums, but I need current 
information so please bear with me. :)

I'm currently working on a project where a forum is desired, and I'm hoping 
someone has developed something that we can use rather than reinventing the 
forum yet again :). This forum should be very simple - allow posts, reply to 
post, and some moderation/administration tools. It is important that whatever 
we use is heavily CFC-based - our framework is entirely OOP/CFC based and a 
series of CFMs would be very out-of-place. We have looked at Galleon and CFBB, 
and they're just not what we're looking for. Any suggestions would be 
appreciated!



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336131
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


show Hide'

2010-08-09 Thread Joy Rose

Is there any way to show a hidden cfgrid based
on an OnChange event from another cfgrid? I've tried using
a javascript function call with no results:

Any suggestions on how I could show the hidden
cfgrid from another cfgrid by some other method?

Thanks. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336132
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


show Hide cfgrid?

2010-08-09 Thread Joy Rose

Is there any way to show a hidden cfgrid based
on an OnChange event from another cfgrid? I've tried using
a javascript function call with no results:

Any suggestions on how I could show the hidden
cfgrid from another cfgrid by some other method?

Thanks. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336133
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Upgrade CF5 to CF8 and undefined session

2010-08-09 Thread Jean-Jacques DONATE

Hi everybody,

First sorry for my poor english (i'm french... nobody's perfect ;-)). 

My problem is that an old application, running on CF5 without problem, doesn't 
work on a new (OS Win 2003 sp2, IIS 6, CF8) machine. I precise that the cookies 
are accepted on the client machine browser.

The problem is that session management seems not to work.

In the login folder
***

Application.cfm

CFAPPLICATION NAME=xxx SESSIONMANAGEMENT=yes
CFSET Variables.DSN=y

Index.cfm

a form with UserName and PW


ActionIndex.cfm

UserName and PW verification and if ok :

CFLOCK TIMEOUT=10 TYPE=EXCLUSIVE SCOPE=SESSION 
 CFSET Session.LoggedIn = 1 
 and other session variables affectation...

/CFLOCK
then
cflocation url=/user foldername/file name.htm

In user foldername
***

Application.cfm

cfapplication name=xxx sessionmanagement=yes
CFSET Variables.DSN=y
CFLOCK TIMEOUT=10 TYPE=READONLY SCOPE=SESSION
CFIF NOT IsDefined(session.LoggedIn)
 SCRIPT LANGUAGE=JavaScript
 {window.close();}
 /script
 CF_LOCATION URL=/appfolder/Login/index.cfm
/CFIF 
/CFLOCK

file name.htm

A frameset with 3 cfm files using the session variables etc...

When i log with verified UserName and PW the second Application.cfm throw me 
back 
to index.cfm as if session.LoggedIn where undefined.

If a delete the loggedIn verification the 3 cfm files in file_name.htm frameset 
stop at the first reference of a session var used.

I saw in the CF8 documentation

Note:
If you set session variables on a CFML template that uses the cflocation tag, 
ColdFusion might not set the variables. For more information, see TechNote 
22712 
at 

http://kb2.adobe.com/cps/181/tn_18171.html

 It was exactly what hapened to me. I tried every workarounds they suggest 
without any success !! (javascript redirection, CF_Location, CFHeader, meta 
refresh...)

I have an other application built in the same model that seems to work with 
session variable without problem.

What can I do ?? stay in CF5 ?

Thanks in advance for any suggestion.

Best regards. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336134
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Andrew Grosset

they're just not 
 what we're looking for.

Specifically what are you looking for? (that the afore mentioned dont have)


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Matt Quackenbush

He said he was specifically looking for *CFC-based forums*.  The
aforementioned are not CFC-based.  In other words, and perhaps I am wrong,
but I do not think he was saying the others did not have the feature set he
was looking for.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Mark Drew

Galleon is cfc based tho?

Sent from my iPhone (apologies for my brevity!)

On 9 Aug 2010, at 21:43, Matt Quackenbush quackfu...@gmail.com wrote:

 
 He said he was specifically looking for *CFC-based forums*.  The
 aforementioned are not CFC-based.  In other words, and perhaps I am wrong,
 but I do not think he was saying the others did not have the feature set he
 was looking for.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336137
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Raymond Camden

Eh? Galleon isn't CFC based?

On Mon, Aug 9, 2010 at 3:43 PM, Matt Quackenbush quackfu...@gmail.com wrote:

 He said he was specifically looking for *CFC-based forums*.  The
 aforementioned are not CFC-based.  In other words, and perhaps I am wrong,
 but I do not think he was saying the others did not have the feature set he
 was looking for.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336138
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Raymond Camden

If I need to add more CFCs to Galleon, I can. ;)

cowbell.cfc
oop.cfc
viewSystemDextrousHandlerSupreme.cfc


On Mon, Aug 9, 2010 at 3:47 PM, Mark Drew mark.d...@gmail.com wrote:

 Galleon is cfc based tho?

 Sent from my iPhone (apologies for my brevity!)

 On 9 Aug 2010, at 21:43, Matt Quackenbush quackfu...@gmail.com wrote:


 He said he was specifically looking for *CFC-based forums*.  The
 aforementioned are not CFC-based.  In other words, and perhaps I am wrong,
 but I do not think he was saying the others did not have the feature set he
 was looking for.




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336139
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Andrew Grosset

think he was saying the others did not have the feature set he was looking 
for. 

that is why I posted my question!! because in reality his request does not 
really say much about what he is looking for except it should be simple and cfc 
based.

and yes Galleon is CFC based. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336140
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Matt Quackenbush

Heh.  I actually have no idea if it is CFC-based or not; I've never looked
at it, other than seeing it installed on certain sites (ColdBox forums, Mura
forums, etc).  Since I know that it does the things the OP listed, and based
upon the that post, I assumed it was not CFC-based.  shrug


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336141
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Raymond Camden

Dude, Galleon is so CFC based it actually uses CFDs.

(Ok, sorry, I won't pollute the thread w/ any more silliness today. ;)

On Mon, Aug 9, 2010 at 3:58 PM, Matt Quackenbush quackfu...@gmail.com wrote:

 Heh.  I actually have no idea if it is CFC-based or not; I've never looked
 at it, other than seeing it installed on certain sites (ColdBox forums, Mura
 forums, etc).  Since I know that it does the things the OP listed, and based
 upon the that post, I assumed it was not CFC-based.  shrug


-- 
===
Raymond Camden, ColdFusion Jedi Master

Email    : r...@camdenfamily.com
Blog      : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with the community: http://www.coldfusionblog

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336142
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Matt Quackenbush

CFDs are hot, but not as hot as CFDDDs.  :-)


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336143
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread denstar

CFDs nuts!  =-)

On Mon, Aug 9, 2010 at 3:04 PM, Matt Quackenbush wrote:

 CFDs are hot, but not as hot as CFDDDs.  :-)


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Upgrade CF5 to CF8 and undefined session

2010-08-09 Thread Claude Schnéegans

Salut collègue ! ;-)

 The problem is that session management seems not to work.

Do you some more precise diagnostic? Any error message?
What makes you think session management does not work?

One of the problems you will encounter with applications in French is 
that CF and CF-Studio used to work in ISO-8859-1
and CF MX works in UTF-8 by default.
For example, if you have messages in French in some Javascript functions 
and if your Javascript was edited in ISO-8859-1, it may cause many problems.
If you have this problem, I can tell you what to do to force ISO-8859-1 
under CF MX (one problem at a time).

But I've never seen problems with sessions.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336145
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Upgrade CF5 to CF8 and undefined session

2010-08-09 Thread Alan Rother

One thing to look at is in the CF Administrator, are SESSION variables
enabled?

admin  server settings  memory variables  Enable Session Variables YES

That's not the most likely problem, but it is possible.

I think your issue may be related to the frames.It;s possible that in each
frame you have a different session.

Try putting a CFDUMP tag into each frame and see what your session vars look
like.

cfdump var=#Session# labelFrame 1
cfdump var=#Session# labelFrame 2
cfdump var=#Session# labelFrame 3

See if they all have the same result.

=]

On Mon, Aug 9, 2010 at 2:36 PM,  wrote:


 Salut collègue ! ;-)

  The problem is that session management seems not to work.

 Do you some more precise diagnostic? Any error message?
 What makes you think session management does not work?

 One of the problems you will encounter with applications in French is
 that CF and CF-Studio used to work in ISO-8859-1
 and CF MX works in UTF-8 by default.
 For example, if you have messages in French in some Javascript functions
 and if your Javascript was edited in ISO-8859-1, it may cause many
 problems.
 If you have this problem, I can tell you what to do to force ISO-8859-1
 under CF MX (one problem at a time).

 But I've never seen problems with sessions.


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336146
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Forums using CFCs?

2010-08-09 Thread Rick Root

You could also look at CFMBB

My site is pretty half-assed right now, I migrated to OpenBD on a VPS
about a year ago and haven't bothered makng sure everything works =)

CFMBB is based on Galleon, it was meant to be a little more like
phpBB.  Haven't done much with it in a while.

Neither CFMBB nor Galleon are reliant on a framework, nor would I
call either of them particularly object oriented.  I mean .. well, no.
 They're CFC based, but not really OO.

Rick

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336147
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Upgrade CF5 to CF8 and undefined session

2010-08-09 Thread Al Musella, DPM

Is it possibly related to using cookies and cflocation in the same 
script?  I am not sure how that was changed over the years, but I 
remember seeing you can't use cookies and cflocation together?



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336148
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Upgrade CF5 to CF8 and undefined session

2010-08-09 Thread Brook Davies

Also, if there are any domain changes between frames, ie, sub-domains or
going from http to https that will also result in a different session in
each frame

Brook

-Original Message-
From: Al Musella, DPM [mailto:muse...@virtualtrials.com] 
Sent: August-09-10 4:44 PM
To: cf-talk
Subject: Re: Upgrade CF5 to CF8 and undefined session


Is it possibly related to using cookies and cflocation in the same 
script?  I am not sure how that was changed over the years, but I 
remember seeing you can't use cookies and cflocation together?





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Urgent requirement of Coldfusion developer- CA

2010-08-09 Thread Deepak Jha

Hi All,

 

We have an urgent requirement of ColdFusion developer, just go through the
details, if interested please send your latest resume as soon as possible.

 

Details:

ColdFusion developer

Location: San Diego, CA
Duration: 6-12 months

 

 

 SENIOR SOFTWARE DEVELOPER 

Customer Care Systems

 

ESSENTIAL FUNCTIONS: Primarily responsible for the planning, development,
maintenance, and enhancement activities of Customer Care web-based
applications, their related technologies as well as some vendor package
solutions. Maintains Windows, ASP, Cold Fusion, vb.Net, ActiveX server
applications and vendor applications. Provides technical consulting support
on projects or system issues. Develops business knowledge and relationships
to integrate activities with other IT departments to ensure successful
implementation and support of project efforts. Fosters and maintains
relationships with clients from Business Units, provides business and
technical consultation, and meets expected service levels. Under leadership
and tactical supervision of a Software Project Lead, directs small projects
or regularly coaches other personnel to ensure business application systems
are developed in a way that complies with architectural standards and
established methodologies and practices. Understands and supports IT
strategic and departmental direction, and the IT process improvement
initiatives. Can evaluate application software packages and make
recommendations to management. Participates with other IT members,
customers, and other stakeholders in new product reviews, tests, and pilots.
Collects and analyzes business requirements for projects. Performs
feasibility studies and translates requirements into an appropriate design.
Communicates with external vendors and internal IT departments to assure
vendor deliverables meet client expectations.  Coordinates with external
vendors and internal IT departments to assure that deliverables meet and
follow all IT policies and guidelines. Identifies conflicting business
practices and integration issues and suggest alternative solutions. Monitors
and reports to management on the status of project efforts, anticipating and
identifying issues that inhibit the attainment of project goals and
implementing corrective actions. 

 

MINIMUM QUALIFICATIONS: A bachelor's degree in computer science, information
systems, or engineering. Must have five years of experience in business
application design, development, installation and modification in an online
environment.  A minimum of five years experience in client/server and web
development (Cold Fusion5 and 8, ASP.net, C#, VB.net HTML, etc.). Experience
with SQL in the installation and support of applications is required.
Experience with web services a must. Experience with Java a plus.  Must have
a strong technical knowledge and hands-on experience with business
applications in the client server and the web environment. The candidate
must have good verbal and written communication skills, with the ability to
express complex technical concepts in non-technical terms. Must be able to
work well on cross- functional project teams and foster team commitment to
tasks, as well as the ability to work well with vendors to achieve client
objectives.

 

Experience with version control software required, MKS is a plus.
Experience with systems integration in a complex architectural environment a
plus, knowledge of security software best practices is required and
authentication software (Siteminder) a plus. Development tools experience
required (Dreamweaver, Visual Studio) and web 2.0 experience a plus.


 

 

 

 

 

 

 

Thanks  Regards

Deepak Jha

Compunnel Software Group Inc.

103 Morgan Lane, Suite 102, Plainsboro, NJ 08536, USA

 

Tel: 609-606-9020 Ext.1619

Fax: 609-228-4161

Email: d...@compunnel.com

 

Under Bill s.1618 Title III passed by the 105th U.S. Congress this mail
cannot be considered Spam as long as we include contact information and a
remove link for removal from our mailing list. To be removed from our
mailing list reply to d...@compunnel.com  with remove in the subject
heading and your email address in the body. Include complete address and/or
domain/aliases to be removed. We sincerely regret any inconvenience.

 

 

 

 

 

 

 

 

 

 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4336
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-jobs-talk/unsubscribe.cfm