Re: Opening a file with ## in the Filename

2005-04-05 Thread simmyana a
Thanks for the response
could you please tell me how to encode only special characters excluding the 
filename extension. when I use URLEncodedFormat(),it will display file name 
A27#.pdf A27%23%2Epdf.I want to retain the file extension.

~|
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:201665
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: Chinese Character Problem, (Part 2)

2005-04-05 Thread Jochem van Dieten
Dwayne Cole wrote:
> Presenting the chinese character is another challenge

Just use Unicode.


> I'm using this at the top of the page.
> 
> 
> 
> OK that seems to work sometimes and other times, well.

The prefered way is to set the charset in an actual HTTP header, 
i.e. using cfcontent. That takes preference over setting the 
charset in HTML. Of course it is a good idea to do it both.

Please provide details about the cases where it doesn't work.


> I've gone to sites that present both english and chinese without setting the 
> charset.  

I bet they set the charset in HTTP, not HTML.

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:201664
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: Is CFMX 7 any better?

2005-04-05 Thread Jochem van Dieten
M Cohen wrote:
> "Every user should get an actual database login."
> 
> This isn't exactly practical with most webapps, don't you think?

Depends. With most webapps you don't really need a login for 
every user, but one for each user with elevated priviledges. All 
the 'anonymous' users can share a login.

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:201663
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: Is CFMX 7 any better?

2005-04-05 Thread Jochem van Dieten
Mike Kear wrote:
> And if CreateObject() is disabled, where does that leave the OO-CFC
> people?  As i see it, that's essential to instantiating objects for
> general CF OO programming.

CF MX 7 allows for more granular control where you can enable 
CFCs, butr disable COM/Java. In older versions you would have to 
use a hack: cfinvoke the component and have a method that returns 
"this".


> Are you saying then that all these Object Oriented applications are
> wide open because any password can be retrieved by almost anyone??

If they are on badly configured shared servers: yes, they are 
open to other users on the same 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:201662
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: Is CFMX 7 any better?

2005-04-05 Thread Jochem van Dieten
M Cohen wrote:
> Well, there's quite a bit of functionality on a CF server that's only
> accessible via createObject(). I wouldn't want to be hosted on a server that
> didn't enable it. To each his own I guess. 

I should have been more specific. createObject() should be 
disabled for Java and COM. There is no problem with enabling it 
for webservices and components. This granularity is a new feature 
of CF MX 7, so I suppose the answer to the original question is 
that CF MX 7 is indeed better :)

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:201661
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: Opening a file with # in the Filename

2005-04-05 Thread Barney Boisvert
The hash has special meaning in URLs for doing in-page anchors.  If
you need to put a hash in a URL and not have it interpreted as an
anchor name, you'll need to escape it.  Try running the filename
through the URLEncodedFormat() function.

cheers,
barneyb

On Apr 5, 2005 10:05 PM, simmyana a <[EMAIL PROTECTED]> wrote:
> Hi,
>   I need to open a file with # in the file name. If i try to open it in IE 
> using localhost path it is giving error as page not found.
> any help would be appreciated
> 
> Thanks

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

Got Gmail? I have 50 invites.

~|
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:201660
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


Opening a file with # in the Filename

2005-04-05 Thread simmyana a
Hi,
  I need to open a file with # in the file name. If i try to open it in IE 
using localhost path it is giving error as page not found. 
any help would be appreciated

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:201659
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: race condition?

2005-04-05 Thread Barney Boisvert
A race condition is when multiple requests manipulate the same data at
the same time, and the outcome depends on the order of execution.  For
example, deducting inventory as part of a purchase can provide a race
condition:

1)  

This is actually two operations on the same variable
(application.itemCount), a read on the right side, and a write on the
left side.  If two requests execute at the same time, it's possible
that both requests will read before either one writes, which will
result in an incorrect result.  This will be more clear if we break
the statement up:

1)  
2)  
3)  

First, this is the same as my previous example, just that I'm
carefully breaking each step down.  The same breakdown happens with
the first example, just CF/Java is doing it implicitly, and here I'm
doing it explicitly.

Say application.itemCount starts at 5, and lets run through a sample execution:

1) Request A is received and processes line 1.
2) A processes line 2. 
3) Request B is received and processes line 1. 
4) A processes line 3.
5) B processes line 2.
6) B proceses line 3.

What is the result?  application.itemCount will be set to 4, not 3. 
Here's the values of the variables over the course of the 6 steps:

step) 'application.itemCount', A's 'count', B's 'count'
// request A is received
1)  5, 5, -
2)  5, 4, -
// request B is received
3)  5, 4, 5
4)  4, 4, 5
// request A is over
5)  4, -, 4
6)  4, -, 4

By using an exclusive CFLOCK, we prevent the two requests from
executing simultaneously, and thereby avoid the race condition. 
Request B can't start executing until request A is totally finished. 
You'll see the obvious drawback, however.  Every place you use an
exclusive lock, you're effectively single-threading your application,
which drastically hurts performance.  Therefore it's important to keep
locking to a minimum.

cheers,
barneyb

On Apr 5, 2005 7:58 PM, Johnny Le <[EMAIL PROTECTED]> wrote:
> What is a race condition?  Two threads read the same variable at once?  I 
> heard a lot about race condition lately, but I don't exactly sure what race 
> condition is.  I know that you should use locking to avoid race condition.  
> It is like doing something to avoid something that I don't even know what it 
> is.
> Johnny

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

Got Gmail? I have 50 invites.

~|
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:201658
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: race condition?

2005-04-05 Thread James Holmes
A race condition occurs when one request is setting a value while another is
reading it or when two pages set a value at the same time. For example,
consider a page view counter. It might be an application variable
incremented and then read by the page. If two people request the page at the
same time, there is nothing to stop one request incrementing the counter in
between the other page's increment and read, resulting in a false value,
unless the page uses a lock.

-Original Message-
From: Johnny Le [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 6 April 2005 11:59 
To: CF-Talk
Subject: race condition?

What is a race condition?  Two threads read the same variable at once?  I
heard a lot about race condition lately, but I don't exactly sure what race
condition is.  I know that you should use locking to avoid race condition.
It is like doing something to avoid something that I don't even know what it
is.
Johnny



~|
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:201657
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


race condition?

2005-04-05 Thread Johnny Le
What is a race condition?  Two threads read the same variable at once?  I heard 
a lot about race condition lately, but I don't exactly sure what race condition 
is.  I know that you should use locking to avoid race condition.  It is like 
doing something to avoid something that I don't even know what it is.
Johnny

~|
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:201656
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 1:30 PM, Sean Corfield <[EMAIL PROTECTED]> wrote:
> Hmm, interesting. I've heard (repeatedly) that you can do J2EE
> packaging from any edition but maybe it is restricted to Developer and
> Enterprise? There's no technical reason why Standard Edition couldn't
> *create* EAR/WAR files... I haven't looked at Standard Edition in
> several years. All our installations are J2EE (both developer and
> enterprise).

I just spoke with Damon Cooper and he confirmed that Standard Edition
*CAN* create J2EE packages, as I originally suspected.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201655
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: application scope and CFMX(JRun) clusters

2005-04-05 Thread Douglas Knudsen
ah, kewl idea. tks Sean.

D

On Apr 5, 2005 1:32 PM, Sean Corfield <[EMAIL PROTECTED]> wrote:
> 
> On Apr 5, 2005 8:29 AM, Douglas Knudsen <[EMAIL PROTECTED]> wrote:
> > Ok, we have some apps that store CFC instances in the application scope. 
> We
> > just set up a CFMX cluster in our production environment. For those of 
> you
> > also doing this, how do you update your application scopes? For example, 
> an
> > instance of foo.cfc is stored in application.foo. If I update the code 
> for
> > foo.cfc, how do I get a new instance in all my CFMX instances easily?
> > thoughts?
> 
> We have multiple instances per server and multiple servers. We use a
> build script to deploy code changes to all the servers (the instances
> on each server share the same webroot so only one copy of the code
> lives on each server). Then we have a bootstrap script that hits each
> server instance in turn and requests a URL that reload the appropriate
> CFC cache.
> --
> Sean A Corfield -- http://corfield.org/
> Team Fusebox -- http://fusebox.org/
> Got Gmail? -- I have 50, yes 50, invites to give away!
> 
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
> 
> 

~|
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:201654
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 app as EAR/WAR file

2005-04-05 Thread Douglas Knudsen
On Apr 5, 2005 3:14 PM, Sean Corfield <[EMAIL PROTECTED]> wrote:
> 
> On Apr 5, 2005 11:22 AM, Dave Watts <[EMAIL PROTECTED]> wrote:
> > I've deployed other WARs to JRun without exploding them first. Flex 
> works
> > nicely this way, actually. Are you sure you need to do this with CF?
> 
> That's my understanding, yes, because CF writes to files inside the
> application. If you don't explode it manually, I think you'll find
> various things just won't work quite right...


IIRC, JRun explodes the WAR/EAR to a temp dir for use.

> I'm pretty sure that you cannot do J2EE packaging on Standard Edition.
> 
> The documentation says you can create EAR/WAR files on *any* edition.
> You can most certainly create packages from Developer Edition. I don't
> have Standard Edition on hand to check. You can only *deploy* as
> Enterprise Edition (or Developer Edition if you deploy without a
> serial number).
> --
> Sean A Corfield -- http://corfield.org/
> Team Fusebox -- http://fusebox.org/
> Got Gmail? -- I have 50, yes 50, invites to give away!
> 
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
> 
> 

~|
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:201653
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: Chinese Character Problem, (Part 2)

2005-04-05 Thread Paul Hastings
Dwayne Cole wrote:
> 

cf ignores this. though it's a good idea for other reasons.

> I've gone to sites that present both english and chinese without setting the 
> charset.  

bad bad habit to follow. i assure you these sites also have issues, i'll 
bet a beer in it.

"hint early, hint often". and of course "Just Use Unicode".

~|
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:201652
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: FWD: Chinese Character Problem, (Part 1)

2005-04-05 Thread Paul Hastings
Dwayne Cole wrote:
>   "iso-8859-1")> 

these are all *wrong* for anything but western european languages.

> This is obvious the problem with using the CMS to add content to the
> database because the content type has has to support chinese
> characters, particular charset="gb2312".

you can also use unicode. have you tried the 'access for unicode' driver 
w/either the gb2312 or unicode (utf-8) encoding?


~|
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:201651
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: Generating BarCodes in CF

2005-04-05 Thread Adam Howitt
Everything you need to do the encoding is right there on the link you 
provided. The last step would be to use an underlying Java library in CF to 
generate a JPEG of the output for you which can then be embedded in any 
document format you like, or pay someone to write the generator for you.

