Re: Java in CF (CFMX)

2002-11-26 Thread Jochem van Dieten
Dick Applebaum wrote: Someone (maybe me), posted that strong typing in CFML would allow the CF parser to generate better Java code. Not the current one. Say you want to change the program(s) slightly so they return a list of db tables, and the columns within each table. On the

Re: Java in CF (CFMX)

2002-11-26 Thread Jochem van Dieten
Dick Applebaum wrote: Are you saying that you need to restart CFMX to install a new Java class. IIRC it is a setting somewhere, search the archive. Jochem PS Some deleting of ancient messages on the bottom would be nice. Just look at the mess this thread leaves in the archives to see why.

Re: Java in CF (CFMX)

2002-11-26 Thread Joe Eugene
from presentation)...Am trying to relate to Inline Java.. So what overall advantage do we get with Inline Java? Any Performance...? other than coding between CF/Java in templates? I am not against InLine Java.. just trying to understand the Mechanics. Joe On Tue, 26 Nov

RE: Java in CF (CFMX)

2002-11-26 Thread Rob Rohan
I am still for cfjava mind you. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 3:17 PM To: CF-Talk Subject: RE: Java in CF (CFMX) Again, I could

Re: Java in CF (CFMX)

2002-11-26 Thread Dick Applebaum
What is IIRC? On Tuesday, November 26, 2002, at 03:25 PM, Jochem van Dieten wrote: IIRC it is a setting somewhere, search the archive. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Java in CF (CFMX)

2002-11-26 Thread Rob Rohan
To: CF-Talk Subject: Re: Java in CF (CFMX) What is IIRC? On Tuesday, November 26, 2002, at 03:25 PM, Jochem van Dieten wrote: IIRC it is a setting somewhere, search the archive. ~| Archives: http://www.houseoffusion.com/cf_lists

Re: Java in CF (CFMX)

2002-11-26 Thread Dick Applebaum
On Tuesday, November 26, 2002, at 03:17 PM, Jochem van Dieten wrote: Dick Applebaum wrote: Someone (maybe me), posted that strong typing in CFML would allow the CF parser to generate better Java code. Not the current one. Yes, that was understood -- but CFML typing would allow the CF

Re: Java in CF (CFMX)

2002-11-26 Thread Dick Applebaum
On Tuesday, November 26, 2002, at 03:25 PM, Jochem van Dieten wrote: Are you saying that you need to restart CFMX to install a new Java class. IIRC it is a setting somewhere, search the archive. I don't understand this response -- How can I avoid restarting CFMX OS X (Linux) to recognize

Re: Java in CF (CFMX)

2002-11-25 Thread Jochem van Dieten
Quoting Dave Carabetta [EMAIL PROTECTED]: While I understand this isn't a feature that everybody would use, I would personally like to see MM focus on encapsulating some more Java features into easy-to-use black-box CF tags rather than having to code my own Java. I agree. For instance, it

Re: Java in CF (CFMX)

2002-11-25 Thread Dick Applebaum
we could not pass Nulls between CF and Java. This is for a general-purpose developer utility that I use to manipulate databases. It is especially useful on remote (shared) sites where you don't have administrative privileges. I have been doing this a long time with CF 4.5 and CF 5 on win

Re: Java in CF (CFMX)

2002-11-25 Thread Jochem van Dieten
accounts. That would make it possible to do this securely. But how many hosting providers would you expect to run JRUN Enterprise + CF for J2EE? I thought that one of the advantages of CFMXJ2ee on a J2ee-compliant app server, is the ability to interoperate between CF and Java programs. Technically

Re: Java in CF (CFMX)

