RE: clustered processing?

2003-08-27 Thread webguy
If you add a cfflush after your code, will that do the same thing? I've
never checked it out in cfmx...






WG

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]
Sent: 27 August 2003 16:39
To: CF-Talk
Subject: Re: clustered processing?


I thought about this and I don't think CFers really need or want the
ability to do full-blown multi-threading. However, I do think many
CFers would benefit from a tag that delays the processing of a block of
CFML until after the request is complete. For example the following...







Would anyone be interested in a tag like the above?

-Matt

On Wednesday, August 27, 2003, at 11:24 AM, Stacy Young wrote:

> I had made an enhancement request along these lines for next CF
> release...It could very well be a bad idea, I don't know. Essentially a
> tag to spawn multiple threads from single request;
>
> 
>
>   <-- do stuff -->
>
>
>   <-- do stuff -->
>
>
>   <-- do stuff -->
>
> 
>
> In the CF admin have the ability to set overall limit on threads as
> well
> as a maximum for a single request.
>
> Would this have merit?
>
> Stace
>
>
> -Original Message-
> From: Matt Liotta [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, August 26, 2003 11:19 PM
> To: CF-Talk
> Subject: Re: clustered processing?
>
> What you are interested in would probably fit better with a
> multi-threaded model than distributed computing. Do you example with
> multi-threading would be as follows:
>
> 1. Create a process to manage the threads
> 2. Split up the work into chunks and assign individual threads to work
> on each chunk
> 3. Gather up the results of the thread
>
> Could you do this with CF? It would be a serious hack, but yeah, it
> could be done. Although, it would be fire easier to do this with Java.
> Possibly, a mixture of CF and Java would work best in your case.
>
> -Matt
>
> On Tuesday, August 26, 2003, at 10:30 PM, Chunshen (Don) Li wrote:
>
>> "In CF?  Could be done at a certain level."
>> I would appreciate it if you could elaborate it a bit further.  To
>> validate your point.
>>
>> The goal of [EMAIL PROTECTED] is totally different from what I'd like to
>> achieve with the subject matter.  You were talking about sort of
>> similar method. Distributed computing, parallel computing is way ahead
>
>> of 'clustered processing'.
>>
>> DL
>>
>>> It's called distributed computing.  A popular layman's example would
>>> be [EMAIL PROTECTED]  Do a google search.
>>>
>>> In CF?  Could be done at a certain level.
>>>
>
>
> AVIS IMPORTANT:
> ---
> Les informations contenues dans le present document et ses pieces
> jointes sont strictement confidentielles et reservees a l'usage de la
> (des) personne(s) a qui il est adresse. Si vous n'etes pas le
> destinataire, soyez avise que toute divulgation, distribution, copie,
> ou autre utilisation de ces informations est strictement prohibee. Si
> vous avez recu ce document par erreur, veuillez s'il vous plait
> communiquer immediatement avec l'expediteur et detruire ce document
> sans en faire de copie sous quelque forme.
>
> WARNING:
> ---
> The information contained in this document and attachments is
> confidential and intended only for the person(s) named above. If you
> are not the intended recipient you are hereby notified that any
> disclosure, copying, distribution, or any other use of the information
> is strictly prohibited. If you have received this document by mistake,
> please notify the sender immediately and destroy this document and
> attachments without making any copy of any kind.
>
>

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: clustered processing?

2003-08-27 Thread webguy
I think that this sort of work should really be done outside cf. Java, as
matt suggested, is more suited, but additionally, this work may be done in
the database. Most databases are multithreaded by nature anyway. The key is
ensure that you minimise your locks , where you can, you may need to use
temp tables too. Look at DTS and Parallel Execution in Books OnLine if you
are using SQL Server, other dbs have different methods to do the same thing.

One issue that no-one mentioned is the data integrity in clustered app. If
you have a  multi-threaded process you have to ensure that the data remains
correct. If thread A changes Data that thread B needs etc.. you will end up
with issues. One method to over come this to take a snapshot of the data
before doing your work, but that may not always be possible.

WG






~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Securing word docs, excel, etc in a web app

2003-08-26 Thread webguy
Looks like no-one replied to your last mail.

Basically, there why to handle this is to but you docs into an non web
accessable folder, and use cfcontent to server the files

like








sorry...
mailto:[EMAIL PROTECTED]
Sent: 26 August 2003 16:06
To: CF-Talk
Subject: WOT: Securing word docs, excel, etc in a web app


Hi,
This is off topic, but I am sure many of you have had to deal with
issues such as these in the past.

I have been living in a bubble for the past 3 years and have developped
many web apps in CF, ASP and JSP on secure networks with no Internet
connection. For the first time, I am building an Internet based web app
in CF. Creating the members only portion with user authentication and so
on is no problem.

However, the site's main focus is to share research data among members.
Most members want to upload MS Word docs, MS Excel docs and PDFs. The
site will be hosted at an ISP, so using IIS or NT security is not an
option.

So here is my dilema, once I have uploaded documents that I only want
members to access, how can I achieve something better than "security
through obscurity" and prevent people from stumbling on the docs by
guessing or as the result of a search engine search? Same question for
images. There will be images in .jpg and .gif format which are destined
for members eyes only.

Any recommendations appreciated.

Grif



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: CFObject Class?

2003-08-22 Thread webguy
was wondering about that!

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 19:07
To: CF-Talk
Subject: Re: CFObject Class?


> 
>  
>
I believe that the above should be.




Matt Liotta
President & CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: CFObject Class?

2003-08-22 Thread webguy
You need to make sure that the classes are in cfmx path.

WG

-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 18:48
To: CF-Talk
Subject: RE: CFObject Class?


Using the example code you provided, returns an object instantiation
exception - class not found.

I am not enough of a Java person to know what this is doing.  One example I
have found uses the following code to call the 'createPortletContext'
method.

<%@ page language="java" import="rgdk.*,java.util.*" %>
<%
IPortletContext edk =
PortletContextFactory.createPortletContext(request,response);
%>

Another example defines it in this manner:

IPortletContext oPortletContext =
com.plumtree.remote.portlet.PortletContextFactory.createPortletContext(reque
st, response);

According to the documentation, 'PortletContextFactory' is used to establish
a means of communication with the portal. The method
PortletContextFactory.CreatePortletContext returns an 'IPortletContext'
object.

I don't know if any of this helps or not.
-- Jeff



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: CFObject Class?

2003-08-22 Thread webguy
If "com.plumtree.remote.portlet.PortletContextFactory" is a java class then,
you need to use  type="java"


 


 


 


WG




-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 18:18
To: CF-Talk
Subject: RE: CFObject Class?


Nope, not JetSpeed.  This is the developers kit for Plumtree Software's
Enterprise portal.

Another Java example I found has the following code ...

IPortletContext oPortletContext =
com.plumtree.remote.portlet.PortletContextFactory.createPortletContext(reque
st, response);
IPortletResponse oPortletResponse = oPortletContext.getResponse();

So, based on this, I setup a cfobject call like this ...





... but, I am getting an 'exception occurred when instantiating a com
object', so something is still not right.

Thanks for the help.
-- Jeff


-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: Friday, August 22, 2003 12:06 PM
To: CF-Talk
Subject: RE: CFObject Class?


Is this jetspeed??

If so, the full class is
org.apache.jetspeed.container.PortletContextFactory

However there is more to it then just that.

Luckly for you, Ben forta / drew falkman 's book has an example application
that uses bits of jetspeed.
which is avaialbe here http://www.forta.com/books/0321129482/


anyway something like

  

 

I expect u might need to pass in some props






or whatever, you'll be needing to get your feet wet in java I think...

WG


-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 17:36
To: CF-Talk
Subject: CFObject Class?


This is getting beyond my everyday CF workings ...  I am working with
another application whose documentation is written for Java or .NET.   Being
a CF person, I would like to use their developers kit using ColdFusion
instead of having to take the time to learn .NET right now.   So, can
anybody give me some pointers about how to instantiate the following object
in ColdFusion?

Java Example Code -

<%@ page language="java" import="rgdk.*,java.util.*" %>
<%
IPortletContext edk =
PortletContextFactory.createPortletContext(request,response);
%>

.NET Example Code -

Dim edk As IPortletContext
edk = PortletContextFactory.CreatePortletContext(Request, Response)

I am attempting to create the object using CFObject, but I am not sure what
to put for the class?

Thanks for any pointers.
-- Jeff





~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: CFObject Class?

2003-08-22 Thread webguy
Is this jetspeed??

If so, the full class is
org.apache.jetspeed.container.PortletContextFactory

However there is more to it then just that.

Luckly for you, Ben forta / drew falkman 's book has an example application
that uses bits of jetspeed.
which is avaialbe here http://www.forta.com/books/0321129482/


anyway something like

  

 

I expect u might need to pass in some props






or whatever, you'll be needing to get your feet wet in java I think...

WG


-Original Message-
From: Jeff Chastain [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 17:36
To: CF-Talk
Subject: CFObject Class?


This is getting beyond my everyday CF workings ...  I am working with
another application whose documentation is written for Java or .NET.   Being
a CF person, I would like to use their developers kit using ColdFusion
instead of having to take the time to learn .NET right now.   So, can
anybody give me some pointers about how to instantiate the following object
in ColdFusion?

Java Example Code -

<%@ page language="java" import="rgdk.*,java.util.*" %>
<%
IPortletContext edk =
PortletContextFactory.createPortletContext(request,response);
%>

.NET Example Code -

Dim edk As IPortletContext
edk = PortletContextFactory.CreatePortletContext(Request, Response)

I am attempting to create the object using CFObject, but I am not sure what
to put for the class?

Thanks for any pointers.
-- Jeff



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Arrrgh, this is driving me crazy, and I know it's so simple t o do...

2003-08-22 Thread webguy
lucene is another option. http://jakarta.apache.org/lucene/docs/index.html
AFAIK there is a cf tag in the DRK that using lucene

-Original Message-
From: Ryan Emerle [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 16:45
To: CF-Talk
Subject: RE: Arrrgh, this is driving me crazy, and I know it's so simple
t o do...


This is precisely why we created our own search engine.  We can actually
index arbitrary field names (removing the need for anything like CUSTOM1/2)
and have them returned with the search results.  We have a very powerful
suite of tags based on an opensource project that replaces verity and
extends the searching abilities of CF 10-fold (with about 3 times the
speed).

This suite of tags will be publicly released relatively soon, free of
charge.  It should prove to be an extremely potent, FREE, replacement for
Verity.

Example,
We have an index of 75,000 articles.  Most searches take about 200ms at
most, AND we dont need to parse out the additional information (such as
articleIDs, headlines, release dates, etc) as they have their respective
fields in the search result recordset.

Sorry for the ~OT, but i felt it was relevant.

-Ryan

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Friday, August 22, 2003 11:19 AM
To: CF-Talk
Subject: RE: Arrrgh, this is driving me crazy, and I know it's so simple
t o do...

Then, within your display code, you could parse the key - in the above case,
using the colon as a separator - to find both the table and the primary key
within the table. Alternatively, you could store information in the CUSTOM1
and CUSTOM2 fields - that might be a little easier, but wouldn't allow you
to index more than one table within the same collection if you're using
surrogate keys generated by identity columns or the like.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Arrrgh, this is driving me crazy, and I know it's so simple to do...

2003-08-22 Thread webguy
To be reallt cool , create a cfc, that allows you to n amount of collections

[psuedocode time ]






add collection to collections Array














order by score








x = my.cfc
x.addcollection("whatever1")
x.addcollection("whatever2")
rs = x.query("`film{ing,ed}`")

WG




-Original Message-
From: Jeff [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 15:40
To: CF-Talk
Subject: Re: Arrrgh, this is driving me crazy, and I know it's so simple
to do...


on 8/22/03 10:32 AM, webguy at [EMAIL PROTECTED] wrote:
> why not do this
>
> 1. Query a verity collection, return the results as "key, title, body"
(also
> get back a score)
>
> 2. Query a 2nd verity collection, return the results as "key, title, body"
> (also get back a score)
>
>
> 
> SELECT * FROM Query1
> UNION
> SELECT * FROM Query2
> order  scores desc
> 

Okay, I haven't even tried it yet, but I damn near fainted when I saw it...I
KNEW it would be something easy like this. I KNEW it!


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Arrrgh, this is driving me crazy, and I know it's so simple to do...

2003-08-22 Thread webguy
why not do this

1. Query a verity collection, return the results as "key, title, body" (also
get back a score)

2. Query a 2nd verity collection, return the results as "key, title, body"
(also get back a score)




SELECT * FROM Query1
UNION
SELECT * FROM Query2
order  scores desc



WG


-Original Message-
From: Jeff [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 15:23
To: CF-Talk
Subject: Arrrgh, this is driving me crazy, and I know it's so simple to
do...


1. Query a verity collection, return the results as "key, title, body" (also
get back a score)
2. Query a 2nd verity collection, return the results as "key, title, body"
(also get back a score)
3. Create a structure to hold the results.
4. Create an Array to hold the structure.
5. Loop over the first set of results, storing everything AND the score in
the struct, then storing that as an entry in the array
6. Loop over the second set of results storing everything AND the score in
the struct, then storing that as an entry in the *SAME* array.
7. Now I should have an array that has a structure containing a key, a
title, a score and a body for each result (it's not a lot of information,
just a string).
8. Sort the array by the score, combining the results of both collections
and outputting them with the high scores at the top (naturally).

Is that so hard to do? Am I thinking of it wrong? Is my approach somehow
wrong?

Each collection (and once I figure it out for two collections, there will be
MANY collections eventually added) contains a small amount of data that will
need to be displayed differently, depending on which collection it came
from. I want to *present* the results, sorted by score as "one" result, but
each link will be passing a variable that will determine how it's displayed
on the following linked page.

Make sense? That's why I can't just search a bunch of collections, because
*which* collection the result came from will determine how it's going to be
displayed.


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: Question about cf and ldap

2003-08-22 Thread webguy
Java Naming and Directory Interface (JNDI)
http://java.sun.com/products/jndi/

Dead simple to use.

Learn all about it here: http://java.sun.com/products/jndi/tutorial/


~ WG

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 14:44
To: CF-Talk
Subject: Re: Question about cf and ldap


I think cfldap is a one of the few examples where it is harder to use
CFML than Java; use JNDI.

-Matt

On Friday, August 22, 2003, at 09:44 AM, webguy wrote:

> You can alway use jndi easily enough too.
> There is a bug with ssl/ ldap on linux cfmx, afaiRemember..
>
> WG
>
>
> -Original Message-
> From: webguy [mailto:[EMAIL PROTECTED]
> Sent: 22 August 2003 14:35
> To: CF-Talk
> Subject: RE: Question about cf and ldap
>
>
> I remember seeing a good cf ldap example here..
> http://www.15seconds.com/issue/020710.htm
>
> WG
>
> -Original Message-
> From: Janice Zimba [mailto:[EMAIL PROTECTED]
> Sent: 22 August 2003 14:29
> To: CF-Talk
> Subject: Question about cf and ldap
>
>
>> I read somewhere that it needs to be a full name,
>>> not just the actual username, but I'm not sure what this means.
>>
>> You probably need to use a full-qualified Windows domain name.  In
>> your code snippet, it would be something like the following:
>>
>>  >  name="ldap_test"
>>  start="o=Anne Arundel Community College"
>>  attributes="*"
>>  server="server_name_here"
>>  port="389"
>>  username="mydomain\username"
>>  password="password">
>
>
> Thanks, I tried that with username="aacc\username" as well as
> username="fullhostname\username" and both give me a cold fusion error:
> "Inappropriate authentication"
>
> Do you have any examples or know where I could find one (I've done some
> searching) of cold fusion ldap accessing a microsoft active directory
> server?  Maybe I've missed something entirely.  :-(  It's made harder
> by the
> fact that I don't have any control over the directory settings(though
> in the
> long run, I'm probably better off--hehe), and my admin isn't inclined
> to
> being vast amounts of help.
>
> Thanks,
> Janice
>
>
>
>

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: Question about cf and ldap

2003-08-22 Thread webguy
You can alway use jndi easily enough too.
There is a bug with ssl/ ldap on linux cfmx, afaiRemember..

WG


-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 14:35
To: CF-Talk
Subject: RE: Question about cf and ldap


I remember seeing a good cf ldap example here..
http://www.15seconds.com/issue/020710.htm

WG

-Original Message-
From: Janice Zimba [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 14:29
To: CF-Talk
Subject: Question about cf and ldap


>I read somewhere that it needs to be a full name,
>>not just the actual username, but I'm not sure what this means.
>
>You probably need to use a full-qualified Windows domain name.  In
>your code snippet, it would be something like the following:
>
>  name="ldap_test"
>   start="o=Anne Arundel Community College"
>   attributes="*"
>   server="server_name_here"
>   port="389"
>   username="mydomain\username"
>   password="password">


Thanks, I tried that with username="aacc\username" as well as
username="fullhostname\username" and both give me a cold fusion error:
"Inappropriate authentication"

Do you have any examples or know where I could find one (I've done some
searching) of cold fusion ldap accessing a microsoft active directory
server?  Maybe I've missed something entirely.  :-(  It's made harder by the
fact that I don't have any control over the directory settings(though in the
long run, I'm probably better off--hehe), and my admin isn't inclined to
being vast amounts of help.

Thanks,
Janice



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: Question about cf and ldap

2003-08-22 Thread webguy
I remember seeing a good cf ldap example here..
http://www.15seconds.com/issue/020710.htm

WG

-Original Message-
From: Janice Zimba [mailto:[EMAIL PROTECTED]
Sent: 22 August 2003 14:29
To: CF-Talk
Subject: Question about cf and ldap


>I read somewhere that it needs to be a full name,
>>not just the actual username, but I'm not sure what this means.
>
>You probably need to use a full-qualified Windows domain name.  In
>your code snippet, it would be something like the following:
>
>  name="ldap_test"
>   start="o=Anne Arundel Community College"
>   attributes="*"
>   server="server_name_here"
>   port="389"
>   username="mydomain\username"
>   password="password">


Thanks, I tried that with username="aacc\username" as well as
username="fullhostname\username" and both give me a cold fusion error:
"Inappropriate authentication"

Do you have any examples or know where I could find one (I've done some
searching) of cold fusion ldap accessing a microsoft active directory
server?  Maybe I've missed something entirely.  :-(  It's made harder by the
fact that I don't have any control over the directory settings(though in the
long run, I'm probably better off--hehe), and my admin isn't inclined to
being vast amounts of help.

Thanks,
Janice


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: htaccess CF manager

2003-08-22 Thread webguy
I'd look around for a java class that does this. There is bound to be one.

WG

-Original Message-
From: Jillian Carroll [mailto:[EMAIL PROTECTED]
Sent: 21 August 2003 18:05
To: CF-Talk
Subject: htaccess CF manager


I am about to create a web-based htaccess manager... that will allow my
client to create/delete htaccess areas on the server.

This is a Windows 2000 server... I already have a script that does this
nicely in perl on my Linux server.

Does anybody have any thoughts on how best to go about this?

--
Jillian


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: calling all RegEx gurus

2003-08-18 Thread webguy
Top of my head
Something like

[a-zA-Z]([0-9]{7,})[a-zA-Z]

\1



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: 18 August 2003 12:33
To: CF-Talk
Subject: calling all RegEx gurus


OK...looking to all you RegEx gurus out there...

I need a Client Side JS Regex which will look for the following pattern :
A1234567B

[alpha][numeric][numeric][numeric][numeric][numeric][numeric][numeric][alpha
]

And then strip out the two trailing and leading edge alpha's

N

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: XML Best Practices - Resources

2003-08-14 Thread webguy
The xml dtd format, has an effect on preformance, depending on the
implimentation have a look here..
http://www.15seconds.com/issue/010409.htm


As for a standard, vcard would be the nearest thing to a standard AFAIK,
look for xml & vcard with google, you'll find some stuff on it. the older
vcard format is much more popular than the newer xml format

WG

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: 14 August 2003 11:34
To: CF-Talk
Subject: Re: XML Best Practices - Resources


I have been reading up on XML and there seems to be alot of people that
favor more of an element approach as apposed to an attribute approach.


mobile
555-555-
1234



Mike



- Original Message -
From: "Brad Roberts" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, August 13, 2003 3:08 PM
Subject: XML Best Practices - Resources


> What's the best way to store phone numbers in XML?
>
> 1234567890
>  or maybe...
> 
>
> Is there a standard?  Best practice?
>
> Does anyone know of resources that would include best practices like this,
> with examples (not just for phone numbers)?
>
> -Brad
>
>
>

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: OT: dynamically populating a select box from another select box

2003-08-14 Thread webguy
While 2 selectrelated does its job its a little heavy in the code side of
things. Qforms is much better, epecially when you have a few sets on the
same page..

http://www.pengoworks.com/qforms/docs/examples/n-related_selectboxes.htm


WG

-Original Message-
From: raedwards [mailto:[EMAIL PROTECTED]
Sent: 13 August 2003 12:55
To: CF-Talk
Subject: Re: OT: dynamically populating a select box from another select
box


Rather than trying to code everything yourself, you might want to look in
the Exchange for a custom tag called CF_TwoSelectsRelated.
This takes a query and outputs two select boxes so that when you pick one,
it populates the other.

I've tried it and it works great.  I did have to tweak it some to allow me
to add fields via cfscript before displaying the boxes, but otherwise it
was good.

Rob

At 11:54 AM 8/13/2003 +0100, you wrote:
>Hello
>
>Im trying to dynamically populate a select box from another select box...
>
>Here's the JS code:
>
>
>function createSelectBox (subsection, section) { // populate subsection box
>according to section box
>
>// set up arrays
>
>
> 
> SELECT * FROM subsectionInSection WHERE section = '#sections.name#'
> 
> 
>
>var #name# = new Array(first>,"#subsection.name#");
>
>
>// empty current items
>for(i=subsection.options.length; i>=0; i--)
> subsection.options[i] = null;
>
>// set array to use
>useArray = section;
>
>// create new select
>for(j=0; j subsection.options[j] = new Option(useArray[j]);
>
>subsection.options[0].selected = true;
>
>}
>
>
>And it's called here:
>
>onChange="createSelectBox(document.form.subsection,
>this.options[this.selectedIndex].value);" >
>
>The JS gets passed the name of the section I want, which corresponds to the
>name of the array I want... The problem is that instead of outputting the
>array it is supposed to, it outputs the name of the section with each
>character in a new option...
>
>How can I get it to output the array?!
>
>TIA,
>Ryan
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Caller access to query

2003-08-14 Thread webguy
If myquery is the query on your page then in your custom tag



Better is to pass the query in the tag



and in the tag




WG

-Original Message-
From: Venable, John [mailto:[EMAIL PROTECTED]
Sent: 13 August 2003 17:45
To: CF-Talk
Subject: Caller access to query


Is there a way to access an existing query recordset from a custom tag
called on the page? So if I have a query in a page, and I call a custom tag,
can i use the query data through come sort of caller scope object? I can't
seem to make it work.

Thanks

John Venable

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Linux Shells for Rent?

2003-08-14 Thread webguy
God that brings me back!!

A quick google will give you a list of a free shell providers..

http://directory.google.com/Top/Computers/Internet/Access_Providers/Unix_She
ll_Providers/Shell_Lists_and_Reviews/?il=1

Not sure why you wouldn't just run a shell on your on machine?

WG


-Original Message-
From: Oliver Cookson [mailto:[EMAIL PROTECTED]
Sent: 11 August 2003 11:02
To: CF-Talk
Subject: OT: Linux Shells for Rent?


Hi,

I was wondering if anyone could recommend any sites which offer Linux
shells for rent? Access would be prefered as SSH and root isn't
required.

Thanks in advance.

Oliver. :)


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX 6.1 and WebDAV

2003-08-06 Thread webguy
Do you mean CFMX as a webdav client or server? As a server look at the
webdav in tomcat, remembering that CFMX is basically a j2ee app..

WG

-Original Message-
From: Mark Stewart [mailto:[EMAIL PROTECTED]
Sent: 06 August 2003 18:54
To: CF-Talk
Subject: RE: CFMX 6.1 and WebDAV


I don't have any info on this, but I'm interested as well. Hope someone
could shed some light on this.

Mark


-Original Message-
From: joe hobson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 05, 2003 7:12 PM
To: CF-Talk
Subject: CFMX 6.1 and WebDAV


So according to Ben Forta's DevNet article and other info on the 6.1
enhancements, we learn the following...

  > The CFHTTP tag now supports all HTTP operations (GET, POST, HEAD, PUT,
  > DELETE, TRACE, OPTIONS).

Okay, that sounds great and it just happens to coincide with my search for
information on getting WebDAV to work with ColdFusion. Has anyone out there
attempted to integrate WebDAV and CF yet? Any luck? I kinda expected to find
some info on the forums or lists but I haven't yet seen anything yet.

.. .joe



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Finding recently modified files in subdirectories

2003-07-30 Thread webguy
You could also use "find" as part of the www.cywgin.com packages

find /c/dir -ctime -60

will give all file created in the last hour..

-mtime +60 will give you files modified in more than 60 minutes ago, etc.
etc...
Lots of other options there too.  man find will give you the help.

Its very fast , I 've run it on a directory structure with over 150,000
files in it. Takes a couple of seconds.

Another option in windows is to use a "directory monitor" that adds entries
to a queue or whatever...

WG

-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED]
Sent: 30 July 2003 12:34
To: CF-Talk
Subject: Re: Finding recently modified files in subdirectories


Actually that's what I did to achieve my current speed. The problem is that
Windows 2000 doesn't update modified dates on parent directories of a
directory that has a file change event within it :(

- Calvin

- Original Message -
From: "webguy" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 30, 2003 7:04 AM
Subject: RE: Finding recently modified files in subdirectories


> And you can use a QoQ on the result
>
> Select *
> From mydirectoryresult
> Where dateLastModified = yourcondition
>
> WG
>
> -Original Message-
> From: Stephen Moretti [mailto:[EMAIL PROTECTED]
> Sent: 30 July 2003 11:43
> To: CF-Talk
> Subject: Re: Finding recently modified files in subdirectories
>
>
> >
> > I'm looking for a way to find all files that were modified in a
directory
> and it's subdirectories.
> >
> > The trick is that it has to be very fast, and ColdFusion MX has to be
able
> to talk to it. Has anyone found such a solution?
> >
>
>
> Look at CFDirectory.  This returns a query set with one of the columns
being
> dateLastModified.
>
>
http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/Tags-pt121.jsp#109791
> 8
>
> Obviously you need to decide how you know when a file was previously
> modified for this information to be useful, but hopefully this will put
you
> on the right track.
>
> Stephen
>
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Finding recently modified files in subdirectories

2003-07-30 Thread webguy
And you can use a QoQ on the result

Select *
>From mydirectoryresult
Where dateLastModified = yourcondition

WG

-Original Message-
From: Stephen Moretti [mailto:[EMAIL PROTECTED]
Sent: 30 July 2003 11:43
To: CF-Talk
Subject: Re: Finding recently modified files in subdirectories


>
> I'm looking for a way to find all files that were modified in a directory
and it's subdirectories.
>
> The trick is that it has to be very fast, and ColdFusion MX has to be able
to talk to it. Has anyone found such a solution?
>


Look at CFDirectory.  This returns a query set with one of the columns being
dateLastModified.

http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/Tags-pt121.jsp#109791
8

Obviously you need to decide how you know when a file was previously
modified for this information to be useful, but hopefully this will put you
on the right track.

Stephen



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: RE: DB Design

2003-07-29 Thread webguy
I'll have to admit, for new apps, I'm becoming huge fan of CMP2.0 and Jboss.
Easy with a decent IDE and xdoclet.
Of course its a little more complicated when you have to mix legecy code in
there too.



WG

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 29 July 2003 17:29
To: CF-Talk
Subject: Re: RE: DB Design


Say, to go off topic, how is CMP 2 coming along?  CMP 1 sucked balls.

- Original Message -----
From: webguy <[EMAIL PROTECTED]>
Date: Tuesday, July 29, 2003 10:29 am
Subject: RE: DB Design

> Hi Ian,
>
> > You would change the address in the appropriate record.  If it
> is a
> foreign
> > key, and the DB is designed to "CASCADE UPDATE" then tables
> linked to the
> > primary table will change also change.
>
> Again this is requires the DB to have CASCADE update. Lots of db
> don't have
> cascading settings.
>
> J2ee CMP 2.+ does.
>
> > This is apparently a reason purists say one shouldn't use
> identities is so
> > that you can change the value of the key when necessary.
>
> Yes I know they do. I don't fully buy that part of the argument.
> It's a little TOO theorical. A bridge to far. It is like 5th
> normalised form
> or something. Even DB gurus can't tell if a DB normalised to it...
>
> > Don't know enough to argue the pros and cons, would like to
> learn more
> about
> > it myself.  But I know it's possible.
>
> Agreed. There is no 100% right way. WG
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Mach II

2003-07-29 Thread webguy
I had a  quick look at the example too. It seems like machII is really
adding a lifecycle to cfcs??  Am I wrong?


WG


>I've jus been looking at the sample contact manager.

For what it does, it comes across as hideously complicated.

Then again, I haven't really looked into it properly yet so I may be
completly wrong

Neil

> -Original Message-
> From: Ben Densmore [mailto:[EMAIL PROTECTED]
> Sent: 29 July 2003 17:36
> To: CF-Talk
> Subject: Re: Mach II
>
>
> Neil,
>  I think you will have to wait till August 1st which is when
> I think Mach-II
> will be out of beta. I could be wrong on the date. I think
> they will be
> releasing docs for it at that time. For now I think all you
> can really do to
> familiarize yourself with it is to go through the code and
> try and figure
> out what does what.
>
> Ben
> - Original Message -
> From: "Neil Middleton" <[EMAIL PROTECTED]>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: billion was RE: DB Design

2003-07-29 Thread webguy
> In England,

Hey, what about Ireland :-)

Why the difference???

Its a historical oddity.  Nothing specific made it that way. Unlike other
languages.
So thousand million (10^9) is called a milliard in the European style etc..
The American system was actually based on a French system which they then
gave up and switched to the ENGLISH (or European system...).

Some counting systems are based on interesting (ok interesting to me:-) )
basis...

In French, 80 = quatre-vingts which means 4 X 20. Why? Because most people
have 10 fingers and 10 toes, so the number system was 20 based
(which is called visegle or something I forget )

And of course we call numbers digits for similar reasons. (but left out the
feet because its too cold :-0 )

One last thing, recently, its been theorised, that the Incas had a binary
counting system were they used know in string/rope etc, to represent
numbers!!!

WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: DB Design

2003-07-29 Thread webguy
Hi Ian,

> You would change the address in the appropriate record.  If it is a
foreign
> key, and the DB is designed to "CASCADE UPDATE" then tables linked to the
> primary table will change also change.

Again this is requires the DB to have CASCADE update. Lots of db don't have
cascading settings.

J2ee CMP 2.+ does.

> This is apparently a reason purists say one shouldn't use identities is so
> that you can change the value of the key when necessary.

Yes I know they do. I don't fully buy that part of the argument.
It's a little TOO theorical. A bridge to far. It is like 5th normalised form
or something. Even DB gurus can't tell if a DB normalised to it...

> Don't know enough to argue the pros and cons, would like to learn more
about
> it myself.  But I know it's possible.

Agreed. There is no 100% right way. WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



billion was RE: DB Design

2003-07-29 Thread webguy
> thousand billion bytes

Note a billion in the US and EU are different. A billion is  1,000,000,000
US and 1,000,000,000,000 in the EU.
Better off with 10^9 and 10^12 to avoid confusion :-)

You know that NASA and the Russia Space angency had a joint project together
where the US was using inches and russians used CM ? Hoston we have a
problem.


Lol. WG




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: DB Design

2003-07-29 Thread webguy
Ian,
> For example for users, you might use e-mail, for employees you might use
> SSN, ect.

Would you use a users email as a foreign key? What do you do if someone
changes their email address?

WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: DB Design

2003-07-29 Thread webguy
The debate on primary keys is a long long long one.

Some arguments are

a) you shouldn't add columns to a table that are meaningless
So why do you need a UserID column when you could use Username

But what happens if a user changes his username,? you going to update all
relation tables?

b)  using a auto ID in a db, means you are stuck with that db.
(tightly coupled)
This is a far argument in general. Many J2ee applications specify a DB
independent key generating class.
The method for generating this id is also source of many differing options,
including :

1) use a UUID
2) use a table like
objectname  | nextid

customers   | 12003
order   | 50031
So you go get me the next customer id...
3) use high/low key generator http://castor.exolab.org/key-generator.html

4) use a mixture.


B-4 is pretty good mention in my opinion, and which what I generally us in
j2ee/Jboss, for example.

Sometime in CF I just delegate this task to the DB.

After that there are other issues such as the speed of indexing and
searching by primary key, but these depend on DB server and datatypes...

E.g. a int field lookup might be quicker than a varchar lookup..

A lot of people have opinions on this. Your best course of action is to know
what the arguments are make your own choices for your app.

A good place to find the discussions are in the Java/J2ee community,
especially around the various persistance layers (CMP, castor, JDO and other
Object-Relational mapping layers e.g. http://www.agiledata.org) due to their
requirements of being DB independent. Some OO knowledge is helpful.

my 2 cents.

WG






-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: 29 July 2003 15:48
To: CF-Talk
Subject: SOT: DB Design


I am working on a new DB design for a CFMX app and was doing a little
refresher research on keys and data types and ran across this quote from
former SQL Server project manager Ron Soukup,

"Identity primary keys are for people who believe there's never time to
design a table right but there's always time to do it over."

In another related article, another MS SQL guy says that the only reason
identity made it into SQL server was because of Access (not a direct
quote).

Anyone care to comment?

Mike

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CF Administrator Jibberish HELP

2003-07-28 Thread webguy
Anyone who was wondering, "servering" is a techincal term. :-)


WG

-Original Message-----
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 28 July 2003 15:02
To: CF-Talk
Subject: RE: CF Administrator Jibberish HELP


Looks like it isn't processing the cfm page at all.
Its just servering it as text ..

What version? Check your mappings or .cfm mappings in your webserver etc...



WG

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 28 July 2003 14:31
To: CF-Talk
Subject: CF Administrator Jibberish HELP


Still having trouble with CF Admin just displaying jibberish instead of the
login dialog page.

To see it yourself, just visit
http://www.keene.edu/cfide/administrator/index.cfm

BP


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CF Administrator Jibberish HELP

2003-07-28 Thread webguy
Looks like it isn't processing the cfm page at all.
Its just servering it as text ..

What version? Check your mappings or .cfm mappings in your webserver etc...



WG

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 28 July 2003 14:31
To: CF-Talk
Subject: CF Administrator Jibberish HELP


Still having trouble with CF Admin just displaying jibberish instead of the
login dialog page.

To see it yourself, just visit
http://www.keene.edu/cfide/administrator/index.cfm

BP

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Funky Column Names

2003-07-24 Thread webguy
Can you change the query ?

select SDE.DBO.TMLS_PARCELS.PIN AS pin
FROM table



-Original Message-
From: Critz [mailto:[EMAIL PROTECTED]
Sent: 24 July 2003 18:39
To: CF-Talk
Subject: Funky Column Names


oi CF-Talk,!!

  I've got a query that returns a column: SDE.DBO.TMLS_PARCELS.PIN

  and if I attempt valueList(out_queryTable.SDE.DBO.TMLS_PARCELS.PIN)

  I get a nice error.
  Parameter 1 of function ValueList which is now
  "out_queryTable.SDE.DBO.TMLS_PARCELS.PIN" must
  be pointing to a valid query name


  any  ideas  how I can get around this (besides renaming the column..I
do not have control over
  that..


  Crit


---
[This E-mail scanned for viruses by Declude Virus]


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: ergonomics

2003-07-24 Thread webguy
Which one you got ? WG

-Original Message-
From: Jim Campbell [mailto:[EMAIL PROTECTED]
Sent: 24 July 2003 16:42
To: CF-Talk
Subject: Re: ergonomics


I have an Aeron at home, and it's terrific.  Highly adjustable and the
weave instead of leather or cushioning keeps you cool.  It lasts, too -
I've had it for three years at least, and all I've had to do is dust it,
and it's used every day.  They're expensive, but definitely the best
office chair I've ever sat in.

- Jim

Ryan Kime wrote:

>Sorry to be coming in on this late, but I've been traveling. I just got
back
>from Grand Rapids, Michigan which is home to Steelcase, Herman Miller, and
>Knoll - three of the best ergonomic office furniture makers in North
>America. Both Steelcase (tools & insights section) and Herman Miller have
>research studies on their websites which are good reads. I would definitely
>check those out.
>
>I'm a big proponent of ergonomics so I'll throw out my suggestions...I know
>there are more extreme examples, but these are my preferences that blend
>ergo and style.
>
>My favorites
>
>Desks
>Biomorph desks - http://www.biomorphdesk.com/
>Anthro carts - http://www.anthro.com/
>* look at the adjustable versions
>
>
>Chairs
>Leap chair - http://www.steelcase.com/
>Aeron chair - http://hermanmiller.com/
>Freedom chair - http://www.humanscale.com/products/freedom_chair.cfm
>
>
>Mouse, Keyboard, etc
>Logitech wireless mouse
>DataHand Ergoport - http://www.datahand.com/products/ergoport.htm
>DataHand keyboard - http://www.datahand.com/products/personal.htm
>
>
>Lighting
>To reduce the strain on your eyes, stand on your desk and remove the
>fluorescent tubes. Then get yourself a nice task light.
>
>
>On a personal note, I know what you're going through; I had tendonitis when
>I was 16 from the effects of playing marching percussion for many years. It
>took a wrist brace, a one month hiatus from drumming, and learning how to
>approach the drum differently to resolve my problem. At 26, I can still
feel
>when problems are starting to brew, but I now know when to lay off for a
>while.
>
>Unfortunately, you have to work to pay the bills, so do what you need to do
>to help yourself. Yeah, a $1,000+ for a chair or keyboard sounds like a
lot,
>but think of how much income you will lose if you can't work. I see that as
>a small price to pay, and definitely worth every penny.
>
>
>Good luck!
>
>Ryan Kime
>
>
>-Original Message-
>From: Tony Weeg [mailto:[EMAIL PROTECTED]
>Sent: Monday, July 21, 2003 2:11 PM
>To: CF-Talk
>Subject: ot: ergonomics
>
>
>hey all.
>
>listen...ive got a problem, and things are getting worse.
>
>my wrists and my forearm (tennis elbow) are really starting to hurt these
>days, I have been to the doc, got some scripts (vioxx, bextra, ibuprofen,
>etc...) and they are all well, blah... anyway, what ergonomic ideas does
>anyone have or employ (Desk, mouse, keyboard) that you could share...this
is
>starting to hurt and this sucks
>
>thanks
>
>tony
>
>tony weeg
>uncertified advanced cold fusion developer
>tony at navtrak dot net
>www.navtrak.net
>office 410.548.2337
>fax 410.860.2337
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Visual Regular Expression tool

2003-07-24 Thread webguy
C++ via the Trolltechs QT framework.

WG

-Original Message-
From: fred fred [mailto:[EMAIL PROTECTED]
Sent: 24 July 2003 03:05
To: CF-Talk
Subject: Re: Visual Regular Expression tool


what language is this written in? It looks like a GUI version of text2reg.
http://txt2regex.sourceforge.net/

Michael Dinowitz <[EMAIL PROTECTED]> wrote:
GPL. It's with the source code on my crashed computer. :(
I just happened to have the executable up on the server for sponsors to look
at first which is the only reason it's available at the moment.


> What's the license on this? There doesn't seem to be one in the ZIP file.
>
> Thanks,
>
> --
> Howie Hamlin - inFusion Project Manager
> On-Line Data Solutions, Inc. - www.CoolFusion.com
> inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server
> ((())) PrismAV is Coming ((()))
> >>> Please vote for iMS here:
http://www.sys-con.com/coldfusion/readerschoice2003/index.cfm 
> >>> Find out how iMS Stacks up to the competition:
http://www.coolfusion.com/imssecomparison.cfm
>
> - Original Message -
> From: "Michael Dinowitz"
> To: "CF-Talk"
> Sent: Tuesday, July 15, 2003 6:26 PM
> Subject: Visual Regular Expression tool
>
>
> > Download it now:
> > http://www.cfregex.com
> >
>


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: coldfusion.compiler.outputDir

2003-07-24 Thread webguy
There is a setting in [cfroot]\WEB-INF\web.xml
Be careful to backup your web.xml I could imagine this breaking your install
..

WG

-Original Message-
From: McCabe, Kev [mailto:[EMAIL PROTECTED]
Sent: 24 July 2003 12:16
To: CF-Talk
Subject: coldfusion.compiler.outputDir


Hi all,

Does any one know who to change the location of the
coldfusion.compiler.outputDir where the compile java byte code is stored the
default is:
E:\CFusionMX\wwwroot\WEB-INF\cfclasses

Cheers

Kev McCabe
Senior ETV Developer
ETV Development Team
Technology Development
British Sky Broadcasting
Tel:  +44 (0)20 7941 5329
Fax:  +44 (0)20 7941 5369

Web:  
Wap:  





---
Information in this email may be privileged, confidential and is
intended exclusively for the addressee.  The views expressed may
not be official policy, but the personal views of the originator.
If you have received it in error, please notify the sender by return
e-mail and delete it from your system.  You should not reproduce,
distribute, store, retransmit, use or disclose its contents to anyone.

Please note we reserve the right to monitor all e-mail
communication through our internal and external networks.
---


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: File Synchronization, Asynchronously?

2003-07-22 Thread webguy
Where is your DB server? DMZ?

In that case, why not sick you file in the DB ?  or onto that box?

WG




-Original Message-
From: Shawn Grover [mailto:[EMAIL PROTECTED]
Sent: 22 July 2003 17:35
To: CF-Talk
Subject: File Synchronization, Asynchronously?


I have two web applications on separate servers, but using a common
database.  One server is on the Intranet, the other is located outside the
local network.  The applications allow a user to upload a file to be used on
the web pages (and a database record gets created).  But, under certain
conditions the file must be accessible to both the internal and external
server.  We don't want the external server to be accessing files off the
internal server.

So, if I upload a file to the internal server, I also need to copy it to the
external server.  But, we don't want the user to wait while the server to
server transfer occurs (from client to server is fine though).  Can anyone
think of an easy way to do this?  Right now, I'm thinking the easiest way
might be to use CFSchedule to trigger a form post to the other server, or
even an FTP session.

I know I can come up with a solution that works, but would appreciate any
comments/tips/suggestions for this process, or even an alternative process.
Keep in mind though that I only have the capabilities of the CF Server
and/or database server (MS SQL 2000) - no third party tools are allowed.

Thanks for any responses.

Shawn Grover

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFForm madness. 0_0

2003-07-22 Thread webguy
Sorry I thought Everyone knew Dan G. Switzer, II  (creator of qForms!) :-)

WG

-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]
Sent: 22 July 2003 15:54
To: CF-Talk
Subject: RE: CFForm madness. 0_0


Tags??
CF Tags??
Really??

!_!
Who's Dan?
Do you have them?
Who's Dan?
How come they aren't on the Macromedia Exchange!
Who's Dan?

-Gel


-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]

I think someone on the qforms list built tags that use qforms without
need to do js

Email dan and find out !

WG



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFForm madness. 0_0

2003-07-22 Thread webguy
I think someone on the qforms list built tags that use qforms without need
to do js


Email dan and find out !

WG


-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]
Sent: 22 July 2003 15:34
To: CF-Talk
Subject: RE: CFForm madness. 0_0


So..umm..who has a neat tutorial for using Qforms API ^_^

-Gel





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFForm madness. 0_0

2003-07-22 Thread webguy
Just to be clear, this may have been fixed, or about to be fixed.(r3dsci)

Also I haven't tested this myself, just read Matts post (but I trust Matt..)

WG

> I am ..worried over the reports I'm reading here that using CFFORM
> increases page rendering time by so much though. It means that it
> certainly won't be an option on a large site with multiple
> field-multiple page registration forms etc. Which is really odd, since
> the whole things seems to be fairly unchanged since the early days of
> CF.I thought that if there were performance issues, that they would have
> been addressed by now.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: SiteMinder Service Status

2003-07-22 Thread webguy
if siteminder is a service, (never used it) check out cfx_servicecontrol @
www.coolfusion.com

-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED]
Sent: 22 July 2003 15:17
To: CF-Talk
Subject: SiteMinder Service Status


It finally worked. Not on my system though. I copied the files to another
system and it worked. I do see a list of services that are running on the
server.

However, what happenns if the SitMinder service crashes unexpectedly, and as
you might know this happenns very often. Would tList.exe still list the
service? My guess is it would, because the SiteMinder
Authentication/Authorization service status would still be "started" even
though the service has crashed. I need a script to monitor the siteMinder
services and send alerts when the service is not responding. My current
solution is to use the cfauthenticate coldfusion tag. The script calls the
tag and returns a success or failure message. However, I've noticed that
even after stopping the SiteMinder services(s), the status message does not
change to "failed", that's because coldfusion caches the SiteMinder service
cache. Flushing the cache would slow down the performance, but how else can
I get the upto the minute status of the service? I would really appreciate
your help
>ColdFusion Programmer wrote:
>
>> Can you paste the code that works for you (tList.cfm)?
>
>timeout="2" arguments="-s">
>
>
>Jochem
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFForm madness. 0_0

2003-07-22 Thread webguy
Matt Liotta did some checking and it appears that for every sub tag in
cfform (e.g.  ) the page rendering times grow exponentially.

That was in up3 i think.

WG

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: 22 July 2003 15:08
To: CF-Talk
Subject: Re: CFForm madness. 0_0


I suppose so. I have used it in the past quite a bit, but found it fell
short in some areas or I had to combine it with additional JS.  It just made
more sense to me to use one or the other, and since the qForms API or even
custom written stuff was more flexible I have just kind of stuck with that.
Nothing against really, I just often need more than what it offers.

Mike





- Original Message -
From: "Kola Oyedeji" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 22, 2003 10:03 AM
Subject: RE: CFForm madness. 0_0


> Interesting I used to be of the same mind set, however after taking
> another look I think the cfform validation (not the built in cfserver
> validation) is quite useful.
>
> Why re-invent the wheel? Granted its not that flexible but when you
> quickly want to knock up a form with a few required fields it saves on
> development time.
>
> Mike I'd suggest another look, they may be more useful( or useless ;-) )
> than you think.
>
>
> Kola
>
> >> -Original Message-
> >> From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
> >> Sent: 22 July 2003 14:53
> >> To: CF-Talk
> >> Subject: Re: CFForm madness. 0_0
> >>
> >> Thats a good question :-)
> >>
> >> Some things in CF are available, yet not recommended by alot of
> users;
> >> cfform is one of them.
> >> In terms of validation and having more flexibility Id recommend using
> >> qForms
> >> API (www.pengoworks.com).
> >>
> >> Mike
> >>
> >>
> >>
> >> - Original Message -
> >> From: "Angel Stewart" <[EMAIL PROTECTED]>
> >> To: "CF-Talk" <[EMAIL PROTECTED]>
> >> Sent: Tuesday, July 22, 2003 9:49 AM
> >> Subject: RE: CFForm madness. 0_0
> >>
> >>
> >> > What's so horrible about using CFFORM for simple validation for a
> field
> >> > that's either required/not required??
> >> >
> >> > Isn't that why it is included in CFMX?
> >> >
> >> > -Gel
> >> >
> >> >
> >> > -Original Message-
> >> > From: Robertson-Ravo, Neil (RX)
> >> > [mailto:[EMAIL PROTECTED]
> >> >
> >> > the fact you are using cfform is sheer madness!
> >> >
> >> >
> >> >
> >>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFForm madness. 0_0

2003-07-21 Thread webguy
Is the path to cfform.js correct?

WG

-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED]
Sent: 21 July 2003 18:19
To: CF-Talk
Subject: CFForm madness. 0_0


Okies..
I am totally stumped by this.

This is my code:






Simple. I mean...just a CFFORM.

But...it does not work. At all. It consistently throws a Javascript
error saying object expected.

This is the code when I View Source.

















What the hell am I doing wrong?
This is on CFMX with updater 3 installed.
It...it just really doesn't make sense.

This is all part of a much larger form of course..but I decided to just
cut everything out..the tables..the stylesheets...all the other fields..
And just try a basic cfform statement and see if it worked...and it
didn't.

What could be wrong??

-Gel





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Concatenate results of subquery in select

2003-07-18 Thread webguy
You want to write a query that gives you this

buildingnameteacherID teacherID TeacherName
High School 1   1   Bob
Middle School   1   1   Bob
EMC 1   1   Bob
ELC 2   2   Sue
Middle School   2   2   sue

group it by teachername

and do somethinglike


#TeacherName#

#buildingname#





WG


-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]

ia.net]
Sent: 18 July 2003 16:27
To: CF-Talk
Subject: Concatenate results of subquery in select


Yes, I know this is not standard practice but, I am working on a report and
I would like all of the buildings this teacher teaches at to be in a single
CF query column.

I hope to get query results like:
TeacherName Buildings
Bob High School, Middle School, EMC
Sue ELC, Middle School

Here is basically what I am trying to do:

SELECT TeacherName, (select buildingname from location where teacherID  = 1)
as Buildings
FROM Teachers

But you can not run a subquery that returns more then one value.

Any Ideas on how to work around this?

Tables look like
Teachers table:
teacherID   TeacherName
1   Bob
2   Sue


Location table:
buildingnameteacherID
High School 1
Middle School   1
EMC 1
ELC 2
Middle School   2

I am running:
MS SQL server 2000
CFMX

Mark W. Breneman
-Macromedia Certified ColdFusion Developer
-Network / Web Server Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com
  608.270.9770


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Fire and forget a Stored Procedure

2003-07-18 Thread webguy
There are lots of ways to do this.

One way is to use CFEXECUTE to run isql (look up isql in the SQL books on
line)

or create  a package...


WG



-Original Message-
From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED]
Sent: 18 July 2003 13:59
To: CF-Talk
Subject: Fire and forget a Stored Procedure


Hi all,

Just wondering if this is possible (and if so, how to do it)...

We have a stored procedure that is run when a user asks for it.  It doesn't
have a set time, just when the user requests.  Normally I just open query
analyzer (MSSQL 2000 btw) and execute the procedure.

I want to be able to add a link to our site so that the user can click and
it will kick off, the problem is that the procedure takes 1 to 2 hours to
run.  That's a long time to have a browser open and I don't want to do any
changes to our timeouts or use request timeout (long story don't ask).

Is there anyway to do a "Fire and forget"?  I.E. user click the link,
procedure starts, user gets a page stating job is started and the procedure
runs no matter what the user does (close browser, take hammer to
workstation, etc :)

Thanks
*COST SAVINGS SUGGESTION*
For pages that must be printed, change your print settings to print in
"grayscale" instead of color.



Steve Durette
Mgr-Eng. & Const. Systems Support
100 S. Main
Room 314
Mt. Clemens, MI 48043
Ofc: 586.466.7654
Fax: 586.466.1109
  [EMAIL PROTECTED]



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



mach-ii.com

2003-07-18 Thread webguy
Is there a mach-ii.com mailing list? Is it the old mailing list? Where can I
get info - contribute ?

Thanks WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Virtual directories and UNC paths not working on CFMX?

2003-07-18 Thread webguy
I'll just conform that you can use UNC paths in CFMX if everything is
correct.

Someone pointed an issue with cfcontent and UNC in CFMX recently, any
confirm that ???

WG

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: 17 July 2003 20:13
To: CF-Talk
Subject: RE: Virtual directories and UNC paths not working on CFMX?


> MX is running under a user acct w/access to the UNC dir.
> Nothing has changed except a simple upgrade to CFMX.

You might want to test this by logging in as this user from the server
console.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Thinking about application architecture...

2003-07-17 Thread webguy
Hi,

> From: Hagan, Ryan Mr (Contractor ACI)
> Out of curiosity, what is the problem with limiting each session to the
same
> box on a load-balanced system?  We use a web farm here and we restrict
each
> session to only one box with no problems.  I don't really see this as much
> of a constraint and it certainly makes the programming a lot easier.  I'm
a
> programmer, not a system admin, and I really don't understand the
> complexities of these systems.  Can anyone enlighten me?

Basically that is Sticky Sessions. The only problem with this is if you
establish a session on box1, and box1 fails you loss your session state. If
you are using cluster wide sessions, your session can just continue on
another box. Thats the main difference.
This may or may not be an issue, depending on your spec...

> Our biggest problem with the web farm is making sure all the production
> boxes stay synchronized.  We've been using suresync to keep everything
> running happily along with very few problems.

Agreed. WG.




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Thinking about application architecture...

2003-07-17 Thread webguy
hi,

> Sandy Clark [EMAIL PROTECTED] Said:
> Actually using J2EE Sessions with a copy of CFMX for J2EE and your own
J2EE
> server will allow you to use the J2EE clustering abilities with session
> variables.
>
> Ben Forta gave a presentation here last week which came up with that exact
> item.  Very impressive!

Sandy, maybe you clarify something for me, did Ben say that this works with
CFMX on JRun or CFMX on any j2ee server that supports in-memory session
replication across clsters??

Thanks WG



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Load balanced code replication

2003-07-17 Thread webguy
Hi,

> > On Wednesday, Jul 16, 2003, at 13:17 US/Pacific, Barney Boisvert wrote:
> > We use rsync for doing all our installation and mirroring, be it code 
> > or
> > data.  Very nice, and works over an SSH connection for security.  It's
> >native to *nix, but I believe there is a Windows port.

> Yes, there is. And rsync is very nice indeed.


You can get a windows port here: http://www.cygwin.com  , ssh too

If you are using CFMX on j2ee you have other options too..


WG
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: db records with cftags in them do not render -help

2003-07-16 Thread webguy
Of course, you probably can do that with a regex

ReReplaceNoCase  "#(a-zA-Z0-9_)#  with  #Evaluate(/1)#

but I didn't for other reasons 

WG


-Original Message-----
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 16 July 2003 17:33
To: CF-Talk
Subject: RE: db records with cftags in them do not render -help


Here is something I wrote, that changed

xxx.cfm?id=$id$

in to

xxx.cfm?id=123 if 


You chould adapt it to change

"My age is #id#" to "My age is 123"







































-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]
Sent: 16 July 2003 17:06
To: CF-Talk
Subject: RE: db records with cftags in them do not render -help


There has got to be a better way of doing this.  Isn't there?

Jochem - Maybe I don't understand what you are saying. The problem I am
having is that I can not "run" a cfinclude that is in a database record. Are
you suggesting that I write 1000s of database records to files? Seems to
kinda defeat the reason we made it a contentment management system in the
first place. Or am I not understanding you correctly. :-)



I think this is the equivalent of what I am trying to do:
I have a var that holds text and 1 cf include.



#foo#


Mark W. Breneman


>Mark W. Breneman wrote:

>> I have a database table that holds the "body" contents of a page. (simple
>> contentment management system) I just tried to put a cfinclude in a db
>> record and found that CFMX does not evaluate the code. CFMX will just
send
>> the cfinclude tag to the browser, as unrendered source code, just like
any
>> other normal html tag. Is there a way I can make CFMX render CFtags that
>> are stored in a db record?

>Write them to a file and cfinclude the file.


>> Seems like there should be an EZ way to do this.

>http://www.macromedia.com/support/email/wishform/?6213=3

>Jochem



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: db records with cftags in them do not render -help

2003-07-16 Thread webguy
Here is something I wrote, that changed

xxx.cfm?id=$id$

in to

xxx.cfm?id=123 if 


You chould adapt it to change

"My age is #id#" to "My age is 123"







































-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]
Sent: 16 July 2003 17:06
To: CF-Talk
Subject: RE: db records with cftags in them do not render -help


There has got to be a better way of doing this.  Isn't there?

Jochem - Maybe I don't understand what you are saying. The problem I am
having is that I can not "run" a cfinclude that is in a database record. Are
you suggesting that I write 1000s of database records to files? Seems to
kinda defeat the reason we made it a contentment management system in the
first place. Or am I not understanding you correctly. :-)



I think this is the equivalent of what I am trying to do:
I have a var that holds text and 1 cf include.



#foo#


Mark W. Breneman


>Mark W. Breneman wrote:

>> I have a database table that holds the "body" contents of a page. (simple
>> contentment management system) I just tried to put a cfinclude in a db
>> record and found that CFMX does not evaluate the code. CFMX will just
send
>> the cfinclude tag to the browser, as unrendered source code, just like
any
>> other normal html tag. Is there a way I can make CFMX render CFtags that
>> are stored in a db record?

>Write them to a file and cfinclude the file.


>> Seems like there should be an EZ way to do this.

>http://www.macromedia.com/support/email/wishform/?6213=3

>Jochem


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: XP issue was RE: Visual Regular Expression tool

2003-07-16 Thread webguy
-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
Sent: 16 July 2003 11:26
To: CF-Talk
Subject: Re: XP issue was RE: Visual Regular Expression tool


It looks like it was a security problem on the original zip file. I've
uploaded a new one. Please try it out and see if it fixes the problem.


> Do you XP users that are having problems got
>
> MSVCRT.DLL on your machines?
>
> WG
>
> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
> Sent: 16 July 2003 03:33
> To: CF-Talk
> Subject: Re: Visual Regular Expression tool
>
>
> No clue. here's the direct link:
> http://www.cfregex.com/visualregex/kregexpeditor.zip
> There's no security on the directory and nothing that can stop it from
being
> downloaded.
> If it was on the HoF server then I can understand there being a problem.
> Since I put in some of the google stuff we've been hammered with requests.
> It's bogging down the machine. I'm going to have to do something about
that
> really soon.
>
>
> > oi Michael!!
> >
> > I  get  a "windows cannot access the specified device,path or file. You
> may not have the appropriate
> > permissions to access the item" WTF?
> >
> > Ctz
> >
> >
> >
> >
> > 
> > Tuesday, July 15, 2003, 6:26:35 PM, you wrote:
> >
> > MD> Download it now:
> > MD> http://www.cfregex.com
> > MD>
> >
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



XP issue was RE: Visual Regular Expression tool

2003-07-16 Thread webguy
Do you XP users that are having problems got

MSVCRT.DLL on your machines?

WG

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
Sent: 16 July 2003 03:33
To: CF-Talk
Subject: Re: Visual Regular Expression tool


No clue. here's the direct link:
http://www.cfregex.com/visualregex/kregexpeditor.zip
There's no security on the directory and nothing that can stop it from being
downloaded.
If it was on the HoF server then I can understand there being a problem.
Since I put in some of the google stuff we've been hammered with requests.
It's bogging down the machine. I'm going to have to do something about that
really soon.


> oi Michael!!
>
> I  get  a "windows cannot access the specified device,path or file. You
may not have the appropriate
> permissions to access the item" WTF?
>
> Ctz
>
>
>
>
> 
> Tuesday, July 15, 2003, 6:26:35 PM, you wrote:
>
> MD> Download it now:
> MD> http://www.cfregex.com
> MD>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Re: Mach II

2003-07-16 Thread webguy
Unfortunatly I live in Ireland:-)

-Original Message-
From: Mike Brunt [mailto:[EMAIL PROTECTED]
Sent: 16 July 2003 00:30
To: CF-Talk
Subject: RE: Re: Mach II


There is also a conference and training available from Hal Helms and Ben
Edwards on Mach-II in Las Vegas in late August, 2003.  Details are here: -

http://www.cfconf.com/fusebox2003/

Kind Regards - Mike Brunt
Original Message ---
What you get on http://www.mach-ii.com/ is all you get... Remember this
is still beta software!

On Tuesday, Jul 15, 2003, at 09:48 US/Pacific, webguy wrote:
> My first look at MachII;
>
> Does the data in example machII app, persist data ?
> Is there are readme ?

Sean A Corfield -- http://www.corfield.org/blog/

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



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Mach II

2003-07-15 Thread webguy
My first look at MachII; 

Does the data in example machII app, persist data ? 
Is there are readme ?



WG


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread webguy
Hi,

Raymond said:
>> 
>> 

> What is to stop me from editing my cookie and setting my ID to be
> someone else?

Actually on that subject, interesting articles on securityfocus.com about
Penetration Testing for Web Applications  (or hacking web apps depending on
what color your hat is... )

http://www.securityfocus.com/infocus/1704

WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: [cflogin] My Symptoms and my application.cfm code...

2003-07-10 Thread webguy
Haven't read your code, but if you use HTTP Analyzer
http://www.coolfusion.com/downloads/ or wget  or telnet to see what is
actually happening.

Teach a man to fish ...

~ and you can sell him fishing equipment.

WG

-Original Message-
From: Jeff [mailto:[EMAIL PROTECTED]

However, whenever I type http://localhost/MySite/admin/ I get nothing. The
page just sits there for a second "loading" and then it just stops, and
says, "done". Most puzzling, and kinda hard to debug.

Any ideas?








...

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Creating a list with infinite groupings and indents

2003-07-09 Thread webguy
BTW Joe Clecko had an entire book on trees coming soon

"TREES & HIERARCHIES IN SQL (Morgan-Kaufmann), 2003"

http://www.celko.com/books.htm

WG


-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]
Sent: 09 July 2003 14:48
To: CF-Talk
Subject: Re: Creating a list with infinite groupings and indents


First off... the way you have it setup now will only allow for two levels..
level 1 and level 2. To get the ability you are after (tree type strucutre),
you need to get into nested sets. Joe Celko has done some awesome work in
this area and the links below may help you out. It is a bit tricky at first,
but once you get it, it is very powerful. The sql statements for
adding/removing/updating "children" or "parents" is already written in the
links below and
you can adjust them slightly to work for your situation. I would definitely
start there.

http://www.dbmsmag.com/9603d06.html
http://www.mvps.org/access/queries/qry0023.htm

HTH,

Mike



- Original Message -
From: "John Sprenkle" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 09, 2003 9:19 AM
Subject: Creating a list with infinite groupings and indents


> Say I have a table with the following records:
>
> rec id  description  parent id
> 1 Test Record 1  0
> 2 Test Record 2  1
> 3 Test Record 3  1
> 4 Test Record 4  3
> 5 Test Record 5  3
> 6 Test Record 6  4
> 7 Test Record 7  4
> 8 Test Record 8  3
>
> The parent id field relates a record to its parent. I want to display the
> records in a list so that children records are listed indented under their
> parent. There can be an infinite number of nested parents and children, so
there
> could be many indents in the list. The output in this example should look
like
> this:
>
> Test Record 1
>   Test Record 2
>   Test Record 3
> Test Record 4
>  Test Record 6
>  Test Record 7
> Test Record 5
> Test Record 8
>
> Could somebody give me direction on how to program this? Sample code?
>
> Thank you.
>
>
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Is there a difference between CFMX on Linux and Windows?

2003-07-09 Thread webguy
> There is non-verity based document searching in DRK3 too as well

Yeah, I saw that. AFAIK its based on lucene, right?
http://jakarta.apache.org/lucene/docs/index.html

> There are ways round it.

Yeah sure, but its not out of the box ..

WG
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Creating a list with infinite groupings and indents

2003-07-09 Thread webguy
Check out these John
http://affy.blogspot.com/ntm/index.htm

WG

-Original Message-
From: John Sprenkle [mailto:[EMAIL PROTECTED]
Sent: 09 July 2003 14:19
To: CF-Talk
Subject: Creating a list with infinite groupings and indents


Say I have a table with the following records:

rec id  description  parent id
1 Test Record 1  0
2 Test Record 2  1
3 Test Record 3  1
4 Test Record 4  3
5 Test Record 5  3
6 Test Record 6  4
7 Test Record 7  4
8 Test Record 8  3

The parent id field relates a record to its parent. I want to display the
records in a list so that children records are listed indented under their
parent. There can be an infinite number of nested parents and children, so
there
could be many indents in the list. The output in this example should look
like
this:

Test Record 1
  Test Record 2
  Test Record 3
Test Record 4
 Test Record 6
 Test Record 7
Test Record 5
Test Record 8

Could somebody give me direction on how to program this? Sample code?

Thank you.





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Is there a difference between CFMX on Linux and Windows?

2003-07-09 Thread webguy
> > No verity ,
> *cough*

I'm wrong here then :-).

> > no com,
> **cough cough**

This is correct right?

http://www.macromedia.com/software/coldfusion/whitepapers/pdf/ColdFusionMXFe
atureGrid_03.pdf

WG

-Original Message-
From: Thomas Chiverton [mailto:[EMAIL PROTECTED]
Sent: 09 July 2003 13:36
To: CF-Talk
Subject: Re: Is there a difference between CFMX on Linux and Windows?


On Wednesday 09 Jul 2003 13:33 pm, webguy wrote:

--
Thomas C
Advanced ColdFusion Programmer

PLEASE NOTE: When the Recipient Is Not Directly Observing This E-mail, It
May
Cease to Exist or Will Exist Only in a Vague and Undetermined State.
PLEASE ALSO NOTE: I don't speak for the company that sent this.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Is there a difference between CFMX on Linux and Windows?

2003-07-09 Thread webguy
No verity , no com, case sensitive there is a complete list on MM
somewhere ..
WG

-Original Message-
From: Matthew Walker [mailto:[EMAIL PROTECTED]
Sent: 09 July 2003 13:16
To: CF-Talk
Subject: Re: Is there a difference between CFMX on Linux and Windows?


Case sensitivity in file names is the biggest trap.
http://www.macromedia.com/support/coldfusion/ts/documents/tn17098.htm

Matthew Walker
Electric Sheep Web
http://www.electricsheep.co.nz/

- Original Message -
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 09, 2003 11:54 PM
Subject: Is there a difference between CFMX on Linux and Windows?


> ___
> Sent by ePrompter, the premier email notification software.
> Free download at http://www.ePrompter.com.
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Why can't COM just work in CFMX?

2003-07-09 Thread webguy
Here is a repost of a mail I sent yesterday.
It might allow you to get a more useful error, and possibly find a solution
at http://www.intrinsyc.com/

--- snip ---
Thats a J-Integra Runtime error. J-Integra is the Java-COM bridge in CFMX.
You should(might) be able to use getexception() to get a better error
message from J-Integra, after that check out the J-Integra website.
http://www.intrinsyc.com/
--- snip ---


WG


-Original Message-
From: Simon Whittaker [mailto:[EMAIL PROTECTED]
Sent: 09 July 2003 11:31
To: CF-Talk
Subject: Re: Why can't COM just work in CFMX?


webguy wrote:

>if it works in ASP but not in CFMX it might be a permissions issue.
>
>

we are having similar  problems with ChartFX and CFMX - get an
"Instantiating COM object error after updater 3" . All permissions seem
to be in place but with no joy, again it works in ASP but not CFMX - if
you get a fix to these COM problems we would be very grateful if you
would post them.

Cheers

Simon


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Why can't COM just work in CFMX?

2003-07-09 Thread webguy
if it works in ASP but not in CFMX it might be a permissions issue.

-Original Message-
From: Matt [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 20:37
To: CF-Talk
Subject: RE: Why can't COM just work in CFMX?


I tried both Create and Connect, and I'm getting the exact same error with
both actions.

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 08, 2003 3:25 PM
To: CF-Talk
Subject: Why can't COM just work in CFMX?


Have you tried:
  You appear to be creating the object in ASP.
-Eric


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CF Object Error

2003-07-08 Thread webguy
Thats a J-Integra Runtime error. J-Integra is the Java-COM bridge in CFMX.
You should(might) be able to use getexception() to get a better error
message from J-Integra, after that check out the J-Integra website.
http://www.intrinsyc.com/

WG

-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 16:14
To: CF-Talk
Subject: CF Object Error


I am getting the following cryptic error message while trying to dump a Com
object . Any ideas?
AutomationException: 0x80070057






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: GetPageContext() function...cfinclude from a cfscript?

2003-07-08 Thread webguy
The Sun definition : An object bound into the context associated with a
servlet.

The GetPageContext returns the "context" for a servlet or JSP page.

It really does what it says on the tin, it returns the context, which
simplified  means  /x/y/z/myservlet or whatever.
The servlet needs this when it uses other Java elements and classes, so that
the so they can be bound into that context and can use other variables
available in the same context. Remember the same java objects maybe used by
many programs in many contexts, so the jvm has to be able tosupply the
correct variables, resources etc.

WG


-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 14:06
To: CF-Talk
Subject: RE: GetPageContext() function...cfinclude from a cfscript?


I think, there are probably people who know a shit load more about than
that!

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 14:03
To: CF-Talk
Subject: RE: GetPageContext() function...cfinclude from a cfscript?


I believe it is used for J2EE development (though probably not only that).
It provides access to system class functions from within a page to call
variables and scopes etc...




-Original Message-
From: Tyler Silcox [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 13:56
To: CF-Talk
Subject: GetPageContext() function...cfinclude from a cfscript?


Could someone please explain what GetPageContext() does within CFMX?  I just
came across it in one of the other posts and it got me thinking about using
GetPageContext().include("somefile.cfm") for cfincludes within cfscripts,
but it doesn't seem to share the same memory/variables (which, I guess,
could be a benefit.)  What is possible with this tag?  Is it slow?  What
other functions are available, etc?  I've gotta know!

Tyler




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: JSP/Java in CF Page

2003-07-08 Thread webguy
\u201C is "comma quotation mark, double turned " in unicode.

Maybe try this at the top of the page.



don't know anything about Dreamweaver

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 13:30
To: CF-Talk
Subject: RE: JSP/Java in CF Page


Default in Dreamweaver charset=iso-8859-1" I guess.

-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 13:23
To: CF-Talk
Subject: RE: JSP/Java in CF Page


Looks like a unicode issue, what encoding are you using ?

WG

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 13:10
To: CF-Talk
Subject: RE: JSP/Java in CF Page


Getting this error

"\u201cUTCDate," on line 9, column 31, is not a valid identifer name.
The CFML compiler was processing:

an expression beginning with "\u201cUTCDate.jsp\u201d", on line 9,
column 31.This message is usually caused by a problem in the expressions
structure. an expression beginning with "GetPageContext", on line 9,
column 6.This message is usually caused by a problem in the expressions
structure. a script statement beginning with "GetPageContext" on line 9,
column 6. a CFSCRIPT tag beginning on line 8, column 2.


The error occurred in C:\Test\UTC.cfm: line 9

7 : 
8 : 
9 :  GetPageContext().include("UTCDate.jsp");
10 : 



-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 11:46
To: CF-Talk
Subject: RE: JSP/Java in CF Page



 GetPageContext().include("hello.jsp");


Full details here...
http://www.macromedia.com/devnet/mx/coldfusion/articles/java.html

WG

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 10:14
To: CF-Talk
Subject: JSP/Java in CF Page


Hi

First time writing Java/JSP code in CF. What should be the syntax to
include this java file in cf page and print results.

<%@ import java.text.SimpleDateFormat;%>
<%@ import java.util.*;%>
<% public class formatDate{
public static void main(String args[]) {
 String seconds = args[0];
 long secs = Integer.parseInt(1057580739);
 long millseconds = secs * 1000;
 Date dateObj = new Date(millseconds);
 SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd HH:mm:ss");
String formattedDate = sdf.format(dateObj);
System.out.println(formattedDate);
}
}
%>


Shaz






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Beta Testing RedSky

2003-07-08 Thread webguy
AFAIK was fusebox 4 , now mach II

-Original Message-
From: Rich Z [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 13:17
To: CF-Talk
Subject: RE: Beta Testing RedSky


What's Mach II?

-Original Message-
From: chad [mailto:[EMAIL PROTECTED]
Sent: Monday, July 07, 2003 11:22 AM
To: CF-Talk
Subject: Beta Testing RedSky

Where can I get information about becoming a beta tester for redsky
and/or Mach II



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: JSP/Java in CF Page

2003-07-08 Thread webguy
Looks like a unicode issue, what encoding are you using ?

WG

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 13:10
To: CF-Talk
Subject: RE: JSP/Java in CF Page


Getting this error

"\u201cUTCDate," on line 9, column 31, is not a valid identifer name.
The CFML compiler was processing:

an expression beginning with "\u201cUTCDate.jsp\u201d", on line 9,
column 31.This message is usually caused by a problem in the expressions
structure.
an expression beginning with "GetPageContext", on line 9, column 6.This
message is usually caused by a problem in the expressions structure.
a script statement beginning with "GetPageContext" on line 9, column 6.
a CFSCRIPT tag beginning on line 8, column 2.


The error occurred in C:\Test\UTC.cfm: line 9

7 : 
8 : 
9 :  GetPageContext().include("UTCDate.jsp");
10 : 



-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 11:46
To: CF-Talk
Subject: RE: JSP/Java in CF Page



 GetPageContext().include("hello.jsp");


Full details here...
http://www.macromedia.com/devnet/mx/coldfusion/articles/java.html

WG

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 10:14
To: CF-Talk
Subject: JSP/Java in CF Page


Hi

First time writing Java/JSP code in CF. What should be the syntax to
include this java file in cf page and print results.

<%@ import java.text.SimpleDateFormat;%>
<%@ import java.util.*;%>
<% public class formatDate{
public static void main(String args[]) {
 String seconds = args[0];
 long secs = Integer.parseInt(1057580739);
 long millseconds = secs * 1000;
 Date dateObj = new Date(millseconds);
 SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd HH:mm:ss");
String formattedDate = sdf.format(dateObj);
System.out.println(formattedDate);
}
}
%>


Shaz




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: JSP/Java in CF Page

2003-07-08 Thread webguy

 GetPageContext().include(“hello.jsp”);


Full details here...
http://www.macromedia.com/devnet/mx/coldfusion/articles/java.html

WG

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 08 July 2003 10:14
To: CF-Talk
Subject: JSP/Java in CF Page


Hi

First time writing Java/JSP code in CF. What should be the syntax to
include this java file in cf page and print results.

<%@ import java.text.SimpleDateFormat;%>
<%@ import java.util.*;%>
<% public class formatDate{
public static void main(String args[]) {
 String seconds = args[0];
 long secs = Integer.parseInt(1057580739);
 long millseconds = secs * 1000;
 Date dateObj = new Date(millseconds);
 SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd HH:mm:ss");
 String formattedDate = sdf.format(dateObj);
 System.out.println(formattedDate);
}
}
%>


Shaz


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: How many tables a datasource can handle?

2003-07-07 Thread webguy
...but obviously from an admin perspective it makes sense to break up the
data, into managable chunks, eg. one db per site/project etc..

WG

-Original Message-
From: Scott Weikert [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 18:37
To: CF-Talk
Subject: Re: How many tables a datasource can handle?


At 02:31 PM 7/7/2003 -0300, you wrote:
>I'm wondering when it's time to split a datasource that has many tables
into
>two or more. I never saw an article or recommendation on this.
>
>Anyone knows if the number of tables can decrease performance?

I asked this some weeks back. The answer I got was, a database (SQL7 at
least) can have around 2.1 million 'objects' (not sure if this was the term
used) - those being tables, views, stored procedures, etc etc etc. So
unless you've got several hundred thousand tables, I don't think you're in
any danger. :)


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFUnit

2003-07-07 Thread webguy
Seans older cf testing tags are here

http://corfield.org/index.php?fuseaction=coldfusion.resources

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 16:25
To: CF-Talk
Subject: RE: CFUnit


> One Question, why oh why do MM charge for CFUnit?

I certainly do NOT speak for MM - but I can say that the cost is worth
it. Develop time was put into this code, along with the other projects
on the DRK. I guess I'm just not one of those people who feel everything
should be free. ;) Take a look at what else is on the DRK:

http://www.macromedia.com/software/drk/productinfo/product_overview/volu
me3/

>
> MM, Please make CFunit free, paying $1499 for this is a lot
> of money (and I don't really want the rest of the stuff in there).

Isn't it 99 dollars? I believe the price you see there is for the DevNet
subscription, which as _part_ of the sub gives you the DRK.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFUnit

2003-07-07 Thread webguy
Agreed.  WG

> One Question, why oh why do MM charge for CFUnit?

> Surely, by giving it away, and thus improving the quality of the CF out
> there, they would be improving the CF name in the way that they are
> marketing it.
>
> MM, Please make CFunit free, paying $1499 for this is a lot of money (and
I
> don't really want the rest of the stuff in there).
>
> Neil

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: java class - how to (was RE: Date Time (GMT 1970))

2003-07-07 Thread webguy
put the class in  web_root/WEB-INF/classes

mydate =  createobject("java","formatDate");
return  = mydate.init(s);

you might need to use javacast() function


change the class to

import java.text.SimpleDateFormat;
import java.util.*;


public class formatDate
{
public String formatDate(String seconds)
{

long secs = Integer.parseInt(seconds);
long millseconds = secs * 1000;
Date dateObj = new Date(millseconds);
SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd HH:mm:ss");
String formattedDate = sdf.format(dateObj);

return formattedDate;
}
}

WG



-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 14:54
To: CF-Talk
Subject: RE: java class - how to (was RE: Date Time (GMT 1970))


Not sure, I just threw that together in 2 mins,

>From the command line, its just..

Java formatDate 1057580739

Cfobject should be able to do it, I'll have quick play.

I can re-write it as a CFX in about another 2 mins tho if you'd prefer.

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 14:54
To: CF-Talk
Subject: java class - how to (was RE: Date Time (GMT 1970))


hey craig, how would one use that class in cfmx?

thanks.

tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED]
Sent: Monday, July 07, 2003 9:48 AM
To: CF-Talk
Subject: RE: Date Time (GMT 1970)


Here, this java class works,

Pass it your seconds values and it spits back a formatted date.

import java.text.SimpleDateFormat;
import java.util.*;
public class formatDate{
public static void main(String args[]) {
String seconds = args[0];
long secs = Integer.parseInt(seconds);
long millseconds = secs * 1000;
Date dateObj = new Date(millseconds);
SimpleDateFormat sdf = new SimpleDateFormat("/MM/dd
HH:mm:ss");
String formattedDate = sdf.format(dateObj);
System.out.println(formattedDate);
}
}


-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 14:18
To: CF-Talk
Subject: RE: Date Time (GMT 1970)


I've been told that DateAdd() sucks on MX if the date is within DST??

-Original Message-
From: Craig Dudley [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 14:04
To: CF-Talk
Subject: RE: Date Time (GMT 1970)


#dateformat(dateadd("s",1057580739,"1/1/1970"),"/mmm/dd")#

= 2003/Jul/07

-Original Message-
From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 13:58
To: CF-Talk
Subject: RE: Date Time (GMT 1970)


That's an example

1057580739

I think it should be converted to 7th July 2003, 13:25 or something like
that.

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 13:17
To: CF-Talk
Subject: RE: Date Time (GMT 1970)


is it logging in julian format? or actually in seconds? can you provide
an example of what a log looks like...

-Original Message-
From: Tom Smith [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 13:14
To: CF-Talk
Subject: Re: Date Time (GMT 1970)


are you getting the date in seconds, if so, use dateFormat() and it
should work fine:)


- Original Message -
From: "Shahzad.Butt" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, July 07, 2003 1:09 PM
Subject: RE: Date Time (GMT 1970)


> We have got a software running to LOG telephone calls and that
> software has got its own DB and date/time it is logging call is in
> seconds starting from Midnight (00:00:00) January 1, 1970.  Now I want

> to run report with some understandable date/time format - so I need a
> conversion mechanism.
>
> -Original Message-
> From: Craig Dudley [mailto:[EMAIL PROTECTED]
> Sent: 07 July 2003 12:55
> To: CF-Talk
> Subject: RE: Date Time (GMT 1970)
>
>
> tbh I don't quite understand what you are trying to do.
>
> Are you trying to convert a java/javascript milliseconds from epoch
> value to GMT?
>
> -Original Message-
> From: Shahzad.Butt [mailto:[EMAIL PROTECTED]
> Sent: 07 July 2003 12:51
> To: CF-Talk
> Subject: Date Time (GMT 1970)
>
>
> Any custom tag / UDF which can convert date/time value with GMT
> (Starting from Midnight January 1970) and it should go backward as
> well converting GMT (1970) to normal date/time?
>
> Thanks
> Shaz
>
>
>
>
>








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

 

RE: SQL quickie

2003-07-07 Thread webguy
There is a good series on using MS-SQL date functions here
http://www.databasejournal.com/features/mssql/article.php/2191631





-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: 07 July 2003 13:22
To: CF-Talk
Subject: SQL quickie


I want to be able to take a value of getdate() and then from that determine
the last day of the month that getdate() is in. I will be doing this in a
stored procedure.

For instance, today is 7/7/2003 I want to output 7/31/2003 to the next part
of the procedure.

Eric

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFUnit

2003-07-04 Thread webguy
> CFUnit is designed to introduce the concept of unit testing to ColdFusion
> developers and provide them with  a sound, straightforward implementation
> which can be extended as necessary.


In that case (pun intended), maybe your could get MM it release it
separately to the DRK. I'd like to use to check it out.

~WG


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: TagCFMail::sendMessage

2003-07-04 Thread webguy
or maybe permissions... WG

-Original Message-
From: Dan Phillips [mailto:[EMAIL PROTECTED]
Sent: 04 July 2003 16:22
To: CF-Talk
Subject: RE: TagCFMail::sendMessage


Hmmaybe the DLL needs to be registered? Try using regsvr.
That should do it.

Dan Phillips
www.CFXHosting.com
1-866-239-4678
[EMAIL PROTECTED]

-Original Message-
From: Paul Ihrig [mailto:[EMAIL PROTECTED]
Sent: Friday, July 04, 2003 11:20 AM
To: CF-Talk
Subject: RE: TagCFMail::sendMessage


really?? reinstall sounds extreme
it is cf server 5.

from what i understand every thing worked fine till 5 months ago! i am a
little cautious of a new install on a server i have just started working
on!

any other ideas?



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: uisng Virtual Machine software for hosting (WAS CrystalTech says ALL variables must be locked)

2003-07-04 Thread webguy
show off :-) WG

-Original Message-
From: Dan Phillips [mailto:[EMAIL PROTECTED]
Sent: 04 July 2003 16:15
To: CF-Talk
Subject: RE: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


That's pretty much it. The rest of it is some propriatary stuff we
developed in house to smooth it out a bit.

Dan Phillips
www.CFXHosting.com
1-866-239-4678
[EMAIL PROTECTED]

-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: Friday, July 04, 2003 11:15 AM
To: CF-Talk
Subject: RE: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


Think this is it
http://www.microsoft.com/windowsserver2003/evaluation/trial/virtualserve
r.ms
px

WG

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 04 July 2003 16:06
To: CF-Talk
Subject: Re: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


Do you have a link for info about this VPS function of Win2K3? I've
never heard of this before.

James,

CFHosts

- Original Message -
From: "Dan Phillips" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, July 04, 2003 3:09 PM
Subject: RE: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


We are doing it and already have about 20 customers up and running on
this since we released it last month. We are using Win2K3's VPS
function. Each VPS can have any version of Windows or any OS that will
run on an x86 CPU. It runs quite well. No problems to report. Not only
were we able to give customers full control of their VPS, we also gave
them root level terminal server access and reboot permissions. About the
only limitation is that you can't install software unless we do it for
you. This way, we can make sure all software installed is legal in case
we get audited.

http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm


Dan Phillips
www.CFXHosting.com
1-866-239-4678
[EMAIL PROTECTED]

-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED]
Sent: Friday, July 04, 2003 10:03 AM
To: CF-Talk
Subject: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


Dave

This is something I've been thinking about recently. Does anyone
actually use VMWARE/virtual PC for hosting applications on the same
server but multiple Operating systems?


Kola

>> -Original Message-
>> From: Dave Watts [mailto:[EMAIL PROTECTED]
>> Sent: 03 July 2003 22:25
>> To: CF-Talk
>> Subject: RE: CrystalTech says ALL variables must be locked
>>
>> > I agree. For hundreds of sites, nope. For a fewer number, yes. I
>> > expect that we'll soon start seeing both offered, depending on what

>> > you need (and what you'll pay for).
>>
>> I don't know; it seems that there's little room for it to be a viable

>> shared hosting solution. If you have the kind of machine that can
>> handle it,
you
>> might be better off with true separation through virtualization -
>> something along the lines of the VMware GSX and ESX server products.
>> If not,
you'd
>> probably be better off with dedicated hosts.
>>
>> Dave Watts, CTO, Fig Leaf Software
>> http://www.figleaf.com/
>> voice: (202) 797-5496
>> fax: (202) 797-5444
>>
>>






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: uisng Virtual Machine software for hosting (WAS CrystalTech says ALL variables must be locked)

2003-07-04 Thread webguy
Think this is it
http://www.microsoft.com/windowsserver2003/evaluation/trial/virtualserver.ms
px

WG

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 04 July 2003 16:06
To: CF-Talk
Subject: Re: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


Do you have a link for info about this VPS function of Win2K3? I've never
heard of this before.

James,

CFHosts

- Original Message -
From: "Dan Phillips" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, July 04, 2003 3:09 PM
Subject: RE: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


We are doing it and already have about 20 customers up and running on
this since we released it last month. We are using Win2K3's VPS
function. Each VPS can have any version of Windows or any OS that will
run on an x86 CPU. It runs quite well. No problems to report. Not only
were we able to give customers full control of their VPS, we also gave
them root level terminal server access and reboot permissions. About the
only limitation is that you can't install software unless we do it for
you. This way, we can make sure all software installed is legal in case
we get audited.

http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm


Dan Phillips
www.CFXHosting.com
1-866-239-4678
[EMAIL PROTECTED]

-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED]
Sent: Friday, July 04, 2003 10:03 AM
To: CF-Talk
Subject: uisng Virtual Machine software for hosting (WAS CrystalTech
says ALL variables must be locked)


Dave

This is something I've been thinking about recently. Does anyone
actually use VMWARE/virtual PC for hosting applications on the same
server but multiple Operating systems?


Kola

>> -Original Message-
>> From: Dave Watts [mailto:[EMAIL PROTECTED]
>> Sent: 03 July 2003 22:25
>> To: CF-Talk
>> Subject: RE: CrystalTech says ALL variables must be locked
>>
>> > I agree. For hundreds of sites, nope. For a fewer number, yes. I
>> > expect that we'll soon start seeing both offered, depending on what

>> > you need (and what you'll pay for).
>>
>> I don't know; it seems that there's little room for it to be a viable

>> shared hosting solution. If you have the kind of machine that can
>> handle it,
you
>> might be better off with true separation through virtualization -
>> something along the lines of the VMware GSX and ESX server products.
>> If not,
you'd
>> probably be better off with dedicated hosts.
>>
>> Dave Watts, CTO, Fig Leaf Software
>> http://www.figleaf.com/
>> voice: (202) 797-5496
>> fax: (202) 797-5444
>>
>>




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFUnit

2003-07-03 Thread webguy
> It can quite easily be transferred to CFC.

I started down this road but found several barriers to replicating junit in
CFMX for testing cfcs. when is "object a" equal to "object b" for example.
If anyone has replicated the example in the Junit example (called test
infected I think? ) in cf I'd love to see it.

testing custom tags, I guess would be easier as you can look for the output
your are expecting.
What can you do/test with the DRK CFunit?

> Unfortunately, there are some of us that can't afford the DRKs!!

Well I'd prefer an ipod.

WG


-Original Message-
From: Andre Mohamed [mailto:[EMAIL PROTECTED]
Sent: 03 July 2003 17:48
To: CF-Talk
Subject: RE: CFUnit


I'm hoping it will be released separatelyor continue writing my own
version. It's not hard to do and have already developed a version for
unit testing custom tags. See the links I just posted to see how you
could implement your own (even more comprehensive) version.

Unfortunately, there are some of us that can't afford the DRKs!!


André
-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 03 July 2003 17:49
To: CF-Talk
Subject: RE: CFUnit

Anyway to get this without the drk ?

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: 03 July 2003 17:33
To: CF-Talk
Subject: RE: CFUnit


Christian Cantrall. And it rocks. I _love_ the unit tester (and even
added some more stuff to it).


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Robertson-Ravo, Neil (RX)
> [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 03, 2003 10:30 AM
> To: CF-Talk
> Subject: CFUnit
>
>
> Anyone got any ideas who came up with the CFUnit stuff on the
> DRK3?




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFUnit

2003-07-03 Thread webguy
Anyway to get this without the drk ?

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: 03 July 2003 17:33
To: CF-Talk
Subject: RE: CFUnit


Christian Cantrall. And it rocks. I _love_ the unit tester (and even
added some more stuff to it).


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Robertson-Ravo, Neil (RX)
> [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 03, 2003 10:30 AM
> To: CF-Talk
> Subject: CFUnit
>
>
> Anyone got any ideas who came up with the CFUnit stuff on the
> DRK3?


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: can someone validate this bug? (repost)

2003-07-03 Thread webguy
Any chance you could add the following.
Show the code used. Display the server details to see timezone etc that the
server is using

Here is a nice way to show the code

Save the two sections below as
showcode.cfm
coloredcode.cfm
and the stick  in to your template







Code in :#GetBaseTemplatePath()#













































/* Pointer to Attributes.Data */
this = Data;

/* Convert special characters so they do not get interpreted literally;
italicize and boldface */
this = REReplaceNoCase(this, "&([[:alpha:]]{2,});",
"«B»«I»&\1;«/I»«/B»", "ALL");

/* Convert many standalone (not within quotes) numbers to blue, ie. myValue
= 0 */
this = REReplaceNoCase(this,
"(gt|lt|eq|is|,|\(|\))([[:space:]]?[0-9]{1,})", "\1«FONT
COLOR=BLUE»\2«/FONT»", "ALL");

/* Convert normal tags to navy blue */
this = REReplaceNoCase(this,
"<(/?)((!d|b|c(e|i|od|om)|d|e|f(r|o)|h|i|k|l|m|n|o|p|q|r|s|t(e|i|t)|u|v|w|x)
[^>]*)>", "«FONT COLOR=NAVY»<\1\2>«/FONT»", "ALL");

/* Convert all table-related tags to teal */
this = REReplaceNoCase(this,
"<(/?)(t(a|r|d|b|f|h)([^>]*)|c(ap|ol)([^>]*))>", "«FONT
COLOR=TEAL»<\1\2>«/FONT»", "ALL");

/* Convert all form-related tags to orange */
this = REReplaceNoCase(this,
"<(/?)((bu|f(i|or)|i(n|s)|l(a|e)|se|op|te)([^>]*))>", "«FONT
COLOR=FF8000»<\1\2>«/FONT»", "ALL");

/* Convert all tags starting with 'a' to green, since the others aren't
used much and we get a speed gain */
this = REReplaceNoCase(this, "<(/?)(a[^>]*)>", "«FONT
COLOR=GREEN»<\1\2>«/FONT»", "ALL");

/* Convert all image and style tags to purple */
this = REReplaceNoCase(this, "<(/?)((im[^>]*)|(sty[^>]*))>", "«FONT
COLOR=PURPLE»<\1\2>«/FONT»", "ALL");

/* Convert all ColdFusion, SCRIPT and WDDX tags to maroon */
this = REReplaceNoCase(this, "<(/?)((cf[^>]*)|(sc[^>]*)|(wddx[^>]*))>",
"«FONT COLOR=MAROON»<\1\2>«/FONT»", "ALL");

/* Convert all inline "//" comments to gray (revised) */
this = REReplaceNoCase(this,
"([^:/]\/{2,2})([^[:cntrl:]]+)($|[[:cntrl:]])", "«FONT
COLOR=GRAY»«I»\1\2«/I»«/FONT»", "ALL");

/* Convert all multi-line script comments to gray */
this = REReplaceNoCase(this, "(\/\*[^\*]*\*\/)", "«FONT
COLOR=GRAY»«I»\1«/I»«/FONT»", "ALL");

/* Convert all HTML and ColdFusion comments to gray */
/* The next 10 lines of code can be replaced with the commented-out line
following them, if you do care whether HTML and CFML
   comments contain colored markup. */
EOF = 0; BOF = 1;
while(NOT EOF) {
Match = REFindNoCase("", this, BOF, True);
if (Match.pos[1]) {
Orig = Mid(this, Match.pos[1], Match.len[1]);
Chunk = REReplaceNoCase(Orig, "«(/?[^»]*)»", "", "ALL");
BOF = ((Match.pos[1] + Len(Chunk)) + 31); // 31 is the length 
of the FONT
tags in the next line
this = Replace(this, Orig, "«FONT 
COLOR=GRAY»«I»#Chunk#«/I»«/FONT»");
} else EOF = 1;
}

// Use this next line of code instead of the last 10 lines if you want
(faster)
// this = REReplaceNoCase(this, "()", "«FONT
COLOR=GRAY»«I»\1«/I»«/FONT»", "ALL");

/* Convert all quoted values to blue */
this = REReplaceNoCase(this, """([^""]*)""", "«FONT
COLOR=BLUE»""\1""«/FONT»", "ALL");

/* Convert left containers to their ASCII equivalent */
this = REReplaceNoCase(this, "<", "<", "ALL");

/* Revert all pseudo-containers back to their real values to be interpreted
literally (revised) */
this = REReplaceNoCase(this, "«([^»]*)»", "<\1>", "ALL");

/* ***New Feature*** Convert all FILE and UNC paths to active links (i.e,
file:///, \\server\, c:\myfile.cfm) */
this = REReplaceNoCase(this,
"(((file:///)|([a-z]:\\)|([[:alpha:]]))+(\.?[[:alnum:]\/[EMAIL 
PROTECTED]|:~`+$%?_##&
 -])+)", "\1", "ALL");

/* Convert all URLs to active links (revised) */
this = REReplaceNoCase(this,
"([[:alnum:]]*://[[:alnum:[EMAIL PROTECTED](\.[[:alnum:]][[:alnum:]-]*[[:alnum:]]\.)?[[
:alnum:]]{2,}(\.?[[:alnum:]\/[EMAIL PROTECTED]|:~`+$%?_##&-])+)", "\1", "ALL");

/* Convert all email addresses to active mailto's (revised) */
this = REReplaceNoCase(this,
"(([[:alnum:]][[:alnum:]_.-]*)?[[:alnum:[EMAIL 
PROTECTED]:alnum:]][[:alnum:].-]*\.[[:alp
ha:]]{2,})", "mailto:\1"";>\1", "ALL");


#this#



-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: 03 July 2003 14:10
To: CF-Talk
Subject: can someone validate this bug? (repost)


ok...this may be hard to explain but i

RE: Parse formated list

2003-07-03 Thread webguy
This ???

ListContains(list, substring [, delimiters ])

Description
Determines the index of the first list element that contains a specified
substring.

Return value
Index of the first list element that contains substring. If not found,
returns zero.

Category
List functions

Syntax
ListContains(list, substring [, delimiters ])

WG

-Original Message-
From: jeremy [mailto:[EMAIL PROTECTED]
Sent: 03 July 2003 14:16
To: CF-Talk
Subject: Parse formated list


I have a list of days in a month being returned from a query. Example
record set would be 2,19,19,21,27 Number between 1 and 31. I then loop
through this query with the code below which generates a list var that
looks like 19,19,21,27 when outputted.









That is all well. HERE IS THE PROBLEM. The problem is here with this
cfif. Session.Calendar.EventListingDate contains the above list
2,19,19,21,27 And Variables.CurrentDay is a single number between 1 and
30.  If CurrentDy is say 7 then this if evaluates true as 7 is in 27,
but I don't want that. I want the cfif to check for JUST 7 in the comma
delimited list. How would I do this. It seems like there should be a
list fucntion for this but I can't find it.









~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Firewall APP

2003-07-02 Thread webguy
Interesting article. Hadn't come across this flavor of firewall before. I'd
query the usefulness of the product though. IISFilt basically does this, as
do some apache modules. I suppose your could use this at an entry point to
minimise admin, but then you are adding a significant load to your load
balancer or whatever.

As for claims like this :

"Out of the box, AppShield will protect against form fields being added or
removed, hidden form fields having their values changed by the client or
client-side cookie modification."  are simply untrue IMHO, without enforce
conditions on the submit. For example, if the client doesn't supply a
http_referer the request will probably break. Many clients. proxies,
personal firewalls do this.

I may be wrong of course and I'd love to hear how it does this, unless you
supply the form to the firewall and say template xyz only has the following
form fields , a,b,c.


Things like this "cannot parse outgoing JavaScript code and so will flag the
URLs generated" will drive you nuts.

WG



-Original Message-
From: Michael Ross [mailto:[EMAIL PROTECTED]
Sent: 02 July 2003 15:29
To: CF-Talk
Subject: Firewall APP


Has anyone had any experience or evaluations of these products?  There was
an article on them in eweek.com

http://www.eweek.com/article2/0,3959,1102512,00.asp

Kavado Inc.'s InterDo 3.0,
Sanctum Inc.'s AppShield 4.0
Teros Inc.'s Teros-100 APS (Application Protection System) 2.1.1

I'm not sure if its worth investigating.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



was RE: CFMX Linux?

2003-06-30 Thread webguy
> I was wondering if there is a version for linux?

Its pretty funny that in order of hardness :

* google for  "linux cfmx version"  : hard
* post to cf-talk   : harder
* find it on MM site: hardest

WG :-)


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 18:40
To: CF-Talk
Subject: RE: CFMX Linux?




Yes. There are versions for Windows, Linux, Solaris and HP/UX.

http://www.macromedia.com/software/coldfusion/productinfo/system_reqs/

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



SQL Slammer ... RE: Questions about security

2003-06-30 Thread webguy


Has anyone read this junk,

http://www.microsoft.com/sql/techinfo/administration/2000/security/coderespo
nse.asp

Yeah, blame Wired Magazine, why don't you MS. The slammer code has been
around for anyone who wants it for ages.

Isn't it better for admins to know why the slammer worked, rather than
applying patches randomly??

jeez..

Well just in case anyone missed the article here is the link to the story
http://www.wired.com/wired/archive/11.07/slammer.html

Now the MS have the source, I expect to see a upgrade-sql-server-security
worm from microsoft soon. :-)





WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Host with the leader in ColdFusion hosting. 
Voted #1 ColdFusion host by CF Developers. 
Offering shared and dedicated hosting options. 
www.cfxhosting.com/default.cfm?redirect=10481

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX SQLException error

2003-06-30 Thread webguy
>> CF5 is disabled if there is co-existence.

not sure about that

>>//CFMX & CFM
>>You have confused me here.

meant cfmx and cf5 sorry..

Have a look at your current activity in SQL server management console to
locate your users/connections..

WG

-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 18:23
To: CF-Talk
Subject: RE: CFMX SQLException error


Hi,

> First of all I don't understand 'Standard Edition', we are running CFMX
> Enterprise for windows, and why upgrade.

I think the error refers to the licenses for your database rather than CFMX.
Sure you don't have more simultaneous connections in total , i.e. CFMX & CFM
& anything else than your license provides.
Are you using both CFMX and CF5 together?

The connections may be made by more than one cfserver too... (e.g. your dev
box _and_ your production box)


Of course, it could be a driver issue, but I don't think I've seen it
before.

WG


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX SQLException error

2003-06-30 Thread webguy
Microsoft Database Engine = MSDE

http://www.microsoft.com/sql/

WG


-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 18:17
To: CF-Talk
Subject: RE: CFMX SQLException error


>>It seems that you're running MSDE
What is MSDE?
>>That error message is not from CFMX.
Well this would possibly make sense as ASP pages are throwing the same
error.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 18:14
To: CF-Talk
Subject: Re: CFMX SQLException error


That error message is not from CFMX.  It's from your database server.  It
seems that you're running MSDE, not SQL Server

- Original Message -
From: John McCosker <[EMAIL PROTECTED]>
Date: Monday, June 30, 2003 11:10 am
Subject: CFMX SQLException error

> Greetings,
>
> we have had CFMX on our development server now for the last 6 months,
> and decided we would migrate from CF5 to CFMX on our Production
> server over
> the weekend,
>
> Our Development server is in one domain and our production server
> is in
> another but both are connected
> to our SQL server 7.0 inside our domain containing our development
> server.
> Since installing CFMX on our production server this morning we
> have been
> experiencing errors with everything connecting
> to our DSN, both on our development server and our Production
> server, also
> with exchange agents and dll's which make
> odbc connections.
>
> The error from both our production and developments environments is,
>
> SQLException while attempting to connect: java.sql.SQLException:
> [Macromedia][SQLServer JDBC Driver][SQLServer]Login failed. The
> maximumsimultaneous user count of 10 licenses for this 'Standard
> Edition' server
> has been exceeded. Additional licenses should be obtained and
> installed or
> you should upgrade to a full version.
>
> First of all I don't understand 'Standard Edition', we are running
> CFMXEnterprise for windows, and why upgrade.
>
> When I go to the services applet on our production server and stop
> all three
> CFMX services,
> everything that makes ODBC connections
> on our development environment and exchange agents is fine.
>
> Could someone shed some light on this if you can,
>
> Respectfully
>
>
> J
>
>
>


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX SQLException error

2003-06-30 Thread webguy
Hi,

> First of all I don't understand 'Standard Edition', we are running CFMX
> Enterprise for windows, and why upgrade.

I think the error refers to the licenses for your database rather than CFMX.
Sure you don't have more simultaneous connections in total , i.e. CFMX & CFM
& anything else than your license provides.
Are you using both CFMX and CF5 together?

The connections may be made by more than one cfserver too... (e.g. your dev
box _and_ your production box)


Of course, it could be a driver issue, but I don't think I've seen it
before.

WG


-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 18:11
To: CF-Talk
Subject: CFMX SQLException error


Greetings,

we have had CFMX on our development server now for the last 6 months,
and decided we would migrate from CF5 to CFMX on our Production server over
the weekend,

Our Development server is in one domain and our production server is in
another but both are connected
to our SQL server 7.0 inside our domain containing our development server.

Since installing CFMX on our production server this morning we have been
experiencing errors with everything connecting
to our DSN, both on our development server and our Production server, also
with exchange agents and dll's which make
odbc connections.

The error from both our production and developments environments is,

SQLException while attempting to connect: java.sql.SQLException:
[Macromedia][SQLServer JDBC Driver][SQLServer]Login failed. The maximum
simultaneous user count of 10 licenses for this 'Standard Edition' server
has been exceeded. Additional licenses should be obtained and installed or
you should upgrade to a full version.

First of all I don't understand 'Standard Edition', we are running CFMX
Enterprise for windows, and why upgrade.

When I go to the services applet on our production server and stop all three
CFMX services,
everything that makes ODBC connections
on our development environment and exchange agents is fine.

Could someone shed some light on this if you can,

Respectfully


J



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Questions about security

2003-06-30 Thread webguy
Oh yeah, I left out; a decent firewall, and a properly configered DMZ /
Zones / network and maybe IDS (www.Snort.org is cool) and decent
passwords.

looking at CFMX server then alone (ie without your code...)

Disable / remove RDS,
Run it under a user account which only has the needed permissions.
Apply all patches.

Also think of CFMX as a Java application, it is. I've been meaning to check
out
the J2ee/java version of "hacking exposed" anyone read it?
http://www.amazon.co.uk/exec/obidos/ASIN/0072225653/ref=sr_aps_books_1_1/026
-9749361-5814842

Also cfmx contains versions of the following

AXIS
Verity
j-intragra
log4j
etc. etc.
and of course Jrun (or what ever java container) + a JDK issues

So any issues that apply to these may apply to CFMX

regards

WG


-Original Message-----
From: webguy [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 17:58
To: CF-Talk
Subject: RE: Questions about security


Secure Windows - get the O'reilly book
http://www.oreilly.com/catalog/securwinserv/
http://www.microsoft.com/security/

Secure IIS  - http://www.iisfaq.com/default.aspx?view=P142

Secure SQL server -http://www.sqlsecurity.com/DesktopDefault.aspx
Use database roles etc..

Secure CFMX - http://www.macromedia.com/devnet/security/security_zone/

Secure your application. e.g. http://secinf.net/websecurity/
CF specific - http://www.macromedia.com/support/coldfusion/technotes.html

[short list]

Possibly encrypt your data, or build a write only database table. For
example you will probably never need to show a credit card number on a
website (maybe some of it - last 5 digits), but will need to use it on a
back end. Use a different database role to read it.

WG



-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 17:35
To: CF-Talk
Subject: Questions about security


I have some questions about CFMX security, loop hole, pit falls and
configuration.

I have two Win2k clustered servers that will contain membership data that
will be stored in SQL Server DB on a third server. I need to insure that I
will not be hacked. Is there any particular configuration that is
recommended or issues?





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Questions about security

2003-06-30 Thread webguy
Secure Windows - get the O'reilly book
http://www.oreilly.com/catalog/securwinserv/
http://www.microsoft.com/security/

Secure IIS  - http://www.iisfaq.com/default.aspx?view=P142

Secure SQL server -http://www.sqlsecurity.com/DesktopDefault.aspx
Use database roles etc..

Secure CFMX - http://www.macromedia.com/devnet/security/security_zone/

Secure your application. e.g. http://secinf.net/websecurity/
CF specific - http://www.macromedia.com/support/coldfusion/technotes.html

[short list]

Possibly encrypt your data, or build a write only database table. For
example you will probably never need to show a credit card number on a
website (maybe some of it - last 5 digits), but will need to use it on a
back end. Use a different database role to read it.

WG



-Original Message-
From: Eric Creese [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 17:35
To: CF-Talk
Subject: Questions about security


I have some questions about CFMX security, loop hole, pit falls and
configuration.

I have two Win2k clustered servers that will contain membership data that
will be stored in SQL Server DB on a third server. I need to insure that I
will not be hacked. Is there any particular configuration that is
recommended or issues?




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: (OT) RegEx editor

2003-06-30 Thread webguy
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
> Subject: Re: (OT) RegEx editor
>
> The $720 is for a visual RegEx building tool WRITTEN in Qt. If it's GPLed,
then
> anyone here could get it and compile it for us, right? Could you?

yeap, of course there maybe some issues, depending on the libs. The author
may know more about that than me :-)

> From the email, it seems that something specific needs to be done to get
it into
> windows.

Email me the mail off-list Michael?

> If I'm incorrect in this and you (or someone else) can get it for us,
> then please let me know. Getting the tool which will be free for the
community
> anyway without any charge will be the best of all worlds.

It's part of the kdeutils package. I'll have a look. CVS here
http://apps.kde.com/rf/2/latest?sid=27bab7e280f63418ea822fd1fb88c5a8

WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Inquiry (Problem)

2003-06-30 Thread webguy
You can stick this in a .bat file

net stop "ColdFusion MX ODBC Agent"
net stop "ColdFusion MX ODBC Server"
net stop "ColdFusion MX Application Server"

Del C:\CFusionMX\wwwroot\WEB-INF\cfclasses\*.* /Q

net start "ColdFusion MX Application Server"
net start "ColdFusion MX ODBC Agent"
net start "ColdFusion MX ODBC Server"

WG

-Original Message-
From: Graham Pearson [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 16:28
To: CF-Talk
Subject: RE: CFMX Inquiry (Problem)


Thanks that solve the issue once I deleted all of those files, and
Stopped/Started the Coldfusion Services.




> They are in [cf web root]\WEB-INF\cfclasses
>
> WG
> -Original Message-
> From: Graham Pearson [mailto:[EMAIL PROTECTED]
> Sent: 30 June 2003 16:03
> To: CF-Talk
> Subject: CFMX Inquiry (Problem)
>
>
> I have ran into a strange problem this morning with CFMX and I am
> unable to find a solution to this.
>
>
> I am running CFMX with Apache under Windows and in one of my
> applications I have made a change to the mainpage.cfm with an

> command on the 4th line. When I login to this application I get the
> entire mainpage.cfm contents. I have looked through the cfmx directory
> to try and find where the cached pages are located at without any
> success. Anyone have the Path to where these cached pages are at?
>
>
>
> --
> Graham Pearson, System Administrator / Certified Webmaster /
> Northern Indiana Educational Services Center
> Http://www.niesc.k12.in.us Email: [EMAIL PROTECTED]
>
> Voice (800) 326-5642 / (574) 254-0111 Fax: (574) 254-0148`
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: (OT) RegEx editor

2003-06-30 Thread webguy
What is the $720  for, a copy of QT for windows? There is a free
non-commercial windows version. This may have changed since I looked last.
If the $720 is for VStudio 6 (the free win qt version required it.. ), I
have a copy of that.  The RegEx editor source is GPL'ed  right? If its just
a donation type thing cool enough, just wondering... Might as well, complile
a mac version too. The mac verions of QT is free/GPLed

WG

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 16:07
To: CF-Talk
Subject: (OT) RegEx editor


I've talked to the creator of this RegEx editor:
http://www.blackie.dk/KDE/KRegExpEditor/
He's willing to port it to Windows as a standalone visual RegEx creator for
us.
We'll have the source (in Qt) and the license and I'd make it a community
thing.
What's needed?
$720
If your interested in such a tool, please email me off list with the amount
you'd like to kick in. As we'll have the source and all, it can be modified
by
community members into other things such as a DW or Studio/HS+ plugin.

Michael Dinowitz
Finding technical solutions to the problems you didn't know you had yet


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Inquiry (Problem)

2003-06-30 Thread webguy
They are in [cf web root]\WEB-INF\cfclasses

WG
-Original Message-
From: Graham Pearson [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 16:03
To: CF-Talk
Subject: CFMX Inquiry (Problem)


I have ran into a strange problem this morning with CFMX and I am
unable to find a solution to this.


I am running CFMX with Apache under Windows and in one of my
applications I have made a change to the mainpage.cfm with an 
command on the 4th line. When I login to this application I get the
entire mainpage.cfm contents. I have looked through the cfmx directory
to try and find where the cached pages are located at without any
success. Anyone have the Path to where these cached pages are at?



--
Graham Pearson, System Administrator / Certified Webmaster /
Northern Indiana Educational Services Center
Http://www.niesc.k12.in.us Email: [EMAIL PROTECTED]

Voice (800) 326-5642 / (574) 254-0111 Fax: (574) 254-0148`

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MM Forums

2003-06-30 Thread webguy
Did you try the suggestion in my mail?

here it is again :

Chould be an issue with the jrun connector. Can you browse all your site a
using the built in webserver?  (e.g. http://localhost:8500/ )

If it is check out MM site kb article about the connector

WG

-Original Message-
From: GL [mailto:[EMAIL PROTECTED]
Sent: 30 June 2003 14:57
To: CF-Talk
Subject: MM Forums


Anyone using the MM Forums this morning? My CFMX died this weekend and I
went to the MM Forums to look for advice. I found a thread where a bunch
of people are claiming the same behavior. I clicked "Reply" and get this
error:
Element UP_USERNAME is undefined in REQUEST.


The error occurred in
/data/www/appserver/cfmx/extensions/customtags/membership/loginform.cfm:
line 322
Called from
/data/www/appserver/cfmx/extensions/customtags/membership/loginform.cfm:
line 389
Called from
/data/www/appserver/cfmx/extensions/customtags/membership/loginform.cfm:
line 444
Called from
/data/www/appserver/cfmx/extensions/customtags/membership/loginform.cfm:
line 448
Called from /data/www/appserver/cfmx/wwwroot/membership/login.cfm: line
10

320 :   
321 :   
322 :   
323 :   
324 :   

I figured I'm not logged in so I went to the top of the page and click
the "Login" link and get the same error.

Macromedia is really scaring me! CFMX is crazy. The new website is
crazy. Untrapped errors in the CF Administrator. Untrapped errors in the
forums. Nice quality control!

Here's the thread:
Thread Title: CFMX restarting on its own
Created On Monday 9, June, 2003 3:43 PM
   CFMX restarting on its own
   Re:CFMX restarting on its own
   Re:CFMX restarting on its own
   Re:CFMX restarting on its own
   Re:CFMX restarting on its own

dtobeyvp
Junior Member

Posts: 1
Joined: Jun 2003
  Monday, June 09, 2003 3:43 PM

We are seeing a very strange thing. Every 5 or 6 hours, sometimes
longer, sometime shorter, the CFMX Application Service on our Windows
2000 machine restarts itself. We're running Windows 2000 with IIS. Has
anyone ever experienced this sort of thing? The properties for the
Windows Service are not set to do anything when the service fails, so
that shouldn't be it. The log that appears in our Event viewer looks
like the below. Has anyone experienced an Event ID of 80? This has been
going on for a couple weeks now. (We're on CFMX, updater 3). Any
feedback, even guesses, would be appreciated.

Event Type: Warning
Event Source: ColdFusion MX Application Server
Event Category: None
Event ID: 80
Date: 6/5/2003
Time: 12:57:30 PM
User: N/A
Computer: SERVER
Description:
The ColdFusion MX Application Server service for the "default" server is
restarting.

   Reply   Quote   Top   Bottom

avitol
Junior Member

Posts: 1
Joined: Jun 2003
  Tuesday, June 10, 2003 4:24 PM

Hi!

You're at least lucky... that it starts automaticly!!

I have to start it manually EVERY TIME after start-up (Win 2000 server)
even though that in SERVICES the definition at start-up is "Automatic"
? I even set it on "restart" in case of fail... but every start
up i get the error:
"The Coldfusion MX application service terminated with service-specific
error 2"

Do u have any ideas or even suggestions?

THANX ahead
please could u reply to the following e-mail: my personal e-mail

   Reply   Quote   Top   Bottom

plarts
Senior Member

Posts: 154
Joined: Sep 2001
  Tuesday, June 17, 2003 4:17 AM

I have the same problem,

Since CFMX, the automatic start of CF does not work.
Environnement is Windows 2000 server and I use the CF HTTP server on
port 8500.
I have to do it manually.

Any news, solution on this are welcome,
Pierre.

-
Pierre LARDE
www.pl-arts.com

   Reply   Quote   Top   Bottom

Panther04
Junior Member

Posts: 2
Joined: Jun 2003
  Wednesday, June 18, 2003 6:52 PM

Hi,

I recently re-configured our development server with Windows 2003 Server
and installed CF MX on it. That was quite the fun job in of itself, but
I also am experiencing this same exact scenario where the Cold Fusion
service will randomly restart itself. We also get the same EventID 80 as
was described by dtobeyvp in the first post of this series.

One thing I was able to notice is that I happened to be able to be at
the server when this random restart occurred and it pretty much sent the
CPU to 100% and the memory usage spiked up to over 700MB right before it
completely crashed and then restarted the service.

Hopefully someone from Macromedia will see this post and give us some
clues as to what could be happening with our configurations.

   Reply   Quote   Top   Bottom

Panther04
Junior Member

Posts: 2
Joined: Jun 2003
  Saturday, June 28, 2003 8:52 AM

Hi again... I'm disappointed that not even a Macromedia representative
has come in and offered any suggestions as to why the CFMX service just
randomly restarts... If this is the type o

Re: CFMX Server Dead?

2003-06-29 Thread webguy
Chould be an issue with the jrun connector. Can you browse all your site a 
using the built in webserver?  (e.g. http://localhost:8500/ )

If it is check out MM site kb article about the connector

WG

Quoting GL <[EMAIL PROTECTED]>:

> OK, this is really frustrating. I had CFMX running fine for weeks. Now
> today most of my sites are not working. I'm not having a fun time trying
> to describe it. Sometimes I'm getting this error:
> File not found: /JRunScripts/jrun.dll/...
> Sometimes it's just a 404 error. Sometimes it's even a blank page!
> Sometimes I can put a display message and an abort in the
> application.cfm or index.cfm and see it. Sometimes it won't even hit the
> display message!
> 
> Anyone have any ideas on where to start?
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Host with the leader in ColdFusion hosting. 
Voted #1 ColdFusion host by CF Developers. 
Offering shared and dedicated hosting options. 
www.cfxhosting.com/default.cfm?redirect=10481

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: EJB & CF

2003-06-27 Thread webguy
Check out
http://www.macromedia.com/software/coldfusion/whitepapers/pdf/ColdFusionMXFe
atureGrid_03.pdf
for the difference between cf5/ cfmx / cfmx for j2ee

and http://www.macromedia.com/devnet/mx/coldfusion/j2ee/ for info on java
with cfmx..

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: how to get the tablenames in a database

2003-06-26 Thread webguy
Thats just for sql server (maybe access too)

WG

-Original Message-
From: Fetter, Brad [mailto:[EMAIL PROTECTED]
Sent: 26 June 2003 20:59
To: CF-Talk
Subject: RE: how to get the tablenames in a database


I think I can answer this one

here is an example of getting tables names dynamically from a database

Hope this helps,
Brad Fetter
[EMAIL PROTECTED]
FLIR Systems, Inc.


SELECT sysobjects.Name as Tablename,
 Syscolumns.Name as Fieldname
from sysobjects,
 Syscolumns
Where Sysobjects.Name = 'CAR'
and sysobjects.ID = Syscolumns.ID
Order by sysobjects.Name



#fieldname#



-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 26, 2003 12:52 PM
To: CF-Talk
Subject: how to get the tablenames in a database


I have a DSN. From this i can easily get the name if database it is pointing
to.
But how to get the tables in that database at run time?


Thanks,
Dave



HTC Disclaimer:  The information contained in this message may be privileged
and confidential and protected from disclosure. If the reader of this
message is not the intended recipient, or an employee or agent responsible
for delivering this message to the intended recipient, you are hereby
notified that any dissemination, distribution or copying of this
communication is strictly prohibited.  If you have received this
communication in error, please notify us immediately by replying to the
message and deleting it from your computer.  Thank you.



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Host with the leader in ColdFusion hosting. 
Voted #1 ColdFusion host by CF Developers. 
Offering shared and dedicated hosting options. 
www.cfxhosting.com/default.cfm?redirect=10481

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: What calendar features do people want WAS -> Calendar App

2003-06-26 Thread webguy
The calendar is one of the most complex applications out there. Its
deceptively complex.

Now to build a simple calendar, that's easy. For most people this is all
they need.

To build a calendar with simple (weekly, daily , annual) recurring events is
fairly easy too. For most of the rest, this works.

But when you get into recurring events with exceptions,complex rules, across
different timezones etc, it starts to get complicated. This is one of the
reason that the W3C Semantic Web folks have chosen RDF-based calendar and
group scheduling systems as their focus.

A good basis of a calendar design is iCal, this is what my current calendar
is based on. There is a fairly easy string representations for expressing
recurring patterns and recurring exceptions, timezone info. In iCal you can
represent rules like ...

The first Saturday that follows the first Sunday of the month,  forever:

 DTSTART;TZID=US-Eastern:19970913T09
 RRULE:FREQ=MONTHLY;BYDAY=SA;BYMONTHDAY=7,8,9,10,11,12,13

 ==> (1997 9:00 AM EDT)September 13;October 11
 (1997 9:00 AM EST)November 8;December 13
 (1998 9:00 AM EST)January 10;February 7;March 7
 (1998 9:00 AM EDT)April 11;May 9;June 13...
 ...

Every four years, the first Tuesday after a Monday in November,  forever
(U.S. Presidential Election day):

 DTSTART;TZID=US-Eastern:19961105T09
 RRULE:FREQ=YEARLY;INTERVAL=4;BYMONTH=11;BYDAY=TU;BYMONTHDAY=2,3,4,
  5,6,7,8

 ==> (1996 9:00 AM EST)November 5
 (2000 9:00 AM EST)November 7
 (2004 9:00 AM EST)November 2
 ...



It also allows you to schedule event (in the journal) specify users notes,
etc... Best of all its everywhere. If you have a calendar app on your
computer, it probably supports ical.


Now, that was my old calendar, my new calendar is a whole other game. The
plan is for a java based caledar server, that supports itip (over beep,
http), ical, webdav, jabber, soap,  with pluggable protocals / modules, jaas
for security, caching and a rule engine, and export filters to iCal etc..
and lots more..

But that will be a while :-)

Anyone has features that they would like that isn't in ical, I'd love to
hear them. If you don't know if they are covered just ask...

WG *very quick mail so there my be errors*





-Original Message-
From: CF Dude [mailto:[EMAIL PROTECTED]
Sent: 26 June 2003 18:25
To: CF-Talk
Subject: What calendar features do people want WAS -> Calendar App


I've got a calendar question.

What sort of functionality do most people want in a web based calendar app?

Whenever somebody brings up calendars that they've built, there is always at
least a handful of people who want the
code.  I've built several calendar apps in different languages, but I'm
trying to compile a list of features that are
pretty common / requested.

Any suggestions?

Eric


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Host with the leader in ColdFusion hosting. 
Voted #1 ColdFusion host by CF Developers. 
Offering shared and dedicated hosting options. 
www.cfxhosting.com/default.cfm?redirect=10481

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



  1   2   3   4   5   >