On Apr 5, 2005 1:52 PM, Ali Awan <[EMAIL PROTECTED]> wrote:
> 
> John,
> 
> Oh well. Thanks for the tip though, I'll look into that.
> 
> Ali
> 
> -Original Message-
> From: Burns, John D [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 05, 2005 10:57 AM
> To: CF-Talk
> Subject: RE: Generating BarCodes in CF
> 
> Well, Word automation is basically unsupported by Microsoft so you might
> have trouble finding a good solution. Someone posted on here earlier
> today about an XML solution for generating Word docs. You may want to
> look at that.
> 
> John Burns
> Certified Advanced ColdFusion MX Developer
> Wyle Laboratories, Inc. | Web Developer
> 
> -Original Message-
> From: Ali Awan [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 05, 2005 1:51 PM
> To: CF-Talk
> Subject: RE: Generating BarCodes in CF
> 
> John,
> 
> Firstly, thanks for taking the time to discuss this issue.
> Yeah, Google has been my friend for many years. Even as I posted this
> question on CF-Talk, I had downloaded and evaluated a couple of
> off-the-shelf solutions for generating the BarCodes that I needed. I
> can even invoke one of them through CF.
> 
> But like I said, that is only half the battle. I need to be able to
> embed the generated code into an existing Word Doc, via CF. That's
> something I don't know how to do. All the googling, ends up with VB
> solutions. Even when I contacted tech-support for one of the software
> vendors, they responded with a VB solution. I'm not a VB guru, and
> don't know much about writing ActiveX objects, or using the OLEViewer to
> decipher all the hex codes and various and sundry variables that I would
> need to manipulate were I to use CF to access it.
> 
> Oh well, this horse is pretty much dead. I'll walk away.
> 
> If anyone's interested I can email them off-list if I come up with a CF
> interface that does what I need.
> 
> Otherwise, thanks all, and good night,
> Ali
> 
> 

~|
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:201650
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 speeds

2005-04-05 Thread dave
As far as I know I am, as far as I know we are on the same server.


From: Sean Corfield <[EMAIL PROTECTED]>
Sent: Tuesday, April 05, 2005 9:18 PM
To: CF-Talk 
Subject: Re: cfdocument speeds 

On Apr 5, 2005 5:29 PM, dave  wrote:
> I have a page where you can choose either or (fp or pdf) and granted there 
> are pix involved but the flashpaper takes about 40 seconds to load and the 
> pdf about 1 minute. Seems a bit long to me.

Are you using Enterprise Edition? Document generation is higher
performance in Enterprise than in Standard / Developer edition.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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



~|
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:201649
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 speeds

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 5:29 PM, dave <[EMAIL PROTECTED]> wrote:
>  I have a page where you can choose either or (fp or pdf) and granted there 
> are pix involved but the flashpaper takes about 40 seconds to load and the 
> pdf about 1 minute. Seems a bit long to me.

Are you using Enterprise Edition? Document generation is higher
performance in Enterprise than in Standard / Developer edition.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201648
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 speeds

2005-04-05 Thread Connie DeCinko
Yeah, but there still is a need for Acrobat if you need to edit PDFs,
combine them or delete pages or make them into interactive forms.  Adobe
screwed up long ago by not pushing a lite version of Acrobat.  I've been
using CutePDF for nearly a year for simple things like emailable invoices or
proofs and it don't cost me a dime.  Also, since Corel cleaned up the PDF
output of CorelDraw, I no longer need Acrobat.


-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 5:30 PM
To: CF-Talk
Subject: RE: cfdocument speeds

hum
 I have a page where you can choose either or (fp or pdf) and granted there
are pix involved but the flashpaper takes about 40 seconds to load and the
pdf about 1 minute. Seems a bit long to me.

 Btw~  Given the legal history between MM and Adobe I wonder how pissed of
Adobe is at MM for this tag? But then again Adobe uses quite a bit of flash
on their site




~|
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:201647
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


cfschedule and daylight savings bug

2005-04-05 Thread Jeff Congdon
After investigating some really strange behavior with my scheduled jobs, 
I realized that all of my scheduled tasks are running t-1hour, and have 
been since Sunday morning.  Fan-tas-tic.

A few minutes ago I ran a test on the server in question.   Server clock 
(it's central) reads 7:30 PM, now() in a cf date function returns 7:30 
PM,  2 jobs were scheduled in advance... one for 6:30, the other for 
7:30.  I got a result from the 6:30 one, not from the 7:30 one.

CFMX 6.1 with updater, and a day of cleaning up after this that I'll 
never get back.

-Jeff





~|
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:201646
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: Is CFMX 7 any better?

2005-04-05 Thread Connie DeCinko
I've always seen this as...

A login for the web app, a login for the admin, and a login for any other
person or app that needs access.
 

-Original Message-
From: M Cohen [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 3:36 PM
To: CF-Talk
Subject: RE: Is CFMX 7 any better?

"Every user should get an actual database login."

This isn't exactly practical with most webapps, don't you think?




~|
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:201645
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 speeds

2005-04-05 Thread dave
hum
 I have a page where you can choose either or (fp or pdf) and granted there are 
pix involved but the flashpaper takes about 40 seconds to load and the pdf 
about 1 minute. Seems a bit long to me.

 Btw~  Given the legal history between MM and Adobe I wonder how pissed of 
Adobe is at MM for this tag? But then again Adobe uses quite a bit of flash on 
their site


From: "Connie DeCinko" <[EMAIL PROTECTED]>
Sent: Tuesday, April 05, 2005 8:23 PM
To: CF-Talk 
Subject: RE: cfdocument speeds 

I can't quote speed numbers, but for me, it happens pretty quickly. I have
a 3 page list of products and a several page list of stores that run really
speedy. The only delay is waiting for the Acrobat Reader to open. Once
that's done, delivery is as quick as displaying via HTML.

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 2:51 PM
To: CF-Talk
Subject: cfdocument speeds

What kind of creation speeds are you guys seeing with flashpaper or pdf's?
(from link click to rendering)



~|
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:201644
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 speeds

2005-04-05 Thread Connie DeCinko
I can't quote speed numbers, but for me, it happens pretty quickly.  I have
a 3 page list of products and a several page list of stores that run really
speedy.  The only delay is waiting for the Acrobat Reader to open.  Once
that's done, delivery is as quick as displaying via HTML.
 

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 2:51 PM
To: CF-Talk
Subject: cfdocument speeds

What kind of creation speeds are you guys seeing with flashpaper or pdf's?
(from link click to rendering)

 





~|
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:201643
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX installation in parallel with CFMX6.1

2005-04-05 Thread Victor Moore
I was under the impression that CFMX7 can be installed (in server
configuration) and run in parallel (using the internal web server) on
a system where CFMX6.1 is already installed?

Will the multiuser configuration let me run CFMX6.1 as before?

Thanks
Victor

~|
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:201642
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: problem with parsexml

2005-04-05 Thread Dave Watts
> Yes, or make a mapping with a dtd or schema. I often just use 
> the number format.

I don't think you can define entities within a schema.

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!


~|
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:201641
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: problem with parsexml

2005-04-05 Thread Rob
On Apr 5, 2005 1:30 PM, Ben Mueller <[EMAIL PROTECTED]> wrote:
> Thanks for the prompt reply.  I was sort of afraid that was the answer.
> 
> So...uh...I'm sure many people want to use those special characters within 
> XML documents, divorced of CF.  What's the standard practice, then?  Do 
> people just use the numeric reference then?

Yes, or make a mapping with a dtd or schema. I often just use the number format.

-- 
~Blog~
http://www.robrohan.com
~The cfml plug-in for eclipse~
http://cfeclipse.tigris.org 
~open source xslt IDE~
http://treebeard.sourceforge.net

~|
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:201640
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: Is CFMX 7 any better?

2005-04-05 Thread Dave Watts
> And if CreateObject() is disabled, where does that leave 
> the OO-CFC people?  As i see it, that's essential to 
> instantiating objects for general CF OO programming.
> 
> Are you saying then that all these Object Oriented 
> applications are wide open because any password can be 
> retrieved by almost anyone??

You can use the CFINVOKE tag instead. The syntax is a little clunkier for
this, but it will let you do the same thing.

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:201639
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: Is CFMX 7 any better?

2005-04-05 Thread Mike Kear
And if CreateObject() is disabled, where does that leave the OO-CFC
people?  As i see it, that's essential to instantiating objects for
general CF OO programming.

Are you saying then that all these Object Oriented applications are
wide open because any password can be retrieved by almost anyone??


Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month




On Apr 6, 2005 7:44 AM, Jochem van Dieten <[EMAIL PROTECTED]> wrote:
> M Cohen wrote:
> > Yes, OK, if createObject() is turned off then they're not available. But I
> > work on one site that's hosted at a very popular, well respected hosting
> > company and createObject() is available. I assume this is the norm rather
> > than the exception.
> 
> I have no idea if it is the norm, but I wouldn't want to be
> hosted on a shared server that has it enabled.
> 
> Jochem
>

~|
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:201638
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


FWD: Chinese Character Problem, (Part 1)

2005-04-05 Thread Dwayne Cole
Just when I think I have the problem solved.

I'm working on a site that has a little Chinese Characters.  I having problems 
on multiple fronts.

GETTING DATA IN
Well I have a content management system and in the application.cfm page i have 
content that looks like this





This was because CFMX 6 had some character set issues (MS Access). I was 
getting some very funny symbols but the above code cleared in up.

This is obvious the problem with using the CMS to add content to the database 
because the content type has has to support chinese characters, particular 
charset="gb2312".

Sense it's not a lot of content, I just copy the chinese characters from the a 
word document and paste directely into the datbase.   

HOWEVER, 
MS Word uses a different character set.  So when I copy the text from MS Word, 
and Paste into Database, funny symbols again.

Any Advice 

Dwayne



~|
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:201637
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


Chinese Character Problem, (Part 2)

2005-04-05 Thread Dwayne Cole
Presenting the chinese character is another challenge

I'm using this at the top of the page.



OK that seems to work sometimes and other times, well.

I've gone to sites that present both english and chinese without setting the 
charset.  

Any advice.

Dwayne cole

~|
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:201636
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: Cfchart newbie ?

2005-04-05 Thread Joe Rinehart
No worries man, I've used Access too :)

I was never a fan of CFChart until MX 7 came out - if you need to do
charting or reporting, you really should check it out now, it's quite
amazing.

-Joe

~|
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:201635
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


Shared sessions

2005-04-05 Thread jhaque
Hello,

We're going a bit crazy here trying to figure this out.

Coldfusion 5.0 ---

Using session variables for user identification and there is serious 
overlap.
A users at site A logs in and starts using the system and all of a sudden 
he can see things for a user in site B. This even though the user at site 
B has never logged on to the system using the computer in site A.

Can anyone shed light on this?

-Jay

~|
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:201634
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: Is CFMX 7 any better?

2005-04-05 Thread Dave Watts
> Personally I think using a single account (that all your 
> application users use) isn't a good idea, because you lose 
> any sort of database auditing. You can't tell who exactly 
> deleted that row, or even worse, who dropped that table.

It's worth pointing out that using individual logins may significantly
affect application performance, since CF won't be able to share cached
database connections across multiple users.

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:201633
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: Is CFMX 7 any better?

2005-04-05 Thread M Cohen
"Every user should get an actual database login."

This isn't exactly practical with most webapps, don't you think?
 

-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 6:24 PM
To: CF-Talk
Subject: Re: Is CFMX 7 any better?

Well it depends on how secure you want to make your application. Which could
spawn a very long thread indeed and is really matter of system requirements.

Personally I think using a single account (that all your application users
use) isn't a good idea, because you lose any sort of database auditing. You
can't tell who exactly deleted that row, or even worse, who dropped that
table.

So then you get into the roles issue. Which is very important in a strong
security model. With a single account that means at most you have a single
role. Pretty much making the role based security in your database useless as
well.

So the security that is built into your database is mostly going to waste.
What's worse is that the security is moved into your application where it
doesnt fit. After all it's the data you want secure. So why should CF be in
charge of protecting it?

Of course, if you are using a shared server, then you shouldnt be concerned
with security to such a degree. Afterall, if your data is so confidential,
why are you trusting it to a third-party?

As for plain text passwords on your system, thats where OS security comes
in. If some gains login to your server, they can do many worse things than
logging into your database. However, if you fully utilize the database
security model, these credentials aren't stored there anyway.

Before OS security comes physical and network security...

I guess the short answer is to utilize the security thats built in to your
database. Every user should get an actual database login. That login is
passed through CF to database every time. (You can store the credentials in
session, even encrypt them if you want to get crazy.) That login is assigned
specific application roles in the database.
Those roles only have execute on stored procedures. (Never grant select,
insert, delete etc to any user or role).

As you can see this thread could get very long, very fast.

Dave Watts would be a good resource for more security with CF as he is
presenting on the topic at CFUnited.

Even if you can't adopt the security model of your database CFMX7 offers two
things to solve the problem above. Don't deploy the CFAdmin to production
(which you _really_ shouldn't do) and only deploy compiled source code. Sure
someone could hack your OS and decompile the source, but it should be enough
deterent to make them choose a softer target.

-Adam


On Apr 5, 2005 4:52 PM, Jeff Garza <[EMAIL PROTECTED]> wrote:
> What would your strategy be for storing database credentials if you 
> are not storing them in CF?  Are you saying don't put them in your cf 
> templates or are you saying do not store them via the CF Administrator?
> 
> Just curious.
> 
> Jeff Garza
> 
> - Original Message -
> From: "Adrocknaphobia" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Tuesday, April 05, 2005 1:38 PM
> Subject: Re: Is CFMX 7 any better?
> 
> > 1) Do not deploy the CFAdmin to production
> > 2) Do not store db credentials in CF
> >
> > CF7 handles these credentials the same way CF6 did.
> >
> > -Adam
> >
> > On Apr 5, 2005 4:36 PM, Mike Cohen <[EMAIL PROTECTED]> wrote:
> >> It's bad enough that the Administrator password is freely 
> >> available, but I just realized that every jdbc password on the box 
> >> is too. Is MX 7 any better?
> >>
> >>
> >
> >
> 
> 



~|
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:201632
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: Is CFMX 7 any better?

2005-04-05 Thread Adrocknaphobia
Well if I was running CFMX6 standard, I'd deploy and remove. On J2EE
you set everyting up on your dev server and package it up to deploy to
production minus the CFAdmin.

CFMX7 makes this much easier as its a simple check box. You had to
remove it manually with CF6.

-Adam

On Apr 5, 2005 5:15 PM, Connie DeCinko <[EMAIL PROTECTED]> wrote:
> How do you do this?  You need CFAdmin to setup the server.  Do you deploy
> and then remove?
> If you don't store db creds in CF, you then have to store them in your code,
> which is even worse.
> 
> 
> -Original Message-
> From: Adrocknaphobia [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 05, 2005 1:38 PM
> To: CF-Talk
> Subject: Re: Is CFMX 7 any better?
> 
> 1) Do not deploy the CFAdmin to production
> 2) Do not store db credentials in CF
> 
> CF7 handles these credentials the same way CF6 did.
> 
> -Adam
> 
> On Apr 5, 2005 4:36 PM, Mike Cohen <[EMAIL PROTECTED]> wrote:
> > It's bad enough that the Administrator password is freely available, but I
> just realized that every jdbc password on the box is too. Is MX 7 any
> better?
> >
> >
> 
> 

~|
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:201631
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: Is CFMX 7 any better?

2005-04-05 Thread Adrocknaphobia
Connie,

CFAdmin is no better. All you have to do is alter an XML file to
disable the login, and restart the service. JRun stores the
username/password in an XML file as well.

-Adam

On Apr 5, 2005 5:18 PM, Connie DeCinko <[EMAIL PROTECTED]> wrote:
> Storing them in your templates is gotta be the worst idea since they are
> stored as plain text.  At least in the CFAdmin they are behind a password.
> 
> 
> -Original Message-
> From: Jeff Garza [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 05, 2005 1:53 PM
> To: CF-Talk
> Subject: Re: Is CFMX 7 any better?
> 
> What would your strategy be for storing database credentials if you are not
> storing them in CF?  Are you saying don't put them in your cf templates or
> are you saying do not store them via the CF Administrator?
> 
> Just curious.
> 
> Jeff Garza
> 
> 

~|
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:201630
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: Is CFMX 7 any better?

2005-04-05 Thread Adrocknaphobia
Well it depends on how secure you want to make your application. Which
could spawn a very long thread indeed and is really matter of system
requirements.

Personally I think using a single account (that all your application
users use) isn't a good idea, because you lose any sort of database
auditing. You can't tell who exactly deleted that row, or even worse,
who dropped that table.

So then you get into the roles issue. Which is very important in a
strong security model. With a single account that means at most you
have a single role. Pretty much making the role based security in your
database useless as well.

So the security that is built into your database is mostly going to
waste. What's worse is that the security is moved into your
application where it doesnt fit. After all it's the data you want
secure. So why should CF be in charge of protecting it?

Of course, if you are using a shared server, then you shouldnt be
concerned with security to such a degree. Afterall, if your data is so
confidential, why are you trusting it to a third-party?

As for plain text passwords on your system, thats where OS security
comes in. If some gains login to your server, they can do many worse
things than logging into your database. However, if you fully utilize
the database security model, these credentials aren't stored there
anyway.

Before OS security comes physical and network security...

I guess the short answer is to utilize the security thats built in to
your database. Every user should get an actual database login. That
login is passed through CF to database every time. (You can store the
credentials in session, even encrypt them if you want to get crazy.)
That login is assigned specific application roles in the database.
Those roles only have execute on stored procedures. (Never grant
select, insert, delete etc to any user or role).

As you can see this thread could get very long, very fast.

Dave Watts would be a good resource for more security with CF as he is
presenting on the topic at CFUnited.

Even if you can't adopt the security model of your database CFMX7
offers two things to solve the problem above. Don't deploy the CFAdmin
to production (which you _really_ shouldn't do) and only deploy
compiled source code. Sure someone could hack your OS and decompile
the source, but it should be enough deterent to make them choose a
softer target.

-Adam


On Apr 5, 2005 4:52 PM, Jeff Garza <[EMAIL PROTECTED]> wrote:
> What would your strategy be for storing database credentials if you are not
> storing them in CF?  Are you saying don't put them in your cf templates or
> are you saying do not store them via the CF Administrator?
> 
> Just curious.
> 
> Jeff Garza
> 
> - Original Message -
> From: "Adrocknaphobia" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Tuesday, April 05, 2005 1:38 PM
> Subject: Re: Is CFMX 7 any better?
> 
> > 1) Do not deploy the CFAdmin to production
> > 2) Do not store db credentials in CF
> >
> > CF7 handles these credentials the same way CF6 did.
> >
> > -Adam
> >
> > On Apr 5, 2005 4:36 PM, Mike Cohen <[EMAIL PROTECTED]> wrote:
> >> It's bad enough that the Administrator password is freely available, but
> >> I just realized that every jdbc password on the box is too. Is MX 7 any
> >> better?
> >>
> >>
> >
> >
> 
> 

~|
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:201629
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


cfdocument speeds

2005-04-05 Thread dave
What kind of creation speeds are you guys seeing with flashpaper or pdf's? 
(from link click to rendering)

 



~|
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:201628
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: Is CFMX 7 any better?

2005-04-05 Thread M Cohen
Well, there's quite a bit of functionality on a CF server that's only
accessible via createObject(). I wouldn't want to be hosted on a server that
didn't enable it. To each his own I guess. 
 

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 5:45 PM
To: CF-Talk
Subject: Re: Is CFMX 7 any better?

M Cohen wrote:
> Yes, OK, if createObject() is turned off then they're not available. 
> But I work on one site that's hosted at a very popular, well respected 
> hosting company and createObject() is available. I assume this is the 
> norm rather than the exception.

I have no idea if it is the norm, but I wouldn't want to be hosted on a
shared server that has it enabled.

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:201627
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: Is CFMX 7 any better?

2005-04-05 Thread Jochem van Dieten
M Cohen wrote:
> Yes, OK, if createObject() is turned off then they're not available. But I
> work on one site that's hosted at a very popular, well respected hosting
> company and createObject() is available. I assume this is the norm rather
> than the exception.

I have no idea if it is the norm, but I wouldn't want to be 
hosted on a shared server that has it enabled.

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:201626
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: Is CFMX 7 any better?

2005-04-05 Thread M Cohen
Yes, OK, if createObject() is turned off then they're not available. But I
work on one site that's hosted at a very popular, well respected hosting
company and createObject() is available. I assume this is the norm rather
than the exception.


-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 5:32 PM
To: CF-Talk
Subject: Re: Is CFMX 7 any better?

Mike Cohen wrote:
> It's bad enough that the Administrator password is freely available, but I
just realized that every jdbc password on the box is too. Is MX 7 any
better?

How exactly are they freely available on a correctly configured box with
Sandbox Security?

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:201625
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: CF6 Server crashing, "<." displays in browser

2005-04-05 Thread Bryan F. Hogan
Steven Erat has info

http://www.talkingtree.com/blog/index.cfm?mode=entry&entry=B14AFA31-45A6-284
4-74EB63FB3560B748


~|
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:201624
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: Is CFMX 7 any better?

2005-04-05 Thread Jochem van Dieten
Mike Cohen wrote:
> It's bad enough that the Administrator password is freely available, but I 
> just realized that every jdbc password on the box is too. Is MX 7 any better?

How exactly are they freely available on a correctly configured 
box with Sandbox Security?

Jochem

~|
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:201623
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


CF6 Server crashing, "<." displays in browser

2005-04-05 Thread Tony Matous
I am running CF6 with 6.1 updater 1. When running a long data import script, 
the CF server service restarts with no error logged. The page in the browser 
shows the data that had previously been CFFLUSHed, and a "less than period". I 
have tried code that is as similar as possible on another server with no 
problems. The code block that it crashes in is very simple:














I have checked all the files modified in the last day, and none seem to provide 
any kind of error or stack trace for this. Is anyone else experiencing 
something like this?

~|
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:201622
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: Cfchart newbie ?

2005-04-05 Thread Ray Champagne
mutters under breath...

M$Access

sheepishly running away :)


At 05:24 PM 4/5/2005, you wrote:
>Which DB?  Mine's MySQL.
>
>
> access="public">
> 
>
> 
> SELECT DISTINCTROW
> Month(orders.OrderDate) AS
>OrderMonth,
>
>Left(Cast(MonthName(OrderDate) AS CHAR), 3) AS OrderMonthName,
>
>SUM(orderdetails.Quantity*orderdetails.Price) AS TotalSales,
> SUM(orderdetails.Quantity)
>AS TotalUnits,
> orders.Void
> FROMorders
> INNER JOIN  orderdetails ON
>orders.OrderID = orderdetails.OrderID
> WHERE   orders.Void = 0
> AND orderdetails.Quantity > 0
> AND (orders.OrderDate BETWEEN
>'#year(now())-1#-#month(now())+7#-01' AND '#year(now())#-#month(now())#-31')
> GROUP BYOrderMonth
> ORDER BYorders.OrderDate
> 
>
> 
> 
>
>
>-Original Message-
>From: Ray Champagne [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, April 05, 2005 2:18 PM
>To: CF-Talk
>Subject: RE: Cfchart newbie ?
>
>Connie, I thought of that, but couldn't get it to work properly.  Mind
>sharing one of those queries?
>
>That would save me some processing time!
>
>At 05:13 PM 4/5/2005, you wrote:
> >Or, apply the format in the query itself.  I do something similar to get
> >just the month from the date.
> >
> >
> >-Original Message-
> >From: Ray Champagne [mailto:[EMAIL PROTECTED]
> >Sent: Tuesday, April 05, 2005 1:20 PM
> >To: CF-Talk
> >Subject: Re: Cfchart newbie ?
> >
> >I got my answer - CFCHART sucks. :)
> >
> >It seems that there is no way to format x-axis data using either cfchart or
> >cfchartseries.  I had to be creative and loop through my query, changing
> >the value of each row to be a nicely formatted date.  Ugly solution, but it
> >works.  More info can be found in the comments section of this livedoc:
> >
> >http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a11.htm
> >
> >Just FYI, for anyone that might read this in the archives!
> >
> >Ray
> >
> >At 03:25 PM 4/5/2005, you wrote:
> > >I am making a simple line chart for the first time and I have run into an
> > >easy stumbling block that I can't seem to Google out.
> > >
> > >The Y-Axis are a series of prices, while the X-Axis is a series of
> > >dates.  These are held in a DB.  The problem that I am having is that the
> > >date always outputs on the X-Axis label as the SQL date, ie; 2005-05-05
> > >00:00:00.0.  No matter what I try, I can't get it to diplay as a simple
> > >date, like 05/05/2005.
> > >
> > >There has to be something I am missing here - I see a place to format the
> > >data for the Y-Axis, why not the X-Axis?  I know that I can flip the
>chart,
> > >but I don't want to do that.
> > >
> > >Ray
> > >
> > >=
> > >Ray Champagne - Senior Application Developer
> > >CrystalVision Web Site Design and Internet Services
> > >603.433.9559
> > >www.crystalvision.org
> > >=
> > >
> > >The information contained in this transmission (including any attached
> > >files) is CONFIDENTIAL and is intended only for the person(s) named
> > >above. If you received this transmission in error, please delete it
> > >from your system and notify us immediately. If you are not an intended
> > >recipient, please note that any use or dissemination of the information
> > >contained in this transmission (including any attached files) and the
> > >copying, printing, or retransmission of that information is strictly
> > >prohibited. You can notify us by return email or by phone at
>603.433.9559.
> > >Thank you.
> > >
> > >
> > >
> > >
> >
> >
> >
> >
>
>
>
>

~|
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:201621
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: Cfchart newbie ?

2005-04-05 Thread Connie DeCinko
Which DB?  Mine's MySQL.






SELECT DISTINCTROW
Month(orders.OrderDate) AS
OrderMonth,

Left(Cast(MonthName(OrderDate) AS CHAR), 3) AS OrderMonthName,

SUM(orderdetails.Quantity*orderdetails.Price) AS TotalSales,
SUM(orderdetails.Quantity)
AS TotalUnits,
orders.Void
FROMorders
INNER JOIN  orderdetails ON
orders.OrderID = orderdetails.OrderID
WHERE   orders.Void = 0
AND orderdetails.Quantity > 0
AND (orders.OrderDate BETWEEN
'#year(now())-1#-#month(now())+7#-01' AND '#year(now())#-#month(now())#-31')
GROUP BYOrderMonth
ORDER BYorders.OrderDate




 

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 2:18 PM
To: CF-Talk
Subject: RE: Cfchart newbie ?

Connie, I thought of that, but couldn't get it to work properly.  Mind 
sharing one of those queries?

That would save me some processing time!

At 05:13 PM 4/5/2005, you wrote:
>Or, apply the format in the query itself.  I do something similar to get
>just the month from the date.
>
>
>-Original Message-
>From: Ray Champagne [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, April 05, 2005 1:20 PM
>To: CF-Talk
>Subject: Re: Cfchart newbie ?
>
>I got my answer - CFCHART sucks. :)
>
>It seems that there is no way to format x-axis data using either cfchart or
>cfchartseries.  I had to be creative and loop through my query, changing
>the value of each row to be a nicely formatted date.  Ugly solution, but it
>works.  More info can be found in the comments section of this livedoc:
>
>http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a11.htm
>
>Just FYI, for anyone that might read this in the archives!
>
>Ray
>
>At 03:25 PM 4/5/2005, you wrote:
> >I am making a simple line chart for the first time and I have run into an
> >easy stumbling block that I can't seem to Google out.
> >
> >The Y-Axis are a series of prices, while the X-Axis is a series of
> >dates.  These are held in a DB.  The problem that I am having is that the
> >date always outputs on the X-Axis label as the SQL date, ie; 2005-05-05
> >00:00:00.0.  No matter what I try, I can't get it to diplay as a simple
> >date, like 05/05/2005.
> >
> >There has to be something I am missing here - I see a place to format the
> >data for the Y-Axis, why not the X-Axis?  I know that I can flip the
chart,
> >but I don't want to do that.
> >
> >Ray
> >
> >=
> >Ray Champagne - Senior Application Developer
> >CrystalVision Web Site Design and Internet Services
> >603.433.9559
> >www.crystalvision.org
> >=
> >
> >The information contained in this transmission (including any attached
> >files) is CONFIDENTIAL and is intended only for the person(s) named
> >above. If you received this transmission in error, please delete it
> >from your system and notify us immediately. If you are not an intended
> >recipient, please note that any use or dissemination of the information
> >contained in this transmission (including any attached files) and the
> >copying, printing, or retransmission of that information is strictly
> >prohibited. You can notify us by return email or by phone at
603.433.9559.
> >Thank you.
> >
> >
> >
> >
>
>
>
>



~|
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:201620
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: Is CFMX 7 any better?

2005-04-05 Thread Calvin Ward
How are the passwords 'freely available'?

-Original Message-
From: Mike Cohen [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 4:36 PM
To: CF-Talk
Subject: Is CFMX 7 any better?

It's bad enough that the Administrator password is freely available, but I
just realized that every jdbc password on the box is too. Is MX 7 any
better?



~|
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:201619
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: Is CFMX 7 any better?

2005-04-05 Thread Connie DeCinko
Storing them in your templates is gotta be the worst idea since they are
stored as plain text.  At least in the CFAdmin they are behind a password.
 

-Original Message-
From: Jeff Garza [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 1:53 PM
To: CF-Talk
Subject: Re: Is CFMX 7 any better?

What would your strategy be for storing database credentials if you are not 
storing them in CF?  Are you saying don't put them in your cf templates or 
are you saying do not store them via the CF Administrator?

Just curious.

Jeff Garza




~|
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:201618
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: Cfchart newbie ?

2005-04-05 Thread Ray Champagne
Connie, I thought of that, but couldn't get it to work properly.  Mind 
sharing one of those queries?

That would save me some processing time!

At 05:13 PM 4/5/2005, you wrote:
>Or, apply the format in the query itself.  I do something similar to get
>just the month from the date.
>
>
>-Original Message-
>From: Ray Champagne [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, April 05, 2005 1:20 PM
>To: CF-Talk
>Subject: Re: Cfchart newbie ?
>
>I got my answer - CFCHART sucks. :)
>
>It seems that there is no way to format x-axis data using either cfchart or
>cfchartseries.  I had to be creative and loop through my query, changing
>the value of each row to be a nicely formatted date.  Ugly solution, but it
>works.  More info can be found in the comments section of this livedoc:
>
>http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a11.htm
>
>Just FYI, for anyone that might read this in the archives!
>
>Ray
>
>At 03:25 PM 4/5/2005, you wrote:
> >I am making a simple line chart for the first time and I have run into an
> >easy stumbling block that I can't seem to Google out.
> >
> >The Y-Axis are a series of prices, while the X-Axis is a series of
> >dates.  These are held in a DB.  The problem that I am having is that the
> >date always outputs on the X-Axis label as the SQL date, ie; 2005-05-05
> >00:00:00.0.  No matter what I try, I can't get it to diplay as a simple
> >date, like 05/05/2005.
> >
> >There has to be something I am missing here - I see a place to format the
> >data for the Y-Axis, why not the X-Axis?  I know that I can flip the chart,
> >but I don't want to do that.
> >
> >Ray
> >
> >=
> >Ray Champagne - Senior Application Developer
> >CrystalVision Web Site Design and Internet Services
> >603.433.9559
> >www.crystalvision.org
> >=
> >
> >The information contained in this transmission (including any attached
> >files) is CONFIDENTIAL and is intended only for the person(s) named
> >above. If you received this transmission in error, please delete it
> >from your system and notify us immediately. If you are not an intended
> >recipient, please note that any use or dissemination of the information
> >contained in this transmission (including any attached files) and the
> >copying, printing, or retransmission of that information is strictly
> >prohibited. You can notify us by return email or by phone at 603.433.9559.
> >Thank you.
> >
> >
> >
> >
>
>
>
>

~|
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:201617
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: Is CFMX 7 any better?

2005-04-05 Thread Connie DeCinko
How do you do this?  You need CFAdmin to setup the server.  Do you deploy
and then remove?
If you don't store db creds in CF, you then have to store them in your code,
which is even worse.
 

-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 1:38 PM
To: CF-Talk
Subject: Re: Is CFMX 7 any better?

1) Do not deploy the CFAdmin to production
2) Do not store db credentials in CF

CF7 handles these credentials the same way CF6 did.

-Adam

On Apr 5, 2005 4:36 PM, Mike Cohen <[EMAIL PROTECTED]> wrote:
> It's bad enough that the Administrator password is freely available, but I
just realized that every jdbc password on the box is too. Is MX 7 any
better?
> 
> 



~|
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:201616
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: Is CFMX 7 any better?

2005-04-05 Thread Connie DeCinko
Nothing has changed in that area.
 

-Original Message-
From: Mike Cohen [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 1:36 PM
To: CF-Talk
Subject: Is CFMX 7 any better?

It's bad enough that the Administrator password is freely available, but I
just realized that every jdbc password on the box is too. Is MX 7 any
better?



~|
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:201615
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: Cfchart newbie ?

2005-04-05 Thread Connie DeCinko
Or, apply the format in the query itself.  I do something similar to get
just the month from the date.
 

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 1:20 PM
To: CF-Talk
Subject: Re: Cfchart newbie ?

I got my answer - CFCHART sucks. :)

It seems that there is no way to format x-axis data using either cfchart or 
cfchartseries.  I had to be creative and loop through my query, changing 
the value of each row to be a nicely formatted date.  Ugly solution, but it 
works.  More info can be found in the comments section of this livedoc:

http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a11.htm

Just FYI, for anyone that might read this in the archives!

Ray

At 03:25 PM 4/5/2005, you wrote:
>I am making a simple line chart for the first time and I have run into an
>easy stumbling block that I can't seem to Google out.
>
>The Y-Axis are a series of prices, while the X-Axis is a series of
>dates.  These are held in a DB.  The problem that I am having is that the
>date always outputs on the X-Axis label as the SQL date, ie; 2005-05-05
>00:00:00.0.  No matter what I try, I can't get it to diplay as a simple
>date, like 05/05/2005.
>
>There has to be something I am missing here - I see a place to format the
>data for the Y-Axis, why not the X-Axis?  I know that I can flip the chart,
>but I don't want to do that.
>
>Ray
>
>=
>Ray Champagne - Senior Application Developer
>CrystalVision Web Site Design and Internet Services
>603.433.9559
>www.crystalvision.org
>=
>
>The information contained in this transmission (including any attached
>files) is CONFIDENTIAL and is intended only for the person(s) named
>above. If you received this transmission in error, please delete it
>from your system and notify us immediately. If you are not an intended
>recipient, please note that any use or dissemination of the information
>contained in this transmission (including any attached files) and the
>copying, printing, or retransmission of that information is strictly
>prohibited. You can notify us by return email or by phone at 603.433.9559.
>Thank you.
>
>
>
>



~|
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:201614
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: Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Mosh Teitelbaum
Thanks, again, to everyone who replied.  I've sent the replies along to the
production site's admins (I, unfortunately, don't have direct access to the
servers).

As before, I'll let you know if/when the problem is resolved and what the
ultimate solution was.

Again, thanks.

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 942-5378
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


> -Original Message-
> From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 05, 2005 4:29 PM
> To: CF-Talk
> Subject: RE: Error Message "No more data available to read." on CFMX 6
>
>
> Here is some info from Steven Erat.
>
> http://www.talkingtree.com/blog/index.cfm?mode=entry&entry=40F4C7E
> A-45A6-284
> 4-7D0C4841EA190125
>
>
> 

~|
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:201613
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: Is CFMX 7 any better?

2005-04-05 Thread Jeff Garza
What would your strategy be for storing database credentials if you are not 
storing them in CF?  Are you saying don't put them in your cf templates or 
are you saying do not store them via the CF Administrator?

Just curious.

Jeff Garza

- Original Message - 
From: "Adrocknaphobia" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Tuesday, April 05, 2005 1:38 PM
Subject: Re: Is CFMX 7 any better?


> 1) Do not deploy the CFAdmin to production
> 2) Do not store db credentials in CF
>
> CF7 handles these credentials the same way CF6 did.
>
> -Adam
>
> On Apr 5, 2005 4:36 PM, Mike Cohen <[EMAIL PROTECTED]> wrote:
>> It's bad enough that the Administrator password is freely available, but 
>> I just realized that every jdbc password on the box is too. Is MX 7 any 
>> better?
>>
>>
>
> 

~|
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:201612
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: Is CFMX 7 any better?

2005-04-05 Thread Paul Vernon
> It's bad enough that the Administrator password is freely available, 
> but I just realized that every jdbc password on the box is too. 
> Is MX 7 any better?

Did I miss something here??? 

Paul


~|
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:201611
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: Is CFMX 7 any better?

2005-04-05 Thread M Cohen
I was thinking this would be more of an issue for shared hosting, in which
case these two suggestions probably aren't under your control, no?

 

-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 4:38 PM
To: CF-Talk
Subject: Re: Is CFMX 7 any better?

1) Do not deploy the CFAdmin to production
2) Do not store db credentials in CF

CF7 handles these credentials the same way CF6 did.

-Adam

On Apr 5, 2005 4:36 PM, Mike Cohen <[EMAIL PROTECTED]> wrote:
> It's bad enough that the Administrator password is freely available, but I
just realized that every jdbc password on the box is too. Is MX 7 any
better?
> 
> 



~|
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:201610
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: Is CFMX 7 any better?

2005-04-05 Thread Adrocknaphobia
1) Do not deploy the CFAdmin to production
2) Do not store db credentials in CF

CF7 handles these credentials the same way CF6 did.

-Adam

On Apr 5, 2005 4:36 PM, Mike Cohen <[EMAIL PROTECTED]> wrote:
> It's bad enough that the Administrator password is freely available, but I 
> just realized that every jdbc password on the box is too. Is MX 7 any better?
> 
> 

~|
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:201609
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 12:53 PM, Bryan Stevenson <[EMAIL PROTECTED]> wrote:
> Is there any performance reasons for omitting CF Admin and/or source code
> 9or is it more to keep the app from being messed with in production)?

Most people who want sourceless deployment, want it because of
intellectual property issues - just not wanting to distribute source.

The CF Admin is a very powerful tool that you might not want clients
to have to deal with - you might provide a simple admin console within
your own application instead.

Just to note, the issue of sourceless deployment is often wrapped up
with J2EE deployment but they are actually separate. Sourceless
deployment just means compiling CFM / CFC files to Java bytecode and
deploying the bytecode to another CFMX server. The cfcompile batch
script is present in every edition (cfcompile.bat on Windows, don't
know about *nix since it actually is not present in the pure Java
install as far as I can see on Mac). The compiled Java bytecode files
can then be copied to any CFMX 7 edition - including Standard - and
they will execute.

J2EE deployment is separate but offers the option of omitting source
code in the package - in which case it performs the sourceless
deployment trick for you automatically and puts the compiled Java
bytecode into the EAR/WAR with the CF runtime.

Hope that's all clear?
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201608
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


Is CFMX 7 any better?

2005-04-05 Thread Mike Cohen
It's bad enough that the Administrator password is freely available, but I just 
realized that every jdbc password on the box is too. Is MX 7 any better?

~|
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:201607
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 1:07 PM, Dave Watts <[EMAIL PROTECTED]> wrote:
> Well, either the documentation is wrong, or there's something wrong with the
> CFMX Standard server I'm looking at. In addition, I wouldn't be surprised if
> you can only deploy from Developer or Enterprise if you've installed it on
> top of a J2EE app server.

Hmm, interesting. I've heard (repeatedly) that you can do J2EE
packaging from any edition but maybe it is restricted to Developer and
Enterprise? There's no technical reason why Standard Edition couldn't
*create* EAR/WAR files... I haven't looked at Standard Edition in
several years. All our installations are J2EE (both developer and
enterprise).
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201606
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: problem with parsexml

2005-04-05 Thread Ben Mueller
Thanks for the prompt reply.  I was sort of afraid that was the answer.

So...uh...I'm sure many people want to use those special characters within XML 
documents, divorced of CF.  What's the standard practice, then?  Do people just 
use the numeric reference then?



>> The first three are valid XML entities. There are only five 
>> built-in XML entities - the three you have, plus """ and 
>> "'". The second three are not, unless you've defined 
>> them within a DTD somewhere (which you haven't in this 
>> example). Even if you do define them within a DTD, I don't 
>> know how CF's XML parser will deal with that.
>
>I should add that I think you can use actual character entities using
>numeric codes, although I haven't tested that with CF. So, instead of
>"©" you could use "©".
>
>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:201605
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: Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Bryan F. Hogan
Here is some info from Steven Erat. 

http://www.talkingtree.com/blog/index.cfm?mode=entry&entry=40F4C7EA-45A6-284
4-7D0C4841EA190125


~|
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:201604
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: problem with parsexml

2005-04-05 Thread Dave Watts
> The first three are valid XML entities. There are only five 
> built-in XML entities - the three you have, plus """ and 
> "'". The second three are not, unless you've defined 
> them within a DTD somewhere (which you haven't in this 
> example). Even if you do define them within a DTD, I don't 
> know how CF's XML parser will deal with that.

I should add that I think you can use actual character entities using
numeric codes, although I haven't tested that with CF. So, instead of
"©" you could use "©".

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:201603
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: Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Paul Vernon
I thought that this was that rather well documented issue where SQL Server
had actually maxed out its connections and was refusing to accept any more
but the data direct drivers return the rather less helpful 'no more data'
error...

If you can, increase your max permissable connections in SQL and decrease
the connection timeout in CFMX so that the connections are maintained but
for less time... This way, you are keeping the perf benefits of maintaining
the connections whilst staving off the site hitting the maximum
connections... 

If you get the right balance, you should never see the problem...

Also make sure you have all the related patches for CFMX and the related
SequeLink drivers installed from the MM site...

Paul


~|
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:201602
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: Cfchart newbie ?

2005-04-05 Thread Ray Champagne
I got my answer - CFCHART sucks. :)

It seems that there is no way to format x-axis data using either cfchart or 
cfchartseries.  I had to be creative and loop through my query, changing 
the value of each row to be a nicely formatted date.  Ugly solution, but it 
works.  More info can be found in the comments section of this livedoc:

http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-a11.htm

Just FYI, for anyone that might read this in the archives!

Ray

At 03:25 PM 4/5/2005, you wrote:
>I am making a simple line chart for the first time and I have run into an
>easy stumbling block that I can't seem to Google out.
>
>The Y-Axis are a series of prices, while the X-Axis is a series of
>dates.  These are held in a DB.  The problem that I am having is that the
>date always outputs on the X-Axis label as the SQL date, ie; 2005-05-05
>00:00:00.0.  No matter what I try, I can't get it to diplay as a simple
>date, like 05/05/2005.
>
>There has to be something I am missing here - I see a place to format the
>data for the Y-Axis, why not the X-Axis?  I know that I can flip the chart,
>but I don't want to do that.
>
>Ray
>
>=
>Ray Champagne - Senior Application Developer
>CrystalVision Web Site Design and Internet Services
>603.433.9559
>www.crystalvision.org
>=
>
>The information contained in this transmission (including any attached
>files) is CONFIDENTIAL and is intended only for the person(s) named
>above. If you received this transmission in error, please delete it
>from your system and notify us immediately. If you are not an intended
>recipient, please note that any use or dissemination of the information
>contained in this transmission (including any attached files) and the
>copying, printing, or retransmission of that information is strictly
>prohibited. You can notify us by return email or by phone at 603.433.9559.
>Thank you.
>
>
>
>

~|
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:201601
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: problem with parsexml

2005-04-05 Thread Dave Watts
> I'm running CFMX 6.1 with the latest cumulative update from 
> Macromedia (we installed the updater patch about a month 
> ago).  Recently, we've hit a problem with parsexml() that I 
> cannot figure out.  It seems to choke on certain entity 
> references, but not all of them.  I've got some test code to 
> illuminate the problem:
> 
> These work (just a few examples):
> &")>
> <")>
> >")>
> 
> These bomb (again, just a few examples):
>  ")>
> —")>
> £")>
> 
> I've searched the web and have found precious little 
> information about this.  I suppose it could be related to the 
> cumulative updater, but that somehow seems unlikely.

The first three are valid XML entities. There are only five built-in XML
entities - the three you have, plus """ and "'". The second three
are not, unless you've defined them within a DTD somewhere (which you
haven't in this example). Even if you do define them within a DTD, I don't
know how CF's XML parser will deal with that.

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!


~|
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:201600
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


problem with parsexml

2005-04-05 Thread Ben Mueller
I'm running CFMX 6.1 with the latest cumulative update from Macromedia 
(we installed the updater patch about a month ago).  Recently, we've hit 
a problem with parsexml() that I cannot figure out.  It seems to choke 
on certain entity references, but not all of them.  I've got some test 
code to illuminate the problem:

These work (just a few examples):
&")>
<")>
>")>

These bomb (again, just a few examples):
 ")>
—")>
£")>

I've searched the web and have found precious little information about 
this.  I suppose it could be related to the cumulative updater, but that 
somehow seems unlikely.

Any help is appreciated.

Ben Mueller
Sr. Software Engineer
Cognitive Arts

~|
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:201599
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: Solved: Help with NAT and DSN setups in CF Admin

2005-04-05 Thread Dave Watts
> Looks like applying SQL Server SP3 did the trick. It was 
> installed previously, but the SQL Server was *re*installed, 
> and the SP was not applied.

Oh yeah, I forgot to mention that. That fixes a lot of problems, such as
using named instances.

> MDAC *before* the SP was installed showed 2.8 - which is most 
> current at the time. Perhaps something else in the SP fixed a 
> connection error?!

MDAC doesn't really have anything to do with SQL Server itself, as far as I
can tell. While SQL Server requires a certain MDAC version level to accept
ODBC or OLEDB connections, the version of MDAC on your SQL Server doesn't
affect connections from other machines. In any case, when you select
"Microsoft SQL Server" within CF Administrator, that uses a "pure Java" JDBC
driver which also doesn't use MDAC, as far as I can tell.

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:201598
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


Solved: Help with NAT and DSN setups in CF Admin

2005-04-05 Thread Alex Sherwood
Looks like applying SQL Server SP3 did the trick. It was installed 
previously, but the SQL Server was *re*installed, and the SP was not 
applied.

MDAC *before* the SP was installed showed 2.8 - which is most current at 
the time. Perhaps something else in the SP fixed a connection error?!

Oh well, Thanks again Dave.

--
Alex


>>Our IIS 6/CF server is on a "10 dot" network, and mapped to 
>>an external IP via our firewall appliance.
>>
>>When trying to set up a DSN to our MS SQL Server, I keep 
>>getting a "connection refused" error message. I am using the 
>>server name (UNC
>>name) and the correct username/password. The SQL server is 
>>across the 'net on another network. The CF/Web server's 
>>public IP has open access through the firewall into the 
>>network where the SQL server is kept.
>>
>>What's strange, is that I created a system datasource in the 
>>ODBC control panel applet, and I connect to the SQL server 
>>just fine. I then used the CF Admin to create an ODBC socket 
>>DSN to connect to the local DSN on the web server.
>>
>>Any ideas on why I can connect to the remote SQL server via a 
>>Microsoft local system DSN, but not directly to the SQL box 
>>from CF Admin using the stock SQL server drivers?
>>
>>


~|
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:201597
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: Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Dave Watts
> If your CF server is located on a different server than your 
> SQL server, uncheck "Maintain Connections" in CF 
> admin/datasource setup/advanced settings"
> 
> In my experience, you get this error when you try to 
> 'maintain connections' to a remote db.  Your cf app makes a 
> query, then you go to look at something else, 10 minutes 
> later you hit the db again with a new query and it returns 
> this error.

There's a pretty significant performance penalty for disabling this option,
so you're probably better off trying to fix the underlying problem if you
can.

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:201596
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 app as EAR/WAR file

2005-04-05 Thread Dave Watts
> I'm still a little unclear why one would package an app up 
> with/without CF Admin or source code...

This is a great way to deploy "turnkey" applications, where you don't want
the end-user to change anything.

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:201595
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 app as EAR/WAR file

2005-04-05 Thread Dave Watts
> > I'm pretty sure that you cannot do J2EE packaging on 
> > Standard Edition.
> 
> The documentation says you can create EAR/WAR files on 
> *any* edition.

Well, either the documentation is wrong, or there's something wrong with the
CFMX Standard server I'm looking at. In addition, I wouldn't be surprised if
you can only deploy from Developer or Enterprise if you've installed it on
top of a J2EE app server.

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!


~|
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:201594
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: Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Mosh Teitelbaum
Joe, Jeff:

Thanks for the responses.  I'm looking into it and will let you all know
whether or not it works.

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 942-5378
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


> -Original Message-
> From: Jeff Congdon [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 05, 2005 3:29 PM
> To: CF-Talk
> Subject: Re: Error Message "No more data available to read." on CFMX 6
>
>
> If your CF server is located on a different server than your SQL server,
> uncheck "Maintain Connections" in CF admin/datasource setup/advanced
> settings"
>
> In my experience, you get this error when you try to 'maintain
> connections' to a remote db.  Your cf app makes a query, then you go to
> look at something else, 10 minutes later you hit the db again with a new
> query and it returns this error.
>
> HTH,
> -Jeff.
>
> Mosh Teitelbaum wrote:
>
> >All:
> >
> >After moving a site to what will ultimately be its production server, I
> >began receiving the following error message when trying to perform simple
> >SELECT queries.  The queries did not throw this exception on
> development and
> >test machines.  Sometimes they work and sometimes they throw
> this exception.
> >
> >Here's the exception diagnostics:
> > Error Executing Database Query. [Macromedia][SQLServer JDBC
> > Driver]No more data available to read. The error occurred
> > on line 24.
> >
> >Here's one of the queries:
> > SELECT Salt FROM Users WHERE Username = (param 1)
> >
> > (param 1) = [type='IN', class='java.lang.String', value='Admin',
> > sqltype='CF_SQL_VARCHAR']
> >
> >
> >It's running on a Windows 2000 server accessing MS SQL Server 2000, using
> >CFMX 6.1.
> >
> >Has anyone ever seen this message before?  Any idea what the
> problem could
> >be?
> >
> >TIA
> >
> >--
> >Mosh Teitelbaum
> >evoch, LLC
> >Tel: (301) 942-5378
> >Fax: (301) 933-3651
> >Email: [EMAIL PROTECTED]
> >WWW: http://www.evoch.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:201593
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 app as EAR/WAR file

2005-04-05 Thread Bryan Stevenson
Well look at that...I go off for a meeting and come back to tonnes of info 
;-)

Many thanks Dave/Sean...that's cleared up most of it for me.

I'm still a little unclear why one would package an app up with/without CF 
Admin or source code...

I suppose the main benefits/reasons for keeping CF Admin and the source 
intact would be to allow for ease of  adjusting settings and to allow for 
future code changes (without re-packaging and deploying).

Is there any performance reasons for omitting CF Admin and/or source code 
9or is it more to keep the app from being messed with in production)?

Thanks in advance

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
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:201592
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: For Rey Bango

2005-04-05 Thread Rey Bango
Wow, I was surprised to see my name thrown out here. :o)

Looks like you got taken care of Chris. Glad these guys were able to hook 
you up.

Rey...


- Original Message - 
From: "Chris Manougian" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, April 04, 2005 6:19 PM
Subject: For Rey Bango


> Way Off Subject:
>
> Rey, I've got a problem that you helped solve for a guy installing Allaire 
> Forums back in 2000.  Sorry to be posting this here, but this is the only 
> way I could get you.
>
> The guy you helped posted:
>
> I have just installed Allaire Forums 2.06 (CF4.01), and although it 
> installed fine, and everything seems to work OK - admin etc.. - if I try 
> to post a message I get the following:
>
> Error occurred in tag CFINDEX
>
> Collection failed to open: Forums_CFForums_Messages
>
> I haven't been able to fix this yet - any ideas anyone please.
>
> Rey, you helped by posting:
>
> The error your getting is because of a messed up Verity collection that 
> gets
> created during the install of Forums 2.06. Its actually an error that's 
> been around for sometime and hasn't been corrected by Allaire.
>
> The Allaire knowledgebase article that discusses how to fix this can be 
> found at: http://www.allaire.com/Handlers/index.cfm?ID=1560&Method=Full
>
> Rey, the Allaire KB is no more.  Do you happen to have this KB article - 
> or could you set me in the right direction to get it.  My e-mail address 
> is: [EMAIL PROTECTED]  Thanks - Chris
>
> 

~|
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:201591
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: Running exe file from browser

2005-04-05 Thread CFDEV
Here we had that kind of problem but we finally settled for a
file//N:\appz.exe to start the application and we add a little prompt box
"click on open to start the application", once they click OK of the alert
box, then click open, it stats the appz. We never heard of it and everybody
is using the appz through our Intranet so it must be ok.

Pat

-Original Message-
From: Tim Claremont [mailto:[EMAIL PROTECTED] 
Sent: April 5, 2005 15:05
To: CF-Talk
Subject: Re: Running exe file from browser

Thanks Ian. I can see that starting the application from the browser is not
going to work.

How about just being able to add a shortcut to the end users desktop that
points to the application?

"Click here to add a shortcut to the application"



~|
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:201590
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: Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Jeff Congdon
If your CF server is located on a different server than your SQL server, 
uncheck "Maintain Connections" in CF admin/datasource setup/advanced 
settings"

In my experience, you get this error when you try to 'maintain 
connections' to a remote db.  Your cf app makes a query, then you go to 
look at something else, 10 minutes later you hit the db again with a new 
query and it returns this error.

HTH,
-Jeff.

Mosh Teitelbaum wrote:

>All:
>
>After moving a site to what will ultimately be its production server, I
>began receiving the following error message when trying to perform simple
>SELECT queries.  The queries did not throw this exception on development and
>test machines.  Sometimes they work and sometimes they throw this exception.
>
>Here's the exception diagnostics:
>   Error Executing Database Query. [Macromedia][SQLServer JDBC
>   Driver]No more data available to read. The error occurred
>   on line 24.
>
>Here's one of the queries:
>   SELECT Salt FROM Users WHERE Username = (param 1)
>
>   (param 1) = [type='IN', class='java.lang.String', value='Admin',
>   sqltype='CF_SQL_VARCHAR']
>
>
>It's running on a Windows 2000 server accessing MS SQL Server 2000, using
>CFMX 6.1.
>
>Has anyone ever seen this message before?  Any idea what the problem could
>be?
>
>TIA
>
>--
>Mosh Teitelbaum
>evoch, LLC
>Tel: (301) 942-5378
>Fax: (301) 933-3651
>Email: [EMAIL PROTECTED]
>WWW: http://www.evoch.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:201589
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: Deadlock in SQLSERVER

2005-04-05 Thread G
About every 3 months or so someone posts an error like this, hoping for an 
easy solutionthe answer is always a bit disappointing :)

In simple terms, deadlocks occur when two competing processes are holding 
resources required by the other process to finish. As a result, neither 
process would ever finish, and SQL Server randomly kills one of the 
processes, allowing the other to finish.

Knowing this should help you to pinpoint possible "race" conditions within 
your code, and take appropriate measures to limit possible deadlocks, and to 
catch them whenever they do occur so the process can end gracefully.


> Hi there...
>
> i have a problem with some querys,dunno exactly whta query is cause 
> cfcatch don't say anything about but this if i see the line points to
>  tag.
>
> [Microsoft][ODBC SQL Server Driver][SQL Server]Transaction (Process ID 52) 
> was deadlocked on {lock} resources with another process and has been 
> chosen as the deadlock victim. Rerun the transaction.
>
>
> Any tips?
>
>
>
>
> 

~|
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:201588
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Cfchart newbie ?

2005-04-05 Thread Ray Champagne
I am making a simple line chart for the first time and I have run into an 
easy stumbling block that I can't seem to Google out.

The Y-Axis are a series of prices, while the X-Axis is a series of 
dates.  These are held in a DB.  The problem that I am having is that the 
date always outputs on the X-Axis label as the SQL date, ie; 2005-05-05 
00:00:00.0.  No matter what I try, I can't get it to diplay as a simple 
date, like 05/05/2005.

There has to be something I am missing here - I see a place to format the 
data for the Y-Axis, why not the X-Axis?  I know that I can flip the chart, 
but I don't want to do that.

Ray

=
Ray Champagne - Senior Application Developer
CrystalVision Web Site Design and Internet Services
603.433.9559
www.crystalvision.org
=

The information contained in this transmission (including any attached
files) is CONFIDENTIAL and is intended only for the person(s) named
above. If you received this transmission in error, please delete it
from your system and notify us immediately. If you are not an intended
recipient, please note that any use or dissemination of the information
contained in this transmission (including any attached files) and the
copying, printing, or retransmission of that information is strictly
prohibited. You can notify us by return email or by phone at 603.433.9559.
Thank you.



~|
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:201587
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: Submit Once

2005-04-05 Thread G
Just to augment Larry's suggestion, when you go to actually input the record 
into the database, it might not be a bad idea to incorporate some sort of 
duplicate check here as well.

The easiest way to do this is to enforce unique key constraints in the 
database, then code using TRY/CATCH to trap for this error.  A less 
desirable method would be to run a query first to see if the record about to 
be submitted looks like a duplicate.


>> Gang,
>>
>> I am occasionally getting duplicate records in my database. I think it
>> is coming from people hitting â?oSubmitâ? twice when the server is slow.
>> How do you guys prevent this?
>>
>> I tried some JavaScript code to disable the button, which did gray-out
>> the button, but then did not pass the Button info along to Cold Fusion.
>>
>
> Jeff,
>
> Her's what I use, while not a complete solution, it works for most 
> browsers if Javascript is turned on:
>
> 
>
> This button will only submit the form if the displayed value is "Update 
> Cart".
>
> hth,
> larry
>
> 

~|
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:201586
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: Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Joe Rinehart
I get it sometimes when SQL server or CF is cycling - I'd try restarting both.

-Joe

On Apr 5, 2005 3:09 PM, Mosh Teitelbaum <[EMAIL PROTECTED]> wrote:
> All:
> 
> After moving a site to what will ultimately be its production server, I
> began receiving the following error message when trying to perform simple
> SELECT queries.  The queries did not throw this exception on development and
> test machines.  Sometimes they work and sometimes they throw this exception.
> 
> Here's the exception diagnostics:
> Error Executing Database Query. [Macromedia][SQLServer JDBC
> Driver]No more data available to read. The error occurred
> on line 24.
> 
> Here's one of the queries:
> SELECT Salt FROM Users WHERE Username = (param 1)
> 
> (param 1) = [type='IN', class='java.lang.String', value='Admin',
> sqltype='CF_SQL_VARCHAR']
> 
> It's running on a Windows 2000 server accessing MS SQL Server 2000, using
> CFMX 6.1.
> 
> Has anyone ever seen this message before?  Any idea what the problem could
> be?
> 
> TIA
> 
> --
> Mosh Teitelbaum
> evoch, LLC
> Tel: (301) 942-5378
> Fax: (301) 933-3651
> Email: [EMAIL PROTECTED]
> WWW: http://www.evoch.com/
> 
> 

~|
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:201585
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


Deadlock in SQLSERVER

2005-04-05 Thread David Manriquez
Hi there...

 i have a problem with some querys,dunno exactly whta query is cause cfcatch 
don't say anything about but this if i see the line points to
 tag.

[Microsoft][ODBC SQL Server Driver][SQL Server]Transaction (Process ID 52) was 
deadlocked on {lock} resources with another process and has been chosen as the 
deadlock victim. Rerun the transaction.


Any tips?




~|
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:201584
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 12:06 PM, Ian Skinner <[EMAIL PROTECTED]> wrote:
> So my lurking understanding is that you could provide a copy without a 
> license that would run as a Trial then Developer edition.  This would easily 
> allow the testing of your code.  Then if they wanted to keep it, either they 
> our you on they behalf provide a full license.

Correct.

Then, if you included a CF Admin in the package, you can use that to
enter the newly purchased Enterprise Edition serial number, else your
app has to include code to update the serial number using the built-in
Admin API.

It's a brand new feature and it's very different to anything we've had
in CF before so it's natural that there are lots of questions about
it.

To anyone thinking about selling applications based on this, I
strongly recommend you talk to Macromedia about OEM/ISV licensing
deals.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201583
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 11:27 AM, Rob <[EMAIL PROTECTED]> wrote:
> 1. I buy CF EE, write an app, make a war

You don't need Enterprise Edition to make the WAR. You can do it from
Developer Edition.

> 2. I want to sell it to Joe Blow
> 3. Joe Blow likes the app, and wants to buy it
> 
> 4. Joe Blow, who is running tomcat only, needs to buy a CF EE license
> to run my war in production

Correct. He needs to buy a CF Enterprise Edition license for
production use (otherwise the app runs as Developer Edition with
limited IP address access, watermarked reports etc).
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201582
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: Submit Once

2005-04-05 Thread Larry Lyons
> Gang,
> 
> I am occasionally getting duplicate records in my database. I think it 
> is coming from people hitting “Submit” twice when the server is slow. 
> How do you guys prevent this? 
> 
> I tried some JavaScript code to disable the button, which did gray-out 
> the button, but then did not pass the Button info along to Cold Fusion.
> 

Jeff,

Her's what I use, while not a complete solution, it works for most browsers if 
Javascript is turned on:



This button will only submit the form if the displayed value is "Update Cart".

hth,
larry

~|
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:201581
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 11:22 AM, Dave Watts <[EMAIL PROTECTED]> wrote:
> I've deployed other WARs to JRun without exploding them first. Flex works
> nicely this way, actually. Are you sure you need to do this with CF?

That's my understanding, yes, because CF writes to files inside the
application. If you don't explode it manually, I think you'll find
various things just won't work quite right...

> I'm pretty sure that you cannot do J2EE packaging on Standard Edition.

The documentation says you can create EAR/WAR files on *any* edition.
You can most certainly create packages from Developer Edition. I don't
have Standard Edition on hand to check. You can only *deploy* as
Enterprise Edition (or Developer Edition if you deploy without a
serial number).
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201580
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


Error Message "No more data available to read." on CFMX 6

2005-04-05 Thread Mosh Teitelbaum
All:

After moving a site to what will ultimately be its production server, I
began receiving the following error message when trying to perform simple
SELECT queries.  The queries did not throw this exception on development and
test machines.  Sometimes they work and sometimes they throw this exception.

Here's the exception diagnostics:
Error Executing Database Query. [Macromedia][SQLServer JDBC
Driver]No more data available to read. The error occurred
on line 24.

Here's one of the queries:
SELECT Salt FROM Users WHERE Username = (param 1)

(param 1) = [type='IN', class='java.lang.String', value='Admin',
sqltype='CF_SQL_VARCHAR']


It's running on a Windows 2000 server accessing MS SQL Server 2000, using
CFMX 6.1.

Has anyone ever seen this message before?  Any idea what the problem could
be?

TIA

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 942-5378
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/



~|
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:201579
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: Help with NAT and DSN setups in CF Admin

2005-04-05 Thread Alex Sherwood
Thanks for the reply Dave. You always have great suggestions.

At this point, I cannot even connect to a local SQL Server, on the same 
"10 dot" network as the CF box. I verified that both TCP/IP and Named 
Pipes are enabled in the Server Network Utility, and that both Windows 
and SQL Server logins are enabled on the SQL Server 
Configuration\Security Tab.

I can type \\SERVERNAME\c$ for the SQLbox - from the webserver - and I 
get access no problem.

I am unable to connect from the CF Admin and get the same error when I 
use either the public IP or the "10 dot" IP for the SQL Server (instead 
of the name).

Any ideas?

Dave Watts wrote:

>>Our IIS 6/CF server is on a "10 dot" network, and mapped to 
>>an external IP via our firewall appliance.
>>
>>When trying to set up a DSN to our MS SQL Server, I keep 
>>getting a "connection refused" error message. I am using the 
>>server name (UNC
>>name) and the correct username/password. The SQL server is 
>>across the 'net on another network. The CF/Web server's 
>>public IP has open access through the firewall into the 
>>network where the SQL server is kept.
>>
>>What's strange, is that I created a system datasource in the 
>>ODBC control panel applet, and I connect to the SQL server 
>>just fine. I then used the CF Admin to create an ODBC socket 
>>DSN to connect to the local DSN on the web server.
>>
>>Any ideas on why I can connect to the remote SQL server via a 
>>Microsoft local system DSN, but not directly to the SQL box 
>>from CF Admin using the stock SQL server drivers?
>>
>>
>
>When you connect via ODBC, are you using TCP/IP, or Named Pipes? (Named
>Pipes uses Windows Networking (NetBIOS) on top of whatever protocol you're
>using, which is typically TCP/IP.) Named Pipes is the default, and JDBC
>doesn't support that. You may need to configure your SQL Server's network
>listeners to include TCP/IP. You can do this using the Server Network
>Utility from the SQL Server console.
>
>Also, is your SQL Server configured to allow native SQL logins (untrusted
>connections)? By default, SQL Server only accepts trusted connections that
>use Windows authentication. The JDBC drivers that come with CFMX don't
>support this, although apparently some third-party drivers like jTDS
>(http://jtds.sourceforge.net/) do.
>
>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!
>
>
>

~|
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:201577
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 app as EAR/WAR file

2005-04-05 Thread Dave Watts
> So my lurking understanding is that you could provide a copy 
> without a license that would run as a Trial then Developer 
> edition.  This would easily allow the testing of your code.  
> Then if they wanted to keep it, either they our you on they 
> behalf provide a full license.

Yes, that's my understanding 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:201578
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 11:08 AM, Dave Carabetta <[EMAIL PROTECTED]> wrote:
> You can choose to package the CF runtime with your EAR/WAR package if
> you'd like.

If you use the J2EE EAR/WAR packager in CF Admin, you will get the CF
runtime included. There's no choice. If you want code packaged without
the runtime for deployment to an existing CF server, use CAR packaging
instead.

> On the user's end, in this instance, all they would need
> is a valid CF Enterprise license number to enter in to start using it
> -- no separate CF installation is necessary.

See my other messages - they can use it as Developer Edition without a
serial number.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201576
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 app as EAR/WAR file

2005-04-05 Thread Ian Skinner
So my lurking understanding is that you could provide a copy without a license 
that would run as a Trial then Developer edition.  This would easily allow the 
testing of your code.  Then if they wanted to keep it, either they our you on 
they behalf provide a full license.




--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

-Original Message-
From: Sean Corfield [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 05, 2005 12:00 PM
To: CF-Talk
Subject: Re: CF app as EAR/WAR file

On Apr 5, 2005 10:42 AM, Rob <[EMAIL PROTECTED]> wrote:
> What I mean to ask is, does the receiver of the ear/war need to buy CF
> too, or is there a distribute license or something?

Without a license, they end up with Developer Edition. A full
Enterprise license purchase is required otherwise.

I posted a long, full explanation of this whole process but the list
manager software told me it was too long so I don't know whether it
will post or not.

If you are distributing a packaged application, you need to talk to
Macromedia about OEM/ISV licenses. Grant Straker did this for his
Shado CMS which packages CFMX and Flex so that it can be deployed as a
self-contained application.

> From what you
> posted I get the impression that anyone who wants to run the ear/war I
> made with CF needs to have a CF license too - yes?

Yes, or use it as Developer Edition.
--
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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



~|
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:201575
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: Mystified about select box

2005-04-05 Thread Richard Colman
I will answer my own question:  check the data first

When I used "contains" instead of "is" then it works. Probably need to
"trim" the variable to get rid or leading or trailing spaces.

Sorry to bother the list with this kind of almost trivial thing, although it
did puzzle me for an hour ... 

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 11:45 AM
To: CF-Talk
Subject: Mystified about select box

I am mystified about this one:

Part A:

billable=#billable#
print yes print
no

(billable is always yes or no)

Part B:


selected> Yes
selected> No


Part A works fine, indicating variables and data ok.
Part B does not work, and I use the exact same method a little further down
in the form.

Can anyone see an error???

TNX if you can help.


Richard Colman





~|
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:201574
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: Mystified about select box

2005-04-05 Thread David Manriquez
And plus  you don't need to use  if the billable is
Boolean...
 is better..

(from Coldfusion documentation)..

David Manriquez
Desarrollador de Sistemas
[EMAIL PROTECTED] 
(+56-2) 43 00 155



-Mensaje original-
De: Andy Mcshane [mailto:[EMAIL PROTECTED] 
Enviado el: Martes, 05 de Abril de 2005 14:59
Para: CF-Talk
Asunto: RE: Mystified about select box

shot in the dark, do you not have to close the  tag 
i.e.   selected>Yes

 


From: Richard Colman [mailto:[EMAIL PROTECTED]
Sent: Tue 05/04/2005 19:44
To: CF-Talk
Subject: Mystified about select box



I am mystified about this one:

Part A:

billable=#billable#
print yes
print no

(billable is always yes or no)

Part B:


selected> Yes
selected> No


Part A works fine, indicating variables and data ok.
Part B does not work, and I use the exact same method a little further down
in the form.

Can anyone see an error???

TNX if you can help.


Richard Colman







~|
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:201572
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: Mystified about select box

2005-04-05 Thread Stephens, Larry V
Part B:


selected> Yes
selected> No


Part A works fine, indicating variables and data ok.
Part B does not work, and I use the exact same method a little further down
in the form.



I tried using this syntax, also, and it never would work (even with a closing 
 tag).

I ended up using






I tried nesting  in other cfinput statements and it doesn't seem to work 
too well so I use the construct above.

~|
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:201573
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: Running exe file from browser

2005-04-05 Thread Tim Claremont
Thanks Ian. I can see that starting the application from the browser is not 
going to work.

How about just being able to add a shortcut to the end users desktop that 
points to the application?

"Click here to add a shortcut to the application"

~|
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:201571
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 app as EAR/WAR file

2005-04-05 Thread Rob
Cool - thanks dave that totally cleared it up for me

On Apr 5, 2005 11:48 AM, Dave Watts <[EMAIL PROTECTED]> wrote:
> > I told the guy who asked me to call MM himself to get the
> > skinny, but now I am curious. As  usual I am a bit slow, and
> > a confused mind says "no" so is this accurate...
> >
> > 1. I buy CF EE, write an app, make a war 2. I want to sell it
> > to Joe Blow 3. Joe Blow likes the app, and wants to buy it
> > 
> > 4. Joe Blow, who is running tomcat only, needs to buy a CF EE
> > license to run my war in production or 4. Joe Blow, who is
> > running tomcat only, can use the war without ever talking to MM
> >
> > I think it's the latter, but I can't seem to get it (as soon
> > as I see license and serial number I start getting confused ;-D)
> 
> Given the above, here are your choices:
> 
> 1. You omit the serial number when creating your EAR/WAR. Mr. Blow would
> then have to purchase his own CFMX Enterprise license to deploy your EAR/WAR
> for production use. If he doesn't enter a serial number, the EAR/WAR will
> essentially be a CFMX trial version for 30 days, after which it reverts to
> Developer Edition.
> 
> 2. You enter your serial number when creating your EAR/WAR. Mr. Blow would
> then be able to deploy the EAR/WAR directly to production. However, you
> would then have to cease using that serial number with your own copy of CFMX
> Enterprise, as you would essentially have sold him your license. If you
> continue using the serial number for your own server, you would be violating
> the terms of your license, and Macromedia product resellers like me would
> track you down, skin you alive and make you into one of those "bearskin"
> rugs or something. I just saw "Sin City" last weekend, so I'm kind of in
> that mindset right now I guess.
> 
> 3. Before creating your EAR/WAR, you get a valid CFMX Enterprise license
> from Mr. Blow, or on behalf of Mr. Blow. You enter that serial number when
> creating your EAR/WAR. Mr. Blow can then deploy it directly to production,
> and that license would legally belong to him.
> 
> 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!
> 
> 

~|
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:201570
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 app as EAR/WAR file

2005-04-05 Thread Sean Corfield
On Apr 5, 2005 10:42 AM, Rob <[EMAIL PROTECTED]> wrote:
> What I mean to ask is, does the receiver of the ear/war need to buy CF
> too, or is there a distribute license or something?

Without a license, they end up with Developer Edition. A full
Enterprise license purchase is required otherwise.

I posted a long, full explanation of this whole process but the list
manager software told me it was too long so I don't know whether it
will post or not.

If you are distributing a packaged application, you need to talk to
Macromedia about OEM/ISV licenses. Grant Straker did this for his
Shado CMS which packages CFMX and Flex so that it can be deployed as a
self-contained application.

> From what you
> posted I get the impression that anyone who wants to run the ear/war I
> made with CF needs to have a CF license too - yes?

Yes, or use it as Developer Edition.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
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:201569
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: JavaScript clock problem w/ Firefox

2005-04-05 Thread Connie DeCinko
Here is the code I use and it displays correctly in IE and FireFox.

==

== 

-Original Message-
From: Rebecca Wells [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 05, 2005 11:43 AM
To: CF-Talk
Subject: OT: JavaScript clock problem w/ Firefox

I have a clock javascript that works fine in IE 6.0, but does not
display correctly in Firefox 1.0.2 or Netscape 7.0. Can anyone tell me
what's up here? I've tried googling for tips, but didn't come up with
anything. Here is the script:

In the head section:

function clock() {
var time = new Date();
var hours = time.getHours();
var minutes = time.getMinutes();
var seconds = time.getSeconds();
var amOrPm = "AM";
if (hours > 11) amOrPm = "PM";
if (hours > 12) hours = hours - 12;
if (hours == 0) hours = 12;
if (minutes <= 9) minutes = "0" + minutes;
if (seconds <= 9) seconds = "0" + seconds;
dispTime = hours + ":" + minutes + ":" + seconds + " " + amOrPm;
document.getElementById('clock').innerHTML = dispTime;
setTimeout("clock()", 1000);
}
window.onload = Clock;


Inside the body:


In Firefox, it displays the time 8 hours ahead, but in IE it shows the
correct system time.



~|
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:201568
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: JavaScript clock problem w/ Firefox

2005-04-05 Thread Ray Champagne
I've had issues with getYear() after creating a js date before in 
FireFox.  It would display 2005 in IE, but in FF it displays 105.  I had to 
use getFullYear() for it to display correctly.  I don't have time to look 
into the getMinutes and getSeconds, etc, but I would be willing to bet a 
cold brewski that might have something to do with it.

Ray



At 02:43 PM 4/5/2005, you wrote:
>I have a clock javascript that works fine in IE 6.0, but does not
>display correctly in Firefox 1.0.2 or Netscape 7.0. Can anyone tell me
>what's up here? I've tried googling for tips, but didn't come up with
>anything. Here is the script:
>
>In the head section:
>
>function clock() {
>var time = new Date();
>var hours = time.getHours();
>var minutes = time.getMinutes();
>var seconds = time.getSeconds();
>var amOrPm = "AM";
>if (hours > 11) amOrPm = "PM";
>if (hours > 12) hours = hours - 12;
>if (hours == 0) hours = 12;
>if (minutes <= 9) minutes = "0" + minutes;
>if (seconds <= 9) seconds = "0" + seconds;
>dispTime = hours + ":" + minutes + ":" + seconds + " " + amOrPm;
>document.getElementById('clock').innerHTML = dispTime;
>setTimeout("clock()", 1000);
>}
>window.onload = Clock;
>
>
>Inside the body:
>
>
>In Firefox, it displays the time 8 hours ahead, but in IE it shows the
>correct system time.
>
>

~|
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:201567
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: Mystified about select box

2005-04-05 Thread Andy Mcshane
shot in the dark, do you not have to close the  tag 
i.e.   selected>Yes

 


From: Richard Colman [mailto:[EMAIL PROTECTED]
Sent: Tue 05/04/2005 19:44
To: CF-Talk
Subject: Mystified about select box



I am mystified about this one:

Part A:

billable=#billable#
print yes
print no

(billable is always yes or no)

Part B:


selected> Yes
selected> No


Part A works fine, indicating variables and data ok.
Part B does not work, and I use the exact same method a little further down
in the form.

Can anyone see an error???

TNX if you can help.


Richard Colman





~|
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:201566
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


  1   2   >