2002-11-25 Thread Joe Eugene
Dick, Can we see your code? Cant you have a method that converts CF String null to Java String=null? tried to invoke it with cfobject. We could not make the interface work because we could not pass Nulls between CF and Java. Here is an example public class StringType{ private String

Re: Java in CF (CFMX)

2002-11-25 Thread Dick Applebaum
manipulation of the JDBC driver. Use a CF routine to interface the Java program: providing input paramaters for the desired db request; and presentation of the results Use an alias (such as 'MyNull'), to exchange psuedo nulls between CF and Java, as necessary Any help

Re: Java in CF (CFMX)

2002-11-25 Thread Joe Eugene
paramaters for the desired db request; and presentation of the results Use an alias (such as 'MyNull'), to exchange psuedo nulls between CF and Java, as necessary Any help will be greatly appreciated. TIA Dick 1 // public abstract ResultSet getIndexInfo

RE: Java in CF (CFMX)

2002-11-25 Thread Rob Rohan
://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 2:33 PM To: CF-Talk Subject: Re: Java in CF (CFMX) Dick, Here is an Example that works with CFMX. The Java file should be compiled under WEB-INF/classes

RE: Java in CF (CFMX)

2002-11-25 Thread Joe Eugene
: Java in CF (CFMX) Dick, Here is an Example that works with CFMX. The Java file should be compiled under WEB-INF/classes/ and you can invoke it with CFObject. Note i am using Macromedia drivers to connect to Sql-Server. This is rough sketch..if you want.. i can improvise this later

RE: Java in CF (CFMX)

2002-11-25 Thread Rob Rohan
Thought this thread was still about inline java. Sorry - maybe it was another thread. nevermind. Rob -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 2:40 PM To: CF-Talk Subject: RE: Java in CF (CFMX) wouldn't need to happen. Where do u

Re: Java in CF (CFMX)

2002-11-25 Thread Jochem van Dieten
Joe Eugene wrote: wouldn't need to happen. Where do u want it happen? At some MM production facility. As I said, cfobject is a no-go on a shared server. Jochem ~| Archives:

RE: Java in CF (CFMX)

2002-11-25 Thread Jim Campbell
it available for any other templates, CFCs or whatever that needs to use it. - Jim -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 4:37 PM To: CF-Talk Subject: RE: Java in CF (CFMX) See though the whole point is The Java file should be compiled under

Re: Java in CF (CFMX)

2002-11-25 Thread Joe Eugene
You loose alot of flexibility.. on a shared server.. How many ppl are running enterprise CFMX on shared servers? Have ever had to call a function/method in CF around 1000 times on a page? Do some math with it...CFObject(Java) blows CF..try it. Joe On Mon, 25 Nov 2002 23:58:02 +0100 Jochem van

Re: Java in CF (CFMX)

2002-11-25 Thread Dick Applebaum
Java program that accessed DatabaseMetaData, but could not accomplish the same with CF. Joe posted asking to see the code --and you know the rest. So, the thread changed topic a little -- to how interface CF to a Java program to get DatabaseMateData. I haven't tried Joe's code yet

Re: Java in CF (CFMX)

2002-11-25 Thread Sean A Corfield
On Monday, Nov 25, 2002, at 14:32 US/Pacific, Joe Eugene wrote: Here is an Example that works with CFMX. The Java file should be compiled under WEB-INF/classes/ ... if(c.equalsIgnoreCase(null)) cat=null; else cat=c; if(s.equalsIgnoreCase(null)) schPattern=null; else schPattern=s;

RE: Java in CF (CFMX)

2002-11-25 Thread Rob Rohan
Bet you could add 'null' if you could do inline java :) just kidding Rob -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 3:24 PM To: CF-Talk Subject: Re: Java in CF (CFMX) On Monday, Nov 25, 2002, at 14:32 US/Pacific, Joe Eugene

Re: Java in CF (CFMX)

2002-11-25 Thread Jochem van Dieten
some math with it...CFObject(Java) blows CF.. Needing the performance of Java is an entirely different situation from needing the features of Java. If you need the performance of Java, the more common upgrade path from shared hosting is to first get a dedicated server, then start rewriting CFML

Re: Java in CF (CFMX)

2002-11-25 Thread Dick Applebaum
: Java in CF (CFMX) On Monday, Nov 25, 2002, at 14:32 US/Pacific, Joe Eugene wrote: Here is an Example that works with CFMX. The Java file should be compiled under WEB-INF/classes/ ... if(c.equalsIgnoreCase(null)) cat=null; else cat=c; if(s.equalsIgnoreCase(null)) schPattern=null; else

Re: Java in CF (CFMX)

2002-11-25 Thread Dick Applebaum
/method in CF around 1000 times on a page? Do some math with it...CFObject(Java) blows CF..try it. Joe On Mon, 25 Nov 2002 23:58:02 +0100 Jochem van Dieten [EMAIL PROTECTED] wrote: Joe Eugene wrote: wouldn't need to happen. Where do u want it happen? At some MM production facility

RE: Java in CF (CFMX)

2002-11-25 Thread Joe Eugene
on performance. Joe -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 6:24 PM To: CF-Talk Subject: Re: Java in CF (CFMX) On Monday, Nov 25, 2002, at 14:32 US/Pacific, Joe Eugene wrote: Here is an Example that works with CFMX. The Java file

