RE: SQL Server User Problems

2005-05-19 Thread Protoculture
Thanks guys, this was the problem. Cheers!

>Yeah, that'd be my guess. If the table is owned by a user you can't just
>do "select * from table" you'd have to do "select * from username.table"
>That's probably what's making things blow up.  Make sure you create all
>of the tables and SP under an account that is a DBO. 
>
>
>John Burns
>Certified Advanced ColdFusion MX Developer
>Wyle Laboratories, Inc. | Web Developer
> 
>
>-Original Message-
>From: Kerry [mailto:[EMAIL PROTECTED] 
>Sent: Wednesday, May 18, 2005 12:24 PM
>To: CF-Talk
>Subject: RE: SQL Server User Problems
>
>is the table owner dbo or {username}?
>
>
>-Original Message-
>From: Protoculture [mailto:[EMAIL PROTECTED]
>Sent: 18 May 2005 17:20
>To: CF-Talk
>Subject: RE: SQL Server User Problems
>
>
>Manage to solve the issue with the users, but now we're finding the
>stored procedures we had aren't not functioning.
>
>"Invalid object name" -- get this error when running a stored procedure.
>We checked in the database and it does exist. Also have tried removing
>and re-creating...
>
>
>
>
>>Make sure you have a SQL Server login with the same name under
>Security.
>
>>to log in as a particular user. It seems that for some reason, we 
>>cannot connect to the default database.
>>
>>This was working fine on the old system, but since we've copied things 
>>across it seems that a particular user account does not work. I've 
>>tried removing it and recreating the user all with the same dismal
>results.
>>
>>Has anyone else experienced this or know of a possible solution?
>>
>>Cheers!

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

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


RE: Verity and Security

2005-05-19 Thread Ian Vaughan
Ray

I changed what you suggested shown below, but it is still returning no
results ??


 

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: 18 May 2005 16:56
To: CF-Talk
Subject: Re: Verity and Security

You need to change CUSTOM2 to CF_CUSTOM2

On 5/18/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> I have tried what you suggested by removing the htmleditformat and the

> preserve single quotes, but it is still returning no results?? When it

> should be returning results?
> 
> Can anybody see anything else which may be causing this problem?
> 
>  name = "GetResults"
> collection = "idocs"
>  type = "simple"
> criteria = "#Form.Criteria# and CUSTOM2  
> #session.groupname#"
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> startRow = "#Form.StartRow#"
> >
> 
> If I run the original code below, it returns all matched results not 
> just the results the users security is allowed to view
> 
>  name = "GetResults"
> collection = "idocs"
> type = "simple"
> criteria = "#HTMLEditFormat(Form.Criteria)#"
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> startRow = "#Form.StartRow#"
> >
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: 17 May 2005 17:47
> To: CF-Talk
> Subject: Re: Verity and Security
> 
> You don't need the preservesinglequotes for sure. This isn't a SQL
call.
> 
> Also, the HTMLEditFormat is wrong. It will break  to be 
> 
> 
> As a side note,
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> 
> should be
> 
> maxRows="#form.maxrows+form.startrow#"
> 
> On 5/17/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> > James
> >
> > Just tried the following code below and added the (and CUSTOM2 
> >  #PreserveSingleQuotes(session.groupname)#, however the 
> > search returns no results ??
> >
> > Can anybody see what could be causing this?
> >
> >  > name = "GetResults"
> > collection = "idocs"
> > type = "simple"
> > criteria = "#HTMLEditFormat(Form.Criteria)# and CUSTOM2  
> > #PreserveSingleQuotes(session.groupname)#"
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > startRow = "#Form.StartRow#"
> >
> > >
> >
> > -Original Message-
> > From: James Holmes [mailto:[EMAIL PROTECTED]
> > Sent: 17 May 2005 14:51
> > To: CF-Talk
> > Subject: RE: Verity and Security
> >
> > There's a format to query the custom fields directly, using 
> > 
> >
> > http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/indexs22.htm
> >
> > -Original Message-
> > From: Deanna Schneider [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, 17 May 2005 9:44
> > To: CF-Talk
> > Subject: Re: Verity and Security
> >
> > I think you'll have to with query of query - unless you can use 
> > verity's language to filter - something like AND "Group A" - but if 
> > you had a document that contained "Group A" but belonged to group b,

> > you'd be screwed - so back to QofQ.
> >
> >
> 
> 



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

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


Re: Shared CF Host security

2005-05-19 Thread Andy Allan
On 5/19/05, Jochem van Dieten <[EMAIL PROTECTED]> wrote:

> 
> You will want to disable Java and COM. With CF 6.1 that means you
> need to disable all object access, with CF 7 you can disable just
> Java and COM.
> 
> 

There is currently a bug in CFMX7 sandboxing in that if you disable
COM it also disables CFCs.

Just something else to be aware of.

Andy 

-- 
[EMAIL PROTECTED]
www.creative-restraint.co.uk
www.scottishcfug.com

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

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


RE: Shared CF Host security

2005-05-19 Thread James Holmes
Ah sweet UNIX - no worry about COM, sandbox or not. 

-Original Message-
From: Andy Allan [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 19 May 2005 4:33 
To: CF-Talk
Subject: Re: Shared CF Host security

On 5/19/05, Jochem van Dieten <[EMAIL PROTECTED]> wrote:

> 
> You will want to disable Java and COM. With CF 6.1 that means you need

> to disable all object access, with CF 7 you can disable just Java and 
> COM.
> 
> 

There is currently a bug in CFMX7 sandboxing in that if you disable COM
it also disables CFCs.

Just something else to be aware of.

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

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


RE: Verity and Security

2005-05-19 Thread Ian Vaughan
Ray

I changed what you suggested shown below, but it is still returning no
results ??



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

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

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


Re: why use coldfusion 7?

2005-05-19 Thread Calvin Ward
How about this question ?

What is the compelling reason to migrate to 6.1 instead of 7?


On 5/18/05 2:23 PM, "Damien McKenna" <[EMAIL PROTECTED]> wrote:

> Another way of looking at it...
> 
> You go to buy a car.  You're, e.g., looking at the Toyota Prius (Hi
> Sean) and decide to get it.  Lets say the 2005 model has just come out,
> would you purposely not get it because it hasn't been "proven" and
> instead get the 2004 model, when infact they are the same model with
> minor modifications?



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

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


Re: Shared CF Host security

2005-05-19 Thread Calvin Ward
I would definitely entertain using sandbox security to limit the database
access, I trust that you're already using it to limit cffile access?


On 5/18/05 10:10 PM, "Jamie Price" <[EMAIL PROTECTED]> wrote:

>> At this point in the discussion I'd like to invite anyone who knows of a
>> shared host WITH A CLUE to give us all their details...
> 
>   Dave alerted me to this thread and the problem with CFMX + JSP just today,
> so I'm going to be investigating this as well on the HMS end.  I can tell you
> that the initial reason why JSP can't be locked down is that a number of
> clients are using it for a legitimate purpose - we can't just shut it off and
> tell those clients that we suddenly became security-conscious and they have to
> deal and find a shoddy host that will let them run their app.
> 
>   On the other hand, I can't see us allowing this to continue either.  Just
> because you're on a shared host it doesn't mean that you're on an insecure
> server.  It will never be as tightly locked down as a dedicated server (or
> even a VPS, which is new at HostMySite) however that doesn't mean you're
> publishing your code for the world to see.  IF that were the case we would
> change our name to HostMyBBS.  :-)
> 
>   Seriously, I will be taking this up with the CEO and COO tomorrow, and we'll
> be looking into possible alternatives so everyone gets what they want.  I
> suspect the solution will be a little different for Windows as opposed to the
> Linux-based sites, however I'm not fluent in CFMX/JSP so I can't say for
> certain.
> 
>   If any of you have any suggestions that would accomplish both the
> functionality and the security, I'd be more than happy to entertain them and
> bring them before the CEO.  I can assure you that your suggestions will not be
> brushed aside lightly for ANY reason.
> 
>   Along a similar vein, locking down datasources via sandbox security was at
> one time considered, however it was discarded I believe because clients can
> attain the same level of security by simply adding a user/pass to their code
> via the Application.cfm and referencing the datasource that way.  We will add
> the user/pass to the DSN upon request, however we ALWAYS tell clients before
> doing so that they are basically inviting other users on the server to
> read/write to their database.
> 
>   If you have any questions and the CF mods have no problems with my being
> here, please feel free to post them and I'll either answer them to the best of
> my ability or find another rep from HostMySite.com who can.
> 
> Jamie Price
> Email Administrator, Sr. Tech Support Rep
> HostMySite.com
> 
> 

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

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


Re: Shared CF Host security

2005-05-19 Thread Calvin Ward
The items that have to be disabled completely keep me off of shared hosting.

Not having cfobject/createobject in CFMX is like running a race with your
nikes tied together dangling around your neck instead of on your feet!

- Calvin


On 5/18/05 10:21 PM, "James Holmes" <[EMAIL PROTECTED]>
wrote:

> "however it was discarded I believe because clients can attain the same
> level of security by simply adding a user/pass to their code via the
> Application.cfm and referencing the datasource that way."
> 
> But with JSP enabled I am broadcasting my username and password to
> everyone on the server, as they can read my code.
> 
> As dave suggested, a slight reorganisation of servers (or even instances
> on the same server) such that some run JSP and some don't would suffice.
> Customers needing JSP can take their chances on those servers and those
> who want some security can have the servers wherein it is disabled.
> 
> For a shared host, the best CF security involves turning off JSP,
> disabling CFOBJECT and createobject() for all customers and sandboxing
> files for every app to allow access to only the account directory. If
> you can provide some servers with this config (secure hosting servers)
> and others with the more relaxed JSP option, you take care of both sets
> of needs and I stop whining like a child.
> 
> 
> -Original Message-
> From: Jamie Price [mailto:[EMAIL PROTECTED]
> Sent: Thursday, 19 May 2005 10:11
> To: CF-Talk
> Subject: RE: Shared CF Host security
> 
>> At this point in the discussion I'd like to invite anyone who knows of
>> a shared host WITH A CLUE to give us all their details...
> 
>   Dave alerted me to this thread and the problem with CFMX + JSP just
> today, so I'm going to be investigating this as well on the HMS end.  I
> can tell you that the initial reason why JSP can't be locked down is
> that a number of clients are using it for a legitimate purpose - we
> can't just shut it off and tell those clients that we suddenly became
> security-conscious and they have to deal and find a shoddy host that
> will let them run their app.
> 
>   On the other hand, I can't see us allowing this to continue either.
> Just because you're on a shared host it doesn't mean that you're on an
> insecure server.  It will never be as tightly locked down as a dedicated
> server (or even a VPS, which is new at HostMySite) however that doesn't
> mean you're publishing your code for the world to see.  IF that were the
> case we would change our name to HostMyBBS.  :-)
> 
>   Seriously, I will be taking this up with the CEO and COO tomorrow, and
> we'll be looking into possible alternatives so everyone gets what they
> want.  I suspect the solution will be a little different for Windows as
> opposed to the Linux-based sites, however I'm not fluent in CFMX/JSP so
> I can't say for certain.
> 
>   If any of you have any suggestions that would accomplish both the
> functionality and the security, I'd be more than happy to entertain them
> and bring them before the CEO.  I can assure you that your suggestions
> will not be brushed aside lightly for ANY reason.
> 
>   Along a similar vein, locking down datasources via sandbox security
> was at one time considered, however it was discarded I believe because
> clients can attain the same level of security by simply adding a
> user/pass to their code via the Application.cfm and referencing the
> datasource that way.  We will add the user/pass to the DSN upon request,
> however we ALWAYS tell clients before doing so that they are basically
> inviting other users on the server to read/write to their database.
> 
>   If you have any questions and the CF mods have no problems with my
> being here, please feel free to post them and I'll either answer them to
> the best of my ability or find another rep from HostMySite.com who can.
> 
> Jamie Price
> Email Administrator, Sr. Tech Support Rep HostMySite.com
> 
> 
> 
> 

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

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


ColdFusion MX 7 for J2EE and RDS with a context-root other than /CFIDE

2005-05-19 Thread wolf2k5
Hi,

I am running ColdFusion MX 7 for J2EE on Tomcat 5.0.28 on Mac OS X 10.3.

I deployed the ColdFusion web application to the /cfmx7 context-root,
the Coldfusion Administrator is available at the following URL:


I didn't deploy the additiona RDS web application to the /CFIDE context-root.

Is there any way to have Dreamweaver MX 2004 (7.0.1) to connect to my
CFMX7 installation via RDS  using the /cfmx7 context-root (the RDS
entry point should be http://localhost/cfmx7/CFIDE/main/ide.cfm)?

How do I instruct Dreamweaver to do so?

Also, how do I verity that the RDS functionality is enabled in my
CFMX7 installation?
I cannot remember if I enabled it when I installed CFMX7.

Thanks a lot.

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

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


Re: text formatting

2005-05-19 Thread Deanna Schneider
I just encountered an interesting issue. FCK editor is not Contribute 
compatible. Now, I _know_ that people shouldn't be filling out forms will 
"browsing" with Contribute, but users being what they areit did happen, 
and we found out that Contribute balks at the javascript. Go figure.


> I'll third the word for FCKEditor. We've made a habit of replacing
> textarea with it and using the basic toolbar. It's fast and stable and
> cross platform/cross browser (ok, not Mac IE or Safari, but who really
> cares about them anyhow? (oops...I may have let loose a browser
> flamewar.)


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

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


Display Automated tasks in CF5

2005-05-19 Thread Paolo Cesana
How can I display all scheduled tasks without going in the admin?

Tks/Rgds

__PC

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

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


Re: WOT: but funny just the same.

2005-05-19 Thread S . Isaac Dealey
For succincntess I'd have used an xhtml doctype so the p tags would
close themselves with /> instead of >. But why stop there, why not
have a  inside that div with an  for each vertebrae. He's got
all that unused white-space that'll just collapse when it's displayed.
;P

> When you're getting it injected in your skin, succinctness
> is of
> greater import, and CSS is a lot more verbose.  So while
> it is
> deprecated, it is still legal, so lets give him the
> benefit of the
> doubt.  ;)

> On 5/18/05, Bob Flynn <[EMAIL PROTECTED]> wrote:
>> Yeah, that's good, but what Doctype is he using? Isn't
>> the align attribute deprecated? ;-)
>>
>> >I?m not trying to start a discussion on this. I just
>> >thought you guys might
>> >get a kick out of it.
>> >
>> >
>> >
>> >HYPERLINK
>> >"http://ned.bounceme.net/Tattoo2.jpg"http://ned.bounceme
>> >.net/Tattoo2.jpg
>>


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm


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

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


RE: Display Automated tasks in CF5

2005-05-19 Thread Robertson-Ravo, Neil (RX)

 
   
 


 #allTasks[i].task#  

 







-Original Message-
From: Paolo Cesana [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 13:41
To: CF-Talk
Subject: Display Automated tasks in CF5

How can I display all scheduled tasks without going in the admin?

Tks/Rgds

__PC



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

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


Re: Shared CF Host security

2005-05-19 Thread Jochem van Dieten
Andy Allan wrote:
> On 5/19/05, Jochem van Dieten <[EMAIL PROTECTED]> wrote:
>> 
>> You will want to disable Java and COM. With CF 6.1 that means you
>> need to disable all object access, with CF 7 you can disable just
>> Java and COM.
> 
> There is currently a bug in CFMX7 sandboxing in that if you disable
> COM it also disables CFCs.

You could delete the JIntegra directory from the harddisk, 
presumably that disables COM too :)

I have actually ran a test system without that directory for a 
few hours without seeing detrimental effects, but you might want 
to test that yourself on a test server.

Jochem

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

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


RE: Shared CF Host security

2005-05-19 Thread James Holmes
It's not that bad - you can still instantiate a CFC by using CFINVOKE on
a component that returns THIS. You just lose Java and COM.

-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 19 May 2005 6:43 
To: CF-Talk
Subject: Re: Shared CF Host security

The items that have to be disabled completely keep me off of shared
hosting.

Not having cfobject/createobject in CFMX is like running a race with
your nikes tied together dangling around your neck instead of on your
feet!

- Calvin

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

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


RE: Anyone know of a more elegant way to do this?

2005-05-19 Thread SStewart
Ewok...

This works, 

Thanks

sas

Scott A. Stewart, 
Web Application Developer
 
Engineering Consulting Services, Ltd. (ECS)
14026 Thunderbolt Place, Suite 300
Chantilly, VA 20151
Phone: (703) 995-1737
Fax: (703) 834-5527


-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 18, 2005 06:03 pm
To: CF-Talk
Subject: RE: Anyone know of a more elegant way to do this?
Importance: Low

Sorry, first one didn’t come through I guess... here it is again

This doesn’t take into account that you may reach ZZ will you actually have
that many on one project? It seems like it would throw your whole numbering
out of whack if so anyway. I definitely agree with Claude (Im sure you do
too) but if you can manage to start with a new schema it would save a lot of
future headache... like actually having 01000AA - 01000ZZ and needing
another since the number seems to be more of a main project indicator and
the letters revisions or changes/updates... anyway... 

This will increment the letters AA - AZ and roll AZ to BA. It's by no means
perfect either but it's not 1000 lines of code :)



select * from q order by jobid desc

























#NumberPrefix##NewFirstLetter##newLastLetter#


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.12 - Release Date: 5/17/2005
 




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

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


Re: Verity and Security

2005-05-19 Thread Raymond Camden
So when you remove the second portion - and you cfdump the results,
you do see custom2 containing #session.groupname#, correct?

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Ray
> 
> I changed what you suggested shown below, but it is still returning no
> results ??
> 
>  name = "GetResults"
> collection = "idocs"
> type = "simple"
> criteria = "#Form.Criteria# and CF_CUSTOM2 
> #session.groupname#"
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> startRow = "#Form.StartRow#"
> >
> 
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: 18 May 2005 16:56
> To: CF-Talk
> Subject: Re: Verity and Security
> 
> You need to change CUSTOM2 to CF_CUSTOM2
> 
> On 5/18/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> > I have tried what you suggested by removing the htmleditformat and the
> 
> > preserve single quotes, but it is still returning no results?? When it
> 
> > should be returning results?
> >
> > Can anybody see anything else which may be causing this problem?
> >
> >  > name = "GetResults"
> > collection = "idocs"
> >  type = "simple"
> > criteria = "#Form.Criteria# and CUSTOM2 
> > #session.groupname#"
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > startRow = "#Form.StartRow#"
> > >
> >
> > If I run the original code below, it returns all matched results not
> > just the results the users security is allowed to view
> >
> >  > name = "GetResults"
> > collection = "idocs"
> > type = "simple"
> > criteria = "#HTMLEditFormat(Form.Criteria)#"
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > startRow = "#Form.StartRow#"
> > >
> >
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
> > Sent: 17 May 2005 17:47
> > To: CF-Talk
> > Subject: Re: Verity and Security
> >
> > You don't need the preservesinglequotes for sure. This isn't a SQL
> call.
> >
> > Also, the HTMLEditFormat is wrong. It will break  to be
> > 
> >
> > As a side note,
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> >
> > should be
> >
> > maxRows="#form.maxrows+form.startrow#"
> >
> > On 5/17/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> > > James
> > >
> > > Just tried the following code below and added the (and CUSTOM2
> > >  #PreserveSingleQuotes(session.groupname)#, however the
> > > search returns no results ??
> > >
> > > Can anybody see what could be causing this?
> > >
> > >  > > name = "GetResults"
> > > collection = "idocs"
> > > type = "simple"
> > > criteria = "#HTMLEditFormat(Form.Criteria)# and CUSTOM2 
> > > #PreserveSingleQuotes(session.groupname)#"
> > > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > > startRow = "#Form.StartRow#"
> > >
> > > >
> > >
> > > -Original Message-
> > > From: James Holmes [mailto:[EMAIL PROTECTED]
> > > Sent: 17 May 2005 14:51
> > > To: CF-Talk
> > > Subject: RE: Verity and Security
> > >
> > > There's a format to query the custom fields directly, using
> > > 
> > >
> > > http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/indexs22.htm
> > >
> > > -Original Message-
> > > From: Deanna Schneider [mailto:[EMAIL PROTECTED]
> > > Sent: Tuesday, 17 May 2005 9:44
> > > To: CF-Talk
> > > Subject: Re: Verity and Security
> > >
> > > I think you'll have to with query of query - unless you can use
> > > verity's language to filter - something like AND "Group A" - but if
> > > you had a document that contained "Group A" but belonged to group b,
> 
> > > you'd be screwed - so back to QofQ.
> > >
> > >
> >
> >
> 
> 
> 
> 

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

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


RE: [OT] Free ftp/sftp server

2005-05-19 Thread Burns, John D
Serv-u FTP Server has a "personal" edition that doesn't have bells and
whistles and may not meet all of the requirements you listed, but it is
free.  It's main limitations are with concurrent users and the number of
user accounts that can exist.  Not sure if this would be a problem or
not.  Anyway, they have a few editions and it's worked well for me in
the past.  www.rhinosoft.com
 


John Burns
Certified Advanced ColdFusion MX Developer
Wyle Laboratories, Inc. | Web Developer
 

-Original Message-
From: Dave Merrill [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 18, 2005 3:49 PM
To: CF-Talk
Subject: [OT] Free ftp/sftp server

I'm switching from IIS to Apache (win2k), and the only thing preventing
me from shutting down IIS completely is that I need an ftp server (don't
ask).
Ideally is should do sftp, be cross-platform win/nix/mac, and be
compatible with a wide variety of clients. (I'm not interested in a cf
solution.)

The only relevant jakarta project I saw is Apache FtpServer, here:
  http://incubator.apache.org/projects/ftpserver/

The last update of that was in late '03, and it's at 0.9, neither of
which makes me feel all warm and fuzzy about it, but it might be great.

Besides that, I've seen:

freeFTPd - appears to be brand new, win only, does sftp I think
FtpGoServer - cross platform java War FTP Daemon - win, been around for
ever

Anyone have experience with any of these, or good alternatives?

Thanks,

Dave Merrill





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

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


RE: Display Automated tasks in CF5

2005-05-19 Thread Cesana, Paolo
Hi Neil,
I had tried that already prior to posting

Diagnostics: Unhandled System exception !
java.lang.ClassNotFoundException: ClassFormatError for class
coldfusion.server.ServiceFactory. Java exception occurred in call to
method.

Tks/Rgds

Paolo Cesana 
Principal Software Engineer



Eagle Global Logistics (EGL)
1801 NW 82 AVE 
Miami FL 33126
Phone: (305) 594-0038 Ext 7326
Fax: (305) 593-0431

Mailto: [EMAIL PROTECTED]
http://loginet.eaglegl.com 
http://www.eaglegl.com 

"Electricity is not the result of a series of upgrades to the candle"
Auth. unknown 



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 8:44 AM
To: CF-Talk
Subject: RE: Display Automated tasks in CF5



 
   
 


 #allTasks[i].task#  

 







-Original Message-
From: Paolo Cesana [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 13:41
To: CF-Talk
Subject: Display Automated tasks in CF5

How can I display all scheduled tasks without going in the admin?

Tks/Rgds

__PC





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

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

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


RE: Any one have an UDF for this?

2005-05-19 Thread Troy Montour
Mike,
The tag will just return the title section and the head section.

The head section will include Meta tag information, CSS's (standard,
custom), JavaScript's (if needed)

I didn't get that far for thinking of using CFhtmlhead or not. Figured I
would check see if anyone has built one already.

Thank You
Troy Montour
Vampires Internet Company
4663 Main ST
Fridley, MN 55421
[EMAIL PROTECTED]
P: 763.571.3872
M: 763.458.2368
F: 763.586.0552
-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 18, 2005 4:32 PM
To: CF-Talk
Subject: RE: Any one have an UDF for this?

Are you wanting the UDF to basically be an "include" of all the head
content or would this use the cfhtmlhead tag to "place" content in the
head?

INOW, will the UDF output, or return, a complete ... section
of a web page?

I would say your needs may be different enough from something that
someone else has created that it may be worth your effort to create your
own just as you need it.

Personally, I would use a custom tag for this.  You can either pass
different attributes or child tags to control your head-area content.

M!ke 

-Original Message-
From: Troy Montour [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 18, 2005 2:43 PM
To: CF-Talk
Subject: Any one have an UDF for this?

Hello everyone,
just trying not to recreate the wheel if someone has done this.

I was going to create an UDF to output the Html Head section of the
site.

reason for this is a site builder app that we built which this way
different users can have different page titles, meta tags, style sheets
within there sites by them instead of us having to add them.

Thanks in Advance
Troy Montour



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

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


RE: Display Automated tasks in CF5

2005-05-19 Thread Robertson-Ravo, Neil (RX)
Are you on MX?



-Original Message-
From: Cesana, Paolo [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 14:19
To: CF-Talk
Subject: RE: Display Automated tasks in CF5

Hi Neil,
I had tried that already prior to posting

Diagnostics: Unhandled System exception !
java.lang.ClassNotFoundException: ClassFormatError for class
coldfusion.server.ServiceFactory. Java exception occurred in call to
method.

Tks/Rgds

Paolo Cesana 
Principal Software Engineer



Eagle Global Logistics (EGL)
1801 NW 82 AVE 
Miami FL 33126
Phone: (305) 594-0038 Ext 7326
Fax: (305) 593-0431

Mailto: [EMAIL PROTECTED]
http://loginet.eaglegl.com 
http://www.eaglegl.com 

"Electricity is not the result of a series of upgrades to the candle"
Auth. unknown 



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 8:44 AM
To: CF-Talk
Subject: RE: Display Automated tasks in CF5



 
   
 


 #allTasks[i].task#  

 







-Original Message-
From: Paolo Cesana [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 13:41
To: CF-Talk
Subject: Display Automated tasks in CF5

How can I display all scheduled tasks without going in the admin?

Tks/Rgds

__PC







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

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


RE: Display Automated tasks in CF5

2005-05-19 Thread Robertson-Ravo, Neil (RX)
Doh! Ignore  that! I just read the subject ;-)



-Original Message-
From: Cesana, Paolo [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 14:19
To: CF-Talk
Subject: RE: Display Automated tasks in CF5

Hi Neil,
I had tried that already prior to posting

Diagnostics: Unhandled System exception !
java.lang.ClassNotFoundException: ClassFormatError for class
coldfusion.server.ServiceFactory. Java exception occurred in call to
method.

Tks/Rgds

Paolo Cesana 
Principal Software Engineer



Eagle Global Logistics (EGL)
1801 NW 82 AVE 
Miami FL 33126
Phone: (305) 594-0038 Ext 7326
Fax: (305) 593-0431

Mailto: [EMAIL PROTECTED]
http://loginet.eaglegl.com 
http://www.eaglegl.com 

"Electricity is not the result of a series of upgrades to the candle"
Auth. unknown 



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 8:44 AM
To: CF-Talk
Subject: RE: Display Automated tasks in CF5



 
   
 


 #allTasks[i].task#  

 







-Original Message-
From: Paolo Cesana [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 13:41
To: CF-Talk
Subject: Display Automated tasks in CF5

How can I display all scheduled tasks without going in the admin?

Tks/Rgds

__PC







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

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


RE: Display Automated tasks in CF5

2005-05-19 Thread Robertson-Ravo, Neil (RX)
In fact, your best bet would be just login to the CFIDE on CF5 and look at
the page which lists them and you will get the code from that page.

I cannot remember off hand as I have not touched CF5 for over 2 years!






-Original Message-
From: Cesana, Paolo [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 14:19
To: CF-Talk
Subject: RE: Display Automated tasks in CF5

Hi Neil,
I had tried that already prior to posting

Diagnostics: Unhandled System exception !
java.lang.ClassNotFoundException: ClassFormatError for class
coldfusion.server.ServiceFactory. Java exception occurred in call to
method.

Tks/Rgds

Paolo Cesana 
Principal Software Engineer



Eagle Global Logistics (EGL)
1801 NW 82 AVE 
Miami FL 33126
Phone: (305) 594-0038 Ext 7326
Fax: (305) 593-0431

Mailto: [EMAIL PROTECTED]
http://loginet.eaglegl.com 
http://www.eaglegl.com 

"Electricity is not the result of a series of upgrades to the candle"
Auth. unknown 



-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 8:44 AM
To: CF-Talk
Subject: RE: Display Automated tasks in CF5



 
   
 


 #allTasks[i].task#  

 







-Original Message-
From: Paolo Cesana [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 13:41
To: CF-Talk
Subject: Display Automated tasks in CF5

How can I display all scheduled tasks without going in the admin?

Tks/Rgds

__PC







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

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


Re: Display Automated tasks in CF5

2005-05-19 Thread Qasim Rasheed
Since you running CF5, you won't get access to service factory object.
As far as I can tell, schedule tasks must be present some where in
your system registry.

On 5/19/05, Cesana, Paolo <[EMAIL PROTECTED]> wrote:
> Hi Neil,
> I had tried that already prior to posting
> 
> Diagnostics: Unhandled System exception !
> java.lang.ClassNotFoundException: ClassFormatError for class
> coldfusion.server.ServiceFactory. Java exception occurred in call to
> method.
> 
> Tks/Rgds
> 
> Paolo Cesana
> Principal Software Engineer
> 
> 
> 
> Eagle Global Logistics (EGL)
> 1801 NW 82 AVE
> Miami FL 33126
> Phone: (305) 594-0038 Ext 7326
> Fax: (305) 593-0431
> 
> Mailto: [EMAIL PROTECTED]
> http://loginet.eaglegl.com
> http://www.eaglegl.com
> 
> "Electricity is not the result of a series of upgrades to the candle"
> Auth. unknown
> 
> 
> 
> -Original Message-
> From: Robertson-Ravo, Neil (RX)
> [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 19, 2005 8:44 AM
> To: CF-Talk
> Subject: RE: Display Automated tasks in CF5
> 
> 
>  class="coldfusion.server.ServiceFactory">
> 
> 
> 
> 
> 
>  #allTasks[i].task#  
> 
> 
> 
> 
> 
> 
> 
> 
> 
> -Original Message-
> From: Paolo Cesana [mailto:[EMAIL PROTECTED]
> Sent: 19 May 2005 13:41
> To: CF-Talk
> Subject: Display Automated tasks in CF5
> 
> How can I display all scheduled tasks without going in the admin?
> 
> Tks/Rgds
> 
> __PC
> 
> 
> 
> 
> 
> 

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

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


RE: Display Automated tasks in CF5

2005-05-19 Thread Pascal Peters
Not for CF5, you can use cfregistry to get them.



watch out for the wrap in the branch

Pascal

> -Original Message-
> From: Robertson-Ravo, Neil (RX) [mailto:Neil.Robertson-
> [EMAIL PROTECTED]
> Sent: 19 May 2005 14:44
> To: CF-Talk
> Subject: RE: Display Automated tasks in CF5
> 
>  class="coldfusion.server.ServiceFactory">
> 
> 
> 
> 
> 
>  #allTasks[i].task#  
> 
> 
> 
> 

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

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


RE: Verity and Security

2005-05-19 Thread Ian Vaughan
Ray

Yeah when removing the second portion ( and CF_CUSTOM2 
#session.groupname#" ) and cfdump the results



I am seeing custom 2 with the correct groupname for that document i.e. '
ALL IT'



-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 14:16
To: CF-Talk
Subject: Re: Verity and Security

So when you remove the second portion - and you cfdump the results, you
do see custom2 containing #session.groupname#, correct?

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Ray
> 
> I changed what you suggested shown below, but it is still returning no

> results ??
> 
>  name = "GetResults"
> collection = "idocs"
> type = "simple"
> criteria = "#Form.Criteria# and CF_CUSTOM2  
> #session.groupname#"
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> startRow = "#Form.StartRow#"
> >
> 
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: 18 May 2005 16:56
> To: CF-Talk
> Subject: Re: Verity and Security
> 
> You need to change CUSTOM2 to CF_CUSTOM2
> 
> On 5/18/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> > I have tried what you suggested by removing the htmleditformat and 
> > the
> 
> > preserve single quotes, but it is still returning no results?? When 
> > it
> 
> > should be returning results?
> >
> > Can anybody see anything else which may be causing this problem?
> >
> >  > name = "GetResults"
> > collection = "idocs"
> >  type = "simple"
> > criteria = "#Form.Criteria# and CUSTOM2  
> > #session.groupname#"
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > startRow = "#Form.StartRow#"
> > >
> >
> > If I run the original code below, it returns all matched results not

> > just the results the users security is allowed to view
> >
> >  > name = "GetResults"
> > collection = "idocs"
> > type = "simple"
> > criteria = "#HTMLEditFormat(Form.Criteria)#"
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > startRow = "#Form.StartRow#"
> > >
> >
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
> > Sent: 17 May 2005 17:47
> > To: CF-Talk
> > Subject: Re: Verity and Security
> >
> > You don't need the preservesinglequotes for sure. This isn't a SQL
> call.
> >
> > Also, the HTMLEditFormat is wrong. It will break  to be 
> > 
> >
> > As a side note,
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> >
> > should be
> >
> > maxRows="#form.maxrows+form.startrow#"
> >
> > On 5/17/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> > > James
> > >
> > > Just tried the following code below and added the (and CUSTOM2 
> > >  #PreserveSingleQuotes(session.groupname)#, however the 
> > > search returns no results ??
> > >
> > > Can anybody see what could be causing this?
> > >
> > >  > > name = "GetResults"
> > > collection = "idocs"
> > > type = "simple"
> > > criteria = "#HTMLEditFormat(Form.Criteria)# and CUSTOM2 

> > > #PreserveSingleQuotes(session.groupname)#"
> > > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > > startRow = "#Form.StartRow#"
> > >
> > > >
> > >
> > > -Original Message-
> > > From: James Holmes [mailto:[EMAIL PROTECTED]
> > > Sent: 17 May 2005 14:51
> > > To: CF-Talk
> > > Subject: RE: Verity and Security
> > >
> > > There's a format to query the custom fields directly, using 
> > > 
> > >
> > > http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/indexs22.ht
> > > m
> > >
> > > -Original Message-
> > > From: Deanna Schneider [mailto:[EMAIL PROTECTED]
> > > Sent: Tuesday, 17 May 2005 9:44
> > > To: CF-Talk
> > > Subject: Re: Verity and Security
> > >
> > > I think you'll have to with query of query - unless you can use 
> > > verity's language to filter - something like AND "Group A" - but 
> > > if you had a document that contained "Group A" but belonged to 
> > > group b,
> 
> > > you'd be screwed - so back to QofQ.
> > >
> > >
> >
> >
> 
> 
> 
> 



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

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


Re: Verity and Security

2005-05-19 Thread Jerry Johnson
I haven't been following this thread, so I may be repeating something
already said, but...

Don't you need to put the groupname in double quotes (make it a
phrase) if it contains spaces or reserved words for verity queries?

so...

 ""#session.groupname#""

Jerry Johnson
Web Developer

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Ray
> 
> Yeah when removing the second portion ( and CF_CUSTOM2 
> #session.groupname#" ) and cfdump the results
> 
> 
> 
> I am seeing custom 2 with the correct groupname for that document i.e. '
> ALL IT'
> 
>

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

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


RE: [OT] Free ftp/sftp server

2005-05-19 Thread RADEMAKERS Tanguy
Dave,

Check out the FileZilla project on sourceforge. Their main product is an
ftp/sftp client, but they also have a server product. I haven't used it,
but i've been *real* impressed with the client in terms of how often
they release, fix bugs, patch security problems, etc - so i'd say the
server probably deserves a spin.

It's GPL and has beta sftp support. Win32 only...

/t

>-Original Message-
>From: Dave Merrill [mailto:[EMAIL PROTECTED] 
>Sent: Wednesday, May 18, 2005 3:49 PM
>To: CF-Talk
>Subject: [OT] Free ftp/sftp server
>
>I'm switching from IIS to Apache (win2k), and the only thing preventing
>me from shutting down IIS completely is that I need an ftp 
>server (don't
>ask).
>Ideally is should do sftp, be cross-platform win/nix/mac, and be
>compatible with a wide variety of clients. (I'm not interested in a cf
>solution.)
>
>The only relevant jakarta project I saw is Apache FtpServer, here:
>  http://incubator.apache.org/projects/ftpserver/
>
>The last update of that was in late '03, and it's at 0.9, neither of
>which makes me feel all warm and fuzzy about it, but it might be great.
>
>Besides that, I've seen:
>
>freeFTPd - appears to be brand new, win only, does sftp I think
>FtpGoServer - cross platform java War FTP Daemon - win, been around for
>ever
>
>Anyone have experience with any of these, or good alternatives?
>
>Thanks,
>
>Dave Merrill

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

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


Re: Expected = instead of <(0x3C)

2005-05-19 Thread Ryan Duckworth
Can you please post your entire cfchart tag.

Thanks,

Ryan Duckworth 
Macromedia ColdFusion Certified Professional 

Uhlig Communications 
10983 Granada Lane 
Overland Park, KS 66211 
(913) 754-4272


On 5/18/05, Daniel Kang <[EMAIL PROTECTED]> wrote:
> When I run cfcharts, I am getting the error below.   Please let me
> know how to debug this.
> 
> tia
> 
> 
> Expected = instead of <(0x3C) In line:1 position:75. Stack:<6>
>  The error occurred in
> D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm: line 166
> 
> 164 :   markerStyle = "diamond"
> 165 :   serieslabel="3 to 7 yrs"
> 166 :   paintStyle="raise">
> 167 : 
> 
> Stack Trace at 
> cfStatChartQ212ecfm288395228.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm:166)
> at 
> cfStatChart2ecfm1445877973.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChart.cfm:101)
> java.lang.RuntimeException: Expected = instead of <(0x3C)
> In line:1 position:75. Stack:<6>
>at 
> com.gp.webcharts3D.xml.ExXmlParser.throwParseException(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlParser.unexpected(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlParser.unexpected(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlParser.nextAttr(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlParser.parseXmlToken(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlParser.parseToken(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlParser.parse(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlParser.build(ExXmlParser.java)
>at com.gp.webcharts3D.xml.ExXmlDocument.parse(ExXmlDocument.java)
>at com.gp.webcharts3D.xml.ExXmlDocument.parse(ExXmlDocument.java)
>at com.gp.webcharts3D.model.ExContents.setXmlContents(ExContents.java)
>at com.gp.webcharts3D.model.ExContents.(ExContents.java)
>at com.gp.webcharts3D.ChartApplet.setXmlContents(ChartApplet.java)
>at com.gp.image.server.IcDescription.setProperties(IcDescription.java)
>at com.gp.image.server.IcChartPool.pop(IcChartPool.java)
>at com.gp.image.server.IcImageServer.popChart(IcImageServer.java)
>at com.gp.image.server.cache.IcFileImage.(IcFileImage.java)
>at com.gp.image.server.IcImageServer.__newImage(IcImageServer.java)
>at com.gp.image.server.IcImageServer._newImage(IcImageServer.java)
>at com.gp.image.server.IcImageServer.newImage(IcImageServer.java)
>at com.gp.image.server.IcImageCache.getImage(IcImageCache.java)
>at com.gp.image.server.IcImageServer.getImage(IcImageServer.java)
>at com.gp.image.ExServerComponent.getImageTag(ExServerComponent.java)
>at 
> coldfusion.graph.GraphingServiceImpl$2.run(GraphingServiceImpl.java:319)
>at java.security.AccessController.doPrivileged(Native Method)
>at 
> coldfusion.graph.GraphingServiceImpl.generateGraph(GraphingServiceImpl.java:314)
>at coldfusion.tagext.io.ChartTag.doEndTag(ChartTag.java:428)
>at 
> cfStatChartQ212ecfm288395228.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm:166)
>at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>at 
> cfStatChart2ecfm1445877973.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChart.cfm:101)
>at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
>at 
> coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:107)
>at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
>at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
>at 
> coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
>at 
> coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
>at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
>at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
>at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
>at coldfusion.CfmServlet.service(CfmServlet.java:105)
>at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
>at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
>at 
> jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
>at 
> jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
>at 
> jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
>at 
> jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:348)
>at 
> jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451)
>   

Re: Verity and Security

2005-05-19 Thread Raymond Camden
I'm not sure then. I just tried a test locally with a collection
created from a fake query. I then used:



and it worked fine. Maybe add a cfoutput above to ensure your
session.groupname is what you really think it is.

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Ray
> 
> Yeah when removing the second portion ( and CF_CUSTOM2 
> #session.groupname#" ) and cfdump the results
> 
> 
> 
> I am seeing custom 2 with the correct groupname for that document i.e. '
> ALL IT'
> 
> 
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: 19 May 2005 14:16
> To: CF-Talk
> Subject: Re: Verity and Security
> 
> So when you remove the second portion - and you cfdump the results, you
> do see custom2 containing #session.groupname#, correct?
> 
> On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> > Ray
> >
> > I changed what you suggested shown below, but it is still returning no
> 
> > results ??
> >
> >  > name = "GetResults"
> > collection = "idocs"
> > type = "simple"
> > criteria = "#Form.Criteria# and CF_CUSTOM2 
> > #session.groupname#"
> > maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> > startRow = "#Form.StartRow#"

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

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


Lost variables scope

2005-05-19 Thread Kevin Bridges
Hi,

I have am modifying a badly written mx6.1 system.  I have a request.core 
Object that has methods that allow cfscript to use  ... ie 
request.core.include( 'file.cfm' ) (cfinclude), request.core.dump( 
variables ) (cfdump);

I have a segment of code that contains these lines:

request.core.dump( variables );
request.core.include( '/Checkout/ordercomplete.cfm' );

When I dump the variables scope I see all of the variables I need, but 
the /Checkout/ordercomplete.cfm page does not see them.

Placing request.core.dump( variables ); as the first line of 
/Checkout/ordercomplete.cfm produces a dump of the request.core object.  
Somehow the variables scope has been replaced.  Anyone have any ideas 
why?  Here are the functions being called:














Best Regards,
Kevin Bridges





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

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

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


form->database->form help needed

2005-05-19 Thread Daniel Kessler
I have an application where each page is a single field and between 
each page, that field information is sent to the database.  There's a 
template page that gets copied by the content people and their own 
form element is added to the form template.
I've set it up so that the page in between will find out if the field 
exists and if so, add it to the database.
But if the person has already partially gone through the screens 
which adds the elements to the db and then leaves and comes back to 
their "project" to continue, I need it to fill in the pages that 
they're already completed, as they come to those pages.

I'm not sure how to approach this.  Can I do a db call and cookie the 
recordset for each page to read or somehow add the recordset to the 
application variables?  I'm really out of my element here so any 
advice or requests for clarity are greatly appreciated.

-- 
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu

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

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


Re: Expected = instead of <(0x3C)

2005-05-19 Thread Daniel Kang
It is:


select * from QAnswerExp




















tia

On 5/19/05, Ryan Duckworth <[EMAIL PROTECTED]> wrote:
> Can you please post your entire cfchart tag.
> 
> Thanks,
> 
> Ryan Duckworth
> Macromedia ColdFusion Certified Professional
> 
> Uhlig Communications
> 10983 Granada Lane
> Overland Park, KS 66211
> (913) 754-4272
> 
> 
> On 5/18/05, Daniel Kang <[EMAIL PROTECTED]> wrote:
> > When I run cfcharts, I am getting the error below.   Please let me
> > know how to debug this.
> >
> > tia
> >
> >
> > Expected = instead of <(0x3C) In line:1 position:75. Stack:<6>
> >  The error occurred in
> > D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm: line 166
> >
> > 164 :   markerStyle = "diamond"
> > 165 :   serieslabel="3 to 7 yrs"
> > 166 :   paintStyle="raise">
> > 167 : 
> >
> > Stack Trace at 
> > cfStatChartQ212ecfm288395228.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm:166)
> > at 
> > cfStatChart2ecfm1445877973.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChart.cfm:101)
> > java.lang.RuntimeException: Expected = instead of <(0x3C)
> > In line:1 position:75. Stack:<6>
> >at 
> > com.gp.webcharts3D.xml.ExXmlParser.throwParseException(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlParser.unexpected(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlParser.unexpected(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlParser.nextAttr(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlParser.parseXmlToken(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlParser.parseToken(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlParser.parse(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlParser.build(ExXmlParser.java)
> >at com.gp.webcharts3D.xml.ExXmlDocument.parse(ExXmlDocument.java)
> >at com.gp.webcharts3D.xml.ExXmlDocument.parse(ExXmlDocument.java)
> >at 
> > com.gp.webcharts3D.model.ExContents.setXmlContents(ExContents.java)
> >at com.gp.webcharts3D.model.ExContents.(ExContents.java)
> >at com.gp.webcharts3D.ChartApplet.setXmlContents(ChartApplet.java)
> >at 
> > com.gp.image.server.IcDescription.setProperties(IcDescription.java)
> >at com.gp.image.server.IcChartPool.pop(IcChartPool.java)
> >at com.gp.image.server.IcImageServer.popChart(IcImageServer.java)
> >at com.gp.image.server.cache.IcFileImage.(IcFileImage.java)
> >at com.gp.image.server.IcImageServer.__newImage(IcImageServer.java)
> >at com.gp.image.server.IcImageServer._newImage(IcImageServer.java)
> >at com.gp.image.server.IcImageServer.newImage(IcImageServer.java)
> >at com.gp.image.server.IcImageCache.getImage(IcImageCache.java)
> >at com.gp.image.server.IcImageServer.getImage(IcImageServer.java)
> >at com.gp.image.ExServerComponent.getImageTag(ExServerComponent.java)
> >at 
> > coldfusion.graph.GraphingServiceImpl$2.run(GraphingServiceImpl.java:319)
> >at java.security.AccessController.doPrivileged(Native Method)
> >at 
> > coldfusion.graph.GraphingServiceImpl.generateGraph(GraphingServiceImpl.java:314)
> >at coldfusion.tagext.io.ChartTag.doEndTag(ChartTag.java:428)
> >at 
> > cfStatChartQ212ecfm288395228.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm:166)
> >at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
> >at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
> >at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
> >at 
> > cfStatChart2ecfm1445877973.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChart.cfm:101)
> >at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
> >at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
> >at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
> >at 
> > coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:107)
> >at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
> >at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
> >at 
> > coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
> >at 
> > coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
> >at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
> >at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
> >at 
> > coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
> >at coldfusion.CfmServlet.service(CfmServlet.java:105)
> >at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
> >at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
> >at 
> > jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
> >at 
> > jrun.servlet.ServletEngineService.dispatch(ServletEngineSer

Re: Shared CF Host security

2005-05-19 Thread Jamie Price
>> 
>> You will want to disable Java and COM. With CF 6.1 that means you
>> need to disable all object access, with CF 7 you can disable just
>> Java and COM.
>> 

Are you referring to simply disabling the createobject(Java) and 
createobject(COM) CFML functions?

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

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


RE: MXNA Screensaver

2005-05-19 Thread Connie DeCinko
http://www.peterelst.com/blog/index.php?p=44&c=1
 

-Original Message-
From: Mike Chambers [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 18, 2005 4:55 PM
To: CF-Talk
Subject: Re: MXNA Screensaver

Do you have a URL to it? Or know who developed it?

mike chambers

[EMAIL PROTECTED]

On May 10, 2005, at 10:46 PM, Connie DeCinko wrote:

> The MXNA Screensaver no longer works with the change of the news 
> aggregator
> to MMs server.  Anyone know if an updated version is available?
>
>
>
>
>
> 



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

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


RE: [OT] Free ftp/sftp server

2005-05-19 Thread Dave Merrill
Thanks, looks like this may be the one to go with. Wish it was
cross-platform, but that's not a real need, just a preference to learn the
quirks of one app for future situations.

Thanks again,

Dave

> Check out the FileZilla project on sourceforge. Their main product is an
> ftp/sftp client, but they also have a server product. I haven't used it,
> but i've been *real* impressed with the client in terms of how often
> they release, fix bugs, patch security problems, etc - so i'd say the
> server probably deserves a spin.
>
> It's GPL and has beta sftp support. Win32 only...
>
> /t



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

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

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


Re: form->database->form help needed

2005-05-19 Thread S . Isaac Dealey
I have to admit, I'm thoroughly lost... maybe an ascii-art picture of
what you're trying to describe might help?

> I have an application where each page is a single field
> and between
> each page, that field information is sent to the database.
> There's a
> template page that gets copied by the content people and
> their own
> form element is added to the form template.
> I've set it up so that the page in between will find out
> if the field
> exists and if so, add it to the database.
> But if the person has already partially gone through the
> screens
> which adds the elements to the db and then leaves and
> comes back to
> their "project" to continue, I need it to fill in the
> pages that
> they're already completed, as they come to those pages.

> I'm not sure how to approach this.  Can I do a db call and
> cookie the
> recordset for each page to read or somehow add the
> recordset to the
> application variables?  I'm really out of my element here
> so any
> advice or requests for clarity are greatly appreciated.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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

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


Re: Expected = instead of <(0x3C)

2005-05-19 Thread Ryan Duckworth
Daniel, Your data is bad.  I just ran the code that I posted below on
CF 6.1 & 7.

I just put some junk data (all numeric) in a test query and it graphs perfectly.

Send me this: I guarantee you have some non-numberic values in your query!!!


select * from QAnswerExp






Ryan Duckworth 
Macromedia ColdFusion Certified Professional 

Uhlig Communications 
10983 Granada Lane 
Overland Park, KS 66211 
(913) 754-4272
































> > On 5/18/05, Daniel Kang <[EMAIL PROTECTED]> wrote:
> > > When I run cfcharts, I am getting the error below.   Please let me
> > > know how to debug this.
> > >
> > > tia
> > >
> > >
> > > Expected = instead of <(0x3C) In line:1 position:75. Stack:<6>
> > >  The error occurred in
> > > D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm: line 166
> > >
> > > 164 :   markerStyle = "diamond"
> > > 165 :   serieslabel="3 to 7 yrs"
> > > 166 :   paintStyle="raise">
> > > 167 : 
> > >
> > > Stack Trace at 
> > > cfStatChartQ212ecfm288395228.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChartQ21.cfm:166)
> > > at 
> > > cfStatChart2ecfm1445877973.runPage(D:\Inetpub\wwwroot\SafetyClimateSurvey\StatChart.cfm:101)
> > > java.lang.RuntimeException: Expected = instead of <(0x3C)
> > > In line:1 position:75. Stack:<6>
> > >at 
> > > com.gp.webcharts3D.xml.ExXmlParser.throwParseException(ExXmlParser.java)
> > >at com.gp.webcharts3D.xml.ExXmlParser.unexpected

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

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


RE: Verity and Security

2005-05-19 Thread Ian Vaughan
Ray

Yeah when removing the second portion ( and CF_CUSTOM2 
#session.groupname#" ) and cfdump the results



I am seeing custom 2 with the correct groupname for that document i.e.
'ALL IT'

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

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


Re: Lost variables scope

2005-05-19 Thread S . Isaac Dealey
> Hi,

> I have am modifying a badly written mx6.1 system.  I have
> a request.core
> Object that has methods that allow cfscript to use
>  ... ie
> request.core.include( 'file.cfm' ) (cfinclude),
> request.core.dump(
> variables ) (cfdump);

> I have a segment of code that contains these lines:

> request.core.dump( variables );
> request.core.include( '/Checkout/ordercomplete.cfm' );

> When I dump the variables scope I see all of the variables
> I need, but
> the /Checkout/ordercomplete.cfm page does not see them.

> Placing request.core.dump( variables ); as the first line
> of
> /Checkout/ordercomplete.cfm produces a dump of the
> request.core object.
> Somehow the variables scope has been replaced.  Anyone
> have any ideas
> why?  Here are the functions being called:

Hi Kevin,

It sounds like you're suffering from a ... well... scoping variables
with cfc's is a little different. I'm told that at one point in time
it was recommended that you could use cfinclude within a CFC method
and the include would share variables with the CFC, but that hasn't
been the case at least since the beta of the first version of MX.
Since then the variables scope in your CFC is separate from the
variables scope of your calling page and afaik there's not a
good/convenient way to bridge that gap. In an OO purist sense this is
a good thing, because it preserves encapsulation... I would imagine
the easiest workaround for you is going to be to use the request scope
instead of the variables scope for data used by your included files.
Another alternative would be to make your include function not a part
of your core CFC. If the function is instead simply injected into the
request scope as for instance request.include() then it won't have its
own variables scope to be confused with the variables scopes of the
calling template or the template being included.

hth

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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

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


RE: Verity and Security

2005-05-19 Thread Ian Vaughan
Jerry

Thanks for the tip, just tried what you suggested



However I am getting the following error 

Error Occurred While Processing Request  
Invalid CFML construct found on line 72 at column 80.  
ColdFusion was looking at the following text:
#

The CFML compiler was processing:

a CFSEARCH tag beginning on line 68, column 2.
a CFSEARCH tag beginning on line 68, column 2. 
 

If however I surround the session.groupname with single quotes I receive
the error below

Error Occurred While Processing Request  
Invalid search CRITERIA specified: oracle and CF_CUSTOM2
''Techsb','System Support','Technical Support','Finance & Corporate
I.T','All ICT''.  
If you are using TYPE=explicit, you must use Verity Query Language
operators (such as "" or "") or surround your search term in
quotes. See the documentation for details.  
 

 

-Original Message-
From: Jerry Johnson [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 15:10
To: CF-Talk
Subject: Re: Verity and Security

I haven't been following this thread, so I may be repeating something
already said, but...

Don't you need to put the groupname in double quotes (make it a
phrase) if it contains spaces or reserved words for verity queries?

so...

 ""#session.groupname#""

Jerry Johnson
Web Developer

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Ray
> 
> Yeah when removing the second portion ( and CF_CUSTOM2  
> #session.groupname#" ) and cfdump the results
> 
> 
> 
> I am seeing custom 2 with the correct groupname for that document i.e.
'
> ALL IT'
> 
>



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

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


RE: but funny just the same.

2005-05-19 Thread Damien McKenna
He forgot the HEAD tag ;-)

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 
 

> -Original Message-
> From: Bob Flynn [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, May 18, 2005 10:37 PM
> To: CF-Talk
> Subject: WOT: but funny just the same.
> 
> >http://ned.bounceme.net/Tattoo2.jpg


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

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

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


setting up Java in CF5

2005-05-19 Thread Joshua OConnor-Rose
I'm trying to set up CF5 to do DESEDE encryption and
I'm not having much luck.

So I find a java library that may do the trick but I
haven't set up java objects in Cold fusion 5 before.

Has anybody ever set up gnu-crypto java librarys on
CF5 or anything other library.

If I put the gnu-crypto.jar in the CF5 class path
directory how do I initialize the object in Coldfusion
or am I not headed in the right direction.

The object in question is 
gnu.crypto.cipher.TripleDES.

Any thoughts

-Joshua O'Connor-Rose
-All is Good



__ 
Yahoo! Mail Mobile 
Take Yahoo! Mail with you! Check email on your mobile phone. 
http://mobile.yahoo.com/learn/mail 

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

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

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


Re: Verity and Security

2005-05-19 Thread Raymond Camden
Remember to escape quotes. You would need to change
"#session.groupname#" to ""#session.groupname#"". I'm not convinced
htat is your problem - but try it.

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Jerry
> 
> Thanks for the tip, just tried what you suggested
> 
>  name = "GetResults"
> collection = "idocs"
>  type = "simple"
> criteria = "#HTMLEditFormat(Form.Criteria)# and CF_CUSTOM2
>  "#session.groupname#""
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> startRow = "#Form.StartRow#"
> >
> 
> However I am getting the following error
> 
>

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

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


Re: Verity and Security

2005-05-19 Thread Jerry Johnson
Remember to escape the double quotes (put two doublequotes together)
within a doulequoted string ...

"#HTMLEditFormat(Form.Criteria)# and CF_CUSTOM2 
""#session.groupname#"""

Jerry Johnson
Web Developer

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Jerry
> 
> Thanks for the tip, just tried what you suggested
> 
>  name = "GetResults"
> collection = "idocs"
>  type = "simple"
> criteria = "#HTMLEditFormat(Form.Criteria)# and CF_CUSTOM2
>  "#session.groupname#""
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> startRow = "#Form.StartRow#"
> >
>

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

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


Re: form->database->form help needed

2005-05-19 Thread Deanna Schneider
I think he's just talking about a simple multi-page form, but instead of 
storing the info in the session scope and inserting upon completion, he's 
inserting between each page.

So, Daniel, yes - you can retrieve the record set you're working with and 
store it. I'd probably go with storing it in the session scope. But, be 
aware that every time your user updates a page, you'll need to also update 
that session scope var. I'd maybe think twice about your design - that's a 
lot of round trips to the database. You could, instead, be storing stuff in 
the session scope as they go, and then have a "save" button (repeated on 
each page), that saves their current work-state. It depends on the 
sophistication level of your users, and what you're really trying to 
collect.


- Original Message - 
From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, May 19, 2005 10:10 AM
Subject: Re: form->database->form help needed


>I have to admit, I'm thoroughly lost... maybe an ascii-art picture of
> what you're trying to describe might help?
>
>> I have an application where each page is a single field
>> and between
>> each page, that field information is sent to the database.
>> There's a
>> template page that gets copied by the content people and
>> their own
>> form element is added to the form template.
>> I've set it up so that the page in between will find out
>> if the field
>> exists and if so, add it to the database.
>> But if the person has already partially gone through the
>> screens
>> which adds the elements to the db and then leaves and
>> comes back to
>> their "project" to continue, I need it to fill in the
>> pages that
>> they're already completed, as they come to those pages.
>
>> I'm not sure how to approach this.  Can I do a db call and
>> cookie the
>> recordset for each page to read or somehow add the
>> recordset to the
>> application variables?  I'm really out of my element here
>> so any
>> advice or requests for clarity are greatly appreciated.
>
>
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
>
> add features without fixtures with
> the onTap open source framework
>
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
>
>
>
>
> 

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

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


RE: Verity and Security

2005-05-19 Thread Ian Vaughan
Ray / Jerry

That seems to have solved that problem, but it is stating that the
custom2 variable is undefined 

Error Occurred While Processing Request  
Variable CUSTOM2 is undefined.  
 
  
The error occurred in \home\itsearchresults.cfm: line 104
 
102 :  
103 : 
104 : 
105 : 
106 :   

 
 But If I change
 "#HTMLEditFormat(Form.Criteria)# and CF_CUSTOM2 
""#session.groupname#"""

To just 

 "#HTMLEditFormat(Form.Criteria)#

And run the search the custom2 field is populated?

-Original Message-
From: Jerry Johnson [mailto:[EMAIL PROTECTED] 
Sent: 19 May 2005 16:42
To: CF-Talk
Subject: Re: Verity and Security

Remember to escape the double quotes (put two doublequotes together)
within a doulequoted string ...

"#HTMLEditFormat(Form.Criteria)# and CF_CUSTOM2 
""#session.groupname#"""

Jerry Johnson
Web Developer

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Jerry
> 
> Thanks for the tip, just tried what you suggested
> 
>  name = "GetResults"
> collection = "idocs"
>  type = "simple"
> criteria = "#HTMLEditFormat(Form.Criteria)# and CF_CUSTOM2 
>  "#session.groupname#""
> maxRows = "#Evaluate(Form.MaxRows + Form.StartRow)#"
> startRow = "#Form.StartRow#"
> >
>



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

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


Re: Lost variables scope

2005-05-19 Thread Kevin Bridges
The code I am working has survived several generations of developers and 
is a convoluted mess.  I would love nothing more than to be able to 
properly scope the variables being used throughout the rest of the 
application.  The original application developers (if you want to call 
them that) did not scope any variables and left that entirely to Cold 
Fusion to figure out.  The volumes of bad code are staggering ... 
changing one item can cause a cascading series of errors.

I do not have the option of properly scoping their variables.  But at 
the same time, I would like to be able to call cf tag based functions in 
cfscript without scoping issues ... or at least have enough knowledge to 
overcome them (facilitates the rewrite we will be doing). 

Is it a good practice to place methods in the request scope?  My CF has 
become a bit rusty ... how would I do that?  Is there a more appropriate 
location to store these types of functions?

Thanks
Kevin Bridges

S. Isaac Dealey wrote:

>Hi Kevin,
>
>It sounds like you're suffering from a ... well... scoping variables
>with cfc's is a little different. I'm told that at one point in time
>it was recommended that you could use cfinclude within a CFC method
>and the include would share variables with the CFC, but that hasn't
>been the case at least since the beta of the first version of MX.
>Since then the variables scope in your CFC is separate from the
>variables scope of your calling page and afaik there's not a
>good/convenient way to bridge that gap. In an OO purist sense this is
>a good thing, because it preserves encapsulation... I would imagine
>the easiest workaround for you is going to be to use the request scope
>instead of the variables scope for data used by your included files.
>Another alternative would be to make your include function not a part
>of your core CFC. If the function is instead simply injected into the
>request scope as for instance request.include() then it won't have its
>own variables scope to be confused with the variables scopes of the
>calling template or the template being included.
>
>hth
>
>s. isaac dealey   954.522.6080
>new epoch : isn't it time for a change?
>  
>

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

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

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


RE: form->database->form help needed

2005-05-19 Thread Dawson, Michael
>twice about your design - that's a lot of round trips to the database.
You could, 

In addition, you will need to have a lot of NULLable fields in your
database.  That, in turn, can lose some of your design intent.

Once the entire form has been submitted, as far as the user is
concerned, have they left out any information that your business logic
requires?  And that kind of rot.

M!ke

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

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


CFMX XML/XSLT questions....

2005-05-19 Thread Jeff Waris
What I am doing is not earth shattering by any means but I am looking for
the most efficient way to do it. The XML is generated on the fly and about
the only options I have is the date range I give to create the file. 

I would like to be able to sort, filter and display it back to the user
based on the information in the XML file itself. Am I going in the right
direction by using XSLT for doing this? OR... should I throw the data from
the XML file in a temporary table in my SQL7 database? If I throw the
information in the temp table I am then free to query the data and use CF to
parse out the data to the user.. What's the better way, or do I have more
options for doing this kind of thing???

Thanks.
Jeff


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

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


Re: Verity and Security

2005-05-19 Thread Jerry Johnson
Listen to Ray more than me, because I half (thankfully) flushed all
Verity knowledge from my brain 6 months ago. Now it is full of FTS
search knowledge.

I also never used the custom fields, but instead customized the .zon
and .ddd files.

When I searched, I always wrote my verity queries like:

(#subject#)  (HL1,HL2)

or

(H1)  (#searchString#)

But I truthfully don't remember why.

Jerry Johnson
Web Developer

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

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


setting up Java in CF5

2005-05-19 Thread Simon Cornelius P . Umacob
Joshua,

You might want to try looking up the CreateObject() function in the CF docu.  I 
haven't used CF5 though (nor am I very knowledgeable in invoking external Java 
apps), but I think initializing the library in version 5 looks something like 
this:

DES3 = CreateObject("java", "gnu.crypto.cipher.TripleDES");
DES3.init();

Regards,

[ simon.cpu ]

>I'm trying to set up CF5 to do DESEDE encryption and
>I'm not having much luck.
>
>So I find a java library that may do the trick but I
>haven't set up java objects in Cold fusion 5 before.
>
>Has anybody ever set up gnu-crypto java librarys on
>CF5 or anything other library.
>
>If I put the gnu-crypto.jar in the CF5 class path
>directory how do I initialize the object in Coldfusion
>or am I not headed in the right direction.
>
>The object in question is 
>gnu.crypto.cipher.TripleDES.
>
>Any thoughts
>
>-Joshua O'Connor-Rose
>-All is Good

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

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


Re: coldfusion mx 7 for j2ee: tomcat won't stop

2005-05-19 Thread wolf2k5
On 5/17/05, Sean Corfield <[EMAIL PROTECTED]> wrote:

> I don't see this problem with Tomcat 4.x (on OSX) so maybe this is a
> Tomcat 5.x issue? Mind you, neither version of Tomcat is actually
> supported as a deployment platform for CFMX, according to the System
> Requirements pages on the MM website.

Hi,

I understand that Tomcat is not officially supported by Macromedia, I
am using it on my PowerBook as development platform.

I cannot use Tomcat 4.1 since I run other web applications that
required Tomcat 5.0 or later.

Is there anyone running CFMX7 on Tomcat 5.0? Do you have the shutdown problem?

Thanks.

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

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


Re: Lost variables scope

2005-05-19 Thread S . Isaac Dealey
Well you can store it in any persistent scope that will be available
on each page. Request is reasonable enough for a single function,
although if you really wanted to have it cached, you could just as
well store it in application or even server scope. The syntax for
getting it into the request scope is easy enough:


...



Pretty simple. Note that when you include the file within it, the
include will be relative to the template containing the function. I'm
guessing you already know this, but figured I'd mention it just in
case.

I suspect you'll get different answers about it being good practice. I
know Simon will tell you that way paves the road to insanity, and Ray
will tell you it's the dark side of the force. :) I don't personally
have any objection to it, although I place my non-cfc functions (for
ubiquitous functionality) in libraries which are stored in the request
scope. So in my case, the code contains things like:
request.tapi.getPath(), request.tapi.getURL() and then there are
sub-libraries like request.tapi.html and request.tapi.sql which
contain other functions like request.tapi.sql.update(). Having these
in the request scope does for me probably what having your
request.core cfc does for you -- it makes all these functions easily
accessible to any other CFC or template in the application.


> The code I am working has survived several generations of
> developers and
> is a convoluted mess.  I would love nothing more than to
> be able to
> properly scope the variables being used throughout the
> rest of the
> application.  The original application developers (if you
> want to call
> them that) did not scope any variables and left that
> entirely to Cold
> Fusion to figure out.  The volumes of bad code are
> staggering ...
> changing one item can cause a cascading series of errors.

> I do not have the option of properly scoping their
> variables.  But at
> the same time, I would like to be able to call cf tag
> based functions in
> cfscript without scoping issues ... or at least have
> enough knowledge to
> overcome them (facilitates the rewrite we will be doing).

> Is it a good practice to place methods in the request
> scope?  My CF has
> become a bit rusty ... how would I do that?  Is there a
> more appropriate
> location to store these types of functions?

> Thanks
> Kevin Bridges

> S. Isaac Dealey wrote:


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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

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


Re: setting up Java in CF5

2005-05-19 Thread Thomas Chiverton
On Thursday 19 May 2005 17:14, Simon Cornelius P. Umacob wrote:
> DES3.init();

:nods
..init() on a Java object runs the constructor, so you must do that (and give 
any options it needs, javaCast() may be your friend).

-- 

Tom Chiverton 
Advanced ColdFusion Programmer

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

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


RE: but funny just the same.

2005-05-19 Thread S . Isaac Dealey
> He forgot the HEAD tag ;-)

Maybe he thought that would be impolite (or too painful)... :P


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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

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


Re: setting up Java in CF5

2005-05-19 Thread Joshua OConnor-Rose
I suppose I should describe where I am now.
The gnu-crypto.jar is in the folder listed in the java
settings class path.

I'm using create object on the page:


// Create DES/ColdFusion Java objects
desObj = CreateObject( "java",
"com.gnu.crypto.cipher.TripleDES" );


and this is the error.
Unhandled System exception !

java.lang.ClassNotFoundException: ClassFormatError for
class com.gnu.crypto.cipher.TripleDES. Java exception
occurred in call to method.

Maybe the only issue is that I'm missing librarys (I
only put in gnu-crypto.jar there are two javax jar
files that I didn't set up because I didn't think they
were needed)

--- "Simon Cornelius P. Umacob" <[EMAIL PROTECTED]>
wrote:
> Joshua,
> 
> You might want to try looking up the CreateObject()
> function in the CF docu.  I haven't used CF5 though
> (nor am I very knowledgeable in invoking external
> Java apps), but I think initializing the library in
> version 5 looks something like this:
> 
> DES3 = CreateObject("java",
> "gnu.crypto.cipher.TripleDES");
> DES3.init();
> 
> Regards,
> 
> [ simon.cpu ]
> 
> >I'm trying to set up CF5 to do DESEDE encryption
> and
> >I'm not having much luck.
> >
> >So I find a java library that may do the trick but
> I
> >haven't set up java objects in Cold fusion 5
> before.
> >
> >Has anybody ever set up gnu-crypto java librarys on
> >CF5 or anything other library.
> >
> >If I put the gnu-crypto.jar in the CF5 class path
> >directory how do I initialize the object in
> Coldfusion
> >or am I not headed in the right direction.
> >
> >The object in question is 
> >gnu.crypto.cipher.TripleDES.
> >
> >Any thoughts
> >
> >-Joshua O'Connor-Rose
> >-All is Good
> 
>


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

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


RE: Shared CF Host security

2005-05-19 Thread Dave Watts
> You could delete the JIntegra directory from the harddisk, 
> presumably that disables COM too :)

Actually, I'm not sure that would disable COM from CF. The stuff in that
directory consists mainly of helper and diagnostic applications. I suspect
you'd have to delete the jintegra.jar file within the lib directory. Of
course, I haven't tested any of this so it's all just pure speculation on my
part.

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

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


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

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


OT: How do you logout of a Breeze Presentation?

2005-05-19 Thread Connie DeCinko
I've noticed an issue that seems to be knew while watching Breeze
presentations.  After the meeting, if I just close my browser, the audio
continues to play.  This seems to occur if I have other browser windows
still open.  I don't see a way to logout of a presentation.  It appears that
the sound only stops if I close all browser instances on my workstation.  Is
this expected behavior?
 
 
Constanty "Connie" DeCinko III
Web Architect, Webmaster, Web Developer
Lone Jet Enterprises
Glendale, Arizona
  www.LoneJet.com
 




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

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


Copy a entire directory

2005-05-19 Thread Dwayne Cole
Is there a way to use cf to copy and paste a complete directory.

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

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


RE: Copy a entire directory

2005-05-19 Thread CollicuttL


-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: May 19, 2005 10:29
To: CF-Talk
Subject: Copy a entire directory


Is there a way to use cf to copy and paste a complete directory.



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

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


Re: CFMX XML/XSLT questions....

2005-05-19 Thread Joe Eugene
If you dont really have a purpose for XSLT, dont use it. XSLT is slow.
Just the parse the xml file (xmlParse()) and use xPath expressions to pull
out whatever you need.

If the xml data doesnt change that often, you could cache the parsed xml
doc.

Joe Eugene

- Original Message - 
From: "Jeff Waris" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, May 19, 2005 11:54 AM
Subject: CFMX XML/XSLT questions


> What I am doing is not earth shattering by any means but I am looking for
> the most efficient way to do it. The XML is generated on the fly and about
> the only options I have is the date range I give to create the file.
>
> I would like to be able to sort, filter and display it back to the user
> based on the information in the XML file itself. Am I going in the right
> direction by using XSLT for doing this? OR... should I throw the data from
> the XML file in a temporary table in my SQL7 database? If I throw the
> information in the temp table I am then free to query the data and use CF
to
> parse out the data to the user.. What's the better way, or do I have more
> options for doing this kind of thing???
>
> Thanks.
> Jeff
>
>
> 

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

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

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


Re: Copy a entire directory

2005-05-19 Thread Massimo, Tiziana e Federica
> Is there a way to use cf to copy and paste a complete directory.

You can try this out:
http://www.olimpo.ch/tmt/cfc/tmt_file_io/

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



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

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


Re: form->database->form help needed

2005-05-19 Thread daniel kessler
>I think he's just talking about a simple multi-page form, but instead of 
>storing the info in the session scope and inserting upon completion, he's 
>inserting between each page.

well it's a distinct form on each page, but yes, I go to the db between each 
page for an UPDATE

>So, Daniel, yes - you can retrieve the record set you're working with and 
>store it. I'd probably go with storing it in the session scope. But, be 
>aware that every time your user updates a page, you'll need to also update 
>that session scope var. I'd maybe think twice about your design - that's a 
>lot of round trips to the database. 

It's this way because I was told "what if they just close the page" or a whole 
bunch of other what-ifs and was told that not only would it need to store it 
between each page, but that it also had to have a Save button on each page just 
in case they wanted to save partially typed information.  Some of the entries 
can be thousands of characters.

>You could, instead, be storing stuff in 
>the session scope as they go, and then have a "save" button (repeated on 
>each page), that saves their current work-state. It depends on the 
>sophistication level of your users, and what you're really trying to 
>collect.

So at the beginning, I should do a db query and store it to the session scope 
and while I don't know how to address the session scope, it seems it would be 
pretty easy to look up.  Then each one of the form fields just needs to 
reference that to fill-in.  And as you said, I'd also have to fill it in 
whenever I go to the database, not as a seperate database call but just  (or however it's done).

Does that all sound right?

btw, here's an example of one of the pages, not that it will help I think:
http://hhp.umd.edu/empower/situation_analysis/s_vision_01_test.cfm

thanks!

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

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


Re: setting up Java in CF5

2005-05-19 Thread Joe Eugene
You should be able to just drop the *.jar file in WEB-INF/lib and use
createObject().

Joe Eugene

- Original Message - 
From: "Joshua OConnor-Rose" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, May 19, 2005 12:38 PM
Subject: Re: setting up Java in CF5


> I suppose I should describe where I am now.
> The gnu-crypto.jar is in the folder listed in the java
> settings class path.
>
> I'm using create object on the page:
>
> 
> // Create DES/ColdFusion Java objects
> desObj = CreateObject( "java",
> "com.gnu.crypto.cipher.TripleDES" );
> 
>
> and this is the error.
> Unhandled System exception !
>
> java.lang.ClassNotFoundException: ClassFormatError for
> class com.gnu.crypto.cipher.TripleDES. Java exception
> occurred in call to method.
>
> Maybe the only issue is that I'm missing librarys (I
> only put in gnu-crypto.jar there are two javax jar
> files that I didn't set up because I didn't think they
> were needed)
>
> --- "Simon Cornelius P. Umacob" <[EMAIL PROTECTED]>
> wrote:
> > Joshua,
> >
> > You might want to try looking up the CreateObject()
> > function in the CF docu.  I haven't used CF5 though
> > (nor am I very knowledgeable in invoking external
> > Java apps), but I think initializing the library in
> > version 5 looks something like this:
> >
> > DES3 = CreateObject("java",
> > "gnu.crypto.cipher.TripleDES");
> > DES3.init();
> >
> > Regards,
> >
> > [ simon.cpu ]
> >
> > >I'm trying to set up CF5 to do DESEDE encryption
> > and
> > >I'm not having much luck.
> > >
> > >So I find a java library that may do the trick but
> > I
> > >haven't set up java objects in Cold fusion 5
> > before.
> > >
> > >Has anybody ever set up gnu-crypto java librarys on
> > >CF5 or anything other library.
> > >
> > >If I put the gnu-crypto.jar in the CF5 class path
> > >directory how do I initialize the object in
> > Coldfusion
> > >or am I not headed in the right direction.
> > >
> > >The object in question is
> > >gnu.crypto.cipher.TripleDES.
> > >
> > >Any thoughts
> > >
> > >-Joshua O'Connor-Rose
> > >-All is Good
> >
> >
>
>
> 

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

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


CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Ken Ketsdever
We are looking at moving up to MX7 from MX6.1 Standard.  How  would you sell 
the idea of moving from Standard to Enterprise? What are the compelling reasons 
for spending the extra cash on Enterprise?  Purse strings are fairly tight 
here, but with a well defined argument it is not impossible to convince them to 
spend the money.
 
Have you moved from Standard to Enterprise? What are the biggest advantages you 
have experienced?
 
Are you considering the move up? What are your justifications?
 
 
 
Ken Ketsdever
Web Developer
www.BloodSource.org  
(916) 453-3718
 
 Professionals are predictable but the world is full of dangerous amateurs 
 

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




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

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


Re: ColdFusion MX 7 for J2EE and RDS with a context-root other than /CFIDE

2005-05-19 Thread wolf2k5
On 5/19/05, wolf2k5 wrote:

> Is there any way to have Dreamweaver MX 2004 (7.0.1) to connect to my
> CFMX7 installation via RDS  using the /cfmx7 context-root (the RDS
> entry point should be http://localhost/cfmx7/CFIDE/main/ide.cfm)?

Apparently Homesite 5.5 can do it:

---
CFMX J2EE allows multiple CFMX servers to be deployed to different
context roots on the same machine. The RDS properties dialog has been
modified to allow you to enter in a specific context root to target
which CFMX J2EE instance you want to work with for RDS operations.
Also note that if you wish to browse files on this type of server
within HS+ you need to include the context root in the Browser Path in
the Remote Development Settings-Mappings. Example: http://:7001/cfusion/ where "cfusion" is the actual context root.
---

I wish DWMX2004 on Mac OS X could do it too!

Thanks.

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

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


Re: form->database->form help needed

2005-05-19 Thread S . Isaac Dealey
> btw, here's an example of one of the pages, not that it
> will help I think:
> http://hhp.umd.edu/empower/situation_analysis/s_vision_01_
> test.cfm

This isn't an answer to any of your questions, but just real briefly
if you're going to prepopulate the field with something like "What's
your vision." you should use some javascript to remove that value when
the field receives focus...



Although in general I would recommend not placing anything in the
field in advance unless it's an actual default value. Partly this is
because of accessibility, and partly just because it's annoying to
users.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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

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

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


Re: form->database->form help needed

2005-05-19 Thread daniel kessler
thank you for your fine comments.  I agree and argued that point this morning 
so I'm in the process of removing them now. :-)

>This isn't an answer to any of your questions, but just real briefly
>if you're going to prepopulate the field with something like "What's
>your vision." you should use some javascript to remove that value when
>the field receives focus...
>
>
>
>Although in general I would recommend not placing anything in the
>field in advance unless it's an actual default value. Partly this is
>because of accessibility, and partly just because it's annoying to
>users.

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

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


RE: How do you logout of a Breeze Presentation?

2005-05-19 Thread Damien McKenna
That's all kinds of shades of "wrong".  Urk!

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 
 

> -Original Message-
> From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, May 19, 2005 1:12 PM
> To: CF-Talk
> Subject: OT: How do you logout of a Breeze Presentation?
> 
> I've noticed an issue that seems to be knew while watching Breeze
> presentations.  After the meeting, if I just close my 
> browser, the audio continues to play.

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

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


Re: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread S . Isaac Dealey
two words: asynchronous gateway

> We are looking at moving up to MX7 from MX6.1 Standard.
> How  would you sell the idea of moving from Standard to
> Enterprise? What are the compelling reasons for spending
> the extra cash on Enterprise?  Purse strings are fairly
> tight here, but with a well defined argument it is not
> impossible to convince them to spend the money.

> Have you moved from Standard to Enterprise? What are the
> biggest advantages you have experienced?

> Are you considering the move up? What are your
> justifications?



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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

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


cfdocument pdf problem with developer edition

2005-05-19 Thread Rob Condon
Hi,

Should pdf generation with cfdocument work with the developer edition?   My pdf 
outputs a full page with the message "Macromedia ColdFusion MX 7 Developer 
Edition Not for Production Use".   I can see a momentary image of the document 
but it is quickly covered with this message.  The flashPaper output does not 
have this limitation.  Do I really need to install the licensed version to 
develop pdf reports; or is there something I'm doing wrong?  

Thanks,

Rob

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

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


Re: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Marlon Moyer
In Texas that's three words.

On 5/19/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
> two words: asynchronous gateway
> 
> > We are looking at moving up to MX7 from MX6.1 Standard.
> > How  would you sell the idea of moving from Standard to
> > Enterprise? What are the compelling reasons for spending
> > the extra cash on Enterprise?  Purse strings are fairly
> > tight here, but with a well defined argument it is not
> > impossible to convince them to spend the money.
> 
> > Have you moved from Standard to Enterprise? What are the
> > biggest advantages you have experienced?
> 
> > Are you considering the move up? What are your
> > justifications?
> 
> 
> 
> s. isaac dealey   954.522.6080
> new epoch : isn't it time for a change?
> 
> add features without fixtures with
> the onTap open source framework
> 
> http://www.fusiontap.com
> http://coldfusion.sys-con.com/author/4806Dealey.htm
> 
> 
> 
> 
> 

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

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


Re: Verity and Security

2005-05-19 Thread Raymond Camden
Are you inside a cfloop query=your search result, or cfoutput
query=yoursearchresult? custom2 is one of the columns returned in the
query result.

On 5/19/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Ray / Jerry
> 
> That seems to have solved that problem, but it is stating that the
> custom2 variable is undefined
> 
> Error Occurred While Processing Request
> Variable CUSTOM2 is undefined.
>

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

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


RE: cfdocument pdf problem with developer edition

2005-05-19 Thread Dave Watts
> Should pdf generation with cfdocument work with the developer 
> edition?   My pdf outputs a full page with the message 
> "Macromedia ColdFusion MX 7 Developer Edition Not for 
> Production Use".   I can see a momentary image of the 
> document but it is quickly covered with this message.  The 
> flashPaper output does not have this limitation.  Do I really 
> need to install the licensed version to develop pdf reports; 
> or is there something I'm doing wrong?  

Any documents you generate with the Developer Edition should have that
watermark. However, it usually doesn't obscure the entire document.

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

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


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

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


CFUNITED interview 10 - Farcry CMS; Flash Sound; MiniMAX

2005-05-19 Thread Michael Smith
In this issue of ColdFusion conference and training news:

1. CFUNITED News - Team CFUNITED, MiniMax
2. ColdFusion Live! Every Thursday 12:30pm
3. "FarCry : A Free ColdFusion-based CMS" interview with Steve Rittler
4. "Creating Sound for Flash Movies" interview with Jeffry Houser

Happy coding
- Michael Smith,
   TeraTech, Inc  http://www.teratech.com/
   "Creating excellent custom software since 1989"


"There is no better ColdFusion conference out there than CFUNITED. One con-
ference at a world class conference center gets you three days of classes
that wil l make you a better programmer and personally connect you with the
top ColdFusion experts in the world. No car rental necessary. Fly to
Washington, D.C. and hop on the Metro to take you across the street from the
hotel. There is no better choice if you know ColdFusion or want to learn
ColdFusion: CFUNITED is a self contained can't miss affair if you are
serious about ColdFusion. Miss it and you lose out for yet another year 
while
others leave you coding in the dust." - Frank Nickerson


1. CFUNITED News

* Only 7 weeks until CFUNITED-05. Regular price $649 expires 6/10/05

* Look out for the 20 page CFUNITED brochure in the (postal) mail. Got two? Then
   pass one to a programming friend!

* Team CFUNITED
Want to join other insiders with CFUNITED? Want to get benefits from telling
your friends about
CFUNITED? Want to get exclusive Team CFUNITED swag and name badge at the event
(including months of
free hosting from CFDynamics and 6 months of Adalon from Synthis). Then join
Team CFUNITED. To join
you will need to post about CFUNITED on your blog, write an article about
CFUNITED or email your
organizations listserv about the event. To join fill out this survey
http://www.cfconf.com/ttSurveyTool/survey_run_any.cfm?surveyid=115

If you want to add a banner to your blog or website go here
http://www.cfunited.com/spread-the-word.cfm

* 543 people have already registered for CFUNITED-05!

* There are so many topics at CFUNITED we have created "virtual tracks"
   of interest for ASP, government, managers and newbies:

   ASP programmers http://www.cfunited.com/asp_programmers.cfm

   Government employees http://www.cfunited.com/govt_people.cfm

   Managers and CTOs http://www.cfunited.com/managers.cfm

   CF Newbies http://www.cfunited.com/newbies.cfm

* Common questions - check out the CFUNITED FAQ http://www.cfunited.com/faqs.cfm

* Upcoming classes:

CF201 - Intermediate ColdFusion May 17 2005
FB101 - Intro to FuseboxMay 24 2005
FB201 - Intermediate FuseboxJun 7 2005
FB301H -Hal Helms FastTrack to Fusebox 4.1  Jun 20 2005
CU201 - Hal Helms - Designing and Developing OO Applications with CFCs  Jun 27 
2005
CU202 - Simon Horwith - Roll Your Own API - Maximizing Code ReUse with CFCs and
Custom Tags Jun 27 2005
CU203 - Geoff Snowman - Intro to .NET for CFers Jun 27 2005
CU204 - Nate Nelson - Beyond Basic SQL for CF   Jun 27 2005
CU205 - Charlie Arehart - CFML Leveraging .NET StrengthsJun 28 2005
CU206 - Sandra Clark - Advanced Cascading Stylesheets   Jun 28 2005
CU208 - Jeff Peters - FLiP and Fusebox walkthrough  Jun 28 2005

For more info http://www.teratech.com/training/

* MiniMAX 2! Join Adam Bell, Simon Horwith and four additional speakers for the
prelude to the CF
United conference on Tuesday Night, June 28th at 7PM ET.
http://www.minimaxconference.com/
It is FREE! (but must register online)

* all previous interviews are now posted at
   http://www.cfunited.com/interviews.cfm

2. ColdFusion Live! Every Thursday  12:30pm

ColdFusion Live! A CFUNITED preview every Thursday


Two 15 minute "preview" talks from CFUNITED speakers.  They
will provide an brief introduction to their topic during these
sessions.

12:30 - 1:00 US/Eastern Time
See also http://www.timezoneconverter.com/

Part 1) Tim Buntel - What is cool in CFMX 7 - Tim is the Macromedia
Sr. Product Manager for ColdFusion and will talk about what his favorite
CF MX 7 features are.

Part 2) Simon Horwith Design Patterns and CFML. Design patterns
are a way to making architecting your apps easier and to reuse
common software designs.

Meeting: http://macromedia.breezecentral.com/cfliveno4/  (Breeze v.5)
RSVP: http://coldfusion.meetup.com/17/events/4695389/

Future speakers are:

5/19 Geoff Snowman - ASP and CFML
  Robi Sen - Advanced Scaling and Tuning
5/26 Glenda Vigoreaux - Leveraging Web Services with ColdFusion
  Sean  Corfield - Enterprise Integration with ColdFusion
6/2 Michael  Dinowitz - Consuming popular web services
 Steve  Rittler - Farcry: A Free ColdFusion-based CMS
6/9 Charlie Arehart - Integrating CFML and ASP.NET Server Controls


3. "FarCry : A Free ColdFusion-based CMS" interview with Steve Rittler
**
Michael Smith: This time we are talking with Steve Rittler about his CFUNITED

RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Dave Watts
> We are looking at moving up to MX7 from MX6.1 Standard.  How  
> would you sell the idea of moving from Standard to 
> Enterprise? What are the compelling reasons for spending the 
> extra cash on Enterprise?  Purse strings are fairly tight 
> here, but with a well defined argument it is not impossible 
> to convince them to spend the money.
>  
> Have you moved from Standard to Enterprise? What are the 
> biggest advantages you have experienced?
>  
> Are you considering the move up? What are your justifications?

Lots of people will respond with one feature or another; I would simply
recommend that you see what features you might actually use before you buy
it. You might try some of those features out with the Trial or Developers
Editions first, as well.

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

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Connie DeCinko
If you hook to Oracle, you really need Enterprise.
 

-Original Message-
From: Ken Ketsdever [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 10:49 AM
To: CF-Talk
Subject: CF Enterprise Edition vs. CF Standard Edition

We are looking at moving up to MX7 from MX6.1 Standard.  How  would you sell
the idea of moving from Standard to Enterprise? What are the compelling
reasons for spending the extra cash on Enterprise?  Purse strings are fairly
tight here, but with a well defined argument it is not impossible to
convince them to spend the money.
 
Have you moved from Standard to Enterprise? What are the biggest advantages
you have experienced?
 
Are you considering the move up? What are your justifications?
 
 




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

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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Ken Ketsdever
We are actually doing that now.  However, we thought someone might bring 
something up that we've not thought of or be able to identify a use of a 
particular feature that has resulted in a huge time / money / job / sanity 
saving development.

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 19, 2005 11:25 AM
To: CF-Talk
Subject: RE: CF Enterprise Edition vs. CF Standard Edition


> We are looking at moving up to MX7 from MX6.1 Standard.  How  
> would you sell the idea of moving from Standard to 
> Enterprise? What are the compelling reasons for spending the 
> extra cash on Enterprise?  Purse strings are fairly tight 
> here, but with a well defined argument it is not impossible 
> to convince them to spend the money.
>  
> Have you moved from Standard to Enterprise? What are the 
> biggest advantages you have experienced?
>  
> Are you considering the move up? What are your justifications?

Lots of people will respond with one feature or another; I would simply
recommend that you see what features you might actually use before you buy
it. You might try some of those features out with the Trial or Developers
Editions first, as well.

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

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!




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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Ken Ketsdever
We do run Oracle and we are looking for real life experiences as to why, what 
advantages have you experienced by moving to or using Enterprise.  

We have at least four versions of Oracle running 

8.1.6
8.1.7
8.6
9.2

>>Connie

If you hook to Oracle, you really need Enterprise.
 

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 



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

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


Re: form->database->form help needed

2005-05-19 Thread Deanna Schneider
Been there, had that client. You do still need to keep in mind things like 
whether or not a record is "complete" if they haven't filled everything in, 
when you're storing data like this. And, you might want to consider adding 
something like "Step 2 of 546." to your screens, so people can see how far 
along they are. Though, I still go back to saying that I'm not sure what the 
benefit is to having each on a separate page. You're doing a logic model 
program planning process, right? (Twas pioneered here in Wisconsin.) There 
aren't _that_ many steps to that. I'd at least group all the questions from 
each phase together.


Situation Analysis
vision
mission
etc

Inputs
investment by
Outputs
what we do
who we reach
Outcomes
short term results
medium term results
long term results


As to putting stuff in session vars - yah, it's pretty easy. You're on 6.1, 
right? So, locking isn't the major conundrum it used to be. You can save 
your whole query results to the session, and then you'd just reference them 
as #session.queryname.columnname.# But, I'm not sure you then update that 
directly. I think you'd have to make it a structure instead, but since each 
query should only have one row of data returned, that's not such a big deal. 
You can just do this sort of thing:










Then, when you update a record, you can just do:










- Original Message - 
From: "daniel kessler" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, May 19, 2005 12:41 PM
Subject: Re: form->database->form help needed


> >I think he's just talking about a simple multi-page form, but instead of
>>storing the info in the session scope and inserting upon completion, he's
>>inserting between each page.
>
> well it's a distinct form on each page, but yes, I go to the db between 
> each page for an UPDATE
>
>>So, Daniel, yes - you can retrieve the record set you're working with and
>>store it. I'd probably go with storing it in the session scope. But, be
>>aware that every time your user updates a page, you'll need to also update
>>that session scope var. I'd maybe think twice about your design - that's a
>>lot of round trips to the database.
>
> It's this way because I was told "what if they just close the page" or a 
> whole bunch of other what-ifs and was told that not only would it need to 
> store it between each page, but that it also had to have a Save button on 
> each page just in case they wanted to save partially typed information. 
> Some of the entries can be thousands of characters.
>
>>You could, instead, be storing stuff in
>>the session scope as they go, and then have a "save" button (repeated on
>>each page), that saves their current work-state. It depends on the
>>sophistication level of your users, and what you're really trying to
>>collect.
>
> So at the beginning, I should do a db query and store it to the session 
> scope and while I don't know how to address the session scope, it seems it 
> would be pretty easy to look up.  Then each one of the form fields just 
> needs to reference that to fill-in.  And as you said, I'd also have to 
> fill it in whenever I go to the database, not as a seperate database call 
> but just  (or however it's done).
>
> Does that all sound right?
>
> btw, here's an example of one of the pages, not that it will help I think:
> http://hhp.umd.edu/empower/situation_analysis/s_vision_01_test.cfm
>
> thanks!
>
> 

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

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


RE: Anyone know of a more elegant way to do this?

2005-05-19 Thread Ewok
No problem (and good luck) Let us know if you shut the doors when you hit
99ZZ :^O

-Original Message-
From: SStewart [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 9:11 AM
To: CF-Talk
Subject: RE: Anyone know of a more elegant way to do this?

Ewok...

This works, 

Thanks

sas

Scott A. Stewart, 
Web Application Developer
 
Engineering Consulting Services, Ltd. (ECS)
14026 Thunderbolt Place, Suite 300
Chantilly, VA 20151
Phone: (703) 995-1737
Fax: (703) 834-5527


-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 18, 2005 06:03 pm
To: CF-Talk
Subject: RE: Anyone know of a more elegant way to do this?
Importance: Low

Sorry, first one didn’t come through I guess... here it is again

This doesn’t take into account that you may reach ZZ will you actually have
that many on one project? It seems like it would throw your whole numbering
out of whack if so anyway. I definitely agree with Claude (Im sure you do
too) but if you can manage to start with a new schema it would save a lot of
future headache... like actually having 01000AA - 01000ZZ and needing
another since the number seems to be more of a main project indicator and
the letters revisions or changes/updates... anyway... 

This will increment the letters AA - AZ and roll AZ to BA. It's by no means
perfect either but it's not 1000 lines of code :)



select * from q order by jobid desc

























#NumberPrefix##NewFirstLetter##newLastLetter#


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.12 - Release Date: 5/17/2005
 






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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Dave Watts
> If you hook to Oracle, you really need Enterprise.

No, not necessarily. You may be able to get what you need with Oracle's own
JDBC drivers. I seem to recall hearing about problems with the Oracle thin
client and BLOB/CLOB fields, but you could also use the Oracle OCI JDBC
driver.

Of course, it's nice to have official support from Macromedia with regard to
Oracle connectivity, I guess.

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

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


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

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


RE: Anyone know of a more elegant way to do this?

2005-05-19 Thread SStewart
Hopefully it'll be after my shelf-life is long gone :P

sas

Scott A. Stewart, 
Web Application Developer
 
Engineering Consulting Services, Ltd. (ECS)
14026 Thunderbolt Place, Suite 300
Chantilly, VA 20151
Phone: (703) 995-1737
Fax: (703) 834-5527


-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 02:41 pm
To: CF-Talk
Subject: RE: Anyone know of a more elegant way to do this?
Importance: Low

No problem (and good luck) Let us know if you shut the doors when you hit
99ZZ :^O

-Original Message-
From: SStewart [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 9:11 AM
To: CF-Talk
Subject: RE: Anyone know of a more elegant way to do this?

Ewok...

This works, 

Thanks

sas

Scott A. Stewart, 
Web Application Developer
 
Engineering Consulting Services, Ltd. (ECS)
14026 Thunderbolt Place, Suite 300
Chantilly, VA 20151
Phone: (703) 995-1737
Fax: (703) 834-5527


-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 18, 2005 06:03 pm
To: CF-Talk
Subject: RE: Anyone know of a more elegant way to do this?
Importance: Low

Sorry, first one didn’t come through I guess... here it is again

This doesn’t take into account that you may reach ZZ will you actually have
that many on one project? It seems like it would throw your whole numbering
out of whack if so anyway. I definitely agree with Claude (Im sure you do
too) but if you can manage to start with a new schema it would save a lot of
future headache... like actually having 01000AA - 01000ZZ and needing
another since the number seems to be more of a main project indicator and
the letters revisions or changes/updates... anyway... 

This will increment the letters AA - AZ and roll AZ to BA. It's by no means
perfect either but it's not 1000 lines of code :)



select * from q order by jobid desc

























#NumberPrefix##NewFirstLetter##newLastLetter#


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.12 - Release Date: 5/17/2005
 








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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Dave Watts
> We are actually doing that now.  However, we thought someone 
> might bring something up that we've not thought of or be able 
> to identify a use of a particular feature that has resulted 
> in a huge time / money / job / sanity saving development.

I'm a big fan of the multiserver deployment option, which allows you to run
separate instances of CFMX on a single machine. I think that, hands down,
this is the most valuable Enterprise-only feature.

If you're in a J2EE environment already, the ability to deploy your
applications as EAR or WAR files may be very valuable.

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

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


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

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


RE: cfdocument pdf problem with developer edition

2005-05-19 Thread Connie DeCinko
You should be able to see your report.  That message appears as a watermark
on the Dev version.
 

-Original Message-
From: Rob Condon [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 11:10 AM
To: CF-Talk
Subject: cfdocument pdf problem with developer edition

Hi,

Should pdf generation with cfdocument work with the developer edition?   My
pdf outputs a full page with the message "Macromedia ColdFusion MX 7
Developer Edition Not for Production Use".   I can see a momentary image of
the document but it is quickly covered with this message.  The flashPaper
output does not have this limitation.  Do I really need to install the
licensed version to develop pdf reports; or is there something I'm doing
wrong?  

Thanks,

Rob




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

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


Re: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Calvin Ward
There are quite a few performance differences. Do you do a lot of cfmail?

- Calvin


On 5/19/05 1:48 PM, "Ken Ketsdever" <[EMAIL PROTECTED]> wrote:

> We are looking at moving up to MX7 from MX6.1 Standard.  How  would you sell
> the idea of moving from Standard to Enterprise? What are the compelling
> reasons for spending the extra cash on Enterprise?  Purse strings are fairly
> tight here, but with a well defined argument it is not impossible to convince
> them to spend the money.
>  
> Have you moved from Standard to Enterprise? What are the biggest advantages
> you have experienced?
>  
> Are you considering the move up? What are your justifications?
>  
>  
>  
> Ken Ketsdever
> Web Developer
> www.BloodSource.org 
> (916) 453-3718
>  
>  Professionals are predictable but the world is full of dangerous amateurs
>  
> 
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
> 
> 
> 
> 
> 

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

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

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


Re: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread S . Isaac Dealey
Good thing I'm in ft lauderdale. :)

"a syncrhonous" or "gate way"?

> In Texas that's three words.

> On 5/19/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote:
>> two words: asynchronous gateway
>>
>> > We are looking at moving up to MX7 from MX6.1 Standard.
>> > How  would you sell the idea of moving from Standard to
>> > Enterprise? What are the compelling reasons for
>> > spending
>> > the extra cash on Enterprise?  Purse strings are fairly
>> > tight here, but with a well defined argument it is not
>> > impossible to convince them to spend the money.
>>
>> > Have you moved from Standard to Enterprise? What are
>> > the
>> > biggest advantages you have experienced?
>>
>> > Are you considering the move up? What are your
>> > justifications?


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




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

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


RE: Anyone know of a more elegant way to do this?

2005-05-19 Thread SStewart
Hopefully it'll be after my shelf-life is long gone :P

sas

Scott A. Stewart, 
Web Application Developer
 
Engineering Consulting Services, Ltd. (ECS)
14026 Thunderbolt Place, Suite 300
Chantilly, VA 20151
Phone: (703) 995-1737
Fax: (703) 834-5527


-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 02:41 pm
To: CF-Talk
Subject: RE: Anyone know of a more elegant way to do this?
Importance: Low

No problem (and good luck) Let us know if you shut the doors when you
hit
99ZZ :^O

 

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

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


RE: PayflowPro and CFMX

2005-05-19 Thread Kevin Penny
I'm seeing a NULL Pointer exception - and it seems I have everything setup - If 
I remove the hostaddress attribute - I get a message such that the hostaddress 
attribute is required - thus telling me it's hitting the cfx tag ok.

java.lang.NullPointerException - is my error

Code Nippet below:

 

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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Connie DeCinko
Standard does not come with Oracle drivers.
 

-Original Message-
From: Ken Ketsdever [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 11:31 AM
To: CF-Talk
Subject: RE: CF Enterprise Edition vs. CF Standard Edition

We do run Oracle and we are looking for real life experiences as to why,
what advantages have you experienced by moving to or using Enterprise.  

We have at least four versions of Oracle running 




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

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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Ken Ketsdever
We will be increasing the use of CFMAIL with time.  Including an application to 
send out 25,000 e-mail based newsletters at least once a month.

-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 19, 2005 11:50 AM
To: CF-Talk
Subject: Re: CF Enterprise Edition vs. CF Standard Edition


There are quite a few performance differences. Do you do a lot of cfmail?

- Calvin


On 5/19/05 1:48 PM, "Ken Ketsdever" <[EMAIL PROTECTED]> wrote:

> We are looking at moving up to MX7 from MX6.1 Standard.  How  would you sell
> the idea of moving from Standard to Enterprise? What are the compelling
> reasons for spending the extra cash on Enterprise?  Purse strings are fairly
> tight here, but with a well defined argument it is not impossible to convince
> them to spend the money.
>  
> Have you moved from Standard to Enterprise? What are the biggest advantages
> you have experienced?
>  
> Are you considering the move up? What are your justifications?
>  
>  
>  
> Ken Ketsdever
> Web Developer
> www.BloodSource.org 
> (916) 453-3718
>  
>  Professionals are predictable but the world is full of dangerous amateurs
>  
> 
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
> 
> 
> 
> 
> 



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

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


RE: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Ken Ketsdever
We've been fighting with that for 3 years now.  Pro's and Con's to every 
solution we've come up with, but nothing has been overwhelmingly successful.



-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 19, 2005 12:12 PM
To: CF-Talk
Subject: RE: CF Enterprise Edition vs. CF Standard Edition


Standard does not come with Oracle drivers.
 

-Original Message-
From: Ken Ketsdever [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 19, 2005 11:31 AM
To: CF-Talk
Subject: RE: CF Enterprise Edition vs. CF Standard Edition

We do run Oracle and we are looking for real life experiences as to why,
what advantages have you experienced by moving to or using Enterprise.  

We have at least four versions of Oracle running 






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

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

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


Re: CF Enterprise Edition vs. CF Standard Edition

2005-05-19 Thread Calvin Ward
Well, one key difference is the performance of cfmail, the enterprise
edition can handle a lot more, a lot faster. I don't have the numbers, but
there's some information out there about that.

- Calvin


On 5/19/05 3:02 PM, "Ken Ketsdever" <[EMAIL PROTECTED]> wrote:

> We will be increasing the use of CFMAIL with time.  Including an application
> to send out 25,000 e-mail based newsletters at least once a month.
> 
> -Original Message-
> From: Calvin Ward [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 19, 2005 11:50 AM
> To: CF-Talk
> Subject: Re: CF Enterprise Edition vs. CF Standard Edition
> 
> 
> There are quite a few performance differences. Do you do a lot of cfmail?
> 
> - Calvin
> 
> 
> On 5/19/05 1:48 PM, "Ken Ketsdever" <[EMAIL PROTECTED]> wrote:
> 
>> We are looking at moving up to MX7 from MX6.1 Standard.  How  would you sell
>> the idea of moving from Standard to Enterprise? What are the compelling
>> reasons for spending the extra cash on Enterprise?  Purse strings are fairly
>> tight here, but with a well defined argument it is not impossible to convince
>> them to spend the money.
>>  
>> Have you moved from Standard to Enterprise? What are the biggest advantages
>> you have experienced?
>>  
>> Are you considering the move up? What are your justifications?
>>  
>>  
>>  
>> Ken Ketsdever
>> Web Developer
>> www.BloodSource.org 
>> (916) 453-3718
>>  
>>  Professionals are predictable but the world is full of dangerous amateurs
>>  
>> 
>> Confidentiality Notice:  This message including any
>> attachments is for the sole use of the intended
>> recipient(s) and may contain confidential and privileged
>> information. Any unauthorized review, use, disclosure or
>> distribution is prohibited. If you are not the
>> intended recipient, please contact the sender and
>> delete any copies of this message.
>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 

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

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


RE: PayflowPro and CFMX

2005-05-19 Thread Kevin Penny
HA - Big thanks to Marc from ColdfusionCart (http://www.coldfusioncart.com) for 
the help on this one - he sent me his files .jar .class and the .0 cert file - 
and somehow either in my extraction or package extraction - my files were 
different - once I got the good files from Marc - the page completed 
successfully!

Thanks a ton man!

Canada rocks

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

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


Handle Counts... comparing notes

2005-05-19 Thread Geoffrey Brown
Hi,
I have a fairly busy website, running on a couple of
decent sized servers.

I'm wondering about the significance of the "CF Handle
Count" value in the admin reporting section.

During non-peak hours, my handle count will be around
2,000 or so.  During peak hours, it generally averages
around 8,000.  More recently, I've seen it jump up to
14,000 for an hour, then drop back down to the normal
8,000 range.

Average CPU is 3% during peak.  I'm having no
stability issues at all.  I'm just wondering what this
metric represents - if it is higher than normal, or if
I need to look at tuning something (whatever that may
be).

Thanks.

Geoff B



__ 
Do you Yahoo!? 
Yahoo! Mail - Helps protect you from nasty viruses. 
http://promotions.yahoo.com/new_mail

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

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


RE: Shared CF Host security

2005-05-19 Thread Jamie Price
I'm trying to test one of the scripts provided to my by Dave in a Windows 
environ but I'm getting this error:

500 Translator.WrongCase/buddman/jspbrowser/browser.jspbrowser.jspBrowser.jsp
Translator.WrongCase/buddman/jspbrowser/browser.jspbrowser.jspBrowser.jsp 

Can anyone tell me how to make this exploit work in Windows so I can determine 
a patch?

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

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


Re: PayflowPro and CFMX

2005-05-19 Thread Simeon Bateman
The files they have on the download manager, are not the most current
version.  And if you contact support they will send you the right
ones.  I am guessing your buddy Marc, got the right ones.

Just in case anybody who doesnt know marc runs into this.  they are
aware of the problem and eager to help :)

simeon

On 5/19/05, Kevin Penny <[EMAIL PROTECTED]> wrote:
> HA - Big thanks to Marc from ColdfusionCart (http://www.coldfusioncart.com) 
> for the help on this one - he sent me his files .jar .class and the .0 cert 
> file - and somehow either in my extraction or package extraction - my files 
> were different - once I got the good files from Marc - the page completed 
> successfully!
> 
> Thanks a ton man!
> 
> Canada rocks
> 
> 

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

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


RE: Shared CF Host security

2005-05-19 Thread Jamie Price
forget I said that - I figured it out.  :-)

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

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


RE: [OT] Free ftp/sftp server

2005-05-19 Thread Jack Dalaa
I can definitely recommend FileZilla server as well. Have used it on a very 
busy FTP site in a production environment for more than a year, without any 
significant problems. 

Actually switched from Serv-U to FileZilla way back, when it was time to pay 
for a ServU upgrade, and I'm never going back.


Jack

>Dave,
>
>Check out the FileZilla project on sourceforge. Their main product is an
>ftp/sftp client, but they also have a server product. I haven't used it,
>but i've been *real* impressed with the client in terms of how often
>they release, fix bugs, patch security problems, etc - so i'd say the
>server probably deserves a spin.
>
>It's GPL and has beta sftp support. Win32 only...
>
>/t
>
>>Dave Merrill

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

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


  1   2   >