RE: CF5 and Unicode driver for Access?

2004-03-06 Thread Nando
Let me also rephrase my answer.

cf_accelerate uses *some* memory, only what is needed to cache your content. But
compared to the cost of programming, extra memory, if needed on the server at all, is
very, very cheap.

Still best remedy and easy to implement. :)

-Original Message-
From: Nando [mailto:[EMAIL PROTECTED]
Sent: Saturday, March 06, 2004 6:33 AM
To: CF-Talk
Subject: RE: CF5 and Unicode driver for Access?

How about using cf_accelerate ?

http://www.bpurcell.org

One small problem ... uses much memory. But *very* fast. Best remedy and easy to
implement.

-Original Message-
From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED]
Sent: Saturday, March 06, 2004 4:33 AM
To: CF-Talk
Subject: Re: CF5 and Unicode driver for Access?

I'll rephrase my question.Any way to improve CF5 system with Access 2000 db other
than the existing code? TONS OF THING, the client does not want that.

 What are you talking about?My client has a complex system built in
 CF5 with backend Access 2000 db which contains both English and
 Japanese content, his box is fast while the same system is like an old
 dog on mine.It is true that my box has very limited memory, but that
 should not be the only reason that the execution is so slow, at least
 I hope, so, I'm seeking remedy. Web server not optimized etc, etc.? no,
 all other apps (my apps) runs fast.

  Chunshen (Don) Li wrote:
 
   Did a search on the forum to no avail.Did anyone use CF5 with
  Unicode driver for Access?
 
  I hope not, it would be pretty pointless because CF5 doesn't
  support Unicode at all.
 
  Jochem
 
 
  --
  I don't get it
  immigrants don't work
  and steal our jobs


  -
Loesje
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Browser wars (was Re: Can someone recommend a good web development browser?)

2004-03-06 Thread Calvin Ward
I'm not sure how HTML, CSS, or other browser related topics could possibly be off topic... Could they?

Calvin
- Original Message - 
From: Kevin Graeme 
To: CF-Talk 
Sent: Friday, March 05, 2004 1:50 PM
Subject: Re: Browser wars (was Re: Can someone recommend a good web development browser?)

 Depends on what type of CSS work we are talking about. Just basic
 non-positional CSS seems to be interoperable. Further, I am not sure
 what you mean in regard to session management as that is a server-side
 issue.

I apologize to everyone if this browser discussion is too off topic. I'll
address what I think is a CF issue first.

With session management, IIRC it has to do with how each window in IE is a
separate application instance while in Netscape there is only one
application instance with separate windows.

(If I'm off on that, I'm sure someone will jump down my throat. It's been a
while since we dealt with it explicitly and my memory is shoddy.)

As for CSS, using CSS that works in Firefox is not guaranteed to work in
other browsers. Unfortunate, but true. Saying you want to limit what CSS
we're talking about changes the argument from if it works in Firefox, then
it will work anywhere to some things that work in Firefox work in IE.

And really, since that's CSS and not CF I'm done arguing the point here.

-Kevin
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Help - Can't run CFMX's Installer - InstallAnywhere error

2004-03-06 Thread Jon Block
When I try to run the installer, InstallAnywhere throws up a message that
says Please select another location to extract the installer to, but no
matter where I try to install it, its just throw the same message up. I've
tried to install to different drives with tons of space but I still get the
same thing no matter what.. what should I do?

(CFMX 6.1 on Windows 2000 Server)
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: CF5 and Unicode driver for Access?

2004-03-06 Thread Paul Hastings
 What are you talking about?My client has a complex system built in CF5
with backend Access 2000 db which contains both English and Japanese
content, his box is fast while the same system is like an old dog on mine.
It is true that my box has very limited memory, but that should not be the
only reason that the execution is so slow, at least I hope, so, I'm seeking
remedy. Web server not optimized etc, etc.? no, all other apps (my apps)
runs fast.

with cf5 you could always get one language+english on a locale specific box
(in this case i guess japanese OS) as cf5 ignored encodings. but your client
will be after your privates when they try to move to another db or upgrade
to mx.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Help - Can't run CFMX's Installer - InstallAnywhere error

2004-03-06 Thread Donnie Bachan
Are you installing from a CD or a download file? I've seen this when using 
the downloaded file, I downloaded the file again and that seemed to fix the 
problem.

HTH

Donnie Bachan
Phone: (718) 217-2883
ICQ#: 28006783
Nitendo Vinces - By Striving You Shall Conquer
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Getting computer name via variables?

2004-03-06 Thread Dan O'Keefe
Ben Forta wrote:

 A reverse DNS lookup? There are UDFs for this at www.cflib.org, and 
 tags in
 the latest DRK.

Thanks everybody for the suggestions, but I do not think any of this 
will achieve what I am trying to do, which is the following: Lets say I 
have a server farm, and in my error handling emails I receive, I want to 
know THE WINDOWS MACHINE NAME. Nothing to so with IIS or the web. That 
way I will know the specific box that generated the error.

Dan
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Getting computer name via variables?

2004-03-06 Thread Simon Horwith
cfscript

inet = CreateObject(java, java.net.InetAddress);

inet = inet.getLocalHost();

inet = inet.getHostName();

writeOutput(inet);

/cfscript

~Simon
Simon Horwith
CTO, Etrilogy Ltd.
Member of Team Macromedia
Macromedia Certified Instructor
Certified Advanced ColdFusion MX Developer
Certified Flash MX Developer
CFDJList - List Administrator
http://www.how2cf.com/

-Original Message-
From: Dan O'Keefe [mailto:[EMAIL PROTECTED]
Sent: 06 March 2004 17:20
To: CF-Talk
Subject: Re: Getting computer name via variables?

Ben Forta wrote:

 A reverse DNS lookup? There are UDFs for this at www.cflib.org, and
 tags in
 the latest DRK.

Thanks everybody for the suggestions, but I do not think any of this
will achieve what I am trying to do, which is the following: Lets say I
have a server farm, and in my error handling emails I receive, I want to
know THE WINDOWS MACHINE NAME. Nothing to so with IIS or the web. That
way I will know the specific box that generated the error.

Dan
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Getting computer name via variables?

2004-03-06 Thread Dan O'Keefe
Simon Horwith wrote:

 cfscript

 inet = CreateObject(java, java.net.InetAddress);

 inet = inet.getLocalHost();

 inet = inet.getHostName();

 writeOutput(inet);

 /cfscript

 ~Simon

Thanks Simon. MX only tough, right? Also, Will this return the machine 
name and not the web host name?

Dan
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Getting computer name via variables?

2004-03-06 Thread Lewis Sellers
At 12:20 PM 3/6/2004, you wrote:
Ben Forta wrote:

  A reverse DNS lookup? There are UDFs for this at www.cflib.org, and
  tags in
  the latest DRK.
 
Thanks everybody for the suggestions, but I do not think any of this
will achieve what I am trying to do, which is the following: Lets say I
have a server farm, and in my error handling emails I receive, I want to
know THE WINDOWS MACHINE NAME. Nothing to so with IIS or the web. That
way I will know the specific box that generated the error.

See http://www.intrafoundation.com/coldfusion.html. The CFX called SystemInfo.

(That route requires the C++ CFX to be register on the box first though of 
course.)

--min

Dan

--
[
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Getting computer name via variables?

2004-03-06 Thread Jim Davis
We do this (on CF 4.5) buy examining the registry - I forgot the key, but
it's very simple.

 
We also stored several values as Windows Environment variables and then read
he registry to get the values.All of this information is then stored in
the Server scope for fast access, but the application can be applied to the
entire cluster without server-specific modifications.

 
Do a reg search for the value you want - then just grab that key.

 
Jim Davis

 
_

From: Dan O'Keefe [mailto:[EMAIL PROTECTED] 
Sent: Saturday, March 06, 2004 12:20 PM
To: CF-Talk
Subject: Re: Getting computer name via variables?

 
Ben Forta wrote:

 A reverse DNS lookup? There are UDFs for this at www.cflib.org, and 
 tags in
 the latest DRK.

Thanks everybody for the suggestions, but I do not think any of this 
will achieve what I am trying to do, which is the following: Lets say I 
have a server farm, and in my error handling emails I receive, I want to 
know THE WINDOWS MACHINE NAME. Nothing to so with IIS or the web. That 
way I will know the specific box that generated the error.

Dan
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Getting computer name via variables?

2004-03-06 Thread Hugo Ahlenius
Another way would be to cfexecute 'echo %computername%' from cmd.exe. Or if
you have a uname.exe, that would be another way.

-
Hugo AhleniusE-Mail: [EMAIL PROTECTED]
Project Officer Phone:+46 8 230460
UNEP GRID-ArendalFax:+46 8 230441
Stockholm OfficeMobile:+46 733 467111
 WWW: http://www.grida.no
-

 Original Message 
From: Dan O'Keefe [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, March 06, 2004 18:20
Subject: Re: Getting computer name via variables?

| Ben Forta wrote:
|
|| A reverse DNS lookup? There are UDFs for this at www.cflib.org, and
|| tags in
|| the latest DRK.
||
| Thanks everybody for the suggestions, but I do not think any of this
| will achieve what I am trying to do, which is the following: Lets say
| I
| have a server farm, and in my error handling emails I receive, I want
| to
| know THE WINDOWS MACHINE NAME. Nothing to so with IIS or the web.
| That
| way I will know the specific box that generated the error.
|
| Dan
|
|
|
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Getting computer name via variables?

2004-03-06 Thread Dan O'Keefe
Hugo Ahlenius wrote:

 Another way would be to cfexecute 'echo %computername%' from cmd.exe. 
 Or if
 you have a uname.exe, that would be another way.


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

3 great suggestions. Thank you all.

Dan
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Search engine

2004-03-06 Thread MILAN MUSHRAN
Hi Everybody,

I have to implement a search functionality for documents - PDF, MS Office 
documents Plus Web site text search. I have been using CF for a few years 
now and I do know of verity as an option.
I have a few questions, though.

1) Is Verity the best option in this case ?
2) What are the advantages/drawbacks of Verity?
3) what are the other options, including paid search services ?

Any suggestion will be greatly appreciated.

Thanks a lot,
Milan
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: MS DRK?

2004-03-06 Thread Michael Wolfe
Daily backups and routine maintenance... 

 --

Michael Wolfe
[EMAIL PROTECTED]


_

From: Matt Liotta [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 05, 2004 8:51 AM
To: CF-Talk
Subject: Re: MS DRK?

Apparently, you have never had your SourceSafe database corrupted. Once 
you have that happen, you will never again trust your code to a 
non-human readable database.

-Matt

On Mar 5, 2004, at 11:44 AM, Raymond Camden wrote:

 Has sourcesafe even been updated lately? I love it - but it seems like 
 a
dead product.
 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Search engine

2004-03-06 Thread Nando
Don't know how to judge best - but we've implemented a verity search as you
describe, docs and webpages combined, and it works very well.

-Original Message-
From: MILAN MUSHRAN [mailto:[EMAIL PROTECTED]
Sent: Sunday, March 07, 2004 12:49 AM
To: CF-Talk
Subject: Search engine

Hi Everybody,

I have to implement a search functionality for documents - PDF, MS Office
documents Plus Web site text search. I have been using CF for a few years
now and I do know of verity as an option.
I have a few questions, though.

1) Is Verity the best option in this case ?
2) What are the advantages/drawbacks of Verity?
3) what are the other options, including paid search services ?

Any suggestion will be greatly appreciated.

Thanks a lot,
Milan
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




[sot] simple java webservice / cf....

2004-03-06 Thread Critter
oi CF-Talk!!

so if this is a java class file i have.
which works fine.
TempConverter.java
-
public class TempConverter
{
public static void main(String [] args)
{
 double F = Double.parseDouble(args[0]);
 double C = (5.0/9.0) * (F - 32);
 System.out.println(F +  degrees Fahrenheit =  + C +  degrees Celcius);
}
}

this is TempConverter.jws
--
public class TempConverter
{
public double FtoC(String str)
{
 double F = Double.parseDouble(str);
 double C;
 C = (5 / 9) * (F - 32);
 return C;
}
}

but when i run this.
index.cfm
---
cfscript
objTempConverter = createObject(webservice,http://localhost/java_webservice/TempConverter.jws?wsdl);
celsius = objTempConverter.FtoC(32);
writeoutput(celsius);
/cfscript

I get this error
Could not perform web service invocation FtoC because
java.lang.IllegalArgumentException: argument type mismatch

any ideas??

/critz
-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Ctz Consulting ]-=
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ctzconsulting.com ]-=

---
[This E-mail scanned for viruses by Declude Virus]
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: MS DRK?

2004-03-06 Thread Brian LeRoux
Or use Perforce.

-Original Message-
From: Michael Wolfe [mailto:[EMAIL PROTECTED] 
Sent: March 6, 2004 4:47 PM
To: CF-Talk
Subject: RE: MS DRK?

Daily backups and routine maintenance... 

--

Michael Wolfe
[EMAIL PROTECTED]

_

From: Matt Liotta [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 05, 2004 8:51 AM
To: CF-Talk
Subject: Re: MS DRK?

Apparently, you have never had your SourceSafe database corrupted. Once 
you have that happen, you will never again trust your code to a 
non-human readable database.

-Matt

On Mar 5, 2004, at 11:44 AM, Raymond Camden wrote:

 Has sourcesafe even been updated lately? I love it - but it seems like

 a
dead product.
 
_ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]