RE: Java in CF (CFMX)

2002-11-24 Thread Kwang Suh
2) Where CFMX can act as a gentle introduction to Java -- certainly this hybrid code would not be the best, but it would allow Java neophytes, like myself, to learn Java gracefully, without having to learn all the rules first. -- There is something about the fact that we can learn our

Re: Java in CF (CFMX)

2002-11-24 Thread Dick Applebaum
all of your programs (or tiers of an application) in Java -- likely not -- there are some things that CF does better than Java. But, with inline Java, CF would allow the developer an easy way to learn (and use) Java and how to interact with the Java infrastructure. So equipped, the developer

Re: Java in CF (CFMX)

2002-11-24 Thread Dave Carabetta
be the brick wall that most people run in to, including myself for the longest time; not necessarily the syntax. After this rather long preamble, here's my point: If CF had inline Java code, it would allow someone learning Java to take a segment of a working CF program and recode that in Java

Re: Java in CF (CFMX)

2002-11-24 Thread Sean A Corfield
language I've ever learned. If CF had inline Java code, it would allow someone learning Java to take a segment of a working CF program and recode that in Java -- without the need to learn everything about Java, including its theory, structure, syntax documentation, etc., all at once I don't

RE: Java in CF (CFMX)

2002-11-24 Thread Kwang Suh
A Corfield [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 24, 2002 10:14 AM To: CF-Talk Subject: Re: Java in CF (CFMX) On Sunday, Nov 24, 2002, at 04:48 US/Pacific, Dick Applebaum wrote: What do you mean by design patterns -- that is a term that I am unfamiliar with? http://www.google.com

Re: Java in CF (CFMX)

2002-11-24 Thread Dick Applebaum
with a namespace of cf and you've got something that even looks like CF! -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 24, 2002 10:14 AM To: CF-Talk Subject: Re: Java in CF (CFMX) On Sunday, Nov 24, 2002, at 04:48 US/Pacific, Dick

RE: Java in CF (CFMX)

2002-11-24 Thread Mike Brunt
- webappermb Web Application Specialists -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 24, 2002 12:22 PM To: CF-Talk Subject: Re: Java in CF (CFMX) Thanks, guys! I am not quite convinced, but almost... About 6 years ago, I attempted to learn Java

RE: Java in CF (CFMX) - MM Drivers

2002-11-24 Thread Joe Eugene
[mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 4:11 PM To: CF-Talk Subject: RE: Java in CF (CFMX) - MM Drivers I can use the CFMX MM DB drivers in a JSP page..No problem. however.. i need to use it in a Java Application..tried to load the Driver.. Class.forName

RE: Java in CF (CFMX)

2002-11-24 Thread Joe Eugene
-Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 24, 2002 3:22 PM To: CF-Talk Subject: Re: Java in CF (CFMX) Thanks, guys! I am not quite convinced, but almost... About 6 years ago, I attempted to learn Java with a Teach Yourself book

RE: Java in CF (CFMX)

2002-11-24 Thread Kwang Suh
[mailto:[EMAIL PROTECTED]] Sent: Sunday, November 24, 2002 1:31 PM To: CF-Talk Subject: RE: Java in CF (CFMX) Dick, I am reading the Beginning Java Objects book by Jacquie Barker, you can see it shown here with a couple of sample chapters (it is a good book). http://developer.java.sun.com

Re: Java in CF (CFMX) - MM Drivers

2002-11-24 Thread Sean A Corfield
On Sunday, Nov 24, 2002, at 14:23 US/Pacific, Joe Eugene wrote: I got this partially resolved... Sean helped out.. Thanks Sean. Glad to hear you got it working after we'd been chatting on IM. I was really puzzled since I got it to work on my Mac and we seemed to be typing the same commands

Re: Java in CF (CFMX)

2002-11-24 Thread Sean A Corfield
On Sunday, Nov 24, 2002, at 17:43 US/Pacific, Kwang Suh wrote: I should also mention that tools like Rational Rose will write a ton of code for you based on the design you have created - there's a very tight coupling in Java between design and implementation. A better CASE tool, in my

RE: Java in CF (CFMX) - MM Drivers

2002-11-24 Thread Joe Eugene
, the other day. Joe -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 24, 2002 8:45 PM To: CF-Talk Subject: Re: Java in CF (CFMX) - MM Drivers On Sunday, Nov 24, 2002, at 14:23 US/Pacific, Joe Eugene wrote: I got this partially resolved

Re: Java in CF (CFMX) - MM Drivers

2002-11-24 Thread Sean A Corfield
On Sunday, Nov 24, 2002, at 20:05 US/Pacific, Joe Eugene wrote: Thanks Sean once again for pointing out the license thing, anyways i got it working with SQL Server Drivers. Yes, those would not be protected by the Macromedia license I guess. On windows, this is what worked for me. java -cp

Re: Java in CF (CFMX)

2002-11-23 Thread Dick Applebaum
://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Phil Costa [mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 6:09 AM To: CF-Talk Subject: RE: Java in CF (CFMX) The decision to disallow inline java code was definitely not a cut

RE: Java in CF (CFMX)

2002-11-22 Thread Phil Costa
between typing and syntax, parsing a page that had both Java and CFML/CFScript would have been a bear. Phil -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 2:37 AM To: CF-Talk Subject: Re: Java in CF (CFMX) Thursday, November 21, 2002, 11:54:58

RE: Java in CF (CFMX)

2002-11-22 Thread Rob Rohan
http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Phil Costa [mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 6:09 AM To: CF-Talk Subject: RE: Java in CF (CFMX) The decision to disallow inline java code was definitely not a cut and dry one. One

RE: Java in CF (CFMX) - MM Drivers

2002-11-22 Thread Joe Eugene
of the differences between typing and syntax, parsing a page that had both Java and CFML/CFScript would have been a bear. Phil -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 2:37 AM To: CF-Talk Subject: Re: Java in CF (CFMX

Java in CF (CFMX)

2002-11-21 Thread Rob Rohan
is there a way to do something like cfjava //actual java code not cfscript /cfjava in cfmx? Like JSP in line - how do you make a jsp block? Thanks, Rob Scientia Est Potentia ~| Archives:

RE: Java in CF (CFMX)

2002-11-21 Thread Rob Rohan
So, judging by the lack of comments - this cannot be done. Rob Scientia Est Potentia -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 12:37 PM To: CF-Talk Subject: Java in CF (CFMX) is there a way to do something like cfjava

Re: Java in CF (CFMX)

2002-11-21 Thread jon hall
Not to my knowledge...if there is, I haven't seen it documented. You can of course instantiate classes and read/set properties and use the classes methods with standard CF. -- jon mailto:[EMAIL PROTECTED] Thursday, November 21, 2002, 3:36:54 PM, you wrote: RR is there a way to do something

Re: Java in CF (CFMX)

2002-11-21 Thread Jim Campbell
I guess not. Would using the Java CFX API, or even just custom classes you call from a CFMX template not meet your needs? - Jim - Original Message - From: Rob Rohan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 21, 2002 3:20 PM Subject: RE: Java in CF (CFMX

RE: Java in CF (CFMX)

2002-11-21 Thread Rob Rohan
-Original Message- From: Jim Campbell [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 1:37 PM To: CF-Talk Subject: Re: Java in CF (CFMX) I guess not. Would using the Java CFX API, or even just custom classes you call from a CFMX template not meet your needs? - Jim

RE: Java in CF (CFMX)

2002-11-21 Thread Douglas.Knudsen
you can import jsp libraries and use them in a CF page via CFIMPORT in CFMX. Doug -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 4:41 PM To: CF-Talk Subject: RE: Java in CF (CFMX) There is no need. I was just wondering. Since all cfm

Re: Java in CF (CFMX)

2002-11-21 Thread Jim Campbell
be even marginally recognizable by CF coders. - Jim - Original Message - From: Rob Rohan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 21, 2002 3:40 PM Subject: RE: Java in CF (CFMX) There is no need. I was just wondering. Since all cfm pages get complied

RE: Java in CF (CFMX)

2002-11-21 Thread Phil Costa
in the page itself that wouldn't be covered by the methods noted above, I'd be interested in it. Phil Costa Macromedia -Original Message- From: Jim Campbell [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 4:50 PM To: CF-Talk Subject: Re: Java in CF (CFMX) That's

RE: Java in CF (CFMX)

2002-11-21 Thread Rob Rohan
actually said it. http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Phil Costa [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 5:19 PM To: CF-Talk Subject: RE: Java in CF (CFMX) We made a design decision not to allow

RE: Java in CF (CFMX)

2002-11-21 Thread Mosh Teitelbaum
curious. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Phil Costa [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 8:19 PM To: CF-Talk Subject: RE: Java in CF (CFMX) We made

RE: Java in CF (CFMX)

2002-11-21 Thread Erik Yowell
write websites in assembly? :) Erik Yowell [EMAIL PROTECTED] http://www.shortfusemedia.com -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 5:39 PM To: CF-Talk Subject: RE: Java in CF (CFMX) While I personally agree with the decision

Re: Java in CF (CFMX)

2002-11-21 Thread Jon Hall
Interesting, sounds like the same reasoning that has kept CF tags from being able to be used in cfscript all those years, another design decision, even though many people asked for it. The case for allowing inline Java is simple, CF developers can use Java without having to know everything about

RE: Java in CF (CFMX)

2002-11-21 Thread Mosh Teitelbaum
Jon Hall wrote: The case for allowing inline Java is simple, CF developers can use Java without having to know everything about Java. Methods and classes are easy to get. Compiling, classpath's, and understanding the lengths Java goes to, to abstract everything, etc. is not. Knowing just

Re: Java in CF (CFMX)

2002-11-21 Thread Jon Hall
Thursday, November 21, 2002, 11:54:58 PM, you wrote: MT Jon Hall wrote: The case for allowing inline Java is simple, CF developers can use Java without having to know everything about Java. Methods and classes are easy to get. Compiling, classpath's, and understanding the lengths Java goes

Using Java in CF

2001-04-17 Thread Bruce, Rodney
A little help please. I am trying to use some javascript on my CF pages. I would like to pass the formname and fieldname to the function, perform an action and return the value: i.e. SCRIPT LANGUAGE = "JavaScript" !-- function changevalue(FormName, FieldName) { var oldvalue;

RE: Java and CF

2000-12-01 Thread Pete Freitag
Don't forget Java CFX's and EJB's through CFOBJECT. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: Java and CF

2000-12-01 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Allaire has annonced that CF 6 will be entirely written in Java on the back end, with CF Tags actually being translated into JSP Code and then passed to a servlet engine, all on the back-end. My only question: What kind of crack is Allaire

RE: Java and CF

2000-12-01 Thread Rick Lamb
Better get moving then. You only have until the end of next year to convert to PHP. Rick -Original Message- From: Zachary Bedell [mailto:[EMAIL PROTECTED]] Sent: Friday, December 01, 2000 9:39 AM To: CF-Talk Subject: RE: Java and CF -BEGIN PGP SIGNED MESSAGE- Hash: SHA1

RE: Java and CF

2000-12-01 Thread paul smith
The performance comparison Allaire demonstrated at the Conference is not exhaustive, of course, but, for THAT app, Allaire's new Java-based approach out-performed its existing C++-based approach. best, paul At 10:39 AM 12/1/00 -0500, you wrote: There is no WAY a Java server can out perform a

RE: Java and CF

2000-12-01 Thread Simon Horwith
Subject: RE: Java and CF -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Allaire has annonced that CF 6 will be entirely written in Java on the back end, with CF Tags actually being translated into JSP Code and then passed to a servlet engine, all on the back-end. My only question: What kind

RE: Java and CF

2000-12-01 Thread Jason Egan
11:18 AM To: CF-Talk Subject: RE: Java and CF The performance comparison Allaire demonstrated at the Conference is not exhaustive, of course, but, for THAT app, Allaire's new Java-based approach out-performed its existing C++-based approach. best, paul At 10:39 AM 12/1/00 -0500, you wrote

RE: Java and CF

2000-12-01 Thread Pete Freitag
They said at the conference that they when Neo (the java based server) comes out, they will continue to provide service packs to ColdFusion 5 (the current C++ Codebase) for a long period of time. So Allaire seams to be aware that people like Zac don't want to move a Java Application server. Let

RE: Java and CF

2000-12-01 Thread Brandon Behrens
Java.sun.com Brandon Behrens Developer Momentum Software http://www.momentumsoftware.com 512.236.1517 -Original Message- From: Jason Egan [mailto:[EMAIL PROTECTED]] Sent: Friday, December 01, 2000 2:22 PM To: CF-Talk Subject: RE: Java and CF ok, for us dough heads (I'm probably

Re: [RE: Java and CF]

2000-12-01 Thread Alex
From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Friday, December 01, 2000 11:18 AM To: CF-Talk Subject: RE: Java and CF The performance comparison Allaire demonstrated at the Conference is not exhaustive, of course, but, for THAT app, Allaire's new Java-based approach out-performed its existing

RE: Java and CF

2000-12-01 Thread paul smith
you, or anyone else, recommend cf developers to start preparing for the new version if they have only ever programmed in CF? je -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Friday, December 01, 2000 11:18 AM To: CF-Talk Subject: RE: Java and CF The performance

RE: Java and CF

2000-12-01 Thread Pete Freitag
The Java based version of CF will not require you to know anything more than you need to know currently. However you will probably start hearing a lot of people talking about Java, and what you could do with it. But let me assure you will be able to do a lot more with Neo (the cf java engine

RE: Java and CF

2000-12-01 Thread Peter Theobald
would you, or anyone else, recommend cf developers to start preparing for the new version if they have only ever programmed in CF? je -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Friday, December 01, 2000 11:18 AM To: CF-Talk Subject: RE: Java and CF

Java and CF

2000-11-30 Thread Brandon Behrens
Can CF use Java the way it can with Jrun with other application servers? Brandon Brandon Behrens Developer Momentum Software http://www.momentumsoftware.com 512.236.1517 -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 30, 2000 9:44 AM To: CF-Talk

RE: Java and CF

2000-11-30 Thread Simon Horwith
CF as it exists now, only has limited java integration. CF 4.5 has CFServlet and CFServletParam tags, which are dependent on the JRun engine being installed on the server. You can use java class files in much the same way you'd use COM or CORBA Objects, by mapping them via the CF Administrator

RE: Java to cf

2000-11-22 Thread JustinMacCarthy
-Original Message- From: Rick Lamb [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 22, 2000 1:18 AM To: CF-Talk Subject: Java to cf I've been handed a site that was written in jhtml using Java, class, and cgi for the backend stuff. The task I've been given is to convert this Java based website

Re: Java to cf

2000-11-22 Thread Greg Wolfinger
Lamb [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, November 21, 2000 8:18 PM Subject: Java to cf I've been handed a site that was written in jhtml using Java, class, and cgi for the backend stuff. The task I've been given is to convert this Java based website into a cf site (we

Java to cf

2000-11-21 Thread Rick Lamb
I've been handed a site that was written in jhtml using Java, class, and cgi for the backend stuff. The task I've been given is to convert this Java based website into a cf site (we don't support java). Anybody have any suggestions on how this could be done or if it is even feasible considering I

Java and CF

2000-11-20 Thread Danny Davis
This is a multi-part message in MIME format. --=_NextPart_000_0060_01C052CC.155A0140 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hey everyone, Has anyone had any experience using Java and CF together? = Particularly trig

Java and CF

2000-06-23 Thread Trahan, Shane
What is the best way to use Java and CF? I have tried using CFOBJECT but have had alot of problems with it not releasing memory etc.. How can I best leverage Java and CF? If anyone has any insight into Java and CFOBJECT please let me know!! I have been trying to figure out why CFOBJECT doesn't

RE: Java and CF

2000-06-23 Thread Conrad, Christopher
PROTECTED]' Subject: Java and CF What is the best way to use Java and CF? I have tried using CFOBJECT but have had alot of problems with it not releasing memory etc.. How can I best leverage Java and CF? If anyone has any insight into Java and CFOBJECT please let me know!! I have

RE: Java and CF

2000-06-23 Thread Trahan, Shane
12:34 PM To: [EMAIL PROTECTED] Subject: RE: Java and CF CFX_J or CFX's on 4.5x Chris Christopher Conrad Victoria's Secret Catalogue http://www.VictoriasSecret.com Senior.Programmer.Analyst 614.337.5653 [EMAIL PROTECTED] -Original Message- From: Trahan, Shane [SMTP:[EMAIL PROTECTED

RE: Java and CF

2000-06-23 Thread Larry Meadors
on 4.5x -Original Message- From: Trahan, Shane [SMTP:[EMAIL PROTECTED]] What is the best way to use Java and CF? I have tried using CFOBJECT but have had alot of problems with it not releasing memory etc.. How can I best leverage Java and CF? If anyone has any insight into Java

Totaling results of a dynamic form as numeric output.. Java or CF?

2000-05-06 Thread Britta Wingenroth
This is a multi-part message in MIME format. --=_NextPart_000_005E_01BFB6ED.EA2DAEB0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Do I need to use java for this of can CF handle it? I've only been = working with CF for a few weeks, so

<    1   2