Generate Random Colors

2009-01-30 Thread Charles E. Heizer

Hello,
How would I go about generating random colors for my charts?

Thanks,
-Charles

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


Coldfusion roadmap

2006-12-12 Thread Charles E. Heizer
Hello,
I was wondering if there is a roadmap for Coldfusion like new versions
etc...

I thought I heard that it was EOL since Adobe bought it but I can't find any
info on that.

Thanks,

-Charles


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


Re: Coldfusion roadmap

2006-12-12 Thread Charles E. Heizer
Cool, thanks for the info.



On 12/12/06 10:17 AM, Jacob Munson [EMAIL PROTECTED] wrote:

 Hello,
 I was wondering if there is a roadmap for Coldfusion like new versions
 etc...
 
 I thought I heard that it was EOL since Adobe bought it but I can't find any
 info on that.
 
 It's definitely not EOL, here's the preview site for CF 8 (aka Scropio):
 http://labs.adobe.com/wiki/index.php/Scorpio
 


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

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


LDAP Weidness

2006-10-27 Thread Charles E. Heizer
Hello,
I'm doing a ldap query and I'm running into a weird issue. If I use the FQDN
ldap.llnl.gov it does not work (Connection to LDAP Server failed). But,
if I use the IP it works fine. Now, I know cfldap can work with using a FQDN
since I'm connecting to another directory using the name not the IP.

Has anyone seen this and if so how did you fix it?

Thanks,
- charles



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


XML Question...

2006-10-25 Thread Charles E. Heizer
Hello,
So I'm playing with creating a xml file but I'm not sure what I'm doing
wrong. The problem is that it's only displaying dn and it's text.

Thanks,
- Charles




cfset mydoc = XmlNew()
cfset mydoc.xmlRoot = XmlElemNew(mydoc,root)
cfset i = 1
   
cfset mydoc.root.XmlChildren[i] = XmlElemNew(mydoc,objectclass)
  

cfset mydoc.root.XmlChildren[i].XmlText = objectclass_text

cfset mydoc.root.XmlChildren[i] = XmlElemNew(mydoc,dn)

cfset mydoc.root.XmlChildren[i].XmlText = dn_text

cfoutput#MyDoc#/cfoutput


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: XML Question...

2006-10-25 Thread Charles E. Heizer
What is cfxml?


On 10/25/06 10:15 AM, Rob Wilkerson [EMAIL PROTECTED] wrote:

 Just out of curiosity, what about using cfxml?  It's a much more
 readable method of creating an XML doc, IMO.
 
 On 10/25/06, Charles E. Heizer [EMAIL PROTECTED] wrote:
 Hello,
 So I'm playing with creating a xml file but I'm not sure what I'm doing
 wrong. The problem is that it's only displaying dn and it's text.
 
 Thanks,
 - Charles
 
 
 
 
 cfset mydoc = XmlNew()
 cfset mydoc.xmlRoot = XmlElemNew(mydoc,root)
 cfset i = 1
 
 cfset mydoc.root.XmlChildren[i] = XmlElemNew(mydoc,objectclass)
 
 
 cfset mydoc.root.XmlChildren[i].XmlText = objectclass_text
 
 cfset mydoc.root.XmlChildren[i] = XmlElemNew(mydoc,dn)
 
 cfset mydoc.root.XmlChildren[i].XmlText = dn_text
 
 cfoutput#MyDoc#/cfoutput
 
 
 
 
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: XML Question...

2006-10-25 Thread Charles E. Heizer
Thanks!

Your right this is a lot easier...


On 10/25/06 11:29 AM, Rob Wilkerson [EMAIL PROTECTED] wrote:

 On 10/25/06, Charles E. Heizer [EMAIL PROTECTED] wrote:
 What is cfxml?
 
 Just another CFML tag.
 
 http://www.cfquickdocs.com/?sourceid=cfQDSearch1.02getDoc=cfxml
 
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


WebServices Question

2006-10-25 Thread Charles E. Heizer
Hello,
I have created a web service and it's been published and I can call it just
fine using coldfusion. My question is, I have a colleague who is using .Net
to create a web service and when I look at the WSDL it's nicely formatted
and with the different ways to call it. I also has an exmaple on how to call
it using a http get.

So my question is really two, is there a way to have cf display a nicely
formatted WSDL page and in my current web service how can I call it using
http get command?

Thanks,
- Charles



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: WebServices Question

2006-10-25 Thread Charles E. Heizer
So yes, it's a cfc called qAD.cfc. So if I run qAD.cfc?wsdl that works fine.
So is there a way to do a http get request for my function called getDN
that's in my WebService?

Thanks,
- Charles


On 10/25/06 12:55 PM, Alan Rother [EMAIL PROTECTED] wrote:

 First off, did you create it using a CFC?
 
 Assuming you did and you set the access to remote
 
 All you need to do is this:
 
 http://www.MYWEBSITEURLHERE.com/MYCFCFOLDERHERE/MYCFCNAME.cfc?wsdl
 
 That will generate the WSDL


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: WebService issue...

2006-10-24 Thread Charles E. Heizer
Thanks,
I did find this on the livedocs and this fixed it...

When you get that error about can't be found, its becuase coldFusion
caches the WSDL for that webservice. You have to go into the CF
administriaon  Web Services You'll see your webservice there... click
the refresh button, then all should work fine.


On 10/24/06 2:44 PM, Nathan Strutz [EMAIL PROTECTED] wrote:

 It's a little bit hard to say for sure, but, to try the simple stuff first,
 make sure the cffunction you are calling has access=remote on it.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Query Multiple Datasources...

2006-05-23 Thread Charles E. Heizer
Hello,
I was wondering if and how I could query multiple datasources,  
essentially a simple join on two different datasources? I have tables  
in Oracle and MySQL databases and I want to query info from both for  
a return set.


Thanks,
- Charles



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241235
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Query Multiple Datasources...

2006-05-23 Thread Charles E. Heizer
Thanks,
I was afraid that I was going to have to do a QofQ. I guess I'll  
start work on that solution.

Thanks again,
- Charles



On May 23, 2006, at 10:47 AM, Ken Ferguson wrote:

 But, Charles wants to query multiple DATASOURCES, not just multiple
 databases. I think the best way for you to get this done Charles is  
 with
 a QofQ, as Charlie G. suggested. You'll need to make each of your
 queries and then use a query to join the recordsets.

 --Ferg

 Andy Matthews wrote:
 You can query multiple databases as long as you have permissions  
 on both. In
 mySQL you prepend the table name with the database name like so:

 SELECT d1_t1.listing_id, d1_t1.listing_mlsnumber,d1_t1.listing_type,
 d2_t4.pLisPric
 FROM databasename_01.table_01 d1_t1
 INNER JOIN databasename_02.table_04 d2_t4
  ON d2_t4.pMlsNum = d1_t1.listing_mlsnumber

 !//--
 andy matthews
 web developer
 certified advanced coldfusion programmer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-

 -Original Message-
 From: Charles E. Heizer [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, May 23, 2006 12:13 PM
 To: CF-Talk
 Subject: Query Multiple Datasources...


 Hello,
 I was wondering if and how I could query multiple datasources,
 essentially a simple join on two different datasources? I have tables
 in Oracle and MySQL databases and I want to query info from both for
 a return set.


 Thanks,
 - Charles







 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241243
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
Hello,
I have been working on an internal site  and I used the tabs provided  
with the cfform type flash. What I want to know is, is there any way  
to make the tabs work using xml? The flash stuff takes to long to  
load and my users are now complaining about the performance.

Thanks,
- Charles

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240913
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
This is really cool, thanks!

Do I have to import these tags using the CFMX admin web page?

Thanks,
- Charles

On May 18, 2006, at 11:04 AM, Massimo Foti wrote:

 I have been working on an internal site  and I used the tabs provided
 with the cfform type flash. What I want to know is, is there any way
 to make the tabs work using xml? The flash stuff takes to long to
 load and my users are now complaining about the performance.

 You could try this out:
 http://www.olimpo.ch/tmt/tag/tabs/

 
 Massimo Foti
 Tools for ColdFusion and Dreamweaver developers:
 http://www.massimocorner.com
 


 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240916
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Create Tabs using XML vs Flash...

2006-05-18 Thread Charles E. Heizer
Thanks!


On May 18, 2006, at 11:55 AM, Massimo Foti wrote:

 Do I have to import these tags using the CFMX admin web page?

 No. The doc and the samples use cfimport, but you can use  
 cfmodule or
 cf_ as well. Download the zip and look at the source.

 
 Massimo Foti
 Tools for ColdFusion and Dreamweaver developers:
 http://www.massimocorner.com
 




 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240922
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: Oracle Select Help needed...

2006-02-15 Thread Charles E. Heizer
Hello,
I've hit a snag and I'm not sure how to get past it. I have a table  
with ldap paths in it. The column is called compdn and I'm trying to  
find all of the records which have the phrase THE-LAB in it. The  
problem I' having is that it's returning 0 records found when I know  
there are several in there.

Here is my query...

cfquery datasource=myDBODBC name=q_Systems
SELECT upper(COMPDN) as DN
FROM ADINFO
WHERE COMPDN like '%THE-LAB%'
/cfquery

Here is an example record...
OU=Computers,OU=FOO,DC=the-lab,DC=llnl,DC=gov


Can someone please explain to me why this does not work?

Thanks,
- Charles

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232391
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Oracle Select Help needed...

2006-02-15 Thread Charles E. Heizer
Sorry,
Nevermind... I figured it out...

It should read ...

SELECTCOMPDN as DN
FROM ADINFO
WHERE upper(COMPDN) like '%THE-LAB%'


On Feb 15, 2006, at 3:51 PM, Charles E. Heizer wrote:

 Hello,
 I've hit a snag and I'm not sure how to get past it. I have a table
 with ldap paths in it. The column is called compdn and I'm trying to
 find all of the records which have the phrase THE-LAB in it. The
 problem I' having is that it's returning 0 records found when I know
 there are several in there.

 Here is my query...

 cfquery datasource=myDBODBC name=q_Systems
   SELECT upper(COMPDN) as DN
   FROM ADINFO
   WHERE COMPDN like '%THE-LAB%'
 /cfquery

 Here is an example record...
 OU=Computers,OU=FOO,DC=the-lab,DC=llnl,DC=gov


 Can someone please explain to me why this does not work?

 Thanks,
 - Charles

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232392
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFCHART Questions

2006-02-14 Thread Charles E. Heizer
Hello,
In all of my coldfusion experience I have really never played with  
cfchart, so please excuse my beginner questions.

Here is an example of a chart I did ...

cfchart format=flash show3D=yes  showlegend=yes title=Client  
OS Distribution showMarkers=yes 
   cfchartseries type=Bar seriescolor=##3300FF
cfoutput
  cfchartdata item=Mac Clients 
value=#two.client_macintosh#
  cfchartdata item=Windows Clients 
value=#two.client_windows#
  cfchartdata item=Linux Clients value=#two.client_redhat#
 /cfoutput
   /cfchartseries
/cfchart

What I want to know is, how do I set the color for each of the   
cfchartdata entries?


Thanks,
- Charles

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232296
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cfdocument and images

2006-02-09 Thread Charles E. Heizer
Hello,
I'm trying to create a flash paper report and I'm trying to embbed a  
jpeg in it and it won't display. Is this not supported?

Thanks,
- charles

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231801
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX 7 Linux and JVM Questions...

2006-02-01 Thread Charles E. Heizer
Hello,
I have seen talk about using a different JVM than what was supplied  
with CFMX. What I don't know is why? What are the benifits of using a  
different JVM and what are the negatives?
I've always used the JVM which was supplied by Macromedia.


Thanks,
- Charles

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230984
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 7 Linux and JVM Questions...

2006-02-01 Thread Charles E. Heizer
Ok, So if I'm not using any Java code/applets then it probably does  
not make much sense to update the JVM, right? I would like more  
performance, but how would I measure the improvements?

Thanks,
- Charles



On Feb 1, 2006, at 9:56 AM, Jordan Michaels wrote:

 Charles E. Heizer wrote:

 Hello,
 I have seen talk about using a different JVM than what was supplied
 with CFMX. What I don't know is why? What are the benifits of using a
 different JVM and what are the negatives?
 I've always used the JVM which was supplied by Macromedia.


 Thanks,
 - Charles


 The most common reason would probably for bugfixs that are present  
 in a
 newer version then what CFMX runs by default, but thre are other  
 reasons
 such as different features, and perhaps performance in a particular
 operating environment.

 HTH!

 -- 
 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/
 [EMAIL PROTECTED]

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230990
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 7 Linux and JVM Questions...

2006-02-01 Thread Charles E. Heizer
Thanks! This makes sense.
I'll stick with what I have.

thanks again,
- Charles


On Feb 1, 2006, at 10:12 AM, Nathan Strutz wrote:

 When CFMX 6.0 first came out, there were a few JVMs that were faster,
 and some that were more stable than the one that shipped with CF (if i
 recall, it was 1.3.8 or 1.4.0). Since then, Sun has really  pushed the
 envelope and has really made the 1.4 branch really fast and stable on
 their own JVM. I would completely recommend staying on whatever one
 comes with your install, or, if you must, install the highest version
 1.4 JVM from sun. You won't have any problems with it. I would NOT
 recommend switching to another JVM provider. Mostly because of the
 non-standard nature, thus lack of community support.

 Generally, stay with your current JVM unless you are experiencing bugs
 that just shouldn't happen, more than locking or jdbc issues, or other
 well-known issues like 'session is invalid' errors. These types of
 problems have other solutions.

 Java 5 (aka 1.5) has been pretty stable in the things I've seen and
 used it in, and very, very fast, though don't use it for CF, because
 macr--err adobe relies on Apache organization code for web services,
 which don't support 1.5 yet (well, they may now, but CF hasn't been
 patched for it yet). This is totally common for web  app servers to
 be a little behind the curve to keep things stable. 1.5 support will
 come eventually, maybe with the CF7 update scheduled for this summer.

 -nathan strutz
 http://www.dopefly.com/


 On 2/1/06, Charles E. Heizer [EMAIL PROTECTED] wrote:
 Hello,
 I have seen talk about using a different JVM than what was supplied
 with CFMX. What I don't know is why? What are the benifits of using a
 different JVM and what are the negatives?
 I've always used the JVM which was supplied by Macromedia.


 Thanks,
 - Charles



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230994
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Linux CFMX 6.1 / JVM crash revisited

2006-01-31 Thread Charles E. Heizer
I just came across this post and I wanted to know, why use JRockit  
vs. The Built-in Sun JVM?

Thanks,
- Charles

On Dec 16, 2005, at 5:49 AM, Thomas Chiverton wrote:

 On Tuesday 06 December 2005 22:29, Terry Ford wrote:
 Any help with finding a stable, high performance JVM for CFMX on  
 linux
 would be much appreciated.

 We use JRockit 1.4 (under Weblogic) fine.

 -- 

 Tom Chiverton
 Advanced ColdFusion Programmer

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230909
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: WYSIWYG Web Page Editor/Creator Plug-In

2005-12-22 Thread Charles E. Heizer
Wow, these are even better than I had hopped for.

Thanks!

- Charles


On Dec 17, 2005, at 7:10 PM, Bobby Hartsfield wrote:

 There are a few... personally; I think fckEditor is top of the line  
 in this
 department.


 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
 Bobby Hartsfield
 http://acoderslife.com


 -Original Message-
 From: Charles Heizer [mailto:[EMAIL PROTECTED]
 Sent: Saturday, December 17, 2005 7:36 PM
 To: CF-Talk
 Subject: WYSIWYG Web Page Editor/Creator Plug-In

 Hello,
 I'm not sure if this is possible or if such a solution is  
 available. I would
 like to know if there is a WYSIWYG Web Page Editor/Creator Plug-In or
 something that I can add to my site that would allow a user to create
 formated html code, that I could then put into a database to display?

 Thanks,
 - Charles



 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:227542
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Advise/Examples Needed on dynamic sql...

2005-11-16 Thread Charles E. Heizer
Hello,
I've been working on a auto report generator for a bunch of views we  
have in our Oracle 9i database. I have the simple builder done and  
working but the problem I'm having is that once the simple sql query  
is built I then allow the creator to modify the SQL statement  
directly. I normally would not have a problem with this but in order  
to segregate data, I have to inject a where clause of my own in to  
the mix. I can't allow the users to modify the our WHERE clause or  
they could gain access to all of the data, which we don't want.

I guess what I'm asking for is a better solution or answer to  
injecting a WHERE clause in to a SQL statement so that I don't have  
to parse every little piece of it just to know where to put my part in.


I hope this makes sense I've been at this for a while.

Thanks,
- Charles

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:224343
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Embedding Password question...

2005-11-09 Thread Charles E. Heizer
Hello,
I have a concern about embedding a password in my site. I have a site  
which uses two LDAP accounts for displying and editing the site  
contents which are stored in LDAP.

So my issue is that I'm storing a password in one of my cfc files  
which is using an account(Service Type Account) and I'm affraid if  
someone gets a hold of this cfc file they now have the account name  
and password to my LDAP directory.

Can someone please suggest a better way to store the password for the  
site.

Thanks,
- Charles

PS: This a is a short term need, I'm going to do a re-write to  
leverage the LDAP directory and the assigned privileges in the  
directory to control this but for the next few months I have to live  
with this.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223730
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Embedding Password question...

2005-11-09 Thread Charles E. Heizer
Thanks! I was afraid that was what I was going to need to do.

- Charles

On Nov 9, 2005, at 1:55 PM, Alan Rother wrote:

 We had a similar concern sometime back, we solved it by placing the  
 user
 name and password in an ini file that required high level  
 permissions to
 access. We then read the ini file on the applicationStart and store  
 the
 value in application memory. You can further complicate this by  
 encrypting
 the user name and password.
  HTH

 --
 Alan Rother
 Macromedia Certified Advanced ColdFusion MX 7 Developer


 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223750
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX 7.0.1 and Watermark issue

2005-10-18 Thread Charles E. Heizer
Hello,
I just upgraded my environment from CFMX 6 to 7.0.1 and it looks like  
everything went very smooth except for one thing... My cfcharts now  
have a watermark that say Macromedia Coldfusion MX 7 Developer  
Edition Not For Production Use. My servers have valid serial numbers  
and I reastarted the daemon on both of the servers. Has anyone seen  
this, and is there a fix for it?

Thanks,
- Charles 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221386
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 7.0.1 and Watermark issue

2005-10-18 Thread Charles E. Heizer
Thanks,
I've called and someone is going to get back with me.

- Charles

On Oct 18, 2005, at 3:16 PM, Stephen Cassady wrote:

 Hey Charles -
 Same thing happened to me - it's a Serial Number problem as issued by
 Macromedia. Phone Macromedia Tech support - they'll be able to  
 resolve your
 issue for you without a problem (or at least they did for me)

 Stephen
 http://www.Lopedia.com

 Subject: CFMX 7.0.1 and Watermark issue
 From: Charles E. Heizer [EMAIL PROTECTED]
 Date: Tue, 18 Oct 2005 14:31:29 -0700
 Thread: http://www.houseoffusion.com/cf_lists/index.cfm/method=
 messagesthreadid=42820forumid=4#221386

 Hello,
 I just upgraded my environment from CFMX 6 to 7.0.1 and it looks like
 everything went very smooth except for one thing... My cfcharts now
 have a watermark that say Macromedia Coldfusion MX 7 Developer
 Edition Not For Production Use. My servers have valid serial numbers
 and I reastarted the daemon on both of the servers. Has anyone seen
 this, and is there a fix for it?

 Thanks,
 - Charles




 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221419
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cfldap and TLS support

2005-10-18 Thread Charles E. Heizer
Hello,
Does anyone know if TLS is supported in cfldap? I would like to  
encrypt my communications to the GC server in AD.

Thanks,
- Charles

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221421
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFLDAP Help needed...

2005-09-22 Thread Charles E. Heizer
Hello,
I really hoping that someone can help me out with this. I'm trying to  
delete a attribute with a specific value. The value happens to be a   
dn. Every time I try to delete I get an error. But if I add another  
attribute and just a plain value like Food or something it deletes  
just fine, it's only when I have a DN like string that it complains.

thanks,
- Charles


Here is my code ...

cfldap
server=#variables.settings.vLLNLLDAPAddr#
username=#variables.settings.sysacct#
password=#Decrypt(settings.adp,settings.seeds)#
port = 636
secure=CFSSL_BASIC
action=modify
modifyType=delete
dn=CN=angryman, OU=Computers, OU=SMSG, OU=the-lab, OU=llnl, OU=gov,  
OU=Active Directory, o=services
attributes=asdColMemberOf=CN=ceh, OU=_ASD_COLLECTIONS_, OU=SMSG,  
OU=THE-LAB, OU=LLNL, OU=GOV, OU=ACTIVE DIRECTORY, O=SERVICES
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218966
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFLDAP Help needed...

2005-09-22 Thread Charles E. Heizer
Mike,
Thanks for the help. Unfortunately I do need to specify the value  
since each entry can have multiples of the asdColMemberOf attribute.  
I have added the delimiter and used the pipe and it still does not  
work. So I tried adding a separator using pipe and it worked.

I do have another question, can you specify a wild card in the  
attribute value?

Example...
attributes=asdColMemberOf=CN=ceh, OU=_ASD_COLLECTIONS_,*


thanks for the help,

- Charles



On Sep 22, 2005, at 9:40 AM, Dawson, Michael wrote:

 However, come to think of it...

 You don't need to specify values for attributes that are to be
 deleted/cleared.  You only need to specify the attribute name, itself.

 M!ke

 -Original Message-
 From: Charles E. Heizer [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 22, 2005 11:15 AM
 To: CF-Talk
 Subject: CFLDAP Help needed...

 Hello,
 I really hoping that someone can help me out with this. I'm trying to
 delete a attribute with a specific value. The value happens to be a
 dn. Every time I try to delete I get an error. But if I add another
 attribute and just a plain value like Food or something it deletes
 just fine, it's only when I have a DN like string that it complains.

 thanks,
 - Charles


 Here is my code ...

 cfldap
   server=#variables.settings.vLLNLLDAPAddr#
   username=#variables.settings.sysacct#
   password=#Decrypt(settings.adp,settings.seeds)#
   port = 636
   secure=CFSSL_BASIC
   action=modify
   modifyType=delete
   dn=CN=angryman, OU=Computers, OU=SMSG, OU=the-lab, OU=llnl,
 OU=gov, OU=Active Directory, o=services
   attributes=asdColMemberOf=CN=ceh, OU=_ASD_COLLECTIONS_,
 OU=SMSG, OU=THE-LAB, OU=LLNL, OU=GOV, OU=ACTIVE DIRECTORY, O=SERVICES


 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218984
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54