DW MX 2004 Updater - Interesting article

2004-03-15 Thread Massimo Foti
http://www.communitymx.com/content/article.cfm?cid=0673F Massimo Foti http://www.massimocorner.com Co-Author of Dreamweaver MX 2004 Magic: http://www.dwmagic.com/ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Compare List

2004-03-15 Thread Brendan Avery
That's what the ListSort function embedded in the Compare function was for.As long as both lists contain the exact same entities it doesn't matter if they're in different orders if you embed those ListSort functions.Perhaps my code was unclear.Here let me elaborate: cfset list1=1,2,3,4,5 cfset

RE: Compare List

2004-03-15 Thread Pascal Peters
This will not always work, you need to use ListFind (or ListFindNoCase) instead of ListContains. Otherwise 2,9,7 and 2,7,99 will return true. Also, put a cfbreak in the loop if it is not a match. Pascal -Original Message- From: cfhelp [mailto:[EMAIL PROTECTED] Sent: maandag 15 maart

Re: 20 meg updater for DWMX 2004

2004-03-15 Thread Calvin Ward
Nevertheless, at least Dreamweaver supports Unicode: http://www.macromedia.com/support/homesite/ts/documents/unicode_issues.htm - Calvin - Original Message - From: Peter Tilbrook To: CF-Talk Sent: Friday, March 12, 2004 10:00 PM Subject: SOT: 20 meg updater for DWMX 2004 Not happy

RE: Wordaround for Linux...

2004-03-15 Thread Mike Townend
you could give this function a go http://www.cflib.org/udf.cfm?ID=1019 HTH -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 3, 2004 13:13 To: CF-Talk Subject: Re: Wordaround for Linux... On Sat, 2004-03-13 at 16:31, Doug White wrote: It appears that

sot: Powerbooks and Coldfusion

2004-03-15 Thread Stuart Kidd
Hi guys, I'm heading to Oz to see my family for a month and am stopping off in LA (USA - home of cheap electronics for European citizens). I am seriously thinking about snapping up a Powerbook while there as the UK Stirling - US Dollar exchange rate is pretty good. Has anyone got a Powerbook

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread Ryan Mitchell
I switched about a year ago now, and havetn looked back. If you're using dreamweaver there is very little difference in set up... you install coldfusion mx 6.1 on top of jrun, and away you go. your powerbook will fit right into your network, you will be able to connect to your pc with no probs

RE: Quick SQL Question...

2004-03-15 Thread Bill Grover
If you want to save on some of the typing you can rework the select statement into this: select count(createdate), createdate from (select convert(varchar, creationdate, 101) AS createdate from referer) makedate group by createdate __

RE: Compare List

2004-03-15 Thread Greg Luce
Brendan, I see now. Very nice. Greg -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 4:27 AM To: CF-Talk Subject: RE: Compare List That's what the ListSort function embedded in the Compare function was for.As long as both lists contain the

Re: Wordaround for Linux...

2004-03-15 Thread Thomas Chiverton
On Wednesday 03 Mar 2004 13:12 pm, Rob wrote: If linux doesnt have X windows installed that wont work. Java image stuff requries the X windows libraries to work. There is something called headless mode that supposedly allows for graphic manipulation I think you just set java.awt.headless=true

Re: Compare List

2004-03-15 Thread Christopher Farino
unsubscribe - Original Message - From: Bernd VanSkiver To: CF-Talk Sent: Monday, March 15, 2004 1:03 AM Subject: RE: Compare List The ListSort() function sorts the lists and puts them in the same order and then the Compare() checks if the lists are the same. Bernd VanSkiver [EMAIL

RE: Compare List

2004-03-15 Thread Tangorre, Michael
Go to the HOF site to unsubscribe. -Original Message- From: Christopher Farino [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 8:23 AM To: CF-Talk Subject: Re: Compare List unsubscribe - Original Message - From: Bernd VanSkiver To: CF-Talk Sent: Monday, March 15,

RE: Compare List

2004-03-15 Thread Tony Weeg
go to the bottom of any of these emails to unsubscribe -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 8:28 AM To: CF-Talk Subject: RE: Compare List Go to the HOF site to unsubscribe. -Original Message- From: Christopher

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread stas
What about database administration tools,what do you use? - Original Message - From: Ryan Mitchell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 15, 2004 6:25 AM Subject: Re: sot: Powerbooks and Coldfusion I switched about a year ago now, and havetn looked back.

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread Ryan Mitchell
i use mysql as my database, and found a freeware program called YourSQL to connect to it (also use phpmyadmin)... i've used navicat (mysql studio), but it costs for not much more in the features department in my book... stas wrote: What about database administration tools,what do you use?

Re: Need sql help

2004-03-15 Thread Deanna Schneider
Al, That query isn't really doing what you originally asked. It won't return doctors with no trials. You'll need an outer join for that. - Original Message - From: Al Musella, DPM Worked perfectly! Thanks! Al SELECT c.name, MIN(dateupdated) as oldest_trial FROMcontacts c,

Re: Powerbooks and Coldfusion

2004-03-15 Thread Kevin Graeme
I am seriously thinking about snapping up a Powerbook while there as the UK Stirling - US Dollar exchange rate is pretty good. Just a word of caution: Apple UK will very likely not support a US market PowerBook. Check with them first. I've known several people who got good deals on their Mac and

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread David Fafard
If you admin a MS SQL server, and you have a VPN, Microsoft makes a great FREE terminal services client for Mac. watch the wrap: http://www.microsoft.com/mac/otherproducts/otherproducts.aspx?pid=remotedesktopclient Works great for me when I am using a powerbook. Dave - Original Message

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread Ryan Mitchell
yep, i second that. David Fafard wrote: If you admin a MS SQL server, and you have a VPN, Microsoft makes a great FREE terminal services client for Mac. watch the wrap: http://www.microsoft.com/mac/otherproducts/otherproducts.aspx?pid=remotedesktopclient Works great for me when I am using

Order by date and then time

2004-03-15 Thread Robert Orlini
I would like to order first by datechanged and then by the time it was changed. I have so far this code: CFQUERY name=logdata datasource=wweb_status Select * from statuslog Order by datechanged desc /CFQUERY It orders correctly by date changed. For example, if multiple changes were made today,

RE: sot: Powerbooks and Coldfusion

2004-03-15 Thread Tom Kitta
Remote desktop is available for Mac, Linux and almost any PC running windows (If I remember correctly, minimum requirements are Win3.1, 386SX, 8Mb RAM). It is always free (but server part is not free, you need windows server software and for anything but Administrative mode you need a CAL). TK

RE: Order by date and then time

2004-03-15 Thread Tony Weeg
does your datetime field have time in it too?? 3/15/2004 01:25:54 or is it like 3/15/2004 00:00:00 if its like the first one, it should already be ordering by that...if its not... then you will have to start writing the datetime combo to the field...make sense? or if you have a date field,

Re: Deploying Java Application on CFMX server

2004-03-15 Thread Jeremy Brodie
Ray, You can't deploy a Java application on a CFMX server, since CFMX is technically no longer a server. CFMX is actually a Java application sitting on top of a J2EE server. In fact, one of the configurations you can run Colf Fusion is through a WAR or EAR file. With that said, you're attempting

^_^ meay-meay!

2004-03-15 Thread bruce . holm
I don't bite, weah! 06375-- archive password [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Max Size of Structure

2004-03-15 Thread Matt Friedman
Does CF 5 have a max size of a structure? Or is it a limitation of the hardware and usage? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

FARCRY

2004-03-15 Thread Douglas.Knudsen
anyone get this installed and working?We are running CFMX6.1(J2EE) with Oracle DB on IIS.The install goes fine but I never get passed this error. Could not find the included template /Application.cfm The error occurred in D:\Inetpub\farcrycms\farcry_core\admin\Application.cfm: line 9 7 : 8 :

RE: FARCRY

2004-03-15 Thread Robertson-Ravo, Neil (RX)
Yes you need to set a mapping up also - its outlined in the installation guide. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 15 March 2004 15:29 To: CF-Talk Subject: FARCRY anyone get this installed and working?We are running CFMX6.1(J2EE) with Oracle DB on IIS.The install

RE: Max Size of Structure

2004-03-15 Thread Robertson-Ravo, Neil (RX)
erm, dont think so other than whats available on the servers memory.. _ From: Matt Friedman [mailto:[EMAIL PROTECTED] Sent: 15 March 2004 14:30 To: CF-Talk Subject: Max Size of Structure Does CF 5 have a max size of a structure? Or is it a limitation of the hardware and usage? _

RE: FARCRY

2004-03-15 Thread Nathan C. Smith
The installation isn't intuitive if you have installed any other open-source CMS's. If memory serves, the installation actually builds the install directory and then you have to point to that with a server mapping. -Nate -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: SOT: 20 meg updater for DWMX 2004

2004-03-15 Thread Thomas Chiverton
On Saturday 13 Mar 2004 06:02 am, Rob wrote: But I agree, and I think that someone on the list hit it on the head - why should MM make anything but DW -- your gonna buy it. Oh no I wont :-) :pats Eclipse. New Plugin ORN: XPath _expression_ evaluater -- Tom Chiverton Advanced ColdFusion

Re: SOT: 20 meg updater for DWMX 2004

2004-03-15 Thread Massimo Foti
Oh no I wont :-) :pats Eclipse. New Plugin ORN: XPath _expression_ evaluater This one has been around for a while, I use the standalone version and I am very happy with it, don't know about the Eclipse plugin: http://www.purpletech.com/xpe/index.jsp Massimo

RE: FARCRY

2004-03-15 Thread Douglas.Knudsen
ugh, where?I'm looking at this http://farcry.daemon.com.au/go/documentation/installation/installation-guide does not mention a CF mapping anywhere.Has webserver mappings instructions including the built in CF Webserver if using it.I could be in Monday brain-dead land though! Doug -Original

RE: FARCRY

2004-03-15 Thread Robertson-Ravo, Neil (RX)
Actually where the installation is flakey is the way you have add the virtual mapping AFTER you have ran the installer - I always now add the mapping BEFORE I run the installer _ From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 15 March 2004 15:28 To: CF-Talk Subject: RE:

CF Open VMS

2004-03-15 Thread Dan O'Keefe
Anyone ever tried to tie the two together with some type of data access? My guess it will be more like data exports/import from VMS to SQL on my end. Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread David Fafard
I believe with Win2k and 2003 server you get 2 (two) free clients for Terminal Services. I guess it depends on how many people will admin the server.. but I found two is sufficient Dave - Original Message - From: Tom Kitta To: CF-Talk Sent: Monday, March 15, 2004 9:48 AM Subject: RE:

RE: FARCRY

2004-03-15 Thread Douglas.Knudsen
what a PITA so far! I installed the stuffs to d:\inetpub\farcrycms. I ran the install scripts sitename: farcry_test applicationmapping: /farcry_test admin mapping: /farcry domain:localhost--- what should this be??? this box has no DNS entry, only IP. In IIS I have two virtual dirs /farcry

OT: a href= code...

2004-03-15 Thread Che Vilnonis
Morning all. I once saw some code that could be used in a a href="" tag to automatically 'populate' the Subject line of an email. 1. Does anyone know what that code is? 2. Does it work for all browsers/email clients? Thanks Che [Todays Threads] [This Message] [Subscription] [Fast

RE: a href= code...

2004-03-15 Thread d.a.collie
I once saw some code that could be used in a a href="" tag to automatically 'populate' the Subject line of an email. 1. mailto:[EMAIL PROTECTED]body=AnythingYouWant Work in all browsers? 2. Pretty sure it doesn't work for all of them but can't remember which off the top of my head -- David

RE: a href= code...

2004-03-15 Thread Tim Blair
1. Does anyone know what that code is? a href="" PROTECTED].../a 2. Does it work for all browsers/email clients? No idea.:) Tim. -- --- CF_CodingContest mode=judging newentries=false Maze Solver - http://tech.badpen.com/cfcontest/

RE: FARCRY

2004-03-15 Thread Douglas.Knudsen
oops, the CF Mappings are /farcry -- d:\inetpub\farcrycms /farcry_test -- d:\inetpub\farcrycms\farcry_test\www actually Now, I added the IP to the apps.cdm file, so it has two lines now stApps['localhost'] = 'farcry_test'; stApps['10.10.90.212'] = 'farcry_test'; now I get the same results from

CFMX JAR File - Round 2

2004-03-15 Thread Jeff Chastain
I have been attempting to get ColdFusion to recognize the Plumtree Software developers kit that is in Java format.The actual file I am needing is 'edk.jar'. The jar file is located on the server at the following path: c:\Plumtree\ptedk\5.0\devkit\java\WEB-INF\lib\edk.jar I have put this full

Moving to CFMX for J2EE (Linux) from CFMX for J2EE ( WINDOWS)

2004-03-15 Thread Ciliotta, Mario
HI, I was wondering if anyone on this list might know if there is anything that I need to watch out for in my conversion from CFMX(J2EE) for Windows to CFMX(J2EE) for Linux. I will be moving off most of our apps to the Linux boxes. We use Oracle and SQL Server as the DB's for the application

RE: a href= code...

2004-03-15 Thread Pascal Peters
mailto:[EMAIL PROTECTED](variables.subject)# Works in most browsers/mail clients AFAIK (certainly not all) -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: maandag 15 maart 2004 17:32 To: CF-Talk Subject: OT: a href="" code... Morning all. I once saw

Re: OT: a href= code...

2004-03-15 Thread Jerry Johnson
Speaking from ignorance here, but I would assume the syntax is something like: a href="" PROTECTED] Text Goes here The subject should be URL encoded so it works on all browsers I would guess. HTH Jerry Johnson [EMAIL PROTECTED] 03/15/04 11:32AM Morning all. I once saw some code that could

Error establishing socket.

2004-03-15 Thread Michael Hodgdon
Hi there, We're seeing a very odd network error with our CFMX server Error Executing Database Query. [Macromedia][SQLServer JDBC Driver]Error establishing socket. Address already in use: connect brThe error occurred on line 33. We are seeing this error with both database server (odbc/jdbc)

Place Holder table in a query

2004-03-15 Thread Matthew Friedman
Is there any way to create a query and return an additional varible as a place holder so if I want to perform Unions with 3 other queries I can sort on later? I am running SQL2000 server on CF5 Matthew Friedman [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: a href= code...

2004-03-15 Thread Che Vilnonis
thanks all...that's it! -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 11:38 AM To: CF-Talk Subject: RE: a href="" code... mailto:[EMAIL PROTECTED](variables.subject)# Works in most browsers/mail clients AFAIK (certainly not all)

Re: Powerbooks and Coldfusion

2004-03-15 Thread Dick Applebaum
On Mar 15, 2004, at 6:07 AM, Kevin Graeme wrote: Just a word of caution: Apple UK will very likely not support a US market PowerBook. Check with them first. I've known several people who got good deals on their Mac and when they tried to get service were refused because the country code

RE: CFMX JAR File - Round 2

2004-03-15 Thread Dave Watts
I have been attempting to get ColdFusion to recognize the Plumtree Software developers kit that is in Java format.The actual file I am needing is 'edk.jar'. The jar file is located on the server at the following path: c:\Plumtree\ptedk\5.0\devkit\java\WEB-INF\lib\edk.jar I have put

an easy way to replace characters in a MySQL database

2004-03-15 Thread Frederik Van Goolen
Hello, Is there an easy way to replace characters in textfields of a mysql database? We want to replace curly quotes with a 'normal' single quotes. These quotes came in the database by pasting data from a Word document. Are there mysql admin tools available that make this as simple as a find and

Re: Place Holder table in a query

2004-03-15 Thread Mickael
If I understand correctly.Couldn't you just add my placeholder in the fields that you selected?It would display each record as my place holder(or whatever you used) Mike - Original Message - From: Matthew Friedman To: CF-Talk Sent: Monday, March 15, 2004 11:58 AM Subject: Place Holder

RE: CFMX JAR File - Round 2

2004-03-15 Thread Jeff Chastain
Thanks, Dave.I will have to go back and do some research there, but in all likelyhood, there is not a class named 'edk' there. My lack of Java knowledge is showing. Thanks for the help. -- Jeff Quoting Dave Watts [EMAIL PROTECTED]: I have been attempting to get ColdFusion to recognize the

RE: Session Variable

2004-03-15 Thread Robert Redpath
I have also been getting errors as well when session variables for a membership form.(Good to know that IE don't like sessions)I originally put used session variables to prevent duplicate credit card charges. Is there any reason I can't just use hidden form to pass varibales from the credit card

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread Dick Applebaum
Stuart I have been developing with CF since 1998 -- never used anything but a Mac. I currently use a 17 PB (very early 1GHz model), Apple's 23 Studio Flat panel Display, 360 Gig External Firewire HD's, wireless KB mouse. The PB normally runs: --- CFMX 6.1 Developer --- JRun4 Developer ---

RE: Session Variable

2004-03-15 Thread Tangorre, Michael
What kind of values do you want to pass in hidden form fields. They are totally insecure, so I would avoid sensitive data. Mike -Original Message- From: Robert Redpath [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 12:13 PM To: CF-Talk Subject: RE: Session Variable I

Re: CFMX JAR File - Round 2

2004-03-15 Thread Thomas Chiverton
On Monday 15 Mar 2004 17:11 pm, Jeff Chastain wrote: Thanks, Dave.I will have to go back and do some research there, but in all likelyhood, there is not a class named 'edk' there. You can use the 'jar' command to look inside. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749

Re: CFMX JAR File - Round 2

2004-03-15 Thread Dick Applebaum
Jeff I am coming form a Mac OS X perspective. On OS X, you can just drop your jar file into: /Library/Java/Extensions and Java will find it. Further, from the command line you can use the jar commandto list the contents of the jar file I assume you have the equivalent capabilities on a

Re: Place Holder table in a query

2004-03-15 Thread Hugo Ahlenius
Select 'dummy value' as columnname or Select 0 as columnname - 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

Re: Moving to CFMX for J2EE (Linux) from CFMX for J2EE ( WINDOWS)

2004-03-15 Thread Thomas Chiverton
On Monday 15 Mar 2004 16:37 pm, Ciliotta, Mario wrote: that I should specifically look out for. short answer \ /short answer -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5

Re: SOT: 20 meg updater for DWMX 2004

2004-03-15 Thread Thomas Chiverton
On Monday 15 Mar 2004 15:55 pm, Massimo Foti wrote: very happy with it, don't know about the Eclipse plugin: http://www.purpletech.com/xpe/index.jsp Same people - it basicaly adds a button bar that launches the GUI. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997

Very odd error : 48 = 48

2004-03-15 Thread joe hobson
A have a fairly large CF 6.1 / MS SQL Server system that's been growing (code and users) for about 4 years now. We've been running 6.1 for awhile with few problems (except maybe that JDBC problem, rolled back to the old MSSQL drivers). Recently an error has popped up when someone tries to delete

Re: CFMX JAR File - Round 2

2004-03-15 Thread Jeff Chastain
You can use the 'jar' command to look inside. Could I get a little more details/context around this?This is my first attempt working with JAVA - especially within CFMX, so this is a bit new. Thanks -- Jeff - This mail sent through IMP:

RE: [ a good mysql admin application ]

2004-03-15 Thread Barney Boisvert
If you're on Mac OSX, cocoaMySQL is a great little product.I've only used it a little, but I've got a friend who swears by it.Second to that Aquafold is pretty nice, though it doesn't have any understanding of FOREIGN KEYs on innoDB tables, which is annoying to say the least. Cheers, barneyb

RE: Session Variable

2004-03-15 Thread Robert Redpath
I am passing sensitive data. So would it be secure to input the variables into a database on each page, passing the record id, and then querying the DB on a subsequent page to pull the data? If so, can I securely pass the record id via a form and somehow match it to a specific CFID CFTOKEN

Re: CFMX JAR File - Round 2

2004-03-15 Thread Bryan Stevenson
here's a simp,e way to look at the contents of a JAR file for us non-Java folks. 1) rename file adding a .zip extension...so you'd haveedk.jar.zip 2) open and extract files with WinZip 3) voila...now you see the inner workings of your JAR file Cheers Bryan Stevenson B.Comm. VP Director of

Re: CFMX JAR File - Round 2

2004-03-15 Thread Dick Applebaum
jar -tf macromedia_drivers.jar or man jar for complete description HTH Dick On Mar 15, 2004, at 9:27 AM, Jeff Chastain wrote: You can use the 'jar' command to look inside. Could I get a little more details/context around this?  This is my first attempt working with JAVA - especially

Oracle/CF issue apparently resolved

2004-03-15 Thread Richard Crawford
I was receiving an error, Wrong number of type of parameters passed whenever trying to call my Oracle stored procedure from Cold Fusion.I received this error in one stored procedure, fixed it, and then got it with another stored procedure. Both of the stored procedures, as it turned out, were

Re: CFMX JAR File - Round 2

2004-03-15 Thread Rob
On Mon, 2004-03-15 at 09:27, Jeff Chastain wrote: You can use the 'jar' command to look inside. Could I get a little more details/context around this?This is my first attempt working with JAVA - especially within CFMX, so this is a bit new. Just use winzip to open the jar file. And look at

RE: FARCRY

2004-03-15 Thread Nathan C. Smith
I think it is a web-server mapping - virtual directory, you need to add not a CF mapping. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 10:37 AM To: CF-Talk Subject: RE: FARCRY oops, the CF Mappings are /farcry --

Re: CFMX JAR File - Round 2

2004-03-15 Thread Jeff Chastain
This was what I was looking for.Thanks. CFMX is recognizing the classes now - now I just have to figure out what to do with them! Thanks again. -- Jeff Quoting Bryan Stevenson [EMAIL PROTECTED]: here's a simp,e way to look at the contents of a JAR file for us non-Java folks. 1) rename

Re: CFMX JAR File - Round 2

2004-03-15 Thread Rob
On Mon, 2004-03-15 at 09:41, Bryan Stevenson wrote: here's a simp,e way to look at the contents of a JAR file for us non-Java folks. 1) rename file adding a .zip extension...so you'd haveedk.jar.zip on windows you can also right click and choose open with and choose winzip if you dont want to

RE: Moving to CFMX for J2EE (Linux) from CFMX for J2EE ( WINDOWS)

2004-03-15 Thread Dave Carabetta
I was wondering if anyone on this list might know if there is anything that I need to watch out for in my conversion from CFMX(J2EE) for Windows to CFMX(J2EE) for Linux. I will be moving off most of our apps to the Linux boxes. We use Oracle and SQL Server as the DB's for the application

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread Rob
On Mon, 2004-03-15 at 09:20, Dick Applebaum wrote: I currently use a 17 PB (very early 1GHz model), Apple's 23 Studio Flat panel Display, 360 Gig External Firewire HD's, wireless KB mouse. Rob turns green with envy :-/ - you are a lucky man. --- CFMX 6.1 Developer --- JRun4 Developer ---

Javascript select code?

2004-03-15 Thread Burns, John D
I've got two multiple selects that I'm using for a mass mail program. One has a list of all of the available email addresses in it, the other starts off empty.When someone selects some addresses from the first box and clicks a button, I want to move the selected options over to the other textbox

re: Grabbing username account from Windows login screen

2004-03-15 Thread Bushy
Hi, To access my app I have the user authenticate using windows authentication. I then pass the username to my application via cfset auth = listLast(#CGI.AUTH_USER#, \) Now the server has been put on our domain. Rather than have the windows authentication I would prefer to grab the username used

RE: Javascript select code?

2004-03-15 Thread Tangorre, Michael
qForms.www.pengoworks.com It is one of the most comprehensive JS libraries out there and works in all the browsers (last I knew). Look at the container examples. Dan makes it very easy to accomplish what you are trying to do. Mike I've got two multiple selects that I'm using for a mass mail

Dynamic search

2004-03-15 Thread Fabio Nunes
I need some guidance for rebuilding a site search. The site has pretty much dynamic content, in different areas, news, product catalog, trainning, etc... more than 20 in total, with a lot of dynamic pages in each area. I need the whole site to be searchable and I need one search looking for

Re: Moving to CFMX for J2EE (Linux) from CFMX for J2EE ( WINDOWS)

2004-03-15 Thread Kevin Graeme
Verity has problems on Linux. We can't get it to work and we're looking at switching to Lucene. Filesystem path directories are delimited by / instead of \. Case sensitivity. -Kevin HI, I was wondering if anyone on this list might know if there is anything that I need to watch out for in

Re: Javascript select code?

2004-03-15 Thread Charlie Griefer
while I second the Pengoworks recommendation by Mr. Tangorre, i've got the following that should work: ?xml version=1.0 encoding=iso-8859-1? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html

SOT: SQL QUESTION

2004-03-15 Thread Tangorre, Michael
SQL SERVER 2000 CFMX 6.1 I have three tables called: OPPORTUNITY, OPPORTUNITY_TEXT, TEXT_TYPE OPPORTUNITY_TEXT has two columns making the PK: TEXT_TYPE_ID and OPPORTUNITY_ID. In addition there is a column called OPPORTUNITY_TEXT_DATA which holds the actual text I am after [varchar(6000)]. What I

RE: CFMX JAR File - Round 2

2004-03-15 Thread Dave Watts
Thanks, Dave.I will have to go back and do some research there, but in all likelyhood, there is not a class named 'edk' there. My lack of Java knowledge is showing. As a bunch of other people have already pointed out, you can get inside the JAR file to see what's there. Ideally, though,

RE: CFMX JAR File - Round 2

2004-03-15 Thread Jeff Chastain
Thanks for the help Dave.I am trying to get more info out of Plumtree as we speak. Thanks again, -- Jeff Quoting Dave Watts [EMAIL PROTECTED]: Thanks, Dave.I will have to go back and do some research there, but in all likelyhood, there is not a class named 'edk' there. My lack of

CFMX DevNet Edition

2004-03-15 Thread Phillip B
I used the devnet edition of CFMX to test some code. Now I want to upgrade the devnet version to enterprise. I put the enterprise serial in but it still sticks the meta tag on the top of the pages. meta NAME=ColdFusionMXEdition CONTENT=ColdFusion DevNet Edition - Not for Production Use. Do I

RE: CFMX DevNet Edition

2004-03-15 Thread Barney Boisvert
Yerp. -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 11:43 AM To: CF-Talk Subject: CFMX DevNet Edition I used the devnet edition of CFMX to test some code. Now I want to upgrade the devnet version to enterprise. I put the enterprise

CFEXECUTE to do ls on linux box

2004-03-15 Thread Scott Weikert
Hey gang, I'm having issues trying to figure out the params to use cfexecute to run the command ls | wc on a particular folder on a Linux server running CFMX. Basically the wc part returns file counts and overall total file size (I believe)... in the form of 00 0 (for an empty dir). All I'm

CFCs: Overloaded Constructors ?

2004-03-15 Thread Jamie Jackson
What are some workarounds for (pseudo-) overloading constructors in CFMX 6.1? Thanks, Jamie [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CFMX DevNet Edition

2004-03-15 Thread Phillip B
Suck. Thanks Barney Boisvert wrote: Yerp. -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 11:43 AM To: CF-Talk Subject: CFMX DevNet Edition I used the devnet edition of CFMX to test some code. Now I want to upgrade the devnet

Re: Help me figure out cfexecute problem?

2004-03-15 Thread Jamie Jackson
On Fri, 12 Mar 2004 20:38:22 -0500, in cf-talk you wrote: I'm not sure how to debug this, as I'm pretty much out of ideas. I'd think it a permissions problem, if it weren't for the facts: AFAIK, all the necessary resources seem to be read/written/executed: 1. the command runs (but

RE: CFCs: Overloaded Constructors ?

2004-03-15 Thread Paul Kenney
You can have one method that has optional arguments for the different variations on the overloaded method.For each valid argument combination, you can run separate code, maybe even a separate private method for each. Paul Kenney WebMaster, CorporateWarriors.com 916-663-1963 -Original

Re: a href=

2004-03-15 Thread Morgan Senkal
You can also use cc and bcc for carbon copy and blind carbon copy the same way: mailto:[EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED] I once saw some code that could be used in a a href="" tag to automatically 'populate' the Subject line of an email. 1. mailto:[EMAIL

Re: sot: Powerbooks and Coldfusion

2004-03-15 Thread Dick Applebaum
On Mar 4, 2004, at 10:16 PM, Rob wrote: Actually I would say its better then a lot of OSs out there wouldn't you? :-D That fact that some very smart non-Mac developers opt for PowerBooks seems to suggest this, too. I honestly don't know -- I have never run win or Linux other than for a

RE: a href=

2004-03-15 Thread Adkins, Randy
Correct me if I am wrong, but this will only work with some mail clients. Not all mail clients will handle the subject line nor CC and BCC. -Original Message- From: Morgan Senkal [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 2:20 PM To: CF-Talk Subject: Re: a href=""> You can

RE: Grabbing username account from Windows login screen

2004-03-15 Thread Ian Skinner
If you check Integrated Windows Authentication and Uncheck anonymous authentication.The CGI_Auth_user will be populated with the user name of the person who logged on the client machine. We are using this functionality extensively here.Let me know if you would like to see some of what we have

Postal Address Validation CFMX

2004-03-15 Thread Justin Hansen
Does anyone do any Postal Address validation with CF? What are you using? Webservices? XML? USPS? I need to jump into this ASAP... Justin [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Help me figure out cfexecute problem?

2004-03-15 Thread Ian Skinner
One important thing to remember is that a run-direct command runs under you, the users authentication and permissions. The cfexecute commands runs under the authentication and permissions of the CF-service, usually very basic by default. HTH -- Ian Skinner Web Programmer

Re: CFCs: Overloaded Constructors ?

2004-03-15 Thread Jamie Jackson
Okay, pretty much what I figured. Thanks for the confirmation, Jamie On Mon, 15 Mar 2004 12:07:43 -0800, in cf-talk you wrote: You can have one method that has optional arguments for the different variations on the overloaded method.For each valid argument combination, you can run separate

Re: CFEXECUTE to do ls on linux box

2004-03-15 Thread Rob
On Mon, 2004-03-15 at 11:54, Scott Weikert wrote: Hey gang, I'm having issues trying to figure out the params to use cfexecute to run the command ls | wc on a particular folder on a Linux server running CFMX. Basically the wc part returns file counts and overall total file size (I

RE: Grabbing username account from Windows login screen

2004-03-15 Thread Douglas.Knudsen
IIRC, the client machine has to be a member of this domain your server is in.I recall my LAN folks setting user to be able to login to other domains when logging into their machines. Doug -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 1:25 PM To:

RE: Postal Address Validation CFMX

2004-03-15 Thread cf-talk
Have you seen these guys? http://www.serviceobjects.com/products/dots_address.asp -Novak -Original Message- From: Justin Hansen [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 12:30 PM To: CF-Talk Subject: Postal Address Validation CFMX Does anyone do any Postal Address

Even more CF and Oracle stuff: Closing a cursor

2004-03-15 Thread Richard Crawford
After I've executed an Oracle Stored procedure and brought the results into Cold Fusion, is there a way to close the ref cursor within Cold Fusion?I've tried calling a second stored procedure that closes the cursor, but this doesn't seem to do the trick. Is it even necessary to close the

  1   2   >