deploying changes from subversion

2007-05-14 Thread AJ Mercer
I am still not quite sure how to go about deploying mods from subversion.
This is what I am trying to achieve:

Each developer has a local development environment.
We have a job tracking systems (jira) that bugs and requests for new
features are entered into.

I will work on a bug and once I am happy with the fix, testing in my dev
environment, I will put those changes onto the test server.

After user testing, it may come back for further work, or be signed off.
If signed off, it is put onto the production server.

As you can imaging, there can be any number of bugs been fixed at any point
in time by multiple developers.
The testing can get signed off in any order and may be there for a couple of
weeks.

What I would like to be able to do is get the files for a particular bug fix
and from those file, merge the modifications into test and then production.

General Notes:

 - One file may have multiple bug fixes / enhancements

 - if a modification is to be backed out, and other modification since then
will need to stay.


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278000
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-14 Thread Robertson-Ravo, Neil (RX)
It would be if a physical page was created before publish but there isn't,
the page content etc is in the DB and constructed on demand from the DB for
flat file publishing to the web (which runs fine)

I was just hoping to speed up that first hit call but it looks like I will
have to live with it.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Paul Vernon
To: CF-Talk
Sent: Sun May 13 21:53:32 2007
Subject: RE: Speeding up first hit compile time

 Erm, yes I know that but this is actually speeding up that process.

Why not use CFHTTP to call the page when you save it? Seems straightforward
enough...

Paul







~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278001
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: deploying changes from subversion

2007-05-14 Thread Andrew Scott
lol...

Previous discussions showed there was many ways to skin the cat, this will
not only be that but many ways to cook it as well.

This is really one asspect that is going to be what works best for you. But
when developing in situations like this, it is going to be a case of create
diff patches or manage it with merges.

Either way it is going to take strong discipline on this. My method is to
sync the code as the bug is completed, and ready for testing but here is the
best approach that we adhere too.

before commiting any code, sync with the repository have any changes been
made to the code while you had it. Yes, then merge those changes with your
code and the re test the code that was fixed with unit tests as a prefered
method would identify any problem very early. But if that is not applicable
then the developer will need to run any change that will effect what he/she
has written.

This is so that the bug / enhancement or whatever is proven to be fixed.
then you can submit the code as being stable back to the repository.

Now the one thing I will stress... At this point, the process of sync /
merging code can take a few goes at it. So the developer will need to be
aware of this, and the idea of sync the code at this level is that the
developer should be the one to know if any of the changes prior to his will
effect his code or not and maybe he/she needs to make changes due to the
changes not being know at that time.

Small note, this is why methods of locking can be benficial but it can
impeed teams of developers from doing their work in a timely fashion, hope
that makes sense.

So after a few goes at this, the developer can then merge his/her code with
the repository or commit fully. The point to recall when mergin / diffing
the developer also should at least do an update on that file as well to make
sure they have the lates on their end if they plan to keep their code up to
date.

As you can see, this is a complicate issue and it will as mentioned boil
down to what best suits you or how it can be adopted with changes to your
process. So I can only comment on what I have understood from the manual to
get this method / understanding, and why it will take a huge discipline with
your developers.






On 5/14/07, AJ Mercer [EMAIL PROTECTED] wrote:

 I am still not quite sure how to go about deploying mods from subversion.
 This is what I am trying to achieve:

 Each developer has a local development environment.
 We have a job tracking systems (jira) that bugs and requests for new
 features are entered into.

 I will work on a bug and once I am happy with the fix, testing in my dev
 environment, I will put those changes onto the test server.

 After user testing, it may come back for further work, or be signed off.
 If signed off, it is put onto the production server.

 As you can imaging, there can be any number of bugs been fixed at any
 point
 in time by multiple developers.
 The testing can get signed off in any order and may be there for a couple
 of
 weeks.

 What I would like to be able to do is get the files for a particular bug
 fix
 and from those file, merge the modifications into test and then
 production.

 General Notes:

 - One file may have multiple bug fixes / enhancements

 - if a modification is to be backed out, and other modification since then
 will need to stay.


 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278002
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: deploying changes from subversion

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, AJ Mercer wrote:
 What I would like to be able to do is get the files for a particular bug
 fix and from those file, merge the modifications into test and then
 production.

We tracked versions in Jira so it's easy to find bugs marked fixed and tested 
in the next unreleased version.
We had SVN set up to comment (via email) any Jira issue number it found in a 
commit comment, so it was also easy to find the revisions that fixed each of 
those bugs.

-- 
Tom Chiverton
Helping to enormously accelerate front-end convergence
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278003
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: a couple windows to linux, cf to bluedragon problems

2007-05-14 Thread stylo stylo
 1) One is a cfsavecontent latest in an include that is not appearing 
 now.

Traced this to no CGI.path_info coming up so not inserted later. Even on 
somehting like http://site.com/folder/index.cfm?id=45 CGI.path_info is blank. 
Why would that be? On CentOS.


 2) Another is my search page, which worked fine, now gives a Badly 
 formatted template error. What is that and why?
 



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278004
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Scorpio

2007-05-14 Thread Tom Chiverton
On Friday 11 May 2007, Dave Watts wrote:
   How do you maintain client state for AOL or TOR or
   multi-proxy users in a cluster?
 
  If each client has a unique token, that's good enough, right
  ? As long as the server can turn tokens into users.

 Having a token is not the same thing as managing state. The server is
 managing state in your example. For the client to manage state, it would
 have to store more than a token.

Sorry, I wasn't clear.
Yes, of course the client needs to store more than a token after all it has to 
store whatever state you want to hold.
The server is not managing (client) state, only a list of valid tokens. 

-- 
Tom Chiverton
Helping to apprehensively synthesize intuitive services
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278005
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: a couple windows to linux, cf to bluedragon problems

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, stylo stylo wrote:
  1) One is a cfsavecontent latest in an include that is not appearing
  now.

 Traced this to no CGI.path_info coming up so not inserted later. Even on
 somehting like http://site.com/folder/index.cfm?id=45 CGI.path_info is
 blank. Why would that be? On CentOS.

CGI scope variables vary from web server to web server.
Dump the CGI scope and see if there is something you can use instead.

  2) Another is my search page, which worked fine, now gives a Badly
  formatted template error. What is that and why?

Clear template cache, turn robust exceptions on.

-- 
Tom Chiverton
Helping to simultaneously maintain magnetic platforms
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278006
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: deploying changes from subversion

2007-05-14 Thread Andrew Scott
Tom,

Can you explain that more in detail? I am more interested in how SVN does
communicate with Jira, and what the connection actually does?


On 5/14/07, Tom Chiverton [EMAIL PROTECTED] wrote:

 On Monday 14 May 2007, AJ Mercer wrote:
  What I would like to be able to do is get the files for a particular bug
  fix and from those file, merge the modifications into test and then
  production.

 We tracked versions in Jira so it's easy to find bugs marked fixed and
 tested
 in the next unreleased version.
 We had SVN set up to comment (via email) any Jira issue number it found in
 a
 commit comment, so it was also easy to find the revisions that fixed each
 of
 those bugs.

 --
 Tom Chiverton



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278007
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: MySQL - need auto increment back to 0...

2007-05-14 Thread Will Tomlinson
I believe 
 Navicat also has a similar feature although I haven't used Navicat 
 much.
 

Found it in Navicat! It's under the design table  options tab

Thanks a ton!

Will

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278008
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: MySQL - need auto increment back to 0...

2007-05-14 Thread Will Tomlinson
And without a GUI 

cheers,
barneyb

HA HA HA HA HA Barney! Me? Without a GUI?
Sorry, that just struck me as hilarious. 

:)

Will 

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


Re: Speeding up first hit compile time

2007-05-14 Thread Will Tomlinson
I was just hoping to speed up that first hit call but it looks like I will
have to live with it.


You DO have one other option yanno. 

Bring this thread to Dave Watts's attention. lol!

Will

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278010
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-14 Thread Jochem van Dieten
Robertson-Ravo, Neil (RX) wrote:
 It would be if a physical page was created before publish but there isn't,
 the page content etc is in the DB and constructed on demand from the DB for
 flat file publishing to the web (which runs fine)
 
 I was just hoping to speed up that first hit call but it looks like I will
 have to live with it.

I think your only option is to reduce the size of the template. If you 
can alter your CMS to move as much code static code as possible out of 
the dynamic template it might help marginally.

Jochem

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278011
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Session Security

2007-05-14 Thread Robert Rawlins - Think Blue
Hello Guys,

 

Over the past few months I've been working on security best practices for
myself whilst constructing an application, and I've managed to get my head
around a few of the concepts like plugging XXS and SQL Injection attacks but
session hijacking is still something I'm yet to take into 'real'
consideration, so thought I'd come and get your views on the best way to
combat this.

 

I'm currently working on the rebuild of an application where security is of
a real priority and keeping things as safe as possible is paramount, even if
we have to compromise of elements such as performance.

 

Any thoughts on where to get started with this stuff? I'd also be keen to
hear about any other elements I should be taking into account for security.

 

Thanks,

 

Rob



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278012
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Speeding up first hit compile time

2007-05-14 Thread Robertson-Ravo, Neil (RX)
Yeah, I think that will have to be the goal I think.


I am not sure what Will means though? 



-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: 14 May 2007 12:00
To: CF-Talk
Subject: Re: Speeding up first hit compile time

Robertson-Ravo, Neil (RX) wrote:
 It would be if a physical page was created before publish but there isn't,
 the page content etc is in the DB and constructed on demand from the DB
for
 flat file publishing to the web (which runs fine)
 
 I was just hoping to speed up that first hit call but it looks like I will
 have to live with it.

I think your only option is to reduce the size of the template. If you 
can alter your CMS to move as much code static code as possible out of 
the dynamic template it might help marginally.

Jochem



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


RE: Licensing on frameworks for Re-sale?

2007-05-14 Thread Peterson, Chris
Thanks Sean, that's what I was looking for.  =)

Appreciate your time!

Chris 

-Original Message-
From: Sean Corfield [mailto:[EMAIL PROTECTED] 
Sent: Saturday, May 12, 2007 2:19 AM
To: CF-Talk
Subject: Re: Licensing on frameworks for Re-sale?

On 5/11/07, Andrew Scott [EMAIL PROTECTED] wrote:
 As Sean said

Heh, fresh from a couple of legal audits of my team's code base (before
I left Adobe a month ago). It was partly that process that brought
sufficient pressure to bear on Joe to get the MG:U license changed - and
on Paul to get cfcUnit properly licensed under ASL 2.0 as well :)
--
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

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



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


Re: deploying changes from subversion

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, Andrew Scott wrote:
 Can you explain that more in detail? I am more interested in how SVN does
 communicate with Jira, and what the connection actually does?

Via an email on commit:
http://svnbook.red-bean.com/nightly/en/svn.ref.reposhooks.post-commit.html

-- 
Tom Chiverton
Helping to revolutionarily implement total systems
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278015
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: deploying changes from subversion

2007-05-14 Thread Andrew Scott
But more to the point, what does it achieve?




On 5/14/07, Tom Chiverton [EMAIL PROTECTED] wrote:

 On Monday 14 May 2007, Andrew Scott wrote:
  Can you explain that more in detail? I am more interested in how SVN
 does
  communicate with Jira, and what the connection actually does?

 Via an email on commit:
 http://svnbook.red-bean.com/nightly/en/svn.ref.reposhooks.post-commit.html

 --
 Tom Chiverton
 Helping to revolutionarily implement total systems
 on: http://thefalken.livejournal.com

 

 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 St James's Court Brown Street Manchester M2 2JF.  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 Law Society.

 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 8008.

 For more information about Halliwells LLP visit www.halliwells.com.


 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278016
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Help a Newbie?

2007-05-14 Thread Guy Germaine
I am trying to create a form where the user enters their user id, hits a 
“Populate” button, and the form goes out to our Phone database and gathers 
some information. This is using a Custom Tag. (That works) One Problem is that 
the Custom Tag that I use to retrieve the information from the Phone database 
runs when the page loads, so I get a “Not In Phone” in the Last Name field 
on my form. That tells me that the Custom Tag is being executed without being 
called.

I am also trying to put the data into a table so I can possibly use it later. 
When the user clicks the “Populate” button, it inserts the data from Phone 
into my table (before the user completes the rest of the form). When the user 
completes the rest of the form, and hits “Submit” it creates another new 
record in the table with “Not In Phone” in the first part of the table, and 
the correct information from the form in the rest of the fields.  Below is the 
code.

TEST.CFM
script language=javascript

function checkForm()
{
  if (document.form.soe.checked)
  {
if (document.form.region1.selectedIndex == 0)
{
  alert(Please enter the SOE Center Region)
  document.form.region1.focus();
  return false;  
}
  }
 return true;
}

/script



/head

body style=font-family: arial
cfset form.sbcuid=
cfset the_super_sbcuid=
cfset the_fn=
cfset the_ln=
cfset the_email=
cfset region=
cfset center=
cfset the_uuid=
cfset my_uuid=
cfset the_phone_number=
cfset the_state=
cfset superhrid=
cfset newracf=
cfset currentracf=
cfset bac=
cfset euam=
cfset cbs=
cfset on_unix=
cfset pocits=
cfset soe=
cfset sots=
cfset watssop=
cfset comments=
cfset boss_uuid=
cfset region1=

!---
cfparam name=form.sbcuid type=string default=
cfparam name=the_super_sbcuid type=string default=
cfparam name=form.the_fn type=string default=
cfparam name=form.the_ln type=string default=
cfparam name=form.the_email type=string default=
cfparam name=form.region type=string default=
cfparam name=form.center type=string default=
cfparam name=the_uuid type=string default=
cfparam name=form.my_uuid type=string default=
cfparam name=form.the_phone_number type=string default=
cfparam name=the_state type=string default=
cfparam name=form.superhrid type=string default=
cfparam name=form.newracf type=string default=
cfparam name=form.currentracf type=string default=
cfparam name=form.bac type=string default=
cfparam name=form.euam type=string default=
cfparam name=form.cbs type=string default=
cfparam name=form.on_unix type=string default=
cfparam name=form.pocits type=string default=
cfparam name=form.soe type=string default=
cfparam name=form.sots type=string default=
cfparam name=form.watssop type=string default=
cfparam name=form.comments type=string default=
cfparam name=the_fn type=string default=
cfparam name=boss_uuid type=string default=
cfparam name=form.region1 type=string default=
---
cfset formsubmitted = no
  
pimg src=Images/att_horiz_color_sml.jpeg width=207 height=120 
border=0/p
  table width=499 border=0
tr 
  td width=493 bgcolor=#336699 div align=centerfont 
color=#00 size=5strongRACF 
  ID Request Form/strong/font/div/td
/tr
  /table

cfform method=post name=form onSubmit=return checkForm();
  cfinput type=text
  name=SBCUID
  required=no
  message=SBCUID is Required
  size=6
  maxlength=6
  cfmodule  name= getUserInfo2
 sbcuid= #form.sbcuid#
 outlastname   = the_ln
 outfirstname  = the_fn
 outofffirstname  = the_off_fn
 outmiddlename  = the_mn
 outemail   = the_email
 outphonenumber  = the_phone_number
 outphonenumberext = the_phone_ext
 outcountry  = the_country
 outcellphonenumber = the_cell_phone_number
 outstreetaddr1  = the_street_addr_1
 outstreetaddr2  = the_street_addr_2
 outcity= the_city
 outstate   = the_state
 outzip= the_zip
 outzipplus4   = the_zip_plus_4
 outfax= the_fax
 outpager   = the_pager
 outpagerpin   = the_pager_pin
 outtitle   = the_title
 outtitlesuffix  = the_title_suffix
 outrcarc   = the_RC_ARC
 outsupersbcuid  = the_super_sbcuid
 outcontractorflag = the_contractor_flag
 outmgmtlevel  = the_mgmt_level
 outmgmtlevelindicator= the_mgmt_level_indicator
 outsbcuid   = the_sbc_uid
 outuuid= the_uuid
 outpayrollcompany = the_payroll_company
 outcompanycode   = the_company_code
 outdepartment  = the_department
 outlocationcode  =  locationcode
 outdomjobfunccode =  dom_job_func_code
 outbuildingcode  =  buildingcode
 outttfirstname  =  the_tt_fn
 outttlastname  =  the_tt_ln
 
  cfset my_uuid = #the_uuid#
  cfset boss_id = #the_super_sbcuid#
  !--- This is the second search thru Phone using the Supervisor's ID to get 
the First and Last Names of your Supervisor ---
  cfinput type=Submit name=Submit2 value=Populate
  cfmodule  

Re: deploying changes from subversion

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, Andrew Scott wrote:
 But more to the point, what does it achieve?

You don't have to remember to tell Jira that you've fixed an issue.

-- 
Tom Chiverton
Helping to revolutionarily conquer best-of-breed methodologies
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278018
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: deploying changes from subversion

2007-05-14 Thread Andrew Scott
Well thats what I am getting to, do you have to preformat the email with
something for it to know that or is there something in Jira to read the
email. I am curious cause that sounds neat.

On 5/14/07, Tom Chiverton [EMAIL PROTECTED] wrote:

 On Monday 14 May 2007, Andrew Scott wrote:
  But more to the point, what does it achieve?

 You don't have to remember to tell Jira that you've fixed an issue.

 --
 Tom Chiverton
 Helping to revolutionarily conquer best-of-breed methodologies
 on: http://thefalken.livejournal.com

 

 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 St James's Court Brown Street Manchester M2 2JF.  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 Law Society.

 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 8008.

 For more information about Halliwells LLP visit www.halliwells.com.


 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278019
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RIA's - Flash Forms

2007-05-14 Thread Pete
 

 

Hi there

 

I am trying to finish of a flashform.

 

 

Basically what I am trying to do is the following - but a little unsure of
how it is done.

 

Basically I want to include a question with radio buttons Yes and No as the
possible answers. If Yes is selected then I will display text box which is
to be filled in.

 

If No is selected then the user will just continue on.

 

Also how to I make it so that the user MUST complete either Yes or No.

 

I have the form which can be viewed at 

 

http://www.drzacharia.com.au/vcflashform.cfm

 

The code that I have for Step 3 is as follows is

 

cfformgroup type=horizontal

cfformitem type=text width=200Have you had previous
surgery?/cfformitem

cfinput onclick=#enable_previous_surgery_validation# type=radio
label=Yes name=previous_surgery value=Yes required message=Please
select if you have previously had cosmetic surgery

cfinput onclick=#disable_previous_surgery_validation# type=radio
label=No name=Previous_surgery value=No

cfformitem type=text width=200If you have previously had cosmetic
surgery please let us know what procedure you had performed/cfformitem

/cfformgroup

 

 

cfformgroup type=horizontal

cfformitem type=text width=200If YES please elaborate, if NO please
enter N/A/cfformitem

cfinput type=text name=elaboration required=yes size=25
maxlength=25 height=100 validateat=onsubmit,onServer

/cfformgroup

 

Thanks in advance for assistance




~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278020
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


QofQ to get a limited set of rows

2007-05-14 Thread Daniel Kessler
You can set in your query a variable of rownum ( ROWNUM AS r).
Then in your Q of Q, you can do:
WHERE
r = cfqueryparam value=#the_end_num# cfsqltype=cf_sql_integer
AND
r = cfqueryparam value=#the_begin_num# cfsqltype=cf_sql_integer


-- 

Daniel Kessler

College of Health and Human Performance
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
Phone: 301-405-2545
http://hhp.umd.edu




~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278021
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Subversion Tutorial Posted

2007-05-14 Thread Rick Faircloth
Thanks for all the info, John! :o)

Wish I could be at CFUnited!

Rick


-Original Message-
From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 12:07 AM
To: CF-Talk
Subject: Re: Subversion Tutorial Posted

On 5/12/07, Rick Faircloth [EMAIL PROTECTED] wrote:
 Boy... and to think I was really looking forward to reading this long
 thread, hoping that, as I contemplate implementing Eclipse, CFEclipse,
 and Subversion, that I would be able to confidently set up a new
 working environment... but alas, all this thread has brought is confusion.

Setting up the environment is pretty straightforward -- heck, you can
start by installing the svn command line _right now_ and using
file:/// to access local repositories without even configuring a
server. There's no reason to delay getting the environment set up b/c
of confusion about what I'm going to label *process*, which is what a
lot of this thread is about.





~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278022
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: deploying changes from subversion

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, Andrew Scott wrote:
 Well thats what I am getting to, do you have to preformat the email with
 something for it to know that or is there something in Jira to read the
 email. I am curious cause that sounds neat.

Jira comes with mail handlers - read Atlassian's docs.

-- 
Tom Chiverton
Helping to challengingly implement killer content
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278023
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Subversion Tutorial Posted

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, John Paul Ashenfelter wrote:
 of confusion about what I'm going to label *process*, which is what a
 lot of this thread is about.

And (one of) the great thing(s) about Subversion, is you can build any process 
on top of it - whatever works for you and your team.

-- 
Tom Chiverton
Helping to competently aggregate viral CEOs
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278024
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: deploying changes from subversion

2007-05-14 Thread Andrew Scott
I figured that, so you are saying that the handlers can be configured? Or
are you saying that there is specific information that needs to be mailed,
just wanting to know before I go do some reading.

On 5/14/07, Tom Chiverton [EMAIL PROTECTED] wrote:

 On Monday 14 May 2007, Andrew Scott wrote:
  Well thats what I am getting to, do you have to preformat the email with
  something for it to know that or is there something in Jira to read the
  email. I am curious cause that sounds neat.

 Jira comes with mail handlers - read Atlassian's docs.

 --
 Tom Chiverton
 Helping to challengingly implement killer content
 on: http://thefalken.livejournal.com

 

 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 St James's Court Brown Street Manchester M2 2JF.  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 Law Society.

 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 8008.

 For more information about Halliwells LLP visit www.halliwells.com.


 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278025
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Inaugural Meeting of the Capitol Hill User Group with Special Guests Ben Forta, Tim Buntel and Adam Wayne Lehman!

2007-05-14 Thread Blum, Jason \(SAA\)
Just a reminder:

The inaugural meeting of the Capitol Hill User Group (CHUG) is THIS
Thursday at 1 PM in room 138 of the Dirksen Senate Office Building!

Ben Forta, Tim Buntel and Adam Wayne Lehman are confirmed!

RSVP http://www.capitolhillusergroup.org/ to be notified if anything
changes.

And join the CHUG mailing list at
http://groups.google.com/group/capitolhillusergroup to be notified of
future events.

Hope you can make it and feel free to pass this on!




-Original Message-
From: Blum, Jason (SAA) 
Sent: Tuesday, May 01, 2007 1:14 PM
To: cf-talk@houseoffusion.com
Subject: Inaugural Meeting of the Capitol Hill User Group with Special
Guests Ben Forta, Tim Buntel and Adam Wayne Lehman!



RSVP at http://www.capitolhillusergroup.org/


Please join us at the inaugural meeting of the Capitol Hill User Group
(CHUG), an Adobe User Group for U.S. Federal Government web developers
who use or are interested in using Adobe web development technologies.

We'll be focusing on development tools and languages like ColdFusion,
Flex, ActionScript and Apollo, but hope to touch on the broader areas of
Development Frameworks, XML, Web Services, Design Patterns and Object
Oriented Programming in general.

Ben Forta, Tim Buntel and Adam Wayne Lehman will be on hand to give us a
sneak peak of the next version of ColdFusion: MX8, AKA: Scorpio.

All skill levels are welcome!

We'll meet in room 138 of the Dirksen Senate Office Building, May 17,
from 1 to 3pm.

Be sure and RSVP at http://www.capitolhillusergroup.org/ to be notified
of any changes.

And consider subscribing to the CHUG mailing list at
http://groups.google.com/group/capitolhillusergroup to be notified of
future happenings.




~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278026
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Thread Dump Question java.net.SocketInputStream.socketRead0

2007-05-14 Thread blists
Fyi: The thread dumps in the coldfusion-out.log file were actually being
generated via FusionReactor

Brook

-Original Message-
From: blists [mailto:[EMAIL PROTECTED] 
Sent: May 13, 2007 8:46 PM
To: CF-Talk
Subject: RE: Thread Dump Question java.net.SocketInputStream.socketRead0

Yeah, I am trying to get up to speed myself on the JVM and related stuff.
The strange thing that's happening right now, is that in my
coldfusion-out.log file, I am getting these full thread dumps from the JVM
without any errors being thrown or the server restarting, the JVM just does
a full dump. 

And, there are no CFM templates within the stack of any of the threads, they
all appear to be fine/normal and waiting. Does the JVM ever do full thread
dumps without an error condition?

Okay, Since upgrading last week to CFMX7 (finally), it has been one thing
after another and customer are upset. I am willing to pay someone for
offsite consulting / help with debugging these server issues. If any one is
interested in helping please email me off list..

Brook

-Original Message-
From: Andrew Scott [mailto:[EMAIL PROTECTED] 
Sent: May 13, 2007 6:40 PM
To: CF-Talk
Subject: Re: Thread Dump Question java.net.SocketInputStream.socketRead0

How are you doing your thread dump?

Not 100% sure I can answer this question, as I have never done a thread dump
before? But is the site idle when you do this, or is this under a bit of
load? It could be threads from CF itself opening and closing files, but
thats a stab in the dark for me as I really do not know.



On 5/14/07, Brook Davies [EMAIL PROTECTED] wrote:

 In a thread dump, I have about 20 threads that all seem to be sitting at
 the
 same place. They all look like this:



 jrpp-26 prio=5 tid=0x086652b0 nid=0x174 runnable [f6df000..f6dfd94]

at java.net.SocketInputStream.socketRead0(Native Method)

at java.net.SocketInputStream.read(SocketInputStream.java:129)

at
 java.io.BufferedInputStream.fill(BufferedInputStream.java:183)

at
 java.io.BufferedInputStream.read1(BufferedInputStream.java:222)

at
 java.io.BufferedInputStream.read(BufferedInputStream.java:277)

- locked 0x1b1bef08 (a
 jrun.servlet.io.ReusableBufferedInputStream)

at
 jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:578)

at
 jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:570)

at
 jrun.servlet.jrpp.ProxyEndpoint.readInt(ProxyEndpoint.java:588)

at
 jrun.servlet.jrpp.ProxyEndpoint.readRequest(ProxyEndpoint.java:231)

at
 jrun.servlet.jrpp.JRunProxyService.swapRunnable(JRunProxyService.java:144)

at
 jrunx.scheduler.ThreadPool$DownstreamMetrics.swapRunnable(ThreadPool.java
 :29
 0)

at
 jrunx.scheduler.ThreadPool$ThreadThrottle.swapRunnable(ThreadPool.java
 :408)

at
 jrunx.scheduler.ThreadPool$UpstreamMetrics.swapRunnable(ThreadPool.java
 :250)

at jrunx.scheduler.WorkerThread.run(WorkerThread.java:76)




 Does  this indicate a network I/O related problem?



 Brook




 





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278027
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: deploying changes from subversion

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, Andrew Scott wrote:
 I figured that, so you are saying that the handlers can be configured? Or
 are you saying that there is specific information that needs to be mailed,
 just wanting to know before I go do some reading.

You can do anything in a handler. If the ones it ships with don't offer the 
options you want, the amount of Java involved in writing a new one is 
trivial.

All of this is based on when I last used Jira, about a year ago, so might be 
out of date.

-- 
Tom Chiverton
Helping to augmentatively bully professional users
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278028
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: URL params in POST

2007-05-14 Thread Andy Matthews
I do that all the time. Works just fine for me. 

-Original Message-
From: Ariel Jakobovits [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 11, 2007 11:02 PM
To: CF-Talk
Subject: URL params in POST

Is it supported to put params in the URL when using method=POST? Can I
expect web servers to see them or are is the POST/GET mutually exclusive?





~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278029
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: MySQL - need auto increment back to 0...

2007-05-14 Thread Andy Matthews
Deleting records does not reset the counter.

Truncating the table will though. 

-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Sunday, May 13, 2007 8:23 AM
To: CF-Talk
Subject: OT: MySQL - need auto increment back to 0...

Did some googlin' on this and didnt come up with much. 

I have an auto increment ID in a MySQL table. Let's say 10,000 are inserted.


Then you delete those 10,000. 

You add another and the auto increment sets the id at 10001. 

How can I get that table to start back to 0? I'm testing with a lot of
records and don't want the ID's to keep piling up. 

Thanks,
Will



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


RE: CFMyAdmin

2007-05-14 Thread Andy Matthews
I've never seen anything like this. Let me know if you find it though! 

-Original Message-
From: Steve Good [mailto:[EMAIL PROTECTED] 
Sent: Sunday, May 13, 2007 8:00 PM
To: CF-Talk
Subject: Re: CFMyAdmin

Anybody?  I'm trying to find a tool to manage my MySQL server remotely with
the same ease phpMyAdmin provides.  Any push in the right direction would be
great.  I would install php, but I want to keep my server overhead to a
minimum.

Steve Good wrote:
 Has CFMyAdmin disappeared?  The cfmyadmin.com site says there is no 
 site configured for that domain.  Has it moved or is there something 
 else out there that is similar?

 Thanks!
 Steve

 



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278031
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFMyAdmin

2007-05-14 Thread Andy Matthews
That's written using PHP 

-Original Message-
From: todd sharp [mailto:[EMAIL PROTECTED] 
Sent: Sunday, May 13, 2007 8:55 PM
To: CF-Talk
Subject: Re: CFMyAdmin

Check SQL Admin - http://sqladmin.riaforge.org/ 

There are a bunch of similar apps out there.  Google around a bit and you'll
find them.

Anybody?  I'm trying to find a tool to manage my MySQL server remotely 
with the same ease phpMyAdmin provides.  Any push in the right 
direction would be great.  I would install php, but I want to keep my 
server overhead to a minimum.

Steve Good wrote:
 Has CFMyAdmin disappeared?  The cfmyadmin.com site says there is no 
 site configured for that domain.  Has it moved or is there something 
 else out there that is similar?

 Thanks!
 Steve





~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278032
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFMyAdmin

2007-05-14 Thread Andy Matthews
That FlexSQLAdmin looks NICE. Too bad it's written in .NET, I'd be
interested in trying that out. 

-Original Message-
From: todd sharp [mailto:[EMAIL PROTECTED] 
Sent: Sunday, May 13, 2007 9:00 PM
To: CF-Talk
Subject: Re: CFMyAdmin

Ooops...looks like that requires PHP too.

Here's a few others:

http://cfsilence.com/blog/client/index.cfm/2006/1/4/Genesis-10-Query-Evaluti
on-Tool-Released
http://www.flexsqladmin.com/



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278033
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Subversion Tutorial Posted

2007-05-14 Thread John Paul Ashenfelter
On 5/14/07, Tom Chiverton [EMAIL PROTECTED] wrote:
 On Monday 14 May 2007, John Paul Ashenfelter wrote:
  of confusion about what I'm going to label *process*, which is what a
  lot of this thread is about.

 And (one of) the great thing(s) about Subversion, is you can build any process
 on top of it - whatever works for you and your team.

Agreed! Here's an interesting article outlining some design patterns
for branching in code repositories.
http://www.cmcrossroads.com/bradapp/acme/branching/streamed-lines.html.
For those getting started with version control, it's good to note that
there's a lot of possible right ways to build a process around
version control.

I'll suggest that there's only one *wrong* way to do version control
-- and that's ignoring it. Whether it's VisualSourceSafe 6.0 (argh!)
for a single developer or putting in some high-end commercial source
control tool or sticking with the tried and true CVS and SVN, or
getting crazy with open source version control like darcs, you should
get immediate value to your development by being able to follow the
state of your code repository over time, which is all version control
is really for.



 --
 Tom Chiverton
 Helping to competently aggregate viral CEOs
 on: http://thefalken.livejournal.com

 

 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 
 St James's Court Brown Street Manchester M2 2JF.  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 Law Society.

 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 8008.

 For more information about Halliwells LLP visit www.halliwells.com.


 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278034
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: URL params in POST

2007-05-14 Thread James Holmes
Same here - I post to a URL with URL vars so I can seprate the FORM
variables on which to work from the URL varibles that are controlling
the action of the page.

On 5/14/07, Andy Matthews [EMAIL PROTECTED] wrote:
 I do that all the time. Works just fine for me.

 -Original Message-
 From: Ariel Jakobovits [mailto:[EMAIL PROTECTED]
 Sent: Friday, May 11, 2007 11:02 PM
 To: CF-Talk
 Subject: URL params in POST

 Is it supported to put params in the URL when using method=POST? Can I
 expect web servers to see them or are is the POST/GET mutually exclusive?

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

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278035
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFMyAdmin

2007-05-14 Thread James Holmes
Sure, but someone could pull it apart and write the relevent back-end in CF.

On 5/14/07, Andy Matthews [EMAIL PROTECTED] wrote:
 That FlexSQLAdmin looks NICE. Too bad it's written in .NET, I'd be
 interested in trying that out.

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

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278036
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Installing CFMX 6.1

2007-05-14 Thread Bobby Hartsfield
I’m having a problem installing CFMX 6.1 on server 2003. I put the CD in,
click install, the “Install anywhere” extractor comes up and does it’s thing
and closes… nothing else happens. IT seems like I saw this a long time ago
and had to update video drivers so the installer could display. I tried that
already. Anyone else seen this and know what the deal is?

 

..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.

Bobby Hartsfield

HYPERLINK http://acoderslife.comhttp://acoderslife.com

 


No virus found in this outgoing message.
Checked by AVG Free Edition. 
Version: 7.5.467 / Virus Database: 269.7.0/803 - Release Date: 5/13/2007
12:17 PM
 



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278037
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Session Security

2007-05-14 Thread Claude Schneegans
 Any thoughts on where to get started with this stuff?

Have you an example of how some one could hijack a session under CF?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278038
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Session Security

2007-05-14 Thread Robert Rawlins - Think Blue
I've not got an example of how a session might be hijacked specifically in
CF, but I've seen examples from PHP and ASP, where the client has their
cookie data and session ID stolen using a packet sniffer, this session data
is then applied to the attackers browser and then as far as the server is
concerned the user and the attacker are the same person.

I've read a few concepts this morning which I've been implementing into my
security model, firstly keeping sessions as short as possible without
effecting the users experience, this way the window in which a session can
be hijacked is minimised.

I'm now working on the concept of attaching a remote address and other CGI
variables to a session, and using this as well as the session ID to identify
the user, then if the users IP switches or user agent for instance, during a
session, there is a possibility the session has been duplicated in a second
location.

These are just ideas I'm playing with at the moment, trying to make them as
easy to implement as possible.

Thanks,

Rob

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: 14 May 2007 15:47
To: CF-Talk
Subject: Re: Session Security

 Any thoughts on where to get started with this stuff?

Have you an example of how some one could hijack a session under CF?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278039
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Installing CFMX 6.1

2007-05-14 Thread Tom Chiverton
On Monday 14 May 2007, Bobby Hartsfield wrote:
 time ago and had to update video drivers so the installer could display. I
 tried that already. Anyone else seen this and know what the deal is?

Is your desktop set to some small numbers of colors ?

-- 
Tom Chiverton
Helping to carefully reinvent virtual IPOs
on: http://thefalken.livejournal.com



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 St 
James's Court Brown Street Manchester M2 2JF.  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 Law 
Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.


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


Re: Session Security

2007-05-14 Thread James Holmes
Without XSS, on a server using J2EE sessions over SSL, it's really
unlikely that anyone will succeed.

On 5/14/07, Claude Schneegans [EMAIL PROTECTED] wrote:
  Any thoughts on where to get started with this stuff?

 Have you an example of how some one could hijack a session under CF?

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278041
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Installing CFMX 6.1

2007-05-14 Thread James Holmes
I recall something about DEP causing an issue with the installer on
Windows Server 2003 (or did I dream it?)

On 5/14/07, Bobby Hartsfield [EMAIL PROTECTED] wrote:
 I'm having a problem installing CFMX 6.1 on server 2003. I put the CD in,
 click install, the Install anywhere extractor comes up and does it's thing
 and closes… nothing else happens. IT seems like I saw this a long time ago
 and had to update video drivers so the installer could display. I tried that
 already. Anyone else seen this and know what the deal is?


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

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278042
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Installing CFMX 6.1

2007-05-14 Thread Bobby Hartsfield
Yeah, 16bit heh.
 
-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 11:01 AM
To: CF-Talk
Subject: Re: Installing CFMX 6.1

On Monday 14 May 2007, Bobby Hartsfield wrote:
 time ago and had to update video drivers so the installer could display. I
 tried that already. Anyone else seen this and know what the deal is?

Is your desktop set to some small numbers of colors ?

-- 
Tom Chiverton
Helping to carefully reinvent virtual IPOs
on: http://thefalken.livejournal.com



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
St James's Court Brown Street Manchester M2 2JF.  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 Law Society.

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 8008.

For more information about Halliwells LLP visit www.halliwells.com.




~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278043
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Reading cookie from ASP.Net to CF

2007-05-14 Thread Venkatesh Raman
Hi,

I am able to see the cookie. The problem is the cookie which being set in 
ASP.net is encrypted using the machine key. When I try to read that cookie in 
CF, it shows the encrypted value. I need to decrypt the cookie value. 

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


RE: Installing CFMX 6.1

2007-05-14 Thread Bobby Hartsfield
That actually sounds familiar too...

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 11:06 AM
To: CF-Talk
Subject: Re: Installing CFMX 6.1

I recall something about DEP causing an issue with the installer on
Windows Server 2003 (or did I dream it?)

On 5/14/07, Bobby Hartsfield [EMAIL PROTECTED] wrote:
 I'm having a problem installing CFMX 6.1 on server 2003. I put the CD in,
 click install, the Install anywhere extractor comes up and does it's thing
 and closesÂ… nothing else happens. IT seems like I saw this a long time ago
 and had to update video drivers so the installer could display. I tried that
 already. Anyone else seen this and know what the deal is?


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



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278045
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Session Security

2007-05-14 Thread Robert Rawlins - Think Blue
Ah that's good to know, I'm running SSL. I'm guessing the J2EE sessions are 
pretty tidy them. I'm running ColdFusion in its standalone mode, does that 
still use J2EE sessions?

Are there any specific application settings I should be using in my 
application.cfc to help keep this all buttoned down, i've never really 
understood the loginstorage settings and the setdomaincookie variables.

Thanks,

Rob

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: 14 May 2007 16:02
To: CF-Talk
Subject: Re: Session Security

Without XSS, on a server using J2EE sessions over SSL, it's really
unlikely that anyone will succeed.

On 5/14/07, Claude Schneegans [EMAIL PROTECTED] wrote:
  Any thoughts on where to get started with this stuff?

 Have you an example of how some one could hijack a session under CF?

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278046
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Installing CFMX 6.1

2007-05-14 Thread Dave Watts
 I'm having a problem installing CFMX 6.1 on server 2003. I 
 put the CD in, click install, the Install anywhere 
 extractor comes up and does it's thing and closes... nothing 
 else happens. IT seems like I saw this a long time ago and 
 had to update video drivers so the installer could display. I 
 tried that already. Anyone else seen this and know what the deal 
 is?

http://www.adobe.com/support/coldfusion/releasenotes/mx/mx61_known_problems.
html

Scroll down to 60086.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278047
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Installing CFMX 6.1

2007-05-14 Thread Bobby Hartsfield
Yep, that was it. Thanks.

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 11:06 AM
To: CF-Talk
Subject: Re: Installing CFMX 6.1

I recall something about DEP causing an issue with the installer on
Windows Server 2003 (or did I dream it?)

On 5/14/07, Bobby Hartsfield [EMAIL PROTECTED] wrote:
 I'm having a problem installing CFMX 6.1 on server 2003. I put the CD in,
 click install, the Install anywhere extractor comes up and does it's thing
 and closesÂ… nothing else happens. IT seems like I saw this a long time ago
 and had to update video drivers so the installer could display. I tried that
 already. Anyone else seen this and know what the deal is?


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



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278048
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Session Security

2007-05-14 Thread Dave Watts
 I'm running ColdFusion in its standalone mode, does that 
 still use J2EE sessions?

Not by default. You can configure this within the Memory Variables section
of CF Administrator.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278049
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: help with java

2007-05-14 Thread Mik Muller
Last bump. No help here?

---

A few months ago I posted some help requests for using Babylon Chat server and 
got some suggestions, but I'm just too flat out to adequately trouble-shoot 
this on my own. I need help and I'm willing to pay. And since this isn't a 
job type posting I thought I'd post my request here. Hope it's ok.

I am having trouble getting a Java chat server app to run. I am vaguely 
familiar with what's involved and at stake, but I cannot get this thing to run. 
I'm using CF7 on Win2003Server.

As I said, I am willing to pay someone to help me debug the issue and get the 
app running. For the person who knows what their doing java-server-wise, I'm 
sure this is a simple issue. Please contact me asap and we'll set something up 
for next week. Preferable if you have Skype and Unyte, or we can do a GoTo 
Meeting.

Thanks,

Mik



Here's a passage from the help file:

  If you want to run the server, or run the client as a standalone Java
  application, then you will need to obtain/locate the command-line program
  called 'java'.  After you have done this, you will need to set your
  CLASSPATH.  This variable tells the Java software where to find all the
  parts of Babylon that it needs.  After you download and/or build Babylon,
  you will have a file called 'babylon.jar'.  You need to put the pathname
  of this file into your CLASSPATH variable.

  One convenient way to do this is to use the -classpath argument to
  the Java program, like so:

java -classpath babylon-directory/babylon.jar babylon

  Otherwise, you should set the environment variable manually:

  For example, using 'csh' on a Unix-like system, you would do something
  like:

setenv CLASSPATH babylon-directory/babylon.jar:$CLASSPATH

  Under DOS/Windows, it's more like this:

set CLASSPATH=c:bablon-directory\babylon.jar;%CLASSPATH%

  Now you can start either a Babylon client, a server, or both.  To start
  the client, invoke the Java program with the name 'babylon', plus any
  of the options shown:

java babylon [-username name] [-password password]
[-servername host] [-portnumber port] [-autoconnect]
[-chatroom room] [-xsize width] [-ysize height]
[-nopasswords] [-locksettings] [-hidecanvas]


More info here:

http://visopsys.org/andy/babylon/developers.html


If anyone can help me get this thing running I'd be most appreciative.

Michael




Michael Muller
Admin, MontagueMA.net Website
work (413) 863-0030
cell (413) 320-5336
skype: michaelBmuller
http://www.MontagueMA.net

Eschew Obfuscation




~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278050
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Session Security

2007-05-14 Thread James Holmes
As long as J2EE sessions are enable in the CF Admin, yes the
standalone will use them.

Loginstorage just tells CF to store your CFLOGIN info wither in a
separate cookie or in a session variable. The session variable is
probably more secure as far as an external attack goes.

Setdomaincookies=true simply means if I have a site called
fred.bloggs.com, it will set cookies for bloggs.com rather than just
fred.bloggs.com (meaning that joe.bloggs.com can also use my login
cookie). If you don't use subdomains, you don't need it.

On 5/14/07, Robert Rawlins - Think Blue
[EMAIL PROTECTED] wrote:
 Ah that's good to know, I'm running SSL. I'm guessing the J2EE sessions are 
 pretty tidy them. I'm running ColdFusion in its standalone mode, does that 
 still use J2EE sessions?

 Are there any specific application settings I should be using in my 
 application.cfc to help keep this all buttoned down, i've never really 
 understood the loginstorage settings and the setdomaincookie variables.



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

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278051
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Reading cookie from ASP.Net to CF

2007-05-14 Thread James Holmes
Then why did you say this?:

Thanks for your reply. I tried the CFDUMP. All I see is CFsession and
CFID. I did not see any cookie.

Anyway, if you can see the cookie you just need to work out exactly
which encryption routine and key was used to encrypt it and decrypt it
using the same routine and key.

On 5/14/07, Venkatesh Raman [EMAIL PROTECTED] wrote:
 Hi,

 I am able to see the cookie. The problem is the cookie which being set in 
 ASP.net is encrypted using the machine key. When I try to read that cookie in 
 CF, it shows the encrypted value. I need to decrypt the cookie value.

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

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278052
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Session Security

2007-05-14 Thread Bobby Hartsfield
 I'm running ColdFusion in its standalone mode, does 
 that still use J2EE sessions

You have to go into the memory vars section of the administrator and check
the box for Use J2EE session variables.

-Original Message-
From: Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 11:09 AM
To: CF-Talk
Subject: RE: Session Security

Ah that's good to know, I'm running SSL. I'm guessing the J2EE sessions are
pretty tidy them. I'm running ColdFusion in its standalone mode, does that
still use J2EE sessions?

Are there any specific application settings I should be using in my
application.cfc to help keep this all buttoned down, i've never really
understood the loginstorage settings and the setdomaincookie variables.

Thanks,

Rob

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: 14 May 2007 16:02
To: CF-Talk
Subject: Re: Session Security

Without XSS, on a server using J2EE sessions over SSL, it's really
unlikely that anyone will succeed.

On 5/14/07, Claude Schneegans [EMAIL PROTECTED] wrote:
  Any thoughts on where to get started with this stuff?

 Have you an example of how some one could hijack a session under CF?

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 





~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278053
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Installing CFMX 6.1

2007-05-14 Thread James Holmes
See, there it was, breach hull, all die, even had it underlined...

On 5/15/07, Dave Watts [EMAIL PROTECTED] wrote:
  I'm having a problem installing CFMX 6.1 on server 2003. I
  put the CD in, click install, the Install anywhere
  extractor comes up and does it's thing and closes... nothing
  else happens. IT seems like I saw this a long time ago and
  had to update video drivers so the installer could display. I
  tried that already. Anyone else seen this and know what the deal
  is?

 http://www.adobe.com/support/coldfusion/releasenotes/mx/mx61_known_problems.
 html

 Scroll down to 60086.

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

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278054
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: help with java

2007-05-14 Thread Dave Watts
 A few months ago I posted some help requests for using 
 Babylon Chat server and got some suggestions, but I'm just 
 too flat out to adequately trouble-shoot this on my own. I 
 need help and I'm willing to pay. And since this isn't a 
 job type posting I thought I'd post my request here. Hope it's ok.
 
 I am having trouble getting a Java chat server app to run. I 
 am vaguely familiar with what's involved and at stake, but I 
 cannot get this thing to run. I'm using CF7 on Win2003Server.
 
 As I said, I am willing to pay someone to help me debug the 
 issue and get the app running. For the person who knows what 
 their doing java-server-wise, I'm sure this is a simple 
 issue. Please contact me asap and we'll set something up for 
 next week. Preferable if you have Skype and Unyte, or we can 
 do a GoTo Meeting.

I don't really have time to do anything for you, other than answer
questions. What happens when you try to run the application?

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278055
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Session Security

2007-05-14 Thread Robert Rawlins - Think Blue
Thanks for that information guys, I'll go into the admin and switch it over
to J2EE session management, is there are GOTCHA's that I need to watch out
for when doing this? I only ask because in my logic, if we were better off
using J2EE then it would be applied by default :-D Is there any reason why i
wouldn't want to use this?

Thanks guys,

Rob

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: 14 May 2007 16:32
To: CF-Talk
Subject: RE: Session Security

 I'm running ColdFusion in its standalone mode, does 
 that still use J2EE sessions

You have to go into the memory vars section of the administrator and check
the box for Use J2EE session variables.

-Original Message-
From: Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 11:09 AM
To: CF-Talk
Subject: RE: Session Security

Ah that's good to know, I'm running SSL. I'm guessing the J2EE sessions are
pretty tidy them. I'm running ColdFusion in its standalone mode, does that
still use J2EE sessions?

Are there any specific application settings I should be using in my
application.cfc to help keep this all buttoned down, i've never really
understood the loginstorage settings and the setdomaincookie variables.

Thanks,

Rob

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: 14 May 2007 16:02
To: CF-Talk
Subject: Re: Session Security

Without XSS, on a server using J2EE sessions over SSL, it's really
unlikely that anyone will succeed.

On 5/14/07, Claude Schneegans [EMAIL PROTECTED] wrote:
  Any thoughts on where to get started with this stuff?

 Have you an example of how some one could hijack a session under CF?

 --
 ___
 REUSE CODE! Use custom tags;
 See http://www.contentbox.com/claude/customtags/tagstore.cfm
 (Please send any spam to this address: [EMAIL PROTECTED])
 Thanks.


 







~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278056
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Need help finding cffm.resourceKit.Msg.xxxx

2007-05-14 Thread Michael Stevens
I'm attempting to customize an FTP upload page we have but some of the
elements are not hard coded as text with color attributes. They are
referenced by cffm.resourceKit.Msg.xxx or cffm.resourceKit.buttonText.xxx
and I don't know where to find these elements. Can anyone point me in the
right direction?
 
Thanks,
 
Mike


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278057
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: deploying changes from subversion

2007-05-14 Thread John Paul Ashenfelter
On 5/14/07, AJ Mercer [EMAIL PROTECTED] wrote:
 I am still not quite sure how to go about deploying mods from subversion.
 This is what I am trying to achieve:

 Each developer has a local development environment.
 We have a job tracking systems (jira) that bugs and requests for new
 features are entered into.

 I will work on a bug and once I am happy with the fix, testing in my dev
 environment, I will put those changes onto the test server.

We're missing some details here about the process around subversion so
it's hard to directly answer the question, but one very common pattern
is to create a bug-specific branch (usually off of the release branch)
and fix the bug there. The full process would work something like
this:

* assume there's an existing branch for the release, /repo/branches/RB-1.0
* copy the release branch /repo/branches/RB-1.0 to a bugfix branch
/repo/branches/BUG-3456
* tag the beginning of the bugfix branch /repo/tags/PRE-3456
* work on bug in the bugfix branch committing as necessary
* tag as necessary on bugfix branch, eg /repo/tags/QA-3456,
/repo/tags/QA-3456-RC2, etc
* when the bug's signed off on, tag the end of the branch /repo/tags/POST-3456
* back in the release branch, /repo/branches/RB-1.0, you can merge
/tags/PRE-3456 and /tags/POST-3456 to get the release updated
* roll out a new release (tagged and/or branched of course) or
generate a patchfile depending on your process
* check and see if the merge needs to go back into trunk/etc as appropriate

Obviously this isn't strictly necessary for a typo or a very small
change, though at a minimum using the tags for PRE and POST will make
your life easier.

As an aside, Subversion revision numbers are not in short supply --
there's no need to conserve them, and since copies in SVN are
efficient, there's no worry about increasing the size of the repo
every time you branch (like in BitKeeper and some other source control
systems).

We'll cover this stuff in my CFUnited 2007 pre conference class. At
worst, if you're reading this and figuring you need to know more about
Subversion, you should check out the Pragmatic Version Control using
Subversion book from the Pragmatic Programmers and save yourself a lot
of effort in learning SVN.

 After user testing, it may come back for further work, or be signed off.
 If signed off, it is put onto the production server.

 As you can imaging, there can be any number of bugs been fixed at any point
 in time by multiple developers.
 The testing can get signed off in any order and may be there for a couple of
 weeks.

 What I would like to be able to do is get the files for a particular bug fix
 and from those file, merge the modifications into test and then production.

 General Notes:

  - One file may have multiple bug fixes / enhancements

  - if a modification is to be backed out, and other modification since then
 will need to stay.


 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278058
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Session Security

2007-05-14 Thread Claude Schneegans
 it's really unlikely that anyone will succeed.

Ok, but how could he even try?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278059
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: RIA's - Flash Forms

2007-05-14 Thread Pete
Hi

Just wondering if anyone might have any idea in relation to this?

Thanks

P

-Original Message-
From: Pete [mailto:[EMAIL PROTECTED] 
Sent: Monday, 14 May 2007 10:01 PM
To: CF-Talk
Subject: RIA's - Flash Forms

 

 

Hi there

 

I am trying to finish of a flashform.

 

 

Basically what I am trying to do is the following - but a little unsure of
how it is done.

 

Basically I want to include a question with radio buttons Yes and No as the
possible answers. If Yes is selected then I will display text box which is
to be filled in.

 

If No is selected then the user will just continue on.

 

Also how to I make it so that the user MUST complete either Yes or No.

 

I have the form which can be viewed at 

 

http://www.drzacharia.com.au/vcflashform.cfm

 

The code that I have for Step 3 is as follows is

 

cfformgroup type=horizontal

cfformitem type=text width=200Have you had previous
surgery?/cfformitem

cfinput onclick=#enable_previous_surgery_validation# type=radio
label=Yes name=previous_surgery value=Yes required message=Please
select if you have previously had cosmetic surgery

cfinput onclick=#disable_previous_surgery_validation# type=radio
label=No name=Previous_surgery value=No

cfformitem type=text width=200If you have previously had cosmetic
surgery please let us know what procedure you had performed/cfformitem

/cfformgroup

 

 

cfformgroup type=horizontal

cfformitem type=text width=200If YES please elaborate, if NO please
enter N/A/cfformitem

cfinput type=text name=elaboration required=yes size=25
maxlength=25 height=100 validateat=onsubmit,onServer

/cfformgroup

 

Thanks in advance for assistance






~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278060
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Need help finding cffm.resourceKit.Msg.xxxx

2007-05-14 Thread Gert Franz
I guess they are part of the CFFM file manager of Rick Root...

Greetings / Grüsse
Gert Franz
Customer Care
Railo Technologies GmbH
[EMAIL PROTECTED]
www.railo.ch

Join our Mailing List / Treten Sie unserer Mailingliste bei:
deutsch: http://de.groups.yahoo.com/group/railo/
english: http://groups.yahoo.com/group/railo_talk/



Michael Stevens schrieb:
 I'm attempting to customize an FTP upload page we have but some of the
 elements are not hard coded as text with color attributes. They are
 referenced by cffm.resourceKit.Msg.xxx or cffm.resourceKit.buttonText.xxx
 and I don't know where to find these elements. Can anyone point me in the
 right direction?
  
 Thanks,
  
 Mike


 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278061
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: a couple windows to linux, cf to bluedragon problems

2007-05-14 Thread stylo stylo
 Dump the CGI scope and see if there is something you can use instead.

Worked around it, thanks.

   formatted template error. What is that and why?

If anyone has this come up, mine was a comment in the middle of a multi-line 
cfif in the search sql. Maybe bluedragon didn't like that.

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278062
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Subversion... CF's built-in webserver ... Can I do this?

2007-05-14 Thread Tero Pikala
*THE MOST IMPORTANT STEP

7. COMMIT! Now, whenever you make changes to your website project, you'll
notice a little red icon on the folder when viewing it in Windows Explorer.
This says hey, changes have been made to your website, and they don't match
with what's in your repository. 


I would say making backup copies of repository is the most important step.
Once you get into habit of putting everything into repository losing it can
be nightmare. 

I'm running following script daily to get backup copies out of subversion
server (which is Ubuntu 6.10 running in VMware). Note that just copying
repository files doesn't work properly; you need to make hot copy or dump of
each repository instead.  


(all variables are set before this) 

for DIRS in $REPODIR/*
do
   REPONAME=$(basename $DIRS)
   echo Hotcopy $REPODIR/$REPONAME to $BACKUPS/$REPONAME  $LOGFILE
   /usr/bin/svnadmin hotcopy $REPODIR/$REPONAME $BACKUPS/$REPONAME
   echo tar + gzip $REPODIR/$REPONAME to $BACKUPS/$REPONAME.tgz  $LOGFILE
   tar -zcvf $BACKUPS/$REPONAME.tgz $BACKUPS/$REPONAME
   cd $BACKUPS

   echo Copying $BACKUPS/$REPONAME.tgz to $SHARE  $LOGFILE
   /usr/bin/smbclient $SHARE -U $USERNAME%$PASSWORD -c put $REPONAME.tgz
 $LOGFILE

   echo Done with $REPONAME  $LOGFILE
done


No virus found in this outgoing message.
Checked by AVG Free Edition. 
Version: 7.5.467 / Virus Database: 269.6.6/794 - Release Date: 08/05/2007
14:23
 


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278063
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: RIA's - Flash Forms

2007-05-14 Thread Robert Rawlins - Think Blue
Hey Pete,

Look under the 'flash forms' section here http://www.asfusion.com/examples/
they have a load of stuff on 'binding' they do a couple of examples using
check boxes which might suite your application more, at the moment they only
bind to another check box, so you check one, and another becomes available,
I'm sure it wouldn't take much more work to get it working with a text input
though.

Hope that helps, I would love to help more, but it's been about a year since
I've touched flash remoting so don't really know what I'm doing.

Rob

-Original Message-
From: Pete [mailto:[EMAIL PROTECTED] 
Sent: 14 May 2007 17:23
To: CF-Talk
Subject: RE: RIA's - Flash Forms

Hi

Just wondering if anyone might have any idea in relation to this?

Thanks

P

-Original Message-
From: Pete [mailto:[EMAIL PROTECTED] 
Sent: Monday, 14 May 2007 10:01 PM
To: CF-Talk
Subject: RIA's - Flash Forms

 

 

Hi there

 

I am trying to finish of a flashform.

 

 

Basically what I am trying to do is the following - but a little unsure of
how it is done.

 

Basically I want to include a question with radio buttons Yes and No as the
possible answers. If Yes is selected then I will display text box which is
to be filled in.

 

If No is selected then the user will just continue on.

 

Also how to I make it so that the user MUST complete either Yes or No.

 

I have the form which can be viewed at 

 

http://www.drzacharia.com.au/vcflashform.cfm

 

The code that I have for Step 3 is as follows is

 

cfformgroup type=horizontal

cfformitem type=text width=200Have you had previous
surgery?/cfformitem

cfinput onclick=#enable_previous_surgery_validation# type=radio
label=Yes name=previous_surgery value=Yes required message=Please
select if you have previously had cosmetic surgery

cfinput onclick=#disable_previous_surgery_validation# type=radio
label=No name=Previous_surgery value=No

cfformitem type=text width=200If you have previously had cosmetic
surgery please let us know what procedure you had performed/cfformitem

/cfformgroup

 

 

cfformgroup type=horizontal

cfformitem type=text width=200If YES please elaborate, if NO please
enter N/A/cfformitem

cfinput type=text name=elaboration required=yes size=25
maxlength=25 height=100 validateat=onsubmit,onServer

/cfformgroup

 

Thanks in advance for assistance








~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278064
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Transfer and Model-Glue

2007-05-14 Thread Robertson-Ravo, Neil (RX)
Hi all,

For those using MGU, is anyone utilising Transfer with it?  I have a
question related to the latest code which uses the Transfer ORM adaptor.

Cheers

N








This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278065
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Need help finding cffm.resourceKit.Msg.xxxx

2007-05-14 Thread Michael Stevens
Well, I got frustrated Friday trying to figure it out so sent this first
thing today. In the mean time I've found a lot of the options I'm looking
for in the CSS file. Those messages appear to be just text strings so I
really didn't need to find them. I thought they might hold text AND
color/style information.

Thanks,

Mike 

-Original Message-
From: Gert Franz [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 9:22 AM
To: CF-Talk
Subject: Re: Need help finding cffm.resourceKit.Msg.

I guess they are part of the CFFM file manager of Rick Root...

Greetings / Grüsse
Gert Franz
Customer Care
Railo Technologies GmbH
[EMAIL PROTECTED]
www.railo.ch

Michael Stevens schrieb:
 I'm attempting to customize an FTP upload page we have but some of the 
 elements are not hard coded as text with color attributes. They are 
 referenced by cffm.resourceKit.Msg.xxx or 
 cffm.resourceKit.buttonText.xxx and I don't know where to find these 
 elements. Can anyone point me in the right direction?
  
 Thanks,
  
 Mike



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278066
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Subversion... CF's built-in webserver ... Can I do this?

2007-05-14 Thread steven . brownlee
Tero:

I'm not sure if it's a Linux issue, but I back up the
repository directories directly.  I'm not sure what issue
you are seeing to warrant the statement, Note that just
copying repository files doesn't work properly, - as that
is what I've been doing for years without any problems.  I
would like to hear what issues you are seeing so that I may
avoid them in the future.

Steve Brownlee
http://www.fusioncube.net/

- Original Message Follows -
From: Tero Pikala [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Subject: RE: Subversion... CF's built-in webserver ... Can I
do this?
Date: Mon, 14 May 2007 17:36:32 +0100

 I'm running following script daily to get backup copies
 out of subversion server (which is Ubuntu 6.10 running in
 VMware). Note that just copying repository files doesn't
 work properly; you need to make hot copy or dump of each
 repository instead.  
 
 
 (all variables are set before this) 


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278067
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Session Security

2007-05-14 Thread Dave Watts
 Thanks for that information guys, I'll go into the admin and 
 switch it over to J2EE session management, is there are 
 GOTCHA's that I need to watch out for when doing this? I only 
 ask because in my logic, if we were better off using J2EE 
 then it would be applied by default :-D Is there any reason 
 why i wouldn't want to use this?

If your application has specific dependencies on CFID and CFTOKEN, J2EE
session management will not work for you.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278068
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Transfer and Model-Glue

2007-05-14 Thread Peterson, Chris
Yup, I am.  And I got it working, so ask away!

Chris 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 12:45 PM
To: CF-Talk
Subject: Transfer and Model-Glue

Hi all,

For those using MGU, is anyone utilising Transfer with it?  I have a
question related to the latest code which uses the Transfer ORM adaptor.

Cheers

N








This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of
the intended recipient(s).  If you are not the intended recipient(s)
please note that any form of distribution, copying or use of this
communication or the information in it is strictly prohibited and may be
unlawful.  If you have received this communication in error please
return it to the sender or call our switchboard on +44 (0) 20 89107910.
The opinions expressed within this communication are not necessarily
those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278069
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Session Security

2007-05-14 Thread Judah McAuley
Is there a good run down somewhere of the pros/cons of cfid/cftoken 
versus J2EE session management? I'm realizing that this is an area I 
really ought to brush up on.

Thanks,
Judah

Dave Watts wrote:
 Thanks for that information guys, I'll go into the admin and 
 switch it over to J2EE session management, is there are 
 GOTCHA's that I need to watch out for when doing this? I only 
 ask because in my logic, if we were better off using J2EE 
 then it would be applied by default :-D Is there any reason 
 why i wouldn't want to use this?
 
 If your application has specific dependencies on CFID and CFTOKEN, J2EE
 session management will not work for you.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278070
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Transfer and Model-Glue

2007-05-14 Thread Peterson, Chris
Sorry, I should have answered some basic's here first ;)

To get MGU to use transfer, just un-comment the section for Transfer in
your /config/ColdSprint.xml file, and make sure they point to proper
locations for your Transfer.xml file and config files, ie:

bean id=transferConfiguration
class=transfer.com.config.Configuration
constructor-arg
name=datasourcePathvalue/config/transfer/Datasource.xml/value/co
nstructor-arg
constructor-arg
name=configPathvalue/config/transfer/Transfer.xml/value/construc
tor-arg
constructor-arg
name=definitionPathvalue/model/data/transfer/value/constructor-a
rg
/bean

bean id=ormAdapter
class=ModelGlue.unity.orm.transfer.TransferAdapter
constructor-arg name=frameworkref bean=ModelGlue
//constructor-arg
/bean

bean id=ormService class=transfer.TransferFactory
 constructor-arg name=configurationref
bean=transferConfiguration //constructor-arg
/bean 


At that point, you will use some of the MGU generic read functions,
documented in the download for MGU at
\How_To_S\How_To_Use_Generic_Database_Messages

Remember (and this tripped me up at first), if you have a collection
with an object inside it (which I have in my transfer files), you invoke
it with a dot notation.  So, a collection called user with an object
called user would be:

message name=modelglue.GenericRead
argument name=object value=user.user /
/message

And that's pretty much it!  =)

Chris



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 12:45 PM
To: CF-Talk
Subject: Transfer and Model-Glue

Hi all,

For those using MGU, is anyone utilising Transfer with it?  I have a
question related to the latest code which uses the Transfer ORM adaptor.

Cheers

N





~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278071
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Adding password security to a pdf upload on the fly

2007-05-14 Thread Burns, John D
Anyone ever mess with receiving PDF uploads from users and having CF
automatically password protect the PDF so that anyone downloading them
would need the password to be able to view them? I don't need to be able
to make any other adjustments to the PDFs and for the most part the
password will be the same on all of them. I'm trying to figure out if
there are any Java utils to do this or if I'd need to look into a 3rd
party software. Either way, if you have experience with this and
wouldn't mind lending your input, that'd be great.

 

John Burns



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278072
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Programmatically removing a single file from the trusted cache

2007-05-14 Thread Brook Davies
Hello,

I want to use the trusted cache feature, but I have a lot of dynamically
generated cfm files that both get generated and modified. I am aware that I
can clear the entire template cache programatically, but is there any way to
remove 1 file from the template cache programatically? If I call the
adminapi method to clear the template cache say 100 times a day or 50 times
a day, would that be a slow procedure and basically cancel out the
performance increase gained from using the trusted cache in the first place?

 

Brook 





 




~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278073
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Transfer and Model-Glue

2007-05-14 Thread Robertson-Ravo, Neil (RX)
Thanks Chris,

I actually have it all working and connected etc (ORM states it is using
Transfer). You hopefully, kind of, answered my upcoming Q of
creating/updating/deleting content via Transfer directly - and when I mean
directly, I mean not via Scaffolds.

Where the Transfer docs note to use getTransfer and .new() etc should these
be replaced with generic functions and not Transfer directly?

Once the adaptor has loaded that is it?

I am trying to see where you use MG syntax over Transfer for get, set and
save messages etc.





This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peterson, Chris
To: CF-Talk
Sent: Mon May 14 18:00:46 2007
Subject: RE: Transfer and Model-Glue

Sorry, I should have answered some basic's here first ;)

To get MGU to use transfer, just un-comment the section for Transfer in
your /config/ColdSprint.xml file, and make sure they point to proper
locations for your Transfer.xml file and config files, ie:

bean id=transferConfiguration
class=transfer.com.config.Configuration
constructor-arg
name=datasourcePathvalue/config/transfer/Datasource.xml/value/co
nstructor-arg
constructor-arg
name=configPathvalue/config/transfer/Transfer.xml/value/construc
tor-arg
constructor-arg
name=definitionPathvalue/model/data/transfer/value/constructor-a
rg
/bean

bean id=ormAdapter
class=ModelGlue.unity.orm.transfer.TransferAdapter
constructor-arg name=frameworkref bean=ModelGlue
//constructor-arg
/bean

bean id=ormService class=transfer.TransferFactory
 constructor-arg name=configurationref
bean=transferConfiguration //constructor-arg
/bean 


At that point, you will use some of the MGU generic read functions,
documented in the download for MGU at
\How_To_S\How_To_Use_Generic_Database_Messages

Remember (and this tripped me up at first), if you have a collection
with an object inside it (which I have in my transfer files), you invoke
it with a dot notation.  So, a collection called user with an object
called user would be:

message name=modelglue.GenericRead
argument name=object value=user.user /
/message

And that's pretty much it!  =)

Chris



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 12:45 PM
To: CF-Talk
Subject: Transfer and Model-Glue

Hi all,

For those using MGU, is anyone utilising Transfer with it?  I have a
question related to the latest code which uses the Transfer ORM adaptor.

Cheers

N







~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278074
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Adding password security to a pdf upload on the fly

2007-05-14 Thread Bobby Hartsfield
I've passworded the DOWNLOAD of the file. Is that what you mean?

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 1:03 PM
To: CF-Talk
Subject: Adding password security to a pdf upload on the fly

Anyone ever mess with receiving PDF uploads from users and having CF
automatically password protect the PDF so that anyone downloading them
would need the password to be able to view them? I don't need to be able
to make any other adjustments to the PDFs and for the most part the
password will be the same on all of them. I'm trying to figure out if
there are any Java utils to do this or if I'd need to look into a 3rd
party software. Either way, if you have experience with this and
wouldn't mind lending your input, that'd be great.

 

John Burns





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


RE: Transfer and Model-Glue

2007-05-14 Thread Peterson, Chris
Yup, from what I have seen you want to completely use the Model Glue
syntax and let MGU do all the talking directly to Transfer.  This adds
another layer of abstraction, so if for some reason you switched to
Reactor, it would be a simple matter of writing new reactor xml files to
match naming conventions.  This also brings database inquiries in-line
with MG syntax, which makes the entire app feel very homogenized =)

Chris 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 1:24 PM
To: CF-Talk
Subject: Re: Transfer and Model-Glue

Thanks Chris,

I actually have it all working and connected etc (ORM states it is using
Transfer). You hopefully, kind of, answered my upcoming Q of
creating/updating/deleting content via Transfer directly - and when I
mean directly, I mean not via Scaffolds.

Where the Transfer docs note to use getTransfer and .new() etc should
these be replaced with generic functions and not Transfer directly?

Once the adaptor has loaded that is it?

I am trying to see where you use MG syntax over Transfer for get, set
and save messages etc.





This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of
the intended recipient(s).  If you are not the intended recipient(s)
please note that any form of distribution, copying or use of this
communication or the information in it is strictly prohibited and may be
unlawful.  If you have received this communication in error please
return it to the sender or call our switchboard on +44 (0) 20 89107910.
The opinions expressed within this communication are not necessarily
those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peterson, Chris
To: CF-Talk
Sent: Mon May 14 18:00:46 2007
Subject: RE: Transfer and Model-Glue

Sorry, I should have answered some basic's here first ;)

To get MGU to use transfer, just un-comment the section for Transfer in
your /config/ColdSprint.xml file, and make sure they point to proper
locations for your Transfer.xml file and config files, ie:

bean id=transferConfiguration
class=transfer.com.config.Configuration
constructor-arg
name=datasourcePathvalue/config/transfer/Datasource.xml/value/co
nstructor-arg
constructor-arg
name=configPathvalue/config/transfer/Transfer.xml/value/construc
tor-arg
constructor-arg
name=definitionPathvalue/model/data/transfer/value/constructor-a
rg
/bean

bean id=ormAdapter
class=ModelGlue.unity.orm.transfer.TransferAdapter
constructor-arg name=frameworkref bean=ModelGlue
//constructor-arg
/bean

bean id=ormService class=transfer.TransferFactory
 constructor-arg name=configurationref
bean=transferConfiguration //constructor-arg
/bean 


At that point, you will use some of the MGU generic read functions,
documented in the download for MGU at
\How_To_S\How_To_Use_Generic_Database_Messages

Remember (and this tripped me up at first), if you have a collection
with an object inside it (which I have in my transfer files), you invoke
it with a dot notation.  So, a collection called user with an object
called user would be:

message name=modelglue.GenericRead
argument name=object value=user.user / /message

And that's pretty much it!  =)

Chris



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: Monday, May 14, 2007 12:45 PM
To: CF-Talk
Subject: Transfer and Model-Glue

Hi all,

For those using MGU, is anyone utilising Transfer with it?  I have a
question related to the latest code which uses the Transfer ORM adaptor.

Cheers

N









~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278076
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Adding password security to a pdf upload on the fly

2007-05-14 Thread Andy Matthews
FYI, Coldfusion 8 will allow you to do just about anything with a PDF. 

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 12:28 PM
To: CF-Talk
Subject: RE: Adding password security to a pdf upload on the fly

I've passworded the DOWNLOAD of the file. Is that what you mean?

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Monday, May 14, 2007 1:03 PM
To: CF-Talk
Subject: Adding password security to a pdf upload on the fly

Anyone ever mess with receiving PDF uploads from users and having CF
automatically password protect the PDF so that anyone downloading them would
need the password to be able to view them? I don't need to be able to make
any other adjustments to the PDFs and for the most part the password will be
the same on all of them. I'm trying to figure out if there are any Java
utils to do this or if I'd need to look into a 3rd party software. Either
way, if you have experience with this and wouldn't mind lending your input,
that'd be great.

 

John Burns







~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278077
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Transfer and Model-Glue

2007-05-14 Thread Robertson-Ravo, Neil (RX)
Very nice. I will play more.



This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peterson, Chris
To: CF-Talk
Sent: Mon May 14 18:30:56 2007
Subject: RE: Transfer and Model-Glue

Yup, from what I have seen you want to completely use the Model Glue
syntax and let MGU do all the talking directly to Transfer.  This adds
another layer of abstraction, so if for some reason you switched to
Reactor, it would be a simple matter of writing new reactor xml files to
match naming conventions.  This also brings database inquiries in-line
with MG syntax, which makes the entire app feel very homogenized =)

Chris 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 1:24 PM
To: CF-Talk
Subject: Re: Transfer and Model-Glue

Thanks Chris,

I actually have it all working and connected etc (ORM states it is using
Transfer). You hopefully, kind of, answered my upcoming Q of
creating/updating/deleting content via Transfer directly - and when I
mean directly, I mean not via Scaffolds.

Where the Transfer docs note to use getTransfer and .new() etc should
these be replaced with generic functions and not Transfer directly?

Once the adaptor has loaded that is it?

I am trying to see where you use MG syntax over Transfer for get, set
and save messages etc.





This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of
the intended recipient(s).  If you are not the intended recipient(s)
please note that any form of distribution, copying or use of this
communication or the information in it is strictly prohibited and may be
unlawful.  If you have received this communication in error please
return it to the sender or call our switchboard on +44 (0) 20 89107910.
The opinions expressed within this communication are not necessarily
those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peterson, Chris
To: CF-Talk
Sent: Mon May 14 18:00:46 2007
Subject: RE: Transfer and Model-Glue

Sorry, I should have answered some basic's here first ;)

To get MGU to use transfer, just un-comment the section for Transfer in
your /config/ColdSprint.xml file, and make sure they point to proper
locations for your Transfer.xml file and config files, ie:

bean id=transferConfiguration
class=transfer.com.config.Configuration
constructor-arg
name=datasourcePathvalue/config/transfer/Datasource.xml/value/co
nstructor-arg
constructor-arg
name=configPathvalue/config/transfer/Transfer.xml/value/construc
tor-arg
constructor-arg
name=definitionPathvalue/model/data/transfer/value/constructor-a
rg
/bean

bean id=ormAdapter
class=ModelGlue.unity.orm.transfer.TransferAdapter
constructor-arg name=frameworkref bean=ModelGlue
//constructor-arg
/bean

bean id=ormService class=transfer.TransferFactory
 constructor-arg name=configurationref
bean=transferConfiguration //constructor-arg
/bean 


At that point, you will use some of the MGU generic read functions,
documented in the download for MGU at
\How_To_S\How_To_Use_Generic_Database_Messages

Remember (and this tripped me up at first), if you have a collection
with an object inside it (which I have in my transfer files), you invoke
it with a dot notation.  So, a collection called user with an object
called user would be:

message name=modelglue.GenericRead
argument name=object value=user.user / /message

And that's pretty much it!  =)

Chris



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: Monday, May 14, 2007 12:45 PM
To: CF-Talk
Subject: Transfer and Model-Glue

Hi all,

For those using MGU, is anyone utilising Transfer with it?  I have a
question related to the latest code which uses the Transfer ORM adaptor.

Cheers

N











~|
Upgrade to 

RE: Transfer and Model-Glue

2007-05-14 Thread Peterson, Chris
Also, anyone with more experience please chime in.  I am in the midst of
my first MGU app, and this is my frist app using Transfer, so I will be
the first to tell you that my knowledge may be very shallow =)

Chris 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 1:36 PM
To: CF-Talk
Subject: Re: Transfer and Model-Glue

Very nice. I will play more.



This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of
the intended recipient(s).  If you are not the intended recipient(s)
please note that any form of distribution, copying or use of this
communication or the information in it is strictly prohibited and may be
unlawful.  If you have received this communication in error please
return it to the sender or call our switchboard on +44 (0) 20 89107910.
The opinions expressed within this communication are not necessarily
those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peterson, Chris
To: CF-Talk
Sent: Mon May 14 18:30:56 2007
Subject: RE: Transfer and Model-Glue

Yup, from what I have seen you want to completely use the Model Glue
syntax and let MGU do all the talking directly to Transfer.  This adds
another layer of abstraction, so if for some reason you switched to
Reactor, it would be a simple matter of writing new reactor xml files to
match naming conventions.  This also brings database inquiries in-line
with MG syntax, which makes the entire app feel very homogenized =)

Chris

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278079
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Need help setting background images in coldfusion

2007-05-14 Thread Jatin H Patel
Hello ppl,

   I need help setting up backgroud image in coldfusion. Plz help me out
how to do that.

my cold is follwoing below
==
cf_layout display=redesign leftmenucontent=welcome.html title=test
template rightmenuswitch=on rightmenucontent=rightmenu.cfm
!-- com.omniupdate.access group=Everyone --
!-- com.omniupdate.div label=header-st-sm
path=/includes/omni-previews/header-st-sm.html --
!-- /com.omniupdate.div --

!-- com.omniupdate.div label=sidenav group=z-sidenav-editors
button=277  padding=3 bgcolor=#ff border=#0808FF
path=/includes/welcome.html --
!-- /com.omniupdate.div --


!-- com.omniupdate.div label=maincontent-top-sm-rm
path=/includes/omni-previews/maincontent-top-sm-rm.html --
!-- /com.omniupdate.div --

!-- com.omniupdate.div label=Text Full group=Everyone padding=3
button=106 bgcolor=white border=#33FF00  break=yes --

h1Page Title Goes Here/h1

p
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec faucibus.
Nulla pulvinar, metus vel luctus congue, nibh lorem ultricies tortor, nec
tempus nisl mauris et felis. Pellentesque non nulla. Nulla non erat.
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere
cubilia Curae; Class aptent taciti sociosqu ad litora torquent per conubia
nostra, per inceptos hymenaeos. Phasellus velit nibh, porttitor vitae,
fermentum vitae, sagittis et, sem. Suspendisse at velit. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit. Suspendisse eu risus. Suspendisse
sodales libero at erat lacinia mollis.
/p

p
Curabitur neque turpis, interdum a, venenatis eget, euismod nec, ante. Nunc
in enim. Vestibulum at leo eget nunc facilisis tempor. Phasellus lacinia
arcu in nulla. Morbi vulputate scelerisque massa. Duis rutrum rhoncus
mauris. Nam et quam at lectus fermentum euismod. Etiam vitae urna sed est
consequat varius. Nunc lectus. Quisque lacus risus, iaculis eu, elementum
ac, pharetra et, sapien. Nam rhoncus. Nam iaculis. Donec odio turpis, varius
eget, tristique nec, consectetuer eu, tellus. Donec sit amet tortor nec
ipsum dapibus luctus.
/p

p
Aliquam dolor nisi, egestas id, nonummy ac, laoreet ut, risus. Pellentesque
habitant morbi tristique senectus et netus et malesuada fames ac turpis
egestas. Sed nec lorem ut ligula convallis imperdiet. Cum sociis natoque
penatibus et magnis dis parturient montes, nascetur ridiculus mus. In hac
habitasse platea dictumst. Donec id nisi a purus varius mollis. Sed non
lorem non tortor malesuada adipiscing. Aliquam ultrices. Sed vel lorem eget
dolor lacinia condimentum. Fusce magna felis, laoreet ut, sodales quis,
pharetra in, nunc. Pellentesque eu massa eget augue ornare aliquam. Nullam
sollicitudin. Nunc mattis, lectus tincidunt bibendum imperdiet, augue lectus
convallis lectus, nec aliquet est magna ut dui.
/p

p
Phasellus quam mauris, tempus at, congue tincidunt, egestas et, purus.
Suspendisse auctor posuere lacus. Cras ultricies tincidunt risus. Nunc
pulvinar quam ac lectus. Donec vitae eros nec turpis sodales pellentesque.
Ut enim. Integer justo lectus, vestibulum non, tincidunt ut, hendrerit in,
nunc. Duis et massa at sapien fermentum tempor. Lorem ipsum dolor sit amet,
consectetuer adipiscing elit. Sed eros orci, consectetuer in, placerat ac,
rhoncus sit amet, arcu. Nulla mauris. Phasellus imperdiet tincidunt sem.
Suspendisse sit amet erat. In nec nulla. Nullam vitae lectus at erat luctus
egestas.
/p

!-- /com.omniupdate.div --
!-- com.omniupdate.ob --brbra style=text-decoration: none; color:
black href=
http://www.omniupdate.com/oucampus-umass/de.jsp?user=chemistryamp;site=chemistryamp;path=%2Fneto%2Ftrail1.cfm;
target=_topfont face=Arial, Helvetica, sans-serif size=-2nbsp;Last
Updated On: 5/13/07/font/abrbr!-- /com.omniupdate.ob --

!-- com.omniupdate.div label=rightmenubetween
path=/includes/omni-previews/rightmenubetween.html --
!-- /com.omniupdate.div --

!-- com.omniupdate.div label=rightmenu group=z-sidenav-editors
button=277  padding=3 bgcolor=#ff border=#0808FF
path=/rightmenu.cfm --
!-- /com.omniupdate.div --

!-- com.omniupdate.div label=maincontent-bottom-c-rm
path=/includes/omni-previews/maincontent-bottom-c-rm.html --
!-- /com.omniupdate.div --

!-- com.omniupdate.div label=contact group=z-sidenav-editors
button=277  padding=3 bgcolor=#ff border=#0808FF
path=/includes/contact.html --
!-- /com.omniupdate.div --

!-- com.omniupdate.div label=footer-c
path=/includes/omni-previews/footer-c.html --
!-- /com.omniupdate.div --
/cf_layout






-- 
==
University Of Massachusetts , Dartmouth
Graduate CIS.


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278080
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 

Re: Adding password security to a pdf upload on the fly

2007-05-14 Thread ch g
Hi Burns, i would suggest protectedpdf.com from Vitrium, we are using their 
software from last one year.

Andy, could you explain little bit more about coldfusion 8 new features and PDF 
changes.

Thanks

FYI, Coldfusion 8 will allow you to do just about anything with a PDF. 

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 12:28 PM
To: CF-Talk
Subject: RE: Adding password security to a pdf upload on the fly

I've passworded the DOWNLOAD of the file. Is that what you mean?

-Original Message-
From: Burns, John D [mailto:[EMAIL PROTECTED]
Sent: Monday, May 14, 2007 1:03 PM
To: CF-Talk
Subject: Adding password security to a pdf upload on the fly

Anyone ever mess with receiving PDF uploads from users and having CF
automatically password protect the PDF so that anyone downloading them would
need the password to be able to view them? I don't need to be able to make
any other adjustments to the PDFs and for the most part the password will be
the same on all of them. I'm trying to figure out if there are any Java
utils to do this or if I'd need to look into a 3rd party software. Either
way, if you have experience with this and wouldn't mind lending your input,
that'd be great.

 

John Burns

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278081
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Transfer and Model-Glue

2007-05-14 Thread Robertson-Ravo, Neil (RX)
Lol, I am sure Mr Corfield will be right in... But what you have noted so
far makes perfect sense.

I was making the mistake of using the Transfer syntax directly instead of
the MG.




This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peterson, Chris
To: CF-Talk
Sent: Mon May 14 19:00:15 2007
Subject: RE: Transfer and Model-Glue

Also, anyone with more experience please chime in.  I am in the midst of
my first MGU app, and this is my frist app using Transfer, so I will be
the first to tell you that my knowledge may be very shallow =)

Chris 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 1:36 PM
To: CF-Talk
Subject: Re: Transfer and Model-Glue

Very nice. I will play more.



This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of
the intended recipient(s).  If you are not the intended recipient(s)
please note that any form of distribution, copying or use of this
communication or the information in it is strictly prohibited and may be
unlawful.  If you have received this communication in error please
return it to the sender or call our switchboard on +44 (0) 20 89107910.
The opinions expressed within this communication are not necessarily
those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peterson, Chris
To: CF-Talk
Sent: Mon May 14 18:30:56 2007
Subject: RE: Transfer and Model-Glue

Yup, from what I have seen you want to completely use the Model Glue
syntax and let MGU do all the talking directly to Transfer.  This adds
another layer of abstraction, so if for some reason you switched to
Reactor, it would be a simple matter of writing new reactor xml files to
match naming conventions.  This also brings database inquiries in-line
with MG syntax, which makes the entire app feel very homogenized =)

Chris



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278082
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Adding password security to a pdf upload on the fly

2007-05-14 Thread Robertson-Ravo, Neil (RX)
You could use iText or the Adobe framework (can't remember it's name :-
)





This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Burns, John D
To: CF-Talk
Sent: Mon May 14 18:02:44 2007
Subject: Adding password security to a pdf upload on the fly

Anyone ever mess with receiving PDF uploads from users and having CF
automatically password protect the PDF so that anyone downloading them
would need the password to be able to view them? I don't need to be able
to make any other adjustments to the PDFs and for the most part the
password will be the same on all of them. I'm trying to figure out if
there are any Java utils to do this or if I'd need to look into a 3rd
party software. Either way, if you have experience with this and
wouldn't mind lending your input, that'd be great.

 

John Burns





~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278083
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Error Executing Database Query.

2007-05-14 Thread Jim H
Has anyone ever dealt with this?  I lose a steady ping to the database from the 
web server, but a ping to the gateway does not fail.  Any thoughts?

line 4 of route.cfm is:

3   cfquery datasource=#datasource# name=getCompanyURLs timeout=15
4   SELECT CompanyURL, CID FROM WebCompanies WHERE 
CompanyURL='#cgi.HTTP_HOST#'
5   /cfquery

Error,jrpp-12,05/10/07,15:26:43,SchoolSites,Error Executing Database 
Query.[Macromedia][SQLServer JDBC Driver]A problem occurred when attempting to 
contact the server (Server returned: Connection reset). Please ensure that the 
server parameters passed to the driver are correct and that the server is 
running. Also ensure that the maximum number of connections have not been 
exceeded for this server. The specific sequence of files included or processed 
is: C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing Database 
Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at 
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at 
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at 
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
Error,jrpp-12,05/10/07,15:27:18,SchoolSites,Error Executing Database 
Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer: socket write 
error The specific sequence of files included or processed is: 
C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing Database 
Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at 
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at 
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at 
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at 

Re: Error Executing Database Query.

2007-05-14 Thread Robertson-Ravo, Neil (RX)
Which DB?




This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Jim H
To: CF-Talk
Sent: Mon May 14 19:02:21 2007
Subject: Error Executing Database Query.

Has anyone ever dealt with this?  I lose a steady ping to the database from
the web server, but a ping to the gateway does not fail.  Any thoughts?

line 4 of route.cfm is:

3   cfquery datasource=#datasource# name=getCompanyURLs
timeout=15
4   SELECT CompanyURL, CID FROM WebCompanies WHERE
CompanyURL='#cgi.HTTP_HOST#'
5   /cfquery

Error,jrpp-12,05/10/07,15:26:43,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]A problem occurred when
attempting to contact the server (Server returned: Connection reset). Please
ensure that the server parameters passed to the driver are correct and that
the server is running. Also ensure that the maximum number of connections
have not been exceeded for this server. The specific sequence of files
included or processed is: C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:11
5)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
318)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426
)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:26
4)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
Error,jrpp-12,05/10/07,15:27:18,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer:
socket write error The specific sequence of files included or processed is:
C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at 

Re: a couple windows to linux, cf to bluedragon problems

2007-05-14 Thread Vince Bonfanti
  Dump the CGI scope and see if there is something you can use instead.
 
 
 Worked around it, thanks.

See Section 3.5 of the BlueDragon CFML Compatibility Guide regarding 
CGI.Path_Info

 
formatted template error. What is that and why?
 
 If anyone has this come up, mine was a comment in the middle of a 
 multi-line cfif in the search sql. Maybe bluedragon didn't like that.

I'd be interested in seeing the code that failed. Can you email it to me 
separate? vince[at]newatlanta[dot]com

Vince Bonfanti
New Atlanta Communications, LLC

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278086
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Subversion... CF's built-in webserver ... Can I do this?

2007-05-14 Thread John Paul Ashenfelter
On 5/14/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Tero:

 I'm not sure if it's a Linux issue, but I back up the
 repository directories directly.  I'm not sure what issue
 you are seeing to warrant the statement, Note that just
 copying repository files doesn't work properly, - as that
 is what I've been doing for years without any problems.  I
 would like to hear what issues you are seeing so that I may
 avoid them in the future.

The best reason to avoid this is b/c that's what the Subversion
developers say (http://svnbook.red-bean.com/en/1.1/ch05s03.html but
you'll have to read through a lot). A lot of the initial discussion
about the dangers of simply copying the repository relate to the
earlier versions of Subversion that used BerkeleyDB for managing the
repository. And we all (should) know that a copy of a db made using
acopy command is going to be problematic. Now that Subversion uses
FSFS (filesystem storage) by default, the whole craziness w/ BDB is no
longer an issue unless you choose to run BDB as your repository
storage engine.

All that aside, but BDB and FSFS have specific orders in which files
need to be copied to ensure an accurate backup. This really isn't much
of an issue if access to the repository is disabled during a vanilla
copy/backup, but I'd suggest avoiding the hassle and using either the
builtin svnadmin hotcopy or the even more reliable hot-backup.py
http://subversion.tigris.org/tools_contrib.html#backup

If you're using FSFS (the default) and have a decent window for
maintenance (eg at night), I'd suggest simply using svnadmin dump to
dump out a simple text-based replay of eveything. You can do a full
one weekly and an incremental one daily or whatever makes sense. Note
that this is less useful as you add more and bigger binary files to a
SVN repository (eg lot of videos) since the  corresponding output
files will be pretty large. I like rsync in that scenario to increase
the speed of the process.

One quick example script from TextDrive (a host) which can be adapted
is here http://textsnippets.com/posts/show/587 which shows how to
rsync your FSFS svn repository to a remote server over SSH.

shameless plug
I'm teaching a course on Subversion, Ant, and Selenium at CFUnited
2007. Come out and turbocharge your development process!
/shameless plug





 Steve Brownlee
 http://www.fusioncube.net/

 - Original Message Follows -
 From: Tero Pikala [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Subject: RE: Subversion... CF's built-in webserver ... Can I
 do this?
 Date: Mon, 14 May 2007 17:36:32 +0100

  I'm running following script daily to get backup copies
  out of subversion server (which is Ubuntu 6.10 running in
  VMware). Note that just copying repository files doesn't
  work properly; you need to make hot copy or dump of each
  repository instead.
 
  
  (all variables are set before this)


 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278087
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error Executing Database Query.

2007-05-14 Thread John Paul Ashenfelter
I've seen a couple of weird problems like that when the web server was
having problems with it's DNS resolution. That's only relevant if your
db is found through DNS of course (which is complicated on Windows
with the whole NetBIOS/AD/etc acting as DNS).

In those cases, I just added an entry to the hosts file to hardcode it
and problem resolved. That assumes it really IS your problem. It's
probably worth looking at the DNS resolution on the web server to the
db server if you don't find another obvious cause.

On 5/14/07, Jim H [EMAIL PROTECTED] wrote:
 Has anyone ever dealt with this?  I lose a steady ping to the database from 
 the web server, but a ping to the gateway does not fail.  Any thoughts?

 line 4 of route.cfm is:

 3   cfquery datasource=#datasource# name=getCompanyURLs timeout=15
 4   SELECT CompanyURL, CID FROM WebCompanies WHERE 
 CompanyURL='#cgi.HTTP_HOST#'
 5   /cfquery

 Error,jrpp-12,05/10/07,15:26:43,SchoolSites,Error Executing 
 Database Query.[Macromedia][SQLServer JDBC Driver]A problem occurred when 
 attempting to contact the server (Server returned: Connection reset). Please 
 ensure that the server parameters passed to the driver are correct and that 
 the server is running. Also ensure that the maximum number of connections 
 have not been exceeded for this server. The specific sequence of files 
 included or processed is: C:\Inetpub\WebSites\route.cfm, line: 4 
 coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing 
 Database Query.
 at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
 at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
 at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
 at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
 at 
 coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
 at 
 coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
 at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
 at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
 at 
 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
 at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
 at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
 at 
 coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
 at coldfusion.CfmServlet.service(CfmServlet.java:107)
 at 
 coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
 at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
 at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
 at 
 jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
 at 
 jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
 at 
 jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
 at 
 jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
 at 
 jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
 at 
 jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
 at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
 Error,jrpp-12,05/10/07,15:27:18,SchoolSites,Error Executing 
 Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer: 
 socket write error The specific sequence of files included or processed is: 
 C:\Inetpub\WebSites\route.cfm, line: 4 
 coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing 
 Database Query.
 at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
 at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
 at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
 at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
 at 
 coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
 at 
 coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
 at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
 at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
 at 
 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
 at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
 at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
 at 
 

Re: Error Executing Database Query.

2007-05-14 Thread Robertson-Ravo, Neil (RX)
To add, I have seen this error on SQL 2005 and it's not ColdFusion specific,
as it happens on some of our .NET / ASP also..  Can you check your event
logs and check for .NET optimising errors.











This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Jim H
To: CF-Talk
Sent: Mon May 14 19:02:21 2007
Subject: Error Executing Database Query.

Has anyone ever dealt with this?  I lose a steady ping to the database from
the web server, but a ping to the gateway does not fail.  Any thoughts?

line 4 of route.cfm is:

3   cfquery datasource=#datasource# name=getCompanyURLs
timeout=15
4   SELECT CompanyURL, CID FROM WebCompanies WHERE
CompanyURL='#cgi.HTTP_HOST#'
5   /cfquery

Error,jrpp-12,05/10/07,15:26:43,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]A problem occurred when
attempting to contact the server (Server returned: Connection reset). Please
ensure that the server parameters passed to the driver are correct and that
the server is running. Also ensure that the maximum number of connections
have not been exceeded for this server. The specific sequence of files
included or processed is: C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:11
5)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
318)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426
)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:26
4)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
Error,jrpp-12,05/10/07,15:27:18,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer:
socket write error The specific sequence of files included or processed is:
C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
at 

Re: Error Executing Database Query.

2007-05-14 Thread Jim H
MSSQL2K

Which DB?




This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Jim H
To: CF-Talk
Sent: Mon May 14 19:02:21 2007
Subject: Error Executing Database Query.

Has anyone ever dealt with this?  I lose a steady ping to the database from
the web server, but a ping to the gateway does not fail.  Any thoughts?

line 4 of route.cfm is:

3  cfquery datasource=#datasource# name=getCompanyURLs
timeout=15
4  SELECT CompanyURL, CID FROM WebCompanies WHERE
CompanyURL='#cgi.HTTP_HOST#'
5  /cfquery

Error,jrpp-12,05/10/07,15:26:43,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]A problem occurred when
attempting to contact the server (Server returned: Connection reset). Please
ensure that the server parameters passed to the driver are correct and that
the server is running. Also ensure that the maximum number of connections
have not been exceeded for this server. The specific sequence of files
included or processed is: C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
   at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
   at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
   at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
   at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
   at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
   at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
   at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
   at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
   at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
   at
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:11
5)
   at coldfusion.CfmServlet.service(CfmServlet.java:107)
   at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
   at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
   at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
   at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
   at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
   at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
   at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
318)
   at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426
)
   at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:26
4)
   at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
Error,jrpp-12,05/10/07,15:27:18,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer:
socket write error The specific sequence of files included or processed is:
C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
   at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
   at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
   at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
   at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
   at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
   at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
Filter.java:28)
   at 

Re: Error Executing Database Query.

2007-05-14 Thread Robertson-Ravo, Neil (RX)
Interesting.. I haven't seen it on 2000...






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Jim H
To: CF-Talk
Sent: Mon May 14 19:54:27 2007
Subject: Re: Error Executing Database Query.

MSSQL2K

Which DB?




This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of
the
intended recipient(s).  If you are not the intended recipient(s) please
note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Jim H
To: CF-Talk
Sent: Mon May 14 19:02:21 2007
Subject: Error Executing Database Query.

Has anyone ever dealt with this?  I lose a steady ping to the database from
the web server, but a ping to the gateway does not fail.  Any thoughts?

line 4 of route.cfm is:

3  cfquery datasource=#datasource# name=getCompanyURLs
timeout=15
4  SELECT CompanyURL, CID FROM WebCompanies WHERE
CompanyURL='#cgi.HTTP_HOST#'
5  /cfquery

Error,jrpp-12,05/10/07,15:26:43,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]A problem occurred when
attempting to contact the server (Server returned: Connection reset).
Please
ensure that the server parameters passed to the driver are correct and that
the server is running. Also ensure that the maximum number of connections
have not been exceeded for this server. The specific sequence of files
included or processed is: C:\Inetpub\WebSites\route.cfm, line: 4 
coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error Executing
Database Query.
   at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:580)
   at cfroute2ecfm1337773736.runPage(C:\Inetpub\WebSites\route.cfm:4)
   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
   at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
   at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
   at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
   at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenc
e
Filter.java:28)
   at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
   at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
   at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
   at
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:1
1
5)
   at coldfusion.CfmServlet.service(CfmServlet.java:107)
   at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
   at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
   at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
   at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
   at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
   at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204
)
   at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java
:
318)
   at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:42
6
)
   at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:2
6
4)
   at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
Error,jrpp-12,05/10/07,15:27:18,SchoolSites,Error Executing
Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer:
socket write error The specific sequence of files included 

RE: Error Executing Database Query.

2007-05-14 Thread Dave Watts
 Has anyone ever dealt with this?  I lose a steady ping to the 
 database from the web server, but a ping to the gateway does 
 not fail.  Any thoughts?

If you have network connectivity problems between your web server and your
database server, this is probably not a problem with SQL Server or CF.

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!

This email has been processed by SmoothZap - www.smoothwall.net


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278092
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Fusebox Help

2007-05-14 Thread Jordan Michaels
Greetings,

I've got a situation that I'm really hoping someone could help shed some 
light on.

We're currently attempting to update a site that is running on Fusebox 
(I do not know which version it is or even how to check that), but the 
behavior is just flat inexplicable.

When attempting to go through this sites ordering process, the site will 
redirect you to a different (completely unrelated) page on the site. We 
are also getting what appear to be random errors in the code. It's all 
very perplexing, and I'm hoping someone can shed some light on it for me.

Has anyone seen this kind of behavior in a Fusebox site before? Any 
suggestions on where I should start looking for a problem cause? Since 
the errors appear to be random (go to page, click a link, get random 
error - go to page, click same link, get different random error) I'm not 
sure where to even begin.

I've watched the system load as the I clicked around in the site, and is 
very consistently light load. So we can rule out IO Wait issues, or 
things like that.

I would be indebted to anyone who could help point us in the right 
direction.
-- 
Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
BlueDragon Alliance Member
[EMAIL PROTECTED]

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278093
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Reading cookie from ASP.Net to CF

2007-05-14 Thread Venkatesh Raman
Sorry, It was my mistake. I was trying to read the cookie from a different 
domain. I tried the same decryption key I used in Asp.Net. But still could not 
read the encrypted cookie. 

Has anybody done this before?

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278094
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Fusebox Help

2007-05-14 Thread Josh Nathanson
 Has anyone seen this kind of behavior in a Fusebox site before? Any
 suggestions on where I should start looking for a problem cause? Since
 the errors appear to be random (go to page, click a link, get random
 error - go to page, click same link, get different random error) I'm not
 sure where to even begin.

Jordan - the best way to at least figure out the version is to look for 
index.cfm in the root, open that file and see which core file it's calling 
(assuming they're using index.cfm as the main template).

Fusebox in itself is not inherently buggy, but like any other framework, 
poor coding will lead to poor results.

-- Josh 


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278095
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion error on asynchronous POST request

2007-05-14 Thread Rebecca Younes
Debugging in FireBug reveals that the error originates inside YUI when the 
event handler that makes the asynchronous POST request is attached to a form 
submit button click event. The problem arises because when the form name-value 
pairs are serialized by YUI, the value null gets appended to the string. This 
causes an error in ColdFusion's Java runtime for a POST request, but not for a 
GET. Attaching the event handler to the form submit event, or changing the 
button to type=button rather than type=submit, avoids the error.

None of the available workarounds will be satisfactory in all circumstances. 
When a form has multiple submit buttons, you cannot assign the event handlers 
to the form submit event rather than to the individual buttons. Switching from 
an input element type=submit to type=button will not support 
non-Javascript-enabled browsers (you'd have to do something tricky like writing 
the html with input type=submit, and using Javascript to rewrite it to 
type=button).

It's not clear whether this is best regarded as a YUI bug or a ColdFusion bug. 
Though the error originates inside YUI, since PHP does not generate an error 
there may be some justification for considering this at least partially a 
ColdFusion bug.

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278096
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Fusebox Help

2007-05-14 Thread Jordan Michaels
There we go. Fusebox 4. Thanks Josh.

I completely agree with your comments as well. I'm not trying to imply 
anything about the stability of fusebox, but since neither I, or anyone 
in my shop has spent any large amounts of time working with Fusebox. I 
guess I was just wondering if anyone had seen this kind of behavior before.

My (limited?) understanding of fusebox suggests that there are some 
pages which are interpreted, then written to the file system. I'm 
wondering if these seemingly random errors have anything to do with that 
process. Like perhaps wherever the problem lies is in the process that 
creates these files? Perhaps this process is not able to finish, or is 
finishing incorrectly each time the page is hit... and that results in 
the random code errors?

That is where my thoughts are taking me at the moment anyway...

Any insights anyone has would be immensely appreciated. ;)

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
BlueDragon Alliance Member
[EMAIL PROTECTED]


Josh Nathanson wrote:
 Has anyone seen this kind of behavior in a Fusebox site before? Any
 suggestions on where I should start looking for a problem cause? Since
 the errors appear to be random (go to page, click a link, get random
 error - go to page, click same link, get different random error) I'm not
 sure where to even begin.
 
 Jordan - the best way to at least figure out the version is to look for 
 index.cfm in the root, open that file and see which core file it's calling 
 (assuming they're using index.cfm as the main template).
 
 Fusebox in itself is not inherently buggy, but like any other framework, 
 poor coding will lead to poor results.
 
 -- Josh 
 
 
 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278097
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: deploying changes from subversion

2007-05-14 Thread AJ Mercer
Thanks John Paul.

I deliberately left out any subversion process for two reasons
 a) this is what I want to find out
 b) I don't have a process and hence the question :-)

I have read about the pre / post tagging before but was not sure how this
would go when other people are also making commits - and there fore
incrementing the revision number; so...

If two people are committing will it look like this (current revision = 99)
  branch - bug001 : 100 (bug001-pre), 101, 103, 104, 107(bug001-post)
  branch - bug002: 102, 106

And if that is the case, when I do a merge bug001 - bug002-post
will it ignore revisions 102 and 106?


On 5/15/07, John Paul Ashenfelter [EMAIL PROTECTED] wrote:

 On 5/14/07, AJ Mercer [EMAIL PROTECTED] wrote:
  I am still not quite sure how to go about deploying mods from
 subversion.
  This is what I am trying to achieve:
 
  Each developer has a local development environment.
  We have a job tracking systems (jira) that bugs and requests for new
  features are entered into.
 
  I will work on a bug and once I am happy with the fix, testing in my dev
  environment, I will put those changes onto the test server.

 We're missing some details here about the process around subversion so
 it's hard to directly answer the question, but one very common pattern
 is to create a bug-specific branch (usually off of the release branch)
 and fix the bug there. The full process would work something like
 this:

 * assume there's an existing branch for the release, /repo/branches/RB-1.0
 * copy the release branch /repo/branches/RB-1.0 to a bugfix branch
 /repo/branches/BUG-3456
 * tag the beginning of the bugfix branch /repo/tags/PRE-3456
 * work on bug in the bugfix branch committing as necessary
 * tag as necessary on bugfix branch, eg /repo/tags/QA-3456,
 /repo/tags/QA-3456-RC2, etc
 * when the bug's signed off on, tag the end of the branch
 /repo/tags/POST-3456
 * back in the release branch, /repo/branches/RB-1.0, you can merge
 /tags/PRE-3456 and /tags/POST-3456 to get the release updated
 * roll out a new release (tagged and/or branched of course) or
 generate a patchfile depending on your process
 * check and see if the merge needs to go back into trunk/etc as
 appropriate

 Obviously this isn't strictly necessary for a typo or a very small
 change, though at a minimum using the tags for PRE and POST will make
 your life easier.

 As an aside, Subversion revision numbers are not in short supply --
 there's no need to conserve them, and since copies in SVN are
 efficient, there's no worry about increasing the size of the repo
 every time you branch (like in BitKeeper and some other source control
 systems).

 We'll cover this stuff in my CFUnited 2007 pre conference class. At
 worst, if you're reading this and figuring you need to know more about
 Subversion, you should check out the Pragmatic Version Control using
 Subversion book from the Pragmatic Programmers and save yourself a lot
 of effort in learning SVN.

  After user testing, it may come back for further work, or be signed off.
  If signed off, it is put onto the production server.
 
  As you can imaging, there can be any number of bugs been fixed at any
 point
  in time by multiple developers.
  The testing can get signed off in any order and may be there for a
 couple of
  weeks.
 
  What I would like to be able to do is get the files for a particular bug
 fix
  and from those file, merge the modifications into test and then
 production.
 
  General Notes:
 
   - One file may have multiple bug fixes / enhancements
 
   - if a modification is to be backed out, and other modification since
 then
  will need to stay.
 
 
 

 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278098
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Problem using cfset inside cffunction

2007-05-14 Thread John P
I am attempting to use cffunction to query a database and then cfset the 
returned variables to a new names. I get the following error when attempting to 
access the page. 

Local variable givenname on line 19 must be grouped at the top of the function 
body.


Here's my function that appears on my .cfc page:

cfldap action=query 
name=GetIDS 
start=ou=ple,o=blah.com 
filter=id=#userID#

attributes=givenname,sn,mail,dbaddress,dbcity,dbstate,dbzipcode,homephone 
server=ds.blah.com username=uid=asdf,ou=ReadOnly,o=blah.com 
password=password 
 

cfset var givenname = First_name
cfset var sn = Last_Name
cfset var mail = Addr
cfset var dbaddress = ADDRESS
cfset var dbcity = City
cfset var dbstate = State
cfset var dbzipcode = ZIP
cfset var homephone = PHONE


cfreturn GetIDS

/cffunction

What am I doing wrong? Is it possible to use cfset inside of a cffunction? 

Thanks!

John

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278099
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >