Coldfusion 7 on Apache 2.2 Linux

2015-02-06 Thread Dan LeGate

I know, I know... it's OLD, but we have to deal with it.

Been trying to get CF7 working on Linux with Apache 2.2 and having trouble.

Keep reading there was an updated wsconfig.jar available at one point, but
not surprisingly, can't find it at Adobe.com

Anyone still have the patch, or know a link?

Save your breath in telling us to upgrade instead.  We are... just we have
to deal with this old server until it's done. :-)

Thanks,

Dan


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


CF11 Licensing - 2 servers behind load balancer

2014-10-02 Thread Dan LeGate

Okay, if I have a single site, being run on two or more virtual (vmware) 
servers behind a load balancer, does each server need a license?  Or 
does one license cover the site?

Thanks!

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


Calling a Custom Tag Twice Duplicates Query Results?

2014-05-28 Thread Dan LeGate

Okay, so I've been trying to solve a problem I'm having with a Custom 
Tag I wrote to do ldap lookups.

The QueryName attribute gets passed in, along with a FilterValue.

My problem is that when I call this tag twice or more within one page, 
the results of the FIRST lookup seem to stick and the second lookup 
doesn't work

First lookup: value of NetID is ab1234

cf_ldap_lookup
 QueryName  = GetLDAPInfo
 FilterName = UserID
 FilterValue= #NetID#
 UserID = Yes
 FullName   = Yes
 LastName   = Yes
 FirstName  = Yes
 Department = Yes
 EmplID = Yes
 StaffEmail = Yes

Second lookup: value of NetID is xy6789

cf_ldap_lookup
 QueryName  = GetLDAPInfoContact
 FilterName = UserID
 FilterValue= #NetID#
 UserID = Yes
 FullName   = Yes
 LastName   = Yes
 FirstName  = Yes
 Department = Yes
 EmplID = Yes
 StaffEmail = Yes

When I reference #GetLDAPInfoContact.FirstName# it contains the value 
for #GetLDAPInfo.FirstName#

Is there some sort of caching happening when a Custom Tag is called more 
than once?

This is CFMX 7, btw. :-\

I thought by dynamically changing the Query Name value within the Custom 
Tag it would solve this (it used to be the same query name each time the 
Custom Tag was called), but that wasn't it.

Any insight is appreciated.

Thanks!

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


Dynamic Query Name in Custom Tag?

2014-05-27 Thread Dan LeGate

Hi all,

I'm attempting to create a dynamic query name inside a Custom Tag.

It seems to get created fine, but referencing it seems to be the problem.

Here's where I set it up:

cfquery name=ConvertedFields_#attributes.QueryName# dbtype=query

So, yes, it's a Query of Query, if that makes a difference.

But when I try to reference it later, like this:

cfdump var=ConvertedFields_#attributes.QueryName#

or

cfdump var=#ConvertedFields_[attributes.QueryName]#

or

cfdump var=#ConvertedFields_['#attributes.QueryName#']#

It always errors out with Variable CONVERTEDFIELDS_ is undefined.

I know I'm missing something simple here.  My brain is not recalling how 
to handle these. :-)

Any help is appreciated.

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


Re: Dynamic Query Name in Custom Tag?

2014-05-27 Thread Dan LeGate

Thanks Matt!

That worked for cfdump.

Now I'm trying to cfif for the RecordCount and neither:

cfif variables[ 'ConvertedFields_'  attributes.QueryName.RecordCount' 
] GT 0

nor

cfif variables[ 'ConvertedFields_'  attributes.QueryName  
'.RecordCount' ] GT 0

works.  Any advice on this one?

Getting Element QUERYNAMES.RECORDCOUNT is undefined in ATTRIBUTES.  
and Element ConvertedFields_GetLDAPInfo.RecordCount is undefined in a 
Java object of type class coldfusion.runtime.VariableScope referenced 
respectively.

Thanks again.

Dan

On 5/27/2014 1:55 PM, Matt Quackenbush wrote:
 Trycfdump var=#variables[ 'ConvertedFields_'  attributes.QueryName ]#


 On Tue, May 27, 2014 at 4:49 PM, Dan LeGated...@legeek.com  wrote:

 Hi all,

 I'm attempting to create a dynamic query name inside a Custom Tag.

 It seems to get created fine, but referencing it seems to be the problem.

 Here's where I set it up:

 cfquery name=ConvertedFields_#attributes.QueryName# dbtype=query

 So, yes, it's a Query of Query, if that makes a difference.

 But when I try to reference it later, like this:

 cfdump var=ConvertedFields_#attributes.QueryName#

 or

 cfdump var=#ConvertedFields_[attributes.QueryName]#

 or

 cfdump var=#ConvertedFields_['#attributes.QueryName#']#

 It always errors out with Variable CONVERTEDFIELDS_ is undefined.

 I know I'm missing something simple here.  My brain is not recalling how
 to handle these. :-)

 Any help is appreciated.


 

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


Re: Versions of Apache Supported on CF10 Linux?

2014-02-25 Thread Dan LeGate

We are on RHEL 5.9 currently.  Debating as to whether we should move to 6.

Dan

On 2/25/2014 9:48 AM, Pete Freitag wrote:
 On Tue, Feb 25, 2014 at 10:42 AM, Steve 'Cutter' Blades
 cold.fus...@cutterscrossing.com  wrote:

 64-bit Apache is not officially supported.

 I don't think that is true, perhaps with Apache on Windows? But not with
 linux. The support matrix lists Apache support for both 32 and 64 bit on
 all platforms:
 http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf10/coldfusion10-support-matrix.pdffor
 what its worth.

 If you are on RHEL then make sure you update httpd using yum to the
 latest... Note that with RHEL the apache version number may not change, but
 RH will apply security patches or bug fixes as needed. More on that here:
 http://www.petefreitag.com/item/826.cfm

 What version of RHEL are you running?

 --
 Pete Freitag - Adobe Community Professional
 http://foundeo.com/ - ColdFusion Consulting  Products
 http://hackmycf.com - Is your ColdFusion Server Secure?
 http://www.youtube.com/watch?v=ubESB87vl5U - FuseGuard your CFML in 10
 minutes


 

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


Versions of Apache Supported on CF10 Linux?

2014-02-24 Thread Dan LeGate

Hi all,

We're running into the:

undefined symbol: ap_get_server_description

error when attempting to load mod_jk.so into Apache.

We are on 64-bit Redhat, which has Apache 2.2.3, which I've read doesn't 
support the ap_get_server_description

Our options appear to be to downgrade to Apache 2.2.2, or upgrade to 
Apache 2.2.4 or even 2.4, but I've also read that the mod_jk shipped 
with CF10 won't work in Apache 2.4?

What do you all recommend?

Thanks!

Dan

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


CFLDAP socket closed error against SSL

2013-12-10 Thread Dan LeGate

Here's the weirdness I'm experiencing...

I have a Custom Tag we've been using for years that is called from most 
of our applications and authenticates them to a Sun LDAP server.

We are moving to an Active Directory service, and when I attempt to do a 
bind against the new system, I get:

An error has occurred while trying to execute query :servername.com:636; 
socket closed.

However, if I run that SAME cfldap command in a .cfm file out in a 
regular web folder (i.e. not as a Custom Tag under the ColdFusion 
directory), it works fine!

I have restarted the server to make sure any old Custom Tag code isn't 
somehow cached.  I have verified the SSL (636) port is open to the CF 
server.

Any ideas on this one?  Very confused by this.

Thanks for any feedback!

Dan

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


Re: CFLDAP socket closed error against SSL

2013-12-10 Thread Dan LeGate

I take it back... exact same code EXCEPT my code in outside the Custom 
Tag folder had excluded the PORT attribute, so I assume it was going to 
the non-SSL port and working fine.

Once I added port = 636 to that code, exact same response: socket closed

Again, the LDAPS (636) port is open to the ColdFusion server.

I'm thinking it's an SSL issue.  What steps need to be taken to ensure 
LDAPS communication works?

Thanks!

Dan

On 12/10/2013 12:36 PM, Dan LeGate wrote:
 Here's the weirdness I'm experiencing...

 I have a Custom Tag we've been using for years that is called from most
 of our applications and authenticates them to a Sun LDAP server.

 We are moving to an Active Directory service, and when I attempt to do a
 bind against the new system, I get:

 An error has occurred while trying to execute query :servername.com:636;
 socket closed.

 However, if I run that SAME cfldap command in a .cfm file out in a
 regular web folder (i.e. not as a Custom Tag under the ColdFusion
 directory), it works fine!

 I have restarted the server to make sure any old Custom Tag code isn't
 somehow cached.  I have verified the SSL (636) port is open to the CF
 server.

 Any ideas on this one?  Very confused by this.

 Thanks for any feedback!

 Dan

 

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


Re: CFLDAP socket closed error against SSL

2013-12-10 Thread Dan LeGate

No.  How do we do that?

Is it the individual server certificate(s) that we connect to that are 
put into the key store?

Or a Certificate Authority certificate we need?

Where is the key store on the CF Server and how do we manipulate it?

Thanks,

Dan

On 12/10/2013 2:53 PM, Russ Michaels wrote:
 Have u imported the ssl into the key store?

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 10 Dec 2013 20:52, Dan LeGated...@legeek.com  wrote:

 I take it back... exact same code EXCEPT my code in outside the Custom
 Tag folder had excluded the PORT attribute, so I assume it was going to
 the non-SSL port and working fine.

 Once I added port = 636 to that code, exact same response: socket closed

 Again, the LDAPS (636) port is open to the ColdFusion server.

 I'm thinking it's an SSL issue.  What steps need to be taken to ensure
 LDAPS communication works?

 Thanks!

 Dan

 On 12/10/2013 12:36 PM, Dan LeGate wrote:
 Here's the weirdness I'm experiencing...

 I have a Custom Tag we've been using for years that is called from most
 of our applications and authenticates them to a Sun LDAP server.

 We are moving to an Active Directory service, and when I attempt to do a
 bind against the new system, I get:

 An error has occurred while trying to execute query :servername.com:636;
 socket closed.

 However, if I run that SAME cfldap command in a .cfm file out in a
 regular web folder (i.e. not as a Custom Tag under the ColdFusion
 directory), it works fine!

 I have restarted the server to make sure any old Custom Tag code isn't
 somehow cached.  I have verified the SSL (636) port is open to the CF
 server.

 Any ideas on this one?  Very confused by this.

 Thanks for any feedback!

 Dan



 

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


Re: CFLDAP socket closed error against SSL

2013-12-10 Thread Dan LeGate

Okay, so I looked up how to and used the following command syntax:

C:\CFusion\runtime\jre\bin\keytool.exe -import -v -alias aliasname -file 
C:\temp\certfile.cer -keystore 
C:\CFusion\runtime\jre\lib\security\cacerts -storepass password

which imported successfully (verified with the list command).

Restarted server (in case that is required).  Still get socket closed. :-(

I imported *just* the certificate from the server I'm connecting to.  Do 
I need anything else in there?  Like any of the intermediate/chain or 
root certs as well?

Should I be importing some sort of combined certificate?  Or just 
individually import one at a time?

Any help is appreciated.

Thanks,

Dan

On 12/10/2013 2:53 PM, Russ Michaels wrote:
 Have u imported the ssl into the key store?

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 10 Dec 2013 20:52, Dan LeGated...@legeek.com  wrote:

 I take it back... exact same code EXCEPT my code in outside the Custom
 Tag folder had excluded the PORT attribute, so I assume it was going to
 the non-SSL port and working fine.

 Once I added port = 636 to that code, exact same response: socket closed

 Again, the LDAPS (636) port is open to the ColdFusion server.

 I'm thinking it's an SSL issue.  What steps need to be taken to ensure
 LDAPS communication works?

 Thanks!

 Dan

 On 12/10/2013 12:36 PM, Dan LeGate wrote:
 Here's the weirdness I'm experiencing...

 I have a Custom Tag we've been using for years that is called from most
 of our applications and authenticates them to a Sun LDAP server.

 We are moving to an Active Directory service, and when I attempt to do a
 bind against the new system, I get:

 An error has occurred while trying to execute query :servername.com:636;
 socket closed.

 However, if I run that SAME cfldap command in a .cfm file out in a
 regular web folder (i.e. not as a Custom Tag under the ColdFusion
 directory), it works fine!

 I have restarted the server to make sure any old Custom Tag code isn't
 somehow cached.  I have verified the SSL (636) port is open to the CF
 server.

 Any ideas on this one?  Very confused by this.

 Thanks for any feedback!

 Dan



 

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


Re: CFLDAP socket closed error against SSL

2013-12-10 Thread Dan LeGate

I've connected to the port using telnet and using a port scanner - both 
show the port is open.

This is an LDAPS connection (port 636), so a standard web browser, or 
curl, etc., won't really work as a client, as far as I know.

Dan

On 12/10/2013 4:23 PM, .jonah wrote:
 Can you connect to it via any other tools on the CF box? If you have
 another client that might help determine whether it's a server/network
 issue or a  CF/Java issue.

 On 12/10/13 4:19 PM, Dan LeGate wrote:
 Okay, so I looked up how to and used the following command syntax:

 C:\CFusion\runtime\jre\bin\keytool.exe -import -v -alias aliasname -file
 C:\temp\certfile.cer -keystore
 C:\CFusion\runtime\jre\lib\security\cacerts -storepass password

 which imported successfully (verified with the list command).

 Restarted server (in case that is required).  Still get socket closed. :-(

 I imported *just* the certificate from the server I'm connecting to.  Do
 I need anything else in there?  Like any of the intermediate/chain or
 root certs as well?

 Should I be importing some sort of combined certificate?  Or just
 individually import one at a time?

 Any help is appreciated.

 Thanks,

 Dan

 On 12/10/2013 2:53 PM, Russ Michaels wrote:
 Have u imported the ssl into the key store?

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 10 Dec 2013 20:52, Dan LeGated...@legeek.com   wrote:

 I take it back... exact same code EXCEPT my code in outside the Custom
 Tag folder had excluded the PORT attribute, so I assume it was going to
 the non-SSL port and working fine.

 Once I added port = 636 to that code, exact same response: socket closed

 Again, the LDAPS (636) port is open to the ColdFusion server.

 I'm thinking it's an SSL issue.  What steps need to be taken to ensure
 LDAPS communication works?

 Thanks!

 Dan

 On 12/10/2013 12:36 PM, Dan LeGate wrote:
 Here's the weirdness I'm experiencing...

 I have a Custom Tag we've been using for years that is called from most
 of our applications and authenticates them to a Sun LDAP server.

 We are moving to an Active Directory service, and when I attempt to do a
 bind against the new system, I get:

 An error has occurred while trying to execute query :servername.com:636;
 socket closed.

 However, if I run that SAME cfldap command in a .cfm file out in a
 regular web folder (i.e. not as a Custom Tag under the ColdFusion
 directory), it works fine!

 I have restarted the server to make sure any old Custom Tag code isn't
 somehow cached.  I have verified the SSL (636) port is open to the CF
 server.

 Any ideas on this one?  Very confused by this.

 Thanks for any feedback!

 Dan


 

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


Re: CFLDAP socket closed error against SSL

2013-12-10 Thread Dan LeGate

Used LDAP Browser and it fails with the following message:

CA certificate is not in the server certificate chain

So I've used the keytool to import the all three:

1 - Comodo CA
2 - the intermediate/root cert of the server
3 - the cert of the server itself.

Restarted and it still complains with the above message.

I'm confused as to which cert/s need to be imported using the keytool.

On 12/10/2013 4:37 PM, Mahcsig wrote:
 you can try ldap browser,
 http://www.ldapbrowser.com/download.htm?download=browser


 ~Mahcsig


 On Tue, Dec 10, 2013 at 4:32 PM, Dan LeGated...@legeek.com  wrote:

 I've connected to the port using telnet and using a port scanner - both
 show the port is open.

 This is an LDAPS connection (port 636), so a standard web browser, or
 curl, etc., won't really work as a client, as far as I know.

 Dan

 On 12/10/2013 4:23 PM, .jonah wrote:
 Can you connect to it via any other tools on the CF box? If you have
 another client that might help determine whether it's a server/network
 issue or a  CF/Java issue.

 On 12/10/13 4:19 PM, Dan LeGate wrote:
 Okay, so I looked up how to and used the following command syntax:

 C:\CFusion\runtime\jre\bin\keytool.exe -import -v -alias aliasname -file
 C:\temp\certfile.cer -keystore
 C:\CFusion\runtime\jre\lib\security\cacerts -storepass password

 which imported successfully (verified with the list command).

 Restarted server (in case that is required).  Still get socket closed.
 :-(
 I imported *just* the certificate from the server I'm connecting to.  Do
 I need anything else in there?  Like any of the intermediate/chain or
 root certs as well?

 Should I be importing some sort of combined certificate?  Or just
 individually import one at a time?

 Any help is appreciated.

 Thanks,

 Dan

 On 12/10/2013 2:53 PM, Russ Michaels wrote:
 Have u imported the ssl into the key store?

 Russ Michaels
 www.michaels.me.uk
 cfmldeveloper.com
 cflive.net
 cfsearch.com
 On 10 Dec 2013 20:52, Dan LeGated...@legeek.comwrote:

 I take it back... exact same code EXCEPT my code in outside the Custom
 Tag folder had excluded the PORT attribute, so I assume it was going
 to
 the non-SSL port and working fine.

 Once I added port = 636 to that code, exact same response: socket
 closed
 Again, the LDAPS (636) port is open to the ColdFusion server.

 I'm thinking it's an SSL issue.  What steps need to be taken to ensure
 LDAPS communication works?

 Thanks!

 Dan

 On 12/10/2013 12:36 PM, Dan LeGate wrote:
 Here's the weirdness I'm experiencing...

 I have a Custom Tag we've been using for years that is called from
 most
 of our applications and authenticates them to a Sun LDAP server.

 We are moving to an Active Directory service, and when I attempt to
 do a
 bind against the new system, I get:

 An error has occurred while trying to execute query :
 servername.com:636;
 socket closed.

 However, if I run that SAME cfldap command in a .cfm file out in a
 regular web folder (i.e. not as a Custom Tag under the ColdFusion
 directory), it works fine!

 I have restarted the server to make sure any old Custom Tag code
 isn't
 somehow cached.  I have verified the SSL (636) port is open to the CF
 server.

 Any ideas on this one?  Very confused by this.

 Thanks for any feedback!

 Dan



 

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


Re: CFLDAP Lookups vs Binds?

2013-11-19 Thread Dan LeGate

Anyone doing this?

On 11/7/2013 4:49 PM, Dan LeGate wrote:
 Am I performing my queries vs binds correctly?

 This is my lookup query:

 cfldap action = QUERY
   name   = GetInfo
   start  = ou=people,dc=ad,dc=institution,dc=edu
   filter = (|(samAccountName=dx7668))
   attributes = samAccountName,cn,sn,givenName
   scope  = SUBTREE
   server = server.ourplace.edu
   port   = 636
   username   = 
   password   = 
   maxrows= 10
   timeout= 1

 And this is the bind attempt... only thing different is no filter (and
 the name, of course)

 cfldap action = QUERY
   name   = Authenticate
   start  = ou=people,dc=ad,dc=institution,dc=edu
   attributes = samAccountName,cn,sn,givenName
   scope  = SUBTREE
   server = server.ourplace.edu
   port   = 636
   username   = 
   password   = 
   maxrows= 10
   timeout= 1

 Is that the proper way to do a bind vs a lookup?

 This is in CF7 (I know, I know).

 The reason I ask is that I'm seeing big differences in response time
 when I attempt a bind (much longer) vs. a lookup (very quick).

 Anyone seen anything like that, or know what might be causing the
 difference?

 Thanks!

 Dan

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


CFLDAP Lookups vs Binds?

2013-11-07 Thread Dan LeGate

Am I performing my queries vs binds correctly?

This is my lookup query:

cfldap action = QUERY
 name   = GetInfo
 start  = ou=people,dc=ad,dc=institution,dc=edu
 filter = (|(samAccountName=dx7668))
 attributes = samAccountName,cn,sn,givenName
 scope  = SUBTREE
 server = server.ourplace.edu
 port   = 636
 username   = 
 password   = 
 maxrows= 10
 timeout= 1

And this is the bind attempt... only thing different is no filter (and 
the name, of course)

cfldap action = QUERY
 name   = Authenticate
 start  = ou=people,dc=ad,dc=institution,dc=edu
 attributes = samAccountName,cn,sn,givenName
 scope  = SUBTREE
 server = server.ourplace.edu
 port   = 636
 username   = 
 password   = 
 maxrows= 10
 timeout= 1

Is that the proper way to do a bind vs a lookup?

This is in CF7 (I know, I know).

The reason I ask is that I'm seeing big differences in response time 
when I attempt a bind (much longer) vs. a lookup (very quick).

Anyone seen anything like that, or know what might be causing the 
difference?

Thanks!

Dan

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


Re: Hosting

2013-11-07 Thread Dan LeGate

Anyone have or know of a discount code for VivioTech checkout? :-)

On 10/21/2013 6:15 AM, Matt Quackenbush wrote:
 http://viviotech.net

 Hands down the best CFML host.
 On Oct 21, 2013 8:08 AM, Robert Harrisonrob...@austin-williams.com
 wrote:

 I know this has been asked 100 times before, but it looks like I need a
 new cf hosts that can host enterprise level sites.  Any recommendations?

 I've have gone to the archives but the HOF site is down.


 Robert Harrison
 Director of Interactive Services

 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788
 T 631.231.6600 X 119   F 631.434.7022
 http://www.austin-williams.com

 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austin_


 

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


Re: CFLDAP Fieldname Aliases?

2013-09-17 Thread Dan LeGate

Thanks Dave!

This worked great.

Dan

On 9/16/2013 12:22 PM, Dave Watts wrote:
 Is there and equivalent to:

 select LName as Last_Name

 for CFLDAP?

 If not, what other workarounds are there to make those query results
 have the names you want rather than the fieldnames from the LDAP server?

 cflooping over a QueryNew?  Seems onerous.
 Since CFLDAP returns a query object, you could use Query of Queries.

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

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

 

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


CFLDAP Fieldname Aliases?

2013-09-16 Thread Dan LeGate

Is there and equivalent to:

select LName as Last_Name

for CFLDAP?

If not, what other workarounds are there to make those query results 
have the names you want rather than the fieldnames from the LDAP server?

cflooping over a QueryNew?  Seems onerous.

Any advice/tips are appreciated.

Thanks!

Dan

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


Hosting - Clear Template Cache required

2013-02-25 Thread Dan LeGate

I've been with Newtek (formerly CrystalTech) a long time.

Ever since I moved to their CF10 plan, any edits I make to my CFMs 
require me to login to their cumbersome interface and issue a Clear 
Template Cache command.

They say this is required by ColdFusion, not them, and that the only way 
to not have this happen is to switch me back to a CF9 plan.  Ugh.

So my questions are:

1. Are they right?  Do ALL CF hosting companies require a Clear Template 
Cache feature for CF10?

2. Is there a programmatic way I can quickly clear the cache instead of 
relying on their interface?

3. What CF10 hosting company/ies do you recommend?

Thanks!

Dan

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


CF9 enterprise runs on 64-bit Red Hat 6?

2012-10-02 Thread Dan LeGate

I'm trying to find the equivalent ColdFusion 9 page to this CF10 page:

http://www.adobe.com/products/coldfusion-enterprise/tech-specs.html

trying to answer thee question Will ColdFusion 9 Enterprise run on 
64-bit Red Hat 6?

Any information is greatly appreciated!

Dan

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


Authenticate Linux DSN to Windows AD account?

2012-01-05 Thread Dan LeGate

Is it possible to authenticate a Linux Data Source in ColdFusion with a 
Windows Active Directory account? (i.e. login with ad\username)

Or do we need to create a SQL Server account for ColdFusion to use?

This is RedHat Linux and ColdFusion 7 (yes, still 7).

Thanks,

Dan

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


Re: Change JRun's 404 message?

2010-03-19 Thread Dan LeGate

Got it!

Add:

error-page
exception-typejava.io.FileNotFoundException/exception-type
location/404handler.htm/location
/error-page

to:

/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/web.xml

and restart services.

On 3/18/2010 5:48 PM, Dave Watts wrote:

 Any help/advice on getting JRun NOT to respond, and get my custom 404s
 working (which they do for all other requests) is much appreciated.
  
 Have you looked in the JRun documentation available online?



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331886
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Change JRun's 404 message?

2010-03-18 Thread Dan LeGate

Hmm.. it didn't work.

I found the jsp mapping, chose Edit and selected Verify that file exists.

Still shows the JRun error.  Restarted the service and even the server 
to see if that was required to activate it.  Nope - still get standard 
JRun 404 message.

I don't mind if this breaks things.  Currently this is a server 
serving one purpose - to take redirects from other systems while they're 
down.  This is temporary, so when done, I will undo the changes and 
get it back up and running as a (dev) CF server.

Should I also remove (or modify??) the executable path of 
C:\JRun4\lib\wsconfig\jrun_iis6.dll?

Any help/advice on getting JRun NOT to respond, and get my custom 404s 
working (which they do for all other requests) is much appreciated.

Thanks!

On 3/17/2010 9:33 PM, Dave Watts wrote:

 In your IIS settings, there should be an option for the ISAPI filter or
 extension mapping called Verify that file exists.
  
 This will break various things in CF, however - charting, CFIMAGE,
 RDS, Flash Remoting.

 Will just enabling the Verify that file exists setting in IIS break things
 or were you just referring to using a 404.cfm file?
  
 Yes, just enabling the verify that file exists option will break
 these things, because IIS will then throw 404s for specific legitimate
 URL patterns that CF recognizes.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331863
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Change JRun's 404 message?

2010-03-17 Thread Dan LeGate

Hi,

Anyone know how to change ColdFusion 8's (on Windows/IIS) default 404 
message that JRun spits out?

When someone requests foo.jsp (or ANY other *.jsp) and it doesn't exist, 
I'd love to change that message - better yet, I'd love to redirect it to 
a single template that will respond to all server 404's (JRun and IIS).

Any help/advice is appreciated.

Thanks!

Dan

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331818
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


ACT! Database to GoDaddy Hosting

2009-08-30 Thread Dan LeGate

I know this is a wacky question, but I have a client who's running a
home business using ACT! Contact Manager (SQL Server DB in background)
and wants to get his data up onto his ColdFusion enabled GoDaddy site.

Before I tell him that's crazy and to be realistic about the data, I
wanted to ask... Is something like this even possible?  Can a hosted web
service contact a local database?  Particularly one that's in someone's
home via DSL?

If not directly would an indirect method (i.e. WDDX, etc.) be viable?
I'd certainly like to help him out, but I want to be sure I know where
to draw the line here.

Any help/insight/information is appreciated.

Thanks!

Dan


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325855
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Generating appopriate transaction IDs

2009-06-05 Thread Dan LeGate

Any aversion to using an auto-increment integer field (if one exists, 
that is)?  I basically use this as a transaction ID in one of my apps.

Fawzi Amadu wrote:
 I am building a electronic advertisement site and I need to generate 
 transaction IDs.
 Since the page will hopefully be a high volume site, I am wondering the best 
 form of generating transaction IDs.

 I was considering rand function, but I read that the randrange has an upper 
 recommended upper limit of 100,000,000.

 TIA 

   

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323215
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Using Ajax to populate checkmarks?

2009-04-17 Thread Dan LeGate

Hi all,

We have an application we're building that will allow users to pick a
template user to pre-populate some checkboxes based on that user's
privileges, but not on initial load of the form.  Initially ALL 
checkboxes will be unchecked when the page loads, however, based on this 
lookup, it will check certain boxes without having to reload the form. 
User's will be selecting a template from a select menu, and that would 
trigger the lookup.

Has anyone done anything like that, where, based on a database lookup,
you are able to check certain checkboxes on the page AFTER THE PAGE 
HAS LOADED? (i.e. this is an Ajax lookup)

What did you use?  Or what *would* you recommend we use.  Would JQuery
lend itself nicely to this?  We're open to anything.  Have any example code?

We'd also be calling it from within a Fusebox 5.5 (xml approach) app, so
any hints/suggestions there would be greatly appreciated.

Also, we are on ColdFusion 7, so can't use the new CFAJAX stuff.

Any help is appreciated.

Thanks!

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321766
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Anyone using Sentrigo Hedgehog?

2009-01-15 Thread Dan LeGate
Recently saw a great webinar about Sentrigo Hedgehog, which is software
that sits on your database to monitor hack attempts, etc.

Is anyone using this at your company?

Saved webinar entitled Database Security for Academic Institutions can
be watched here:

https://www2.gotomeeting.com/register/182443922

asks for an email address and registration to watch.  Fast forward to
about the 29 minute mark to skip all the basic info about security and
breaches and see how their product protects.

Pretty cool.  We're considering it, but would love to hear what others
may have experienced with it.

Dan



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317997
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


INSERT INTO from another table

2008-12-04 Thread Dan LeGate
Was just reading how to do an INSERT INTO from another table in SQL 
Server 2000 (like SELECT INTO, but without creating a new table) like this:

INSERT INTO tablename (the table you want to copy into)
SELECT * from tablename (the table you want to copy from)
WHERE Field = (some condition)

and wanted to know if I could add a field (like a date/time stamp) of 
when this data was inserted as part the same query?

If not, is there an equivalent in CF7 for result_name.IDENTITYCOL type 
of variable after an insert?  Something at the Java level perhaps?

My ultimate goal is to backup a row of data from one table to another, 
and also add a datestamp of when it was backed up to that table.  I'd 
like to have an extra field in the target backup table that can hold 
the datestamp, but it appears INSERT INTO won't work unless the target 
table has the exact same fields (and no extra fields - not sure why it 
cares about that).

Is there a better way to do this?  I was hoping to keep the copy in the 
database instead of selecting fields into CF variables, and then 
inserting those, but I'll do that if necessary.

Thanks,

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316238
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


JBoss/CF8 only listening on 127.0.0.1?

2008-11-18 Thread Dan LeGate
Hi all,

We got our first test instance of JBoss/CF8 installed, however, it can't 
be accessed except at the server itself.

When I do a netstat -an, here's what I see:

tcp0  0 127.0.0.1:80
0.0.0.0:*   LISTEN

but no listener on the public IP.  I found this thread:

https://cloud.prod.atl2.jboss.com/jira/browse/JBAS-6118

which (since you have to allow an SSL exception) states:

If the host name is listed in an entry of the /etc/hosts file as
127.0.0.1. For example as follows (where vm9-srv01 is the hostname):
127.0.0.1 localhost.localdomain localhost vm9-srv01
Then the EJB3 InvokerLocator server socket binds only to 127.0.0.1
regardless of what the jboss.bind.address is.
That means clients from other machines will not be able to make EJB3
calls to the server.
This issue was also discussed here for JBoss 4.2.1.GA:
http://www.jboss.com/index.html?module=bbop=viewtopicp=4098486#4098486

So we modified /etc/hosts (on RedHat) like so:

127.0.0.1   localhost.localdomain localhost 
servername.company.domain servername
143.145.129.12  servername.company.domain servername

restarted JBoss but it still only listens at 127.0.0.1.

Any one else run into (or solve?) this one?

Thanks,

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315451
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: JBoss/CF8 only listening on 127.0.0.1?

2008-11-18 Thread Dan LeGate
Doing a little digging I found that JBoss, by default, listens only on 
127.0.0.1.  You can send it a -b 0.0.0.0 switch on startup and it will 
for connections on all IP addresses of the machine.

Now I just need to tie it to Apache... more digging.  :-)

Dan LeGate wrote:
 Hi all,

 We got our first test instance of JBoss/CF8 installed, however, it can't 
 be accessed except at the server itself.

 When I do a netstat -an, here's what I see:

 tcp0  0 127.0.0.1:80
 0.0.0.0:*   LISTEN

 but no listener on the public IP.  I found this thread:

 https://cloud.prod.atl2.jboss.com/jira/browse/JBAS-6118

 which (since you have to allow an SSL exception) states:

 If the host name is listed in an entry of the /etc/hosts file as
 127.0.0.1. For example as follows (where vm9-srv01 is the hostname):
 127.0.0.1 localhost.localdomain localhost vm9-srv01
 Then the EJB3 InvokerLocator server socket binds only to 127.0.0.1
 regardless of what the jboss.bind.address is.
 That means clients from other machines will not be able to make EJB3
 calls to the server.
 This issue was also discussed here for JBoss 4.2.1.GA:
 http://www.jboss.com/index.html?module=bbop=viewtopicp=4098486#4098486

 So we modified /etc/hosts (on RedHat) like so:

 127.0.0.1   localhost.localdomain localhost 
 servername.company.domain servername
 143.145.129.12  servername.company.domain servername

 restarted JBoss but it still only listens at 127.0.0.1.

 Any one else run into (or solve?) this one?

 Thanks,

 Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315494
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


JBoss / CF8 installation/configuration guide?

2008-11-07 Thread Dan LeGate
Is there a JBoss  CF8 install / configuration guide?  Or any good blogs 
on the subject of properly configuring/tuning this kind of environment?

We're about to bring this up in a test environment, and would like to 
know the *proper* way to set this up, and not just follow all defaults.

Any advice is appreciated.

Thanks!

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314970
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: JBoss / CF8 installation/configuration guide?

2008-11-07 Thread Dan LeGate
Just a quick follow-up, I noticed this site:

http://livedocs.adobe.com/coldfusion/8/htmldocs/installj2ee_15.html

says JBoss 4.0.5 is supported, however the latest stable release appears 
to be 4.2.3.GA.

Should we go with 4.0.5, or get the latest and greatest of version 4?

Thanks again,

Dan

Dan LeGate wrote:
 Is there a JBoss  CF8 install / configuration guide?  Or any good blogs 
 on the subject of properly configuring/tuning this kind of environment?

 We're about to bring this up in a test environment, and would like to 
 know the *proper* way to set this up, and not just follow all defaults.

 Any advice is appreciated.

 Thanks!

 Dan

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314972
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: JBoss / CF8 installation/configuration guide?

2008-11-07 Thread Dan LeGate
Okay, so I'm answering most of my own questions, and coming up with 
more.  I found:

http://www.adobe.com/products/coldfusion/pdfs/cf8_systemsupportmatrix.pdf

which is a more updated list of supported versions/platforms, etc. so I 
got that answer.

Now I'm running into a problem where after installing CF and expanding 
my cfusion.war file, there is no application.xml to edit as instructed 
in the docs.

Anyone seen this happen?

Dan

Dan LeGate wrote:
 Just a quick follow-up, I noticed this site:

 http://livedocs.adobe.com/coldfusion/8/htmldocs/installj2ee_15.html

 says JBoss 4.0.5 is supported, however the latest stable release appears 
 to be 4.2.3.GA.

 Should we go with 4.0.5, or get the latest and greatest of version 4?

 Thanks again,

 Dan

 Dan LeGate wrote:
   
 Is there a JBoss  CF8 install / configuration guide?  Or any good blogs 
 on the subject of properly configuring/tuning this kind of environment?

 We're about to bring this up in a test environment, and would like to 
 know the *proper* way to set this up, and not just follow all defaults.

 Any advice is appreciated.

 Thanks!

 Dan
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314982
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Did OpenBD Replace the Free BlueDragon Server?

2008-11-05 Thread Dan LeGate
I no longer see the free BlueDragon Server on New Atlanta's site.  Did 
Open BlueDragon basically replace it?  Certainly seems like a different 
beast.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314865
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfexchange getting tomorrow's schedule from Calendar?

2008-10-30 Thread Dan LeGate
Has anyone successfully built an app/util that will grab a particular day's
schedule from an Exchange Calendar?

Would love to set something up where I can email myself tomorrow's schedule
from my Outlook Calendar.

Anyone doing anything list this?

Thanks!

keywords: cfexchangecalendar, cfexchangemail, cfexchangeconnection,
cfexchangetask, cfexchangecontact, cfexchangefilter


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314637
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cflooping over cfdbinfo giving me funky results

2008-10-22 Thread Dan LeGate
When I use the code below to try to see information about both 
Datasource1 and Datasource2, it always ONLY shows me info on the FIRST 
data source in the list (Datasource1).  Is this a looping logic problem, 
or something to do with running cfdbinfo too quickly over and over?

Even if I reverse the list and put Datasource2 first, it only shows me 
info on Datasource2, and repeats Datasource2's information when 
Datasource1 is ThisDSN.

cfloop index=ThisDSN list=Datasource1,Datasource2
DSN = cfoutputstrong#ThisDSN#/strong/cfoutputbr
cfloop index=ThisType list=dbnames|tables|version|procedures 
delimiters=|
Type = cfoutputstrong#ThisType#/strong/cfoutput
cfdbinfo datasource=#ThisDSN# name=result type=#ThisType#
cfdump var=#result#
/cfloop
HR
/cfloop

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314275
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFLDAP different number of results on same search?

2008-10-09 Thread Dan LeGate
I have a CFLDAP query that seems to be giving me a different number of 
results every time I search for the same text with the same filter, 
attributes, etc.

Has anyone seen this behavior?  Here's the code:

cfldap action=QUERY
  name=GetResults
  attributes=#OfficialAttribs#
  filter=(#searchfield#=#ThisSearch#)
  start=dc=ourdomain,dc=edu
  scope=SUBTREE
  TIMEOUT=500
  port=#port#
  server=#LDAPServer#
  username=uid=#LookupID#,ou=People,dc=ourdomain,dc=edu
  password=#LookupPass#

This is a Sun LDAP server (v5.2).

When I run queries with the command line tools I get the same results 
every time.  I get 433 results every time w/the built-in and 
command-line tools.  But with CFLDAP I get 100 on one attempt, then 92, 
on the next, and so on.

REALLY strange.  I have verified that the values of the variables above 
are identical between requests.

Anyone seen this?

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313694
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFLDAP different number of results on same search?

2008-10-09 Thread Dan LeGate
Yes, I have noticed that too!  The more attributes I request, the less 
records I get back, usually.

The queries return in just a second or two, so I'm amazed that this is a 
timeout issue.  I had it set to 500, which I thought was seconds, 
however when I changed it to 5,000 I got almost 300 records (out of the 
433 total), and then I upped it to 150,000 and now I get all the 
results!  Amazing!  Is the timeout attribute in milliseconds, or 
seconds?  All the docs I've read says seconds.

Dan

Aaron Rouse wrote:
 I have this happen to me quite often and cranking the time out only helps to
 a point.  In my case I figured out what the max I normally could get is and
 then subtracted from that to be on the safe side.  Then I run multiple
 queries to get the data.  I have noticed that the amount of attributes also
 effects how many you get back.

 On Thu, Oct 9, 2008 at 6:16 PM, Barney Boisvert [EMAIL PROTECTED] wrote:

   
 I've seen that behaviour when the query times out.  It just returns
 whatever it's collected in within the timeout period and gives up.
 Only solution I found was to crank up the timeout value until that
 didn't happen anymore and hope for the best.

 cheers,
 barneyb

 On Thu, Oct 9, 2008 at 4:13 PM, Dan LeGate [EMAIL PROTECTED] wrote:
 
 I have a CFLDAP query that seems to be giving me a different number of
 results every time I search for the same text with the same filter,
 attributes, etc.

 Has anyone seen this behavior?  Here's the code:

cfldap action=QUERY
  name=GetResults
  attributes=#OfficialAttribs#
  filter=(#searchfield#=#ThisSearch#)
  start=dc=ourdomain,dc=edu
  scope=SUBTREE
  TIMEOUT=500
  port=#port#
  server=#LDAPServer#
  username=uid=#LookupID#,ou=People,dc=ourdomain,dc=edu
  password=#LookupPass#

 This is a Sun LDAP server (v5.2).

 When I run queries with the command line tools I get the same results
 every time.  I get 433 results every time w/the built-in and
 command-line tools.  But with CFLDAP I get 100 on one attempt, then 92,
 on the next, and so on.

 REALLY strange.  I have verified that the values of the variables above
 are identical between requests.

 Anyone seen this?

 Dan

   
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 http://www.barneyb.com/


 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313697
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFLDAP different number of results on same search?

2008-10-09 Thread Dan LeGate
Okay, never mind.  I was reading the Version 6 docs here (first one that 
came up on a Google search for me):

http://www.adobe.com/livedocs/coldfusion/6/CFML_Reference/Tags-pt165.htm

but the version 7 and 8 docs clearly state that it's milliseconds.  
Explains a lot.

http://www.adobe.com/livedocs/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm

http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_j-l_03.html

Dan

Dan LeGate wrote:
 Yes, I have noticed that too!  The more attributes I request, the less 
 records I get back, usually.

 The queries return in just a second or two, so I'm amazed that this is 
 a timeout issue.  I had it set to 500, which I thought was seconds, 
 however when I changed it to 5,000 I got almost 300 records (out of 
 the 433 total), and then I upped it to 150,000 and now I get all the 
 results!  Amazing!  Is the timeout attribute in milliseconds, or 
 seconds?  All the docs I've read says seconds.

 Dan

 Aaron Rouse wrote:
 I have this happen to me quite often and cranking the time out only 
 helps to
 a point.  In my case I figured out what the max I normally could get 
 is and
 then subtracted from that to be on the safe side.  Then I run multiple
 queries to get the data.  I have noticed that the amount of 
 attributes also
 effects how many you get back.

 On Thu, Oct 9, 2008 at 6:16 PM, Barney Boisvert [EMAIL PROTECTED] 
 wrote:

  
 I've seen that behaviour when the query times out.  It just returns
 whatever it's collected in within the timeout period and gives up.
 Only solution I found was to crank up the timeout value until that
 didn't happen anymore and hope for the best.

 cheers,
 barneyb

 On Thu, Oct 9, 2008 at 4:13 PM, Dan LeGate [EMAIL PROTECTED] wrote:

 I have a CFLDAP query that seems to be giving me a different number of
 results every time I search for the same text with the same filter,
 attributes, etc.

 Has anyone seen this behavior?  Here's the code:

cfldap action=QUERY
  name=GetResults
  attributes=#OfficialAttribs#
  filter=(#searchfield#=#ThisSearch#)
  start=dc=ourdomain,dc=edu
  scope=SUBTREE
  TIMEOUT=500
  port=#port#
  server=#LDAPServer#
  username=uid=#LookupID#,ou=People,dc=ourdomain,dc=edu
  password=#LookupPass#

 This is a Sun LDAP server (v5.2).

 When I run queries with the command line tools I get the same results
 every time.  I get 433 results every time w/the built-in and
 command-line tools.  But with CFLDAP I get 100 on one attempt, then 
 92,
 on the next, and so on.

 REALLY strange.  I have verified that the values of the variables 
 above
 are identical between requests.

 Anyone seen this?

 Dan

   
 -- 
 Barney Boisvert
 [EMAIL PROTECTED]
 http://www.barneyb.com/


 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313698
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Period at end of domain name causes SSL warnings

2008-09-16 Thread Dan LeGate
An interesting situation arose when someone sent an email with our 
server URL that included a period (dot) at the end of the domain name 
like this:

http://www.servername.edu.

and they actually included the period as part of the link.  It throws a 
nasty SSL warning.

Strangely, it does not say server not found.  Instead, it goes to the 
server, but when the SSL portion of the page loads, a big fat SSL 
warning shows up because www.servername.edu. does NOT match the SSL 
name of www.servername.edu

Even more strange, utilities like ping, nslookup and tracert all allow 
this convention as well, without throwing not found errors.

Interestingly Google Chrome does NOT complain about a mismatched SSL name.

Anyway, anyone seen this?  Can anyone shed some light as to why a period 
at the end of a hostname is acceptable?

I tried searching Google for [(dot OR period) end of (domain OR server) 
name] but it didn't come up with much.

Any insight is appreciated.

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Integration with Kuali Enterprise Workflow?

2008-08-22 Thread Dan LeGate
Has anyone done any integration with Kuali Enterprise Workflow?

http://kew.kuali.org/

Looks like a pretty cool open-source workflow platform.  Just curious if 
anyone has worked with it, or integrated any CF apps with it.

Thanks,

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Re: Poll: favorite Wireframing tool?

2008-08-07 Thread Dan LeGate
That's pretty cool, but I was looking more for a text-only solution (ala 
FLiP recommendation), and free too. :-)

Anyone else have one/s they like?

Tom Chiverton wrote:
 On Wednesday 06 Aug 2008, Dan LeGate wrote:
   
 What is your wireframe tool of choice, and why?
 

 For GUIs ? Balsamiq.

   
 Is it free?
 

 No, but there is a no-save demo.

   
 Where can I download/evaluate it?
 

 Ask google :-)

   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Poll: favorite Wireframing tool?

2008-08-06 Thread Dan LeGate
For those of you who use FLiP for your projects (or any other
methodology that uses Wireframes)...

What is your wireframe tool of choice, and why?

Is it free?

Where can I download/evaluate it?

Thanks!


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


WireFrame Viewer/Editor

2008-07-25 Thread Dan LeGate
Just downloaded Kevin Roche's WireFrame Viewer/Editor from 
http://internap.dl.sourceforge.net/sourceforge/wireframetool/Wireframe_5_01.zip 
and am having a few problems.

I'm on Linux, so several references in the files go to lowercase 
filenames, whereas the files themselves are mixed case: 
../customtags/LessWhiteSpace.cfm is one, 
.../controller/wireframe/fbx_Settings.cfm is another (both referenced as 
all lowercase in the code).

These were fairly easy to fix, however now I'm getting:

Invalid list index 0.
In function ListSetAt(list, index [, delimiters]), the value of index, 
0, is not a valid as the first argument (this list has 4 elements). 
Valid indexes are in the range 1 through the number of elements in the list.
The error occurred in 
/var/www/html/wireframe/model/mWireframe/act_createpage.cfm: line 54

which is a little more daunting.  I was poking around sourceforge to see 
how to contact the author/s, but not having any luck, and the forum 
posts end in 2007, so I doubt anyone is watching those.

Anyone know how I can get hold of them for help?  Or whether there's a 
newer version of this software elsewhere out there?

Thanks,

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Re: Stopping Vacation Messages on BCC'd emails

2008-07-05 Thread Dan LeGate
What email server are you using Kamru?  Is that a custom field you built 
into your email server, or a built-in one?

Thanks!

Dan

Kamru Miah wrote:
 In my company we add 'cfmailparam name=Precedence value=bulk' after the 
 cfmail .. tag and the email server is 'told' to avoid sending any vacation 
 messages ...

   
 Is there a way to get my mail server NOT to send a vacation message when 
 I'm BCC'd on an email?  Is there some sort of email header I can inject 
 with CFMAILPARAM?  (We use Exchange here, but hopefully there is 
 something more generic in the protocol?)

 I have a bunch of forms that post information, and many of them BCC me 
 in the background.  When I setup a vacation message, all people who use 
 this form get my vacation messages, and are very confused.

 Any way to stop this, short of removing my vacation message?  (Yes, I 
 know some people are vehemently opposed to using vacation messages - 
 let's not go down that road here)

 Thanks,

 Dan 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Stopping Vacation Messages on BCC'd emails

2008-07-01 Thread Dan LeGate
Is there a way to get my mail server NOT to send a vacation message when 
I'm BCC'd on an email?  Is there some sort of email header I can inject 
with CFMAILPARAM?  (We use Exchange here, but hopefully there is 
something more generic in the protocol?)

I have a bunch of forms that post information, and many of them BCC me 
in the background.  When I setup a vacation message, all people who use 
this form get my vacation messages, and are very confused.

Any way to stop this, short of removing my vacation message?  (Yes, I 
know some people are vehemently opposed to using vacation messages - 
let's not go down that road here)

Thanks,

Dan

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

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


Any Disadvantages to running CF atop J2EE?

2008-06-01 Thread Dan LeGate
I've read up about a lot of advantages of having CF run on top of a J2EE
application server, a couple of which are application isolation and
scalability with clustering, but I was wondering if there are any
distinct disadvantages?

Are there any particular advantages to picking a specific J2EE platform
to run it on?  For example, is it best on a full blown JRun J2EE?
Especially since the standalone version runs on a version of JRun?

How many folks have gone this route?  Anybody had any regrets doing it?
Any distinct differences that require workarounds, or a new way of
thinking about/designing your apps?

We're considering it and I want to be sure I hear all sides, not just
the sales pitch. :-)  We'd be running CF8 Enterprise atop J2EE, if
that makes a difference.

Any information / advice is appreciated.

Thanks!

Dan


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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