mySQL date ?

2004-02-19 Thread cf
i just moved a db from access to mysql and its choking on the date insert. I seem to remember something about dates are diff in mysql the db the date fiels is set to int and here is some code     INSERT INTO guide (title, content, update) VALUES ('#title#', '#content#', '#date

RE: Invoking Java classes on shared host

2004-02-19 Thread Dave Jones
Barney, Just a couple more comments and then I'll be quiet :) >You can do that.  The problem is that with shared hosting, you don't have >access to CFMX or to Jrun, you only have access to the web server.  If you >have access to CFMX and the underlying J2EE server, then you can >do whatever you n

RE: Invoking Java classes on shared host

2004-02-19 Thread Dave Jones
Dave, >That's only true in a shared environment. I suspect that most Java >development takes place on dedicated servers. Probably true, but even in a dedicated environment having to give all the development teams access to the CFMX web root is not ideal, not to mention potential naming conflict

Re: Break the block, and SURVIVE, any way?

2004-02-19 Thread Don
Which attribute of cfhttp is for "referer headers"? I've already tried "user_agent" to no avail (tried both static value and dynamic value [CGI.http_user_agent]). >On Thursday 19 Feb 2004 14:13 pm, Chunshen  Li wrote: >> scary spider :) to break in? > >Forge the user_agent/referer headers. > >--

Re: Break the block, and SURVIVE, any way?

2004-02-19 Thread Don
OK. Time back to cookie. Dick, you seem to be correct.  Following your recommendation, I noticed 4 cookies were written to my box, now, for that "you should be able to duplicate that in a CF program", It seems different language uses different schema for cookie setup, following is the a sample co

cookies and images

2004-02-19 Thread Andrew Grosset
I would like to set a cookie when an image (or banner ad)is called.    I'm assuming the best way to do this is with cfcontent so that a script can be parsed

RE: Invoking Java classes on shared host

2004-02-19 Thread Barney Boisvert
You can do that.  The problem is that with shared hosting, you don't have access to CFMX or to Jrun, you only have access to the web server.  If you have access to CFMX and the underlying J2EE server, then you can do whatever you need. However, CFMX is the web app, and your templates are just supp

RE: Invoking Java classes on shared host

2004-02-19 Thread Dave Watts
> How unfortunate. That pretty much kills the CFMX As A > Better Way To Develop Java Apps idea. That's only true in a shared environment. I suspect that most Java development takes place on dedicated servers. > It sure would be nice if CFMX would provide a way to > create self-contained web app

RE: Help! Non-CFM File Parsing Shenanigans

2004-02-19 Thread Dave Watts
>   - Why is the wildcard application map necessary when we > already have the .cfm extension configured with the CFMX > ISPAI jrun_iis6.dll? CFMX, or rather the underlying J2EE server that actually does the work, can process servlet mappings in addition to just running specific files identified

RE: Invoking Java classes on shared host

2004-02-19 Thread Dave Jones
How unfortunate. That pretty much kills the CFMX As A Better Way To Develop Java Apps idea. It sure would be nice if CFMX would provide a way to create self-contained web apps. In a shared JRun environment, I can define a web app, drop in a WAR file and be done with it. Since CFMX runs on JRun,

RE: Help! Non-CFM File Parsing Shenanigans

2004-02-19 Thread Barney Boisvert
The problem is that with CF5 and under the mappings all came from IIS, because CF was nothing more than an IIS plugin (at least when using it with IIS).  With CFMX, it's a separate J2EE application (running on it's own server) that IIS delegates reqeusts to.  It uses it's own mappings, and has no k

Help! Non-CFM File Parsing Shenanigans

2004-02-19 Thread Peter Lakanen
OK, bear with me - this is kinda complicated.  Had a solution for a client that worked great in CF5, but is not working in CF MX. In CF5 (Win2000/IIS5), we created a profile in IIS where we could force .zip files to be parsed by ColdFusion.  Doesn't matter why - trust me, it was important.  If nec

RE: Generating PDFs in CF

2004-02-19 Thread Stevenson, Christopher
>> There is a sweet Java-based open source project that generates PDF >> based on an XML input format. >> >> Does this tag still work for you? The best I can get is a >> zero-length PDF. >> >> Any help would be appreciated. > > What opensource PDF/XML project are you referring to ?  Id > like

RE: Generating PDFs in CF

2004-02-19 Thread Ramene Anthony
Chris What opensource PDF/XML project are you referring to ?  Id like to take a look From: Chris Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 6:42 PM To: CF-Talk Subject: Re: Generating PDFs in CF > There is a sweet Java-based open sour

Re: Pre-Written E-commerce Packages in ColdFusion

2004-02-19 Thread Butch Zaccheo
How easy is it to modify? BZaccheo [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Generating PDFs in CF

2004-02-19 Thread Chris Stevenson
> There is a sweet Java-based open source project that generates PDF > based on an XML input format. Does this tag still work for you? The best I can get is a zero-length PDF. Any help would be appreciated. Regards, Chris Stevenson. [Todays Threads] [This Message] [Subscription] [Fast Un

FW: New Net Objects Fusion CF tags

2004-02-19 Thread Parker, Kevin
Following on from the release of a new Tag Library supporting CFML, Web Site Pros have actually followed up with a new database connector support CFML, ASP and PHP. Details for those interested can be found at http://store.wspisp.net/nofstore/Page.bok?template=info +++ Kevin

Re: Transfer to Mac OS X Server

2004-02-19 Thread Sangeeta Karmokar
Thanks Heaps.I never thought I will get such  huge respones... Once thanks ... Sangeeta [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Invoking Java classes on shared host

2004-02-19 Thread Barney Boisvert
If it's really shared (multiple clients on the same CFMX instance), then you don't have access to WEB-INF/classes.  The webroot you've got is merely the webroot of your virtual host, not the webroot of the CFMX application. There is only a single one of these for the entire CFMX instance, not for e

Re: Pre-Written E-commerce Packages in ColdFusion

2004-02-19 Thread Andrew Spear
I second Tony's recommendation.  Quilldesign's SiteDirector is very nice, especially for the price. Plus it's open source and easy to update.  I've used it on several clients and they are all happy. Andrew S >Does anyone have any recommendations for Pre-Written E-commerce packages >using Cold Fus

Invoking Java classes on shared host

2004-02-19 Thread Dave Jones
I'm attempting to access custom Java classes from my CFMX app (CFMX as the View-Controller, Java as the Model). This works fine locally (Developer edition) when placing the Java classes under the default web root. However, this is not an option on a shared host. The docs say CFMX will search we

Re: RE: String Array with CreateObject();

2004-02-19 Thread Kwang Suh
Barney, have you tried anything with generics in Java 1.5 with CF yet? - Original Message - From: Barney Boisvert <[EMAIL PROTECTED]> Date: Thursday, February 19, 2004 4:25 pm Subject: RE: String Array with CreateObject(); > Can't be done.  CF has no way to deal with Java arrays.  The bes

Re: String Array with CreateObject();

2004-02-19 Thread face mann
Hmm, well I want to pass the object to another java object, so maybe I can use that. Thanks Barney! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: String Array with CreateObject();

2004-02-19 Thread Barney Boisvert
Can't be done.  CF has no way to deal with Java arrays.  The best you can do is to use a Java collection like ArrayList and then call the toArray() method, but that'll only give you an Object[], and you can't use it in CF for anything. Cheers, barneyb > -Original Message- > From: face ma

RE: Pre-Written E-commerce Packages in ColdFusion

2004-02-19 Thread Tony Weeg
site director from quilldesign www.quilldesign.com very nice. great console (admin) tony r e v o l u t i o n w e b d e s i g n [EMAIL PROTECTED] www.revolutionwebdesign.com its only looks good to those who can see bad as well -anonymous -Original Message- From: Butch Zaccheo [mai

String Array with CreateObject();

2004-02-19 Thread face mann
How can I duplicate: String[] myArray = new String[10]; // from java with the CFMX CreateObject() method? I can create a string: stopWords =  CreateObject("java", "java.lang.String");   stopWords.init("BlaBlaBla"); But cannot create a string array. Any Ideas? [Todays Threads] [This Message]

Re: Securing cffile

2004-02-19 Thread Jochem van Dieten
Robert Shaw wrote: > > Does anyone have any tips on cffile? I'd like to secure where it can read > from, write to, etc. Anyone else doing this and have any tips? First do a big lockdown by making sure the user CF runs under only has minimal permissions, then do the details with Sandbox Securit

Re: Pre-Written E-commerce Packages in ColdFusion

2004-02-19 Thread Butch Zaccheo
Thanx for the info guys I have checked into Able Commerce.. It seems to be great package. But they won¹t be coming out with there updated coldfusion package for another 60 days... I need a solution a little quicker than that... BZaccheo [Todays Threads] [This Message] [Subscription] [F

RE: Nesting CFOUTPUT

2004-02-19 Thread Barney Boisvert
The question is not whether it's more forgiving, but whether it's a change in the language itself, or a change in the implementation.  In other words, can we rely on CFMX's disregard for invalidly nested CFOUTPUT tags, or is it just an implementation glitch? barneyb > -Original Message-

Securing cffile

2004-02-19 Thread Robert Shaw
Hi All, Does anyone have any tips on cffile? I'd like to secure where it can read from, write to, etc. Anyone else doing this and have any tips? TIA, Robbie [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Extracting Text From web page Matt

2004-02-19 Thread Matthew Walker
http://nz.php.net/fopen -Original Message- From: brobborb [mailto:[EMAIL PROTECTED] Sent: Friday, 20 February 2004 10:42 a.m. To: CF-Talk Subject: Re: Extracting Text From web page Matt Hey, cookies for you if you can give me a PHP equivalent :0)   - Original Message -   From:

Re: Nesting CFOUTPUT

2004-02-19 Thread Charlie Griefer
but 'more forgiving' doesn't indicate whether or not it was an intentional 'feature' that will continue in subsequent versions, or if it will ultimately be 'fixed' (either via patch or new version).   : ) - Original Message - From: "J E VanOver" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL P

RE: Pre-Written E-commerce Packages in ColdFusion

2004-02-19 Thread peter . tilbrook
CommerceBlocks?... http://www.productivityenhancement.com/products.cfm Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927  

RE: Pre-Written E-commerce Packages in ColdFusion

2004-02-19 Thread Christian Martin
Are you looking for a shopping cart type application?  AbleCommerce has a full featured package. http://www.ablecommerce.com You also might want to take a look in the Developer's Exchange at Macromedia. --Christian -Original Message- From: Butch Zaccheo [mailto:[EMAIL PROTECTED] S

RE: Pre-Written E-commerce Packages in ColdFusion

2004-02-19 Thread Christian Martin
Are you looking for a shopping cart type application?  AbleCommerce has a full featured package. http://www.ablecommerce.com You also might want to take a look in the Developer's Exchange at Macromedia. --Christian -Original Message- From: Butch Zaccheo [mailto:[EMAIL PROTECTED] S

Re: Security - Tag restrictions

2004-02-19 Thread peter . tilbrook
Great idea as many shops are still using CF5 and it would be a shame to lose it to history, Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927  

RE: Nesting CFOUTPUT

2004-02-19 Thread J E VanOver
Someone else mentioned it before.  They said it looks like CFMX is more forgiving on this. Jevo -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 2:13 PM To: CF-Talk Subject: Nesting CFOUTPUT Does anyone (MM guys, in particular) know the

RE: Extracting Text From web page Matt

2004-02-19 Thread Matthew Walker
What's PHP? ;-) -Original Message- From: brobborb [mailto:[EMAIL PROTECTED] Sent: Friday, 20 February 2004 10:42 a.m. To: CF-Talk Subject: Re: Extracting Text From web page Matt Hey, cookies for you if you can give me a PHP equivalent :0)   - Original Message -   From: brobborb

RE: DW2004 Snippet madness

2004-02-19 Thread peter . tilbrook
I've found selecting "Edit/Keyboard Shortcuts" and choosing Homesite it behaves buch more like CF Studio/Homesite. Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Important:  This e-m

Re: Extracting Text From web page Matt

2004-02-19 Thread brobborb
Hey, cookies for you if you can give me a PHP equivalent :0)   - Original Message -   From: brobborb   To: CF-Talk   Sent: Thursday, February 19, 2004 4:36 PM   Subject: Re: Extracting Text From web page   I LOVE YOU MATT!  rararararar   lol   I think this is because the site doesn't

Re: Extracting Text From web page

2004-02-19 Thread brobborb
I LOVE YOU MATT!  rararararar lol I think this is because the site doesn't allow unknown user agents :)   - Original Message -   From: Matthew Walker   To: CF-Talk   Sent: Thursday, February 19, 2004 4:22 PM   Subject: RE: Extracting Text From web page         Seems not to work. But

Re: Extracting Text From web page

2004-02-19 Thread brobborb
But you can get to it through a browser :)  the cfhttp thing just wont work :-(   - Original Message -   From: Jerry Johnson   To: CF-Talk   Sent: Thursday, February 19, 2004 4:23 PM   Subject: Re: Extracting Text From web page   >>> brobborb said:   >I get a connection failure mess

RE: Extracting Text From web page

2004-02-19 Thread Matthew Walker
Seems not to work. But try adding an agent and it seems to work: useragent="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"> -Original Message- From: brobborb [mailto:[EMAIL PROTECTED] Sent: Friday, 20 February 2004 10:05 a.m. To: CF-Talk Subject: Re: Extracting Text From w

RE: Checking an IP Address

2004-02-19 Thread Ryan Emerle
You'll probably be looking at a range either way..  If you use net masks, then it would be the starting IP to the ending IP of the subnet. I recommend storing the IP ranges as decimals for the most efficient lookups.  Check out this UDF for converting to/from decimal: http://www.cflib.org/udf.cf

Re: Extracting Text From web page

2004-02-19 Thread Jerry Johnson
>>> brobborb said: >I get a connection failure message. Here is the site i am trying to connect to http://seb.sleepbot.com:8000/played.html I get a timeout from that page when I try to just load it in a browser. If you can't get to it through a browser, it is unlikely CFHTTP is going to find it

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Smith, Matthew P -CONT(CSC)
Thanks, Paul.  Look tight; I'll definitely give it a whirl. (it can't be THAT easy, can it?)  :-) Cheers, Matthew -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 4:05 PM To: CF-Talk Subject: RE: tapping an exchange public folder

Re: Extracting Text From web page

2004-02-19 Thread Rob Rohan
Yeah sorry, I thought you were going for a hard core generic thing - got a bit excited sorry :) - got it on the brain you see cheers, On Thu, 2004-02-19 at 14:10, brobborb wrote: > Dude whatever happened to simplicity!  lol i was only expecting like 4 or 5 lines of code. > > Thanks very much, by

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Smith, Matthew P -CONT(CSC)
Yes, I use OWA all the time and am familiar with its functionality. I really just simplified the goal.  I came across some stuff that should REALLY not be in a public folder and need to fix it.  Quick.  :-) Can you add permissions to a folder, making it not so public? Sorry, or exchange gu

Nesting CFOUTPUT

2004-02-19 Thread Barney Boisvert
Does anyone (MM guys, in particular) know the official position on this:               That's invalid in CF5 and less (the outer CFOUTPUT doesn't have a 'GROUP' attribute, so it can't contain another CFOUTPUT tag), but it's fine in CFMX. Is this a documented feature of CFMX, or does the langu

Re: Extracting Text From web page

2004-02-19 Thread brobborb
Dude whatever happened to simplicity!  lol i was only expecting like 4 or 5 lines of code. Thanks very much, by the way! :)   - Original Message -   From: Rob Rohan   To: CF-Talk   Sent: Thursday, February 19, 2004 4:02 PM   Subject: Re: Extracting Text From web page   On Thu, 2004-02-

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Smith, Matthew P -CONT(CSC)
Ahh, but you assume that I have knowledge of IMAP.  :P Thanks, I'll look into that.  I've really just done my designs from scratch for the most part in the past, and haven't had to pull from an exchange folder before. My dbas have done this kind of stuff in the past for me, but I'm lone-wolf

Re: Extracting Text From web page

2004-02-19 Thread brobborb
I get a connection failure message. Here is the site i am trying to connect to http://seb.sleepbot.com:8000/played.html Can anyone lpease help make this possible! hehe :)  Thanks so much!   - Original Message -   From: Barney Boisvert   To: CF-Talk   Sent: Thursday, February 19, 2004 3:

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Paul Vernon
Matthew, CFX_IMAP4 at http://www.web-architect.co.uk/downloads.cfm will give you full IMAP capabilities with Exchange server. Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Ramene Anthony
Peter Freitag put together a pretty nice CFC that handles validation against AD - Might be able to gleen from that how to tap into AD for validation and pruning the users pf's in Exchange (all that info is in AD right ?) .   I would imagine that you *do* want to validate before they even go near yo

Re: Extracting Text From web page

2004-02-19 Thread Rob Rohan
On Thu, 2004-02-19 at 13:48, brobborb wrote: > Just the text.  no HTML stuff :) I have been working on a project to do just that. I have made some progress (but its not perfect yet) What I have been doing is using cfhttp to get the html save it to a file, then send the html through jtidy to make

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Ramene Anthony
Jochem You can even access Exchange via LDAP if memory serve's me.  This site -- http://www.cfcomet.com/  might help out.  If not, well then, you'll be up for a while! Best Regards Ramene Anthony From: Ramene Anthony [mailto:[EMAIL PROTECTED] Sent: Thursd

RE: Extracting Text From web page

2004-02-19 Thread Barney Boisvert
]*>", "", "all") /> That'll rip all non-HTML text out of it for you, assuming the HTML is well formed (no extraneous angle brackets). Cheers, barneyb > -Original Message- > From: brobborb [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 19, 2004 1:49 PM > To: CF-Talk > Subject: Re

RE: Extracting Text From web page

2004-02-19 Thread Matthew Walker
Well you need to be able to identify something in the HTML markup that clearly and consistently defines where the text you want starts and stops. First, you get the markup of the entire page. Then you extract the portion you want from between the delimiters you define. This might be done using a

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Ramene Anthony
You can access Exchange via COM/MAPI calls.  It'd be a hack at best via MX - but it can certainly be done.   I would also, imagine its not very well documented. There's a resource that comes to mind.. I'll try to get it to you guys in a bit Best Regards Ramene Anthony _

Re: Extracting Text From web page

2004-02-19 Thread brobborb
Just the text.  no HTML stuff :)   - Original Message -   From: Matthew Walker   To: CF-Talk   Sent: Thursday, February 19, 2004 3:42 PM   Subject: RE: Extracting Text From web page   When you say text do you mean all the HTML markup of the page or do you mean   only the content, withou

RE: tapping an exchange public folder and extracting messages

2004-02-19 Thread Dave Watts
> I have a few public folders on an exchange server that I am > trying to pull into a db and create a front end to access, > allowing viewing and searching and the like.  I know outlook > allows this kind of functionality, but we need to move it to > a web interface.  I also want to allow them

RE: Extracting Text From web page

2004-02-19 Thread Matthew Walker
When you say text do you mean all the HTML markup of the page or do you mean only the content, without the navigation elements etc.? -Original Message- From: brobborb [mailto:[EMAIL PROTECTED] Sent: Friday, 20 February 2004 9:36 a.m. To: CF-Talk Subject: Extracting Text From web page Hey

RE: question ("null" attribute)

2004-02-19 Thread Barney Boisvert
It'll do it in CFMX, but not in CF5 and less.  Prior to CFMX, you could only have single values inside hashes, but with CFMX you can put arbitrary expressions between them. Cheers, barneyb > -Original Message- > From: Jamie Jackson [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 19

Re: tapping an exchange public folder and extracting messages

2004-02-19 Thread brobborb
I dont know if this is what u want, but doesn't exchage already allow you to use a version with a web interface?  u can access all your stuff from the web   - Original Message -   From: Smith, Matthew P -CONT(CSC)   To: CF-Talk   Sent: Thursday, February 19, 2004 3:37 PM   Subject: tappi

Re: tapping an exchange public folder and extracting messages

2004-02-19 Thread Jochem van Dieten
Smith, Matthew P -CONT(CSC) wrote: > I have a few public folders on an exchange server that I am trying to pull into a db and create a front end to access, allowing viewing and searching and the like.  I know outlook allows this kind of functionality, but we need to move it to a web interface.  I

tapping an exchange public folder and extracting messages

2004-02-19 Thread Smith, Matthew P -CONT(CSC)
I have a few public folders on an exchange server that I am trying to pull into a db and create a front end to access, allowing viewing and searching and the like.  I know outlook allows this kind of functionality, but we need to move it to a web interface.  I also want to allow them to continue ad

Extracting Text From web page

2004-02-19 Thread brobborb
Hey guys I'm kinda a newbie at CFHTTP n stuff.  How do I extract the text from a web page and put it into a variable? (using a URL)  like let's say I want to get the text from www.example.com/hehe/index.html Thanks! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User S

RE: MX Internals

2004-02-19 Thread Ramene Anthony
Tamuri Excellent.  ;)  Very straight forward albeit the limitations prevent one from using in production environments.   I still have so more reading to do on ... Best Regards Ramene Anthony From: Tamuri [mailto:[EMAIL PROTECTED] Sent: Thursday, Februa

Re: Another Best practises question

2004-02-19 Thread Charlie Griefer
I'd agree with Paul.  The only other way I could think of is: which isn't necessarily any more compact, nor is it any more readable in the code.  Any performance differences between the two would be negligible at best. - Original Message - From: "Paul Kenney" <[EMAIL PROTECTED]> To: "C

RE: question ("null" attribute)

2004-02-19 Thread Matthew Walker
It will handle it in CFMX but not CF5. -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Friday, 20 February 2004 8:14 a.m. To: CF-Talk Subject: Re: question ("null" attribute) > > >That will insert the value provided, unless it's not numeric, in which case >it'll i

RE: MX Internals

2004-02-19 Thread Rob Rohan
On Thu, 2004-02-19 at 12:49, Ramene Anthony wrote: > Now we're scared.  Very scared!  That's way too many holes!  ;)  I think > HouseofFusion removed it previously for good reason! Well don't forget it relys on the createObject function / tag. I would be interested in how it works in a shared envi

Re: MX Internals

2004-02-19 Thread Tamuri
Hello, Have a look at the cfx_queryCache tag at http://tamuri.cfdeveloper.co.uk/ - the source code for the tag may help. Caveat: it is a total CFMX hack, which comes without any guarantee of anything good whatsoever ;-) Regards, Tamuri On Thu, 19 Feb 2004 13:44:22 -0500, Ramene Anthony <[EM

RE: CFMX 6.1 Error (Cant Track the Error down)

2004-02-19 Thread Dave Watts
> It seems like the above No 3 might be the problem, Or > No 1/No 2? I've never added an identity field to either of the CF-generated client variable tables, so I don't know if that could cause problems, although it seems unlikely. You can safely purge client data from SQL directly, too. > I am

RE: Another Best practises question

2004-02-19 Thread Paul Kenney
Probably not.  There might actually be a more compact way of doing this test, but the great thing about the code you posted is that the function names convey clearly what the intent of the test is. Paul Kenney WebMaster, CorporateWarriors.com 916-663-1963 -Original Message- From: David Ad

RE: MX Internals

2004-02-19 Thread Ramene Anthony
Rob Now we're scared.  Very scared!  That's way too many holes!  ;)  I think HouseofFusion removed it previously for good reason! MM better change this next major release. Best Regards Ramene Anthony From: Rob Rohan [mailto:[EMAIL PROTECTED] Sent: Thur

RE: OT: windows mailing list

2004-02-19 Thread Nando
did you check out www.wown.com ? or did someone else recommend it already? not a mailing list, but that's where i head when i have a question. -Original Message- From: Tom Kitta [mailto:[EMAIL PROTECTED] Sent: den 19 februari 2004 21:16 To: CF-Talk Subject: RE: OT: windows mailing list T

Re: CFMX 6.1 Error (Cant Track the Error down)

2004-02-19 Thread Joe Eugene
Thanks Dave Here is the scenario with our Client Scope variables 1. I added  an additional  field in CGlobal Table for Client Variables on SQL Server.     CountID (This is just an Identity field that increments automatically) 2. I am not using CFMX to Purge the Data, rather i have a SQL Server J

Another Best practises question

2004-02-19 Thread David Adams
Is there a better way of writing: [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: OT: windows mailing list

2004-02-19 Thread Tom Kitta
Thank you all for replying, I joined some mailing lists and I hope that I will get answers to all of my windows networking related questions. >Agree. Well if its any consolation - in my experience - going to Linux >goes from hard to a better - where as going to windows goes from easy to >frustrati

Re: question ("null" attribute)

2004-02-19 Thread Jamie Jackson
> > >That will insert the value provided, unless it's not numeric, in which case >it'll insert NULL. Thanks Barney, One small correction though: I don't think CF can evaluate: #NOT isNumeric(form.myVar)# It seems you have to wrap "NOT {_expression_}" with a function, like: #yesNoFormat(NOT isNum

RE: RDS Hanging on Linux

2004-02-19 Thread Debbie Dickerson
The RDS service is started by the cfexec process, not by directly trying to run cfrdsservice. Did you change the user CF is running under? If so, maybe it's a permissions issue. CF has to write two files to the /tmp directory: cfide and cfserver. You should only see those two files if CF is runn

RE: CFMX 6.1 Error (Cant Track the Error down)

2004-02-19 Thread Dave Watts
> I am getting the below in a New Application. I am unable to > find the error cause CFMX doesnt really report any clear > Errors and there are No Application Errors. > > ... >   2 >  java.lang.NullPointerException >   >   3 >  at > coldfusion.runtime.ClientScopeKey.hashCode(

Re: question ("null" attribute)

2004-02-19 Thread Jamie Jackson
>Since CF and HTML don't have an idea of NULL, you may want to convert an >empty string from an HTML form into a NULL value within the database. You >could do it like this, I think: > > My situation exactly, thanks fellas. Thanks, Jamie [Todays Threads] [This Message] [Subscription] [Fast

CFMX 6.1 Error (Cant Track the Error down)

2004-02-19 Thread Joe Eugene
Hi all, I am getting the below in a New Application. I am unable to find the error cause CFMX doesnt really report any clear Errors and there are No Application Errors. I am using CFC's as part of the Model and UserManger CFC for Client scope abstraction. There are few CFC's involved, so its not

RE: question ("null" attribute)

2004-02-19 Thread Dave Watts
> I'm not quite sure how the null attribute works in > > === > From the docs: > null [Optional] [Default="No"] > Description: Whether parameter is passed as a null value. >  *Yes: tag ignores the value attribute >  *No > === > > Can anyone give me

RE: question ("null" attribute)

2004-02-19 Thread Barney Boisvert
The null attribute says that the value passed to the DB should be null, regardless of what the value attribute says.  For instance, if you have a select box with a blank first option and the actual options have a numeric value, you might use a CFQUERYPARAM like this: That will insert the value p

Re: MX Internals

2004-02-19 Thread Rob Rohan
I posted this a while ago but it seems to have been pulled from the archives (or I just cant search right :-/ ) but its a little factory / java browser do dad (I call it jBrowse). I would *not* recommend you put this in a publicly available place on your server + snip +

RE: question ("null" attribute)

2004-02-19 Thread Tangorre, Michael
If it is set to YES, the value attribute is ignored and a NULL is used. If it is sent to NO, the value is used.   _   From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 2:36 PM To: CF-Talk Subject: question ("null" attribute) I'm not quite sure how the null a

question ("null" attribute)

2004-02-19 Thread Jamie Jackson
I'm not quite sure how the null attribute works in === >From the docs: null [Optional] [Default="No"] Description: Whether parameter is passed as a null value. *Yes: tag ignores the value attribute *No === Can anyone give me an example of the "nu

RE: MX Internals

2004-02-19 Thread Ramene Anthony
Barney Yes but for edification purposes and those times when you really want to get something to scale properly over the life span of the particular minor/major version you are dealing with... ;) After my initial email I did come across Javadocs for JRun API: http://livedocs.macromedia.com/jr

RE: CF Portal...

2004-02-19 Thread Philip Arnold
> Just curious - can anyone tell me the difference between a > content manager and a portal? Thanks in advance. They're apples and oranges A content manager is a product that allows you to change content on the site dynamically A portal is a site/area of a site which has links and information f

RE: CF Portal...

2004-02-19 Thread Andrew Peterson
Just curious - can anyone tell me the difference between a content manager and a portal? Thanks in advance. Sincerely, Andrew -Original Message- From: Bailey, Neal [mailto:[EMAIL PROTECTED] Sent: Thursday, February 19, 2004 12:02 PM To: CF-Talk Subject: RE: CF Portal... Thanks Nathan,

RE: OT: windows mailing list

2004-02-19 Thread Rob Rohan
On Thu, 2004-02-19 at 10:56, Benjamin S. Rogers wrote: > > Getting all the relevant services up and running (the SUNWAS, FTP, etc.) was > a nightmare, mostly because of obscure configuration settings. Sites like > the VSFTPD seem less concerned with documentation and examples and more > concerned

cfcatch structure: cf5 & mx

2004-02-19 Thread Tangorre, Michael
Was there changes made to the way CF handles the cfcatch structure between CF 5 and MX 6.1? The reason I ask is because some of us are noticing that a plug-in written for FB4 is not functioning in MX as it does in CF 5. I know this is SOT, but thought maybe someone has some ideas on what, if anythi

RE: MX Internals

2004-02-19 Thread Barney Boisvert
I wouldn't spend much time on this, as it's not guarenteed to stay constant across versions, so all your work could be for naught when 6.2 comes out (or whatever the next version is). That being said, CFDUMP is your friend for getting started.  You can also intentionally throw certain errors in yo

Re: Transfer to Mac OS X Server

2004-02-19 Thread Dick Applebaum
I did a little digging and here is what I found. 1) FM Pro comes with a JDBC driver named: fmpjdbc12.jar To use this driver from ColdFusion and SQL Clients like ViennaSQL, etc, it must be placed where "they" can find it -- the easiest way, in OS X, is to place it in: /Library/Java/Extension

RE: CFCs, Methods and Error catching best practice?

2004-02-19 Thread Ramene Anthony
Ian Me and a couple others developers raised that same issue sometime last week.  We all came to the conclusion that there is a better way to handle errors within the CFC and returning that information back to the calling page. Check out thiks link here: http://www1.uwex.edu/infosys/ads/re

RDS Hanging on Linux

2004-02-19 Thread Haggerty, Mike
For whatever reason, RDS decided to stop working this morning on one of my CF5 servers. It's a Red Hat 7 box with ColdFusion 5, and I am unable to restore service despite my best efforts. Every time I try to run ./cfrdsservice, nothing happens the service just hangs. The RDS log itself is complete

RE: CFCs, Methods and Error catching best practice?

2004-02-19 Thread Barney Boisvert
This situation is the perfect place to use a CFTHROW tag.  If the role name is invalid, just throw an exception (InvalidRoleException, or something) from your CFC.  You can leave your method with returntype="query" as it should be, and use the exception to communicate with the calling code. In you

RE: OT: windows mailing list

2004-02-19 Thread Benjamin S. Rogers
> This is just my experience, but it seems rather hard to get anyone who > works with windows to help on a newsgroup. They want you to buy a book > or get MCS-idontrealyknowwhatsup-E certified. You'll find people that > will help, but not to the same degree as in the open source world - > where peo

  1   2   >