RE: Introducing YODEL

2005-09-07 Thread Robertson-Ravo, Neil (RX)
WDDX? -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: 07 September 2005 02:18 To: CF-Talk Subject: ANN: Introducing YODEL YODEL (Yet another Open Data Exchange Language) is an XML dialect designed to represent structured data. I've finished (what I consider to be

Re: cfgrid flash player version difference?

2005-09-07 Thread Thomas Chiverton
On Tuesday 06 September 2005 14:55, Ryan Guill wrote: checked, I was using firefox with flash player 8. I opened up ie that How is that, by the way ? -- Tom Chiverton Advanced ColdFusion Programmer ~| Find out how CFTicket

RE: Introducing YODEL

2005-09-07 Thread Robertson-Ravo, Neil (RX)
Ah, I see your sitethat explains it.. ;-) -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: 07 September 2005 02:18 To: CF-Talk Subject: ANN: Introducing YODEL YODEL (Yet another Open Data Exchange Language) is an XML dialect designed to represent structured data.

RE: Session Variables and returning to finish web forms

2005-09-07 Thread Ian Vaughan
Ok I will use a CFLOCK and CFTransaction for the data processing. At present all the data entered in the form is stored as session variables, which enables the form to be split up over several screens which works well. i.e. cfinput name=jobdesc size=50 required=Yes message=Please provide the

RE: Using Session Variables and returning to complete web forms

2005-09-07 Thread Ian Vaughan
Ok I will use a CFLOCK and CFTransaction for the data processing. At present all the data entered in the form is stored as session variables, which enables the form to be split up over several screens which works well. i.e. cfinput name=jobdesc size=50 required=Yes message=Please provide the

Re: Have brain lock, need schema/query help!

2005-09-07 Thread Will Tomlinson
If anyone has any more suggestions on the db schema and/or queries I'd appreciate it. Notice I'm just focusing on the items themselves right now. I figured once I got this tougher stuff knocked out I'd add tblcategories and such. Thanks, Will

Re: cfgrid flash player version difference?

2005-09-07 Thread Ryan Guill
I suppose you mean the flash 8 player in firefox? I had some trouble getting the first beta to install, but the newest updated betas have been working very well. Ive heard a few reports of it acting up for some users, but it doesn't seem to have any adverse affects on me. It really speeds

CFCHART Problem with tipstyle attribute?

2005-09-07 Thread Dan G. Switzer, II
Ok, I'm playing around with CFCHART on CFMX 7 Dev Edition, and I'm getting the following error when using the tipstyle attribute: Attribute validation error for tag CFGRAPH. The tag does not allow the attribute(s) TIPSTYLE. The valid attribute(s) are

Re: CFCHART Problem with tipstyle attribute?

2005-09-07 Thread Ryan Guill
I believe the tipstyle and mouseover attributes are valid but only for format=flash not jpg. I may be wrong, but I don't believe you can do a tip or mouseover in a jpg. And of course, if this is true, a flash cannot be sent to an email address... On 9/7/05, Dan G. Switzer, II [EMAIL PROTECTED]

RE: CFCHART Problem with tipstyle attribute?

2005-09-07 Thread Dan G. Switzer, II
Ryan, I believe the tipstyle and mouseover attributes are valid but only for format=flash not jpg. I may be wrong, but I don't believe you can do a tip or mouseover in a jpg. And of course, if this is true, a flash cannot be sent to an email address... It doesn't matter what format value I

Re: CFCHART Problem with tipstyle attribute?

2005-09-07 Thread Ryan Guill
Well then the other thing I notice is that you are talking about cfchart, but you are using cfgraph. Could that be the cause of the confusion? On 9/7/05, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Ryan, I believe the tipstyle and mouseover attributes are valid but only for format=flash not

Re: CFCHART Problem with tipstyle attribute?

2005-09-07 Thread Andy Allan
cfchart format=jpg tipstyle=none name=chart cfchartseries type=bar colorlist=red,blue,green cfchartdata item=Alpha value=#randrange(1,100)# / cfchartdata item=Beta value=#randrange(1,100)# / cfchartdata item=Gamma value=#randrange(1,100)# / /cfchartseries

RE: CFCHART Problem with tipstyle attribute?

2005-09-07 Thread Dan G. Switzer, II
Ryan, Well then the other thing I notice is that you are talking about cfchart, but you are using cfgraph. Could that be the cause of the confusion? I'm an idiot--that was it... -Dan ~| Find out how CFTicket can increase

JPG-scraping... brainfart

2005-09-07 Thread Matt Robertson
There's got to be a way to do this but its escaping me. If I am given a url to an image, how can I save that image onto my CF server's hard drive for later use? Must I use cfftp? At present I am pretty sure I will only have a url to work with. This is for a public agency that will have

Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Damien McKenna
I have an assumption regarding Application.cfm that I'm starting to question. It was my understanding that the Application.cfm file was loaded+compiled the first time when a file in that directory was loaded, e.g. the first time someone loads index.cfm the Application.cfm file for that directory

Re: JPG-scraping... brainfart

2005-09-07 Thread JediHomer
You need to look at CFHTTP not CFFTP, this will enable you to get the image. On 07/09/05, Matt Robertson [EMAIL PROTECTED] wrote: There's got to be a way to do this but its escaping me. If I am given a url to an image, how can I save that image onto my CF server's hard drive for later use?

Re: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Ryan Guill
No, my understanding of application.cfm is more like an implicit include on every template that is requested by the browser and runs before anything else. I believe it is compiled and run every time. On 9/7/05, Damien McKenna [EMAIL PROTECTED] wrote: I have an assumption regarding

RE: JPG-scraping... brainfart

2005-09-07 Thread Kerry
cfhttp url=http://www.google.co.uk/intl/en_uk/images/logo.gif; getasbinary=yes/cfhttp cffile action=write file=#getDirectoryfromPath(getCurrentTemplatepath())#test.gif output=#cfhttp.FileContent# img src=test.gif -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 07

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Kerry
except not compiled every time, just run? unless you use cfadmin to stop cf from saving any classes? -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: 07 September 2005 17:30 To: CF-Talk Subject: Re: Please help correct an assumption regarding Application.cfm No, my

Re: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Bryan Stevenson
The big question is what are the CF Admin settings regarding the caching of cfm files? You can have it set NOT to check for updates (as you would in production to get better performance) and always use the cached version HTH Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce

RE: JPG-scraping... brainfart

2005-09-07 Thread Dave.Phillips
Better yet: cfhttp url=http://www.google.co.uk/intl/en_uk/images/logo.gif; getasbinary=yes path=C:\DIRECTORYTOSAVEIMAGEIN /cfhttp There is also a file attribute if you want to specify the file, but if you just want it to be the same filename as the one you GET, then

Re: Session Variables and returning to finish web forms

2005-09-07 Thread Robert Munn
Unless you plan to do something with the partially completed application, there is no reason to store it in a normalized way. You could just WDDX session.app and save the resulting packet into a database table; then, when the user comes back you just de-serialize the packet and repopulate

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Damien McKenna
-Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] No, my understanding of application.cfm is more like an implicit include on every template that is requested by the browser and runs before anything else. I believe it is compiled and run every time. So what about

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
Damien, It's likely that you are setting application variables because you say they are stored in the application scope. Application variables are designed to be set once and read many times - or at least ap variables like DSN are designed this way. Just changing the file will not reload these

Re: JPG-scraping... brainfart

2005-09-07 Thread Jerry Johnson
Are you on MX? If so, just use the file and path attributes of cfhttp to automatically save the file for you. Don't forget the getAsBinary attribute if needed. On 9/7/05, Matt Robertson [EMAIL PROTECTED] wrote: There's got to be a way to do this but its escaping me. If I am given a url to an

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Jim Davis
-Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 12:53 PM To: CF-Talk Subject: RE: Please help correct an assumption regarding Application.cfm Damien, It's likely that you are setting application variables because you say they

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Damien McKenna
-Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] It's likely that you are setting application variables because you say they are stored in the application scope. I have a blog on Ap variables that might shed some light.

New to CFEclipse

2005-09-07 Thread Claude Schneegans
Hi, I just installed Eclipse and CFeclipse and I'm learning. Is there some forum like this one especially for CFEclipse, or is this one the best? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
cool... -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 12:08 PM To: CF-Talk Subject: RE: Please help correct an assumption regarding Application.cfm -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] It's

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
Jim, nice tip about the names... I didn't know that. Nothing else is case sensitive... hmmm. It seems inconsistent. -Mark -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 12:05 PM To: CF-Talk Subject: RE: Please help correct an

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Jim Davis
-Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 1:14 PM To: CF-Talk Subject: RE: Please help correct an assumption regarding Application.cfm Jim, nice tip about the names... I didn't know that. Nothing else is case

cfform / flex stylesheet explorer

2005-09-07 Thread Ryan Guill
Hey guys, Not that long ago I remember seeing someone had developed a cfform (i believe, it may have been flex) explorer that showed all of the different styles available and updated it all on the clientside. I cannot find it for anything now, ive tried google and mxna. Does anyone know what im

Re: cfform / flex stylesheet explorer

2005-09-07 Thread Paul Hastings
Ryan Guill wrote: Not that long ago I remember seeing someone had developed a cfform (i believe, it may have been flex) explorer that showed all of the different styles available and updated it all on the clientside. I that would be wild crazy pim,

Re: cfform / flex stylesheet explorer

2005-09-07 Thread Ryan Guill
Yes! thans so much Paul! And as wild and crazy as he is, he is very appreciated! Thanks again. BTW, I also found this: http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html But it wasnt exactly what i was looking for. On 9/7/05, Paul Hastings [EMAIL PROTECTED] wrote: Ryan Guill

Re: JPG-scraping... brainfart

2005-09-07 Thread Matt Robertson
Thanks guys! That did it for me. -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com http://mysecretbase.com ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: New to CFEclipse

2005-09-07 Thread Nathan Strutz
Check the site: http://www.cfeclipse.org/go/project/lists -nathan strutz On 9/7/05, Claude Schneegans [EMAIL PROTECTED] wrote: Hi, I just installed Eclipse and CFeclipse and I'm learning. Is there some forum like this one especially for CFEclipse, or is this one the best? --

Is there a way to send an attachment via CFMAIL w/out pulling it from disk?

2005-09-07 Thread Dan G. Switzer, II
I'm using CFCHART (yes, CFCHART, not CFGRAPH--I doubled checked it this time g) and need to send the charts via e-mail. When using the name attribute with CFCHART, it will store the binary in a variable in memory. I'd like to take this output and attach it to the e-mail w/out writing the file to

Re: Is there a way to send an attachment via CFMAIL w/out pulling it from disk?

2005-09-07 Thread Bryan Stevenson
I'm guessing you could use some Java to do what ya want on the flybut that's just a guess ;-) 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:

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Mark A Kruger
Yeah - that's has to be the case being on a java platform an oversite. If they do fix it it will probably break all thos apps out there that depend on case sensitivity: are you using application blah or application BLAH?? -mark -Original Message- From: Jim Davis [mailto:[EMAIL

Re: Is there a way to send an attachment via CFMAIL w/out pulling it from disk?

2005-09-07 Thread Howie Hamlin
You can do this with iMS-Lite but you would need to be running Windows and would need to have permission to install the software on the machine. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning,

Re: New to CFEclipse

2005-09-07 Thread Claude Schneegans
Check the site: http://www.cfeclipse.org/go/project/lists Thanks. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

Re: New to CFEclipse

2005-09-07 Thread S . Isaac Dealey
Hi, I just installed Eclipse and CFeclipse and I'm learning. Is there some forum like this one especially for CFEclipse, or is this one the best? Somebody else mentioned the web-site... though I know I'm subscribed to one of what appear to be about 5 mailing lists they host... [EMAIL

Examples of cfform

2005-09-07 Thread Ryan Guill
Hey guys, As I mentioned before, I am presenting at a user group tonight on cfform. I was wondering if anyone knew of any good examples to show to the crowd? I have a few already, but the more the better. Any recomendations? Thanks, -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED]

Re: Examples of cfform

2005-09-07 Thread Bryan Stevenson
just use the code examples from the intro to CFMX 7 tour on the MM site (and installed with CF)loads of CFFROM examples (including flash) 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

Re: Examples of cfform

2005-09-07 Thread Tony
the peeps at asfusion.com have a lot of cool examples of some whacked out cfform implementations... http://www.asfusion.com/blog/entry/mxna-reader-built-with-cfforms REALLY pushing the limits. tw On 9/7/05, Ryan Guill [EMAIL PROTECTED] wrote: Hey guys, As I mentioned before, I am

RE: Examples of cfform

2005-09-07 Thread Dave Watts
As I mentioned before, I am presenting at a user group tonight on cfform. I was wondering if anyone knew of any good examples to show to the crowd? I have a few already, but the more the better. Any recomendations? This might be too obvious, but have you thoroughly checked cfform.com?

Converting from cf5 to mx6.1 compatibility issues

2005-09-07 Thread Terry Troxel
I am new to MX6.1 and have an existing program that works fine in CF5 and I am getting this error in 6.1. Could someone show me what I have to change as I am not sure. Terry Troxel Complex object types cannot be converted to simple values. The expression has requested a variable or an

Re: Converting from cf5 to mx6.1 compatibility issues

2005-09-07 Thread Aaron Rouse
It is #URL# you can not have a variable named that or at least can not reference it without a scope since URL is a scope within itself. On 9/7/05, Terry Troxel [EMAIL PROTECTED] wrote: I am new to MX6.1 and have an existing program that works fine in CF5 and I am getting this error in 6.1.

Re: Examples of cfform

2005-09-07 Thread Ryan Guill
Yeah, ive got all the cfform.com and asfusion.com stuff. I also have some examples from macromedia and a few that I have made. I was meaning more like things that some of you may have done that the mainstream might not know about yet... On 9/7/05, Dave Watts [EMAIL PROTECTED] wrote: As I

Re: Converting from cf5 to mx6.1 compatibility issues

2005-09-07 Thread Ryan Guill
looks like the #url# would probably be the suspicious canidate. #url# is a scope or structure, not a simple string. On 9/7/05, Terry Troxel [EMAIL PROTECTED] wrote: I am new to MX6.1 and have an existing program that works fine in CF5 and I am getting this error in 6.1. Could someone show me

Compiling Java ?%$/%??

2005-09-07 Thread Claude Schneegans
Hi, In the CFMX docs about Writing a Java CFX tag, it looks so simple: Compile the java source file into a class file using the Java compiler. If you are using the command-line tools bundled with the JDK, use the following command line, which you execute from within the classes directory:

RE: ColdFusion Installation - more FREAKING JNDI problems

2005-09-07 Thread Calvin Ward
Incidentally I discovered this beast of an issue when setting up CFMX 7 on Win2k3 on VMWare 5 some time ago. Naturally installs in VMWare are much slower, so this was quite a pain to troubleshoot and figure out exactly why I couldn't just install it. I never did determine a viable work around

RE: Compiling Java ?%$/%??

2005-09-07 Thread Dave Watts
Now what if you get no error message and no tag compiled and no cab library updated, NO NOTHING? When I run the compiler, I see some black window open a fraction of a second, then POUF! it is gone! Where are my error messages? If you run the Java compiler from the command line, it

Re: Examples of cfform

2005-09-07 Thread Will Tomlinson
Be sure to show the file upload one from asfusion. That one is spectacular! Will ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Re: ColdFusion Installation - more FREAKING JNDI problems

2005-09-07 Thread Adrocknaphobia
VMWare 5? You mean workstation? -Adam On 9/7/05, Calvin Ward [EMAIL PROTECTED] wrote: Incidentally I discovered this beast of an issue when setting up CFMX 7 on Win2k3 on VMWare 5 some time ago. Naturally installs in VMWare are much slower, so this was quite a pain to troubleshoot and

RE: ColdFusion Installation - more FREAKING JNDI problems

2005-09-07 Thread Calvin Ward
Yeps -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 7:22 PM To: CF-Talk Subject: Re: ColdFusion Installation - more FREAKING JNDI problems VMWare 5? You mean workstation? -Adam On 9/7/05, Calvin Ward [EMAIL PROTECTED] wrote:

Fusebox Conf interview 6: Adv FB, Security plugin, Ruby on Rails

2005-09-07 Thread Michael Smith
In this issue of ColdFusion conference and training news: 1. Fusebox and Frameworks Conference News - hotel price ends 9/12/05 2. Advanced Fusebox interview with Jeff Peters 3. Lock/key security plugin interview with Sandy Clark 4. Ruby on Rails for CF Developers interview with John Paul

Re: New to CFEclipse

2005-09-07 Thread Claude Schneegans
I'm trying to develop my first Java CFX tag... You will laugh, but is there some way to access some Java compiler under Eclipse? I've created a Java project, I can see no Compile button, only a Build button and when I hit it, nothing happens :-( -- ___ REUSE

Re: New to CFEclipse

2005-09-07 Thread Spike
In Eclipse, right-click on the file containing the main() method and choose Run As Java Application. Spike On 9/7/05, Claude Schneegans [EMAIL PROTECTED] wrote: I'm trying to develop my first Java CFX tag... You will laugh, but is there some way to access some Java compiler under Eclipse?

Re: Calling php class / function from a cfc

2005-09-07 Thread James Holmes
You could just fix the headless system so that it works. Use XServ or a similar virtual XServer to provide a vurtual head and take away the headless arguments in the CF JVM startup string. Then everything will work (Java, CF, CFCHART etc). On 9/6/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Multiple Processors and CFMX 7

2005-09-07 Thread Gonzo Rock
I am getting ready to install our application at a new client site by downloading the CFMX7 trial software and then registering it once all is well and happy. However I have a couple of quick questions first. 1.) Will the CFMX 7 trial software run on a quad processor machine? 2.) Can it convert

RE: Multiple Processors and CFMX 7

2005-09-07 Thread Dave Watts
1.) Will the CFMX 7 trial software run on a quad processor machine? Yes. 2.) Can it convert to a Standard Edition CFMX7 version by entering the Reg Code once purchased? Generally, yes. However, I don't think you can run Standard Edition on a four-processor machine according to the license.

hotfix release schedule?

2005-09-07 Thread dan martin
Is there a schedule for when hotfixes will be available? Anyone know when the Merrimack hotfix will be available? Thanks. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: ColdFusion Installation - more FREAKING JNDI problems

2005-09-07 Thread Laura Stewart
I had a problem with MSDE setup and CF7 as well. This turned out to be the solution for me, if it's any help. http://www.robisen.com/index.cfm?mode=entryentry=BE1AB594-55DC-F2B1-F392552E0A41542A The specific error I was getting when attempting to verify datasources in CF was:

Re: Compiling Java ?%$/%??

2005-09-07 Thread Claude Schneegans
If you run the Java compiler from the command line, it should send all errors to STDOUT and you should see them right there in your command prompt window. Yeah, but it has been so long before I used a command prompt, it looks like stone age. So I'm trying to define a command in a custom button

Re: New to CFEclipse

2005-09-07 Thread Claude Schneegans
In Eclipse, right-click on the file containing the main() method and choose Run As Java Application. Ok, what if there is no main() method? This is just a class, called by CF, not an application. Anyway, I did it, nothing happens. -- ___ REUSE CODE! Use

RE: New to CFEclipse

2005-09-07 Thread Dave Watts
Ok, what if there is no main() method? This is just a class, called by CF, not an application. You will probably want to write another class with a main method, to use as a test harness for your class. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the

Re: New to CFEclipse

2005-09-07 Thread Claude Schneegans
In Eclipse, right-click on the file containing the main() method and choose Run As Java Application. Furthermore, I don't want to run it, a custom tag cannot be run from Eclipse, it can only be compiled, and eventually run by CF. Is there some Compile tool in Eclipse? --

Re: New to CFEclipse

2005-09-07 Thread Claude Schneegans
You will probably want to write another class with a main method, to use as a test harness for your class. N! The main method is in CF. CF calls the class, this is a CFX custom tag, not an application. -- ___ REUSE CODE! Use custom tags; See

Re: ColdFusion Installation - more FREAKING JNDI problems

2005-09-07 Thread S . Isaac Dealey
I had a problem with MSDE setup and CF7 as well. This turned out to be the solution for me, if it's any help. http://www.robisen.com/index.cfm?mode=entryentry=BE1AB594 -55DC-F2B1-F392552E0A41542A The specific error I was getting when attempting to verify datasources in CF was:

ColdFusion Security Vulnerabilities

2005-09-07 Thread Mike Nicholls
Does anyone have any experience with reporting security vulnerabilities to Macromedia? I reported a vulnerability in ColdFusion using the Macromedia Security Report Form (http://www.macromedia.com/devnet/security/security_zone/alertus.html) three days ago, and haven't heard anything back yet.

Re: Compiling Java ?%$/%??

2005-09-07 Thread Claude Schneegans
So I'm trying to define a command in a custom button in CF Studio, and I have problem to get the stdout to be piped to a file. Ok, I managed to define a custom button in the Tools menu in CF Studio. This button calls the bat file below and passes the file name as first parameter (gee, DOS is

Re: Examples of cfform

2005-09-07 Thread Paul Hastings
Ryan Guill wrote: Yeah, ive got all the cfform.com and asfusion.com stuff. I also have some examples from macromedia and a few that I have made. I was meaning more like things that some of you may have done that the mainstream might not know about yet...

RE: Compiling Java ?%$/%??

2005-09-07 Thread Mike Nicholls
You're using the Java 1.5 JDK, CF uses the 1.4 JVM. You need to tell the compiler to target Java 1.4. Try changing your command to C:\Program Files\Java\jdk1.5.0_04\bin\javac -target 1.4 -source 1.4 -classpath C:\CFusionMX\lib\cfx.jar -d C:\CFusionMX\wwwroot\WEB-INF\classes %1 C:AAA.txt

RE: New to CFEclipse

2005-09-07 Thread Dave Watts
N! The main method is in CF. CF calls the class, this is a CFX custom tag, not an application. I don't see why you can't build a test harness outside of CF. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized

XML, XSD, XSL

2005-09-07 Thread Andy
Ok, I've made the decision to use XML as the format to pass data between objects in my application. This approach seems to have lots of advantages as opposed to using lists of parameters or structures. My question now is how and why use XSD's and XSL. 1. Is there a better list to post

RE: ColdFusion Installation - more FREAKING JNDI problems

2005-09-07 Thread Dave Watts
Thanks for the info, although apparently it doesn't apply to the latest build of MSDE ... I'm still unable to reinstall an unnamed instance of MSDE on that server, though I was able to install a named instance for which the extra tool said it wasn't needed, so... still unable to connect to

Re: Question about my security system

2005-09-07 Thread Mike Soultanian
I see the point but I'm not sure if I agree with the implementation. What you talking about here is metadata: information about the file. By putting all of this in the data base you're adding a level of complexity that I just wouldn't be comfortable with. Well, it adds flexibility at

RE: XML, XSD, XSL

2005-09-07 Thread Dave Watts
Ok, I've made the decision to use XML as the format to pass data between objects in my application. This approach seems to have lots of advantages as opposed to using lists of parameters or structures. My question now is how and why use XSD's and XSL. What exactly are these advantages?

RE: Question about my security system

2005-09-07 Thread Dave Watts
As of now, I know of no other way to uniquely identify other than giving it a unique identifier. The file name and path is, by definition, unique within a filesystem. Why not just use that? CF itself uses this mechanism to track which files have been compiled, for example. Dave Watts, CTO,

Re: Question about my security system

2005-09-07 Thread Mike Soultanian
Dave Watts wrote: As of now, I know of no other way to uniquely identify other than giving it a unique identifier. The file name and path is, by definition, unique within a filesystem. Why not just use that? CF itself uses this mechanism to track which files have been compiled, for

RE: XML, XSD, XSL

2005-09-07 Thread Jim Davis
-Original Message- From: Andy [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 11:57 PM To: CF-Talk Subject: XML, XSD, XSL Ok, I've made the decision to use XML as the format to pass data between objects in my application. This approach seems to have lots of