RE: OT - CF varible use in an online editor

2005-06-08 Thread Andy Mcshane
Dan, am I correct in thinking that you use a web based editor for doing mail merges? I am trying to find an acceptable solution for allowing users to create documents on line that can be used in an online mail merge i.e. create a word document, cut paste into text editor, insert coldfusion

RE: using excel functions in cfmx

2005-06-08 Thread Robertson-Ravo, Neil (RX)
Hm http://www.scantours.com/ice_hotel.htm some people think it is a good idea. -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 02:04 To: CF-Talk Subject: RE: using excel functions in cfmx Excel is not designed to support web apps so even if

RE: CFMX7 and COM

2005-06-08 Thread Paolo Piponi
It is a complex COM object made in-house that we have had for about 6 years and works very well. We have multiple COM objects but only one can be instantiated in MX. Others, all of which are needed, do not work and return the error I gave. So permissions do not seem to be an issue (and I did play

Re: OT - CF varible use in an online editor

2005-06-08 Thread Dan O'Keefe
Andy, I think we are close. Yes, I use FCKEditor for creating the document and inserting my placemarkers, similar to how you would set up the doc in Word for a mail merge. Now if users are going to create your documents, you would have to supply them a list of placemarkers that can be used, and

Re: Unicode and GetProfileString?

2005-06-08 Thread Paul Hastings
Jake . wrote: I have an app that reads in certain settings, including things like app name, admin email, mail server address, and a range of settings (all set as 1 or 0). The settings should be no problem, but if you have a unicode app name, then obviously, that's not going to work. probably

CFMX 7 XmlSearch on IIS 6 metabase

2005-06-08 Thread Calvin Ward
Has anyone used XmlSearch() on the IIS 6 Metabase? No matter what criteria I pass, CFMX 7 seems to return no results. For example: cfset results = XmlSearch(metabaseXMLObject,/configuration) Gets me nothing (note: there is also a simple parse, file read, and dump surrounding this code).

Re: CFMX 7 XmlSearch on IIS 6 metabase

2005-06-08 Thread Massimo Foti
cfset results = XmlSearch(metabaseXMLObject,/configuration) Gets me nothing (note: there is also a simple parse, file read, and dump surrounding this code). Dumping metabaseXMLObject gives me the full XML object. I'm able to loop through elements such as IIsWebServer as an array as

Re: CFMX 7 XmlSearch on IIS 6 metabase

2005-06-08 Thread Calvin Ward
Unfortunately I can't use those tools at my current location. cfset results = XmlSearch(metabaseXMLObject,//configuration) Also returns no results. There is a namespace reference in the configuration node configuration xmlns=urn:microsoft-catalog:XML_Metabase_V54_0 And removing the xmlns

SFTP?

2005-06-08 Thread Chris Terrebonne
Can CF do secure FTP (SFTP)? If not, is there a Java class that can be used in CF that will? Any advise? Thanks, Chris This email and its attachments may contain confidential information which is intended only for the use of the person(s) named above. If you are not the intended recipient,

session variables or multiple pages

2005-06-08 Thread Daniel Kessler
My boss has indicated to me that he would like to open up two PC IE browser windows, log into our application under two different logins and view the data from each of those independently. I had been keeping information in cookies, but since they'd share a cookie, I migrated the information

Re: session variables or multiple pages

2005-06-08 Thread John Beynon
using another browser :) eg, IE and firefox - one logged in as one user, the other as the other user. jb. On 6/8/05, Daniel Kessler [EMAIL PROTECTED] wrote: My boss has indicated to me that he would like to open up two PC IE browser windows, log into our application under two different logins

RE: session variables or multiple pages

2005-06-08 Thread Kerry
CF will give 2 windows from the same machine the same session, if the browser is the same. If your boss wouldnt mind using firefox for one window and IE for the other window, it should work. -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 14:10 To:

RE: session variables or multiple pages

2005-06-08 Thread Paolo Piponi
Or, if this works with the rest of your site, dynamically change the application name in CFAPPLICATION. I've never tried this but the sessions should then not clash as although the same cookie, it will be a different application. Might be worth a try. Paolo -Original Message- From:

Re: Unicode and GetProfileString?

2005-06-08 Thread Jake .
Jake . wrote: I have an app that reads in certain settings, including things like app name, admin email, mail server address, and a range of settings (all set as 1 or 0). The settings should be no problem, but if you have a unicode app name, then obviously, that's not going to work. probably

Re: CFMX 7 XmlSearch on IIS 6 metabase

2005-06-08 Thread Massimo Foti
Unfortunately I can't use those tools at my current location. This one is just a set of HTML and JavaScript files that run inside IE (there is a Mozilla version too): http://www.topxml.com/xpathvisualizer/ There is a namespace reference in the configuration node configuration

RE: session variables or multiple pages

2005-06-08 Thread Robertson-Ravo, Neil (RX)
You could write a process which identifies a user per session - maybe a cookie. You wont want to open up more than one application I think - that would be overkill. -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 14:10 To: CF-Talk Subject: session

Re: CFMX 7 XmlSearch on IIS 6 metabase

2005-06-08 Thread Calvin Ward
I have installation restrictions where I'm at right now :( Well, my short term fix was to replace that xmlns attribute in its entirety with nothing using ReplaceNoCase. That of course feels very clunky and not future proof at all! After doing that all of my xpath queries worked great. - Calvin

Re: CFMX 7 XmlSearch on IIS 6 metabase

2005-06-08 Thread Massimo Foti
I have installation restrictions where I'm at right now :( There is nothing to install inside xpathvisualizer, just unzip and open an html file inside your browser Well, my short term fix was to replace that xmlns attribute in its entirety with nothing using ReplaceNoCase. That of course

Macromedia's Search Broken?

2005-06-08 Thread Duane Boudreau
One of my clients is experiencing issues with ODBC connections on their CF 6. I think there was a known bug in one of the MX releases but it was fixed. I just went to Macromedias site to search for it and got this error: Error Occurred While Processing Request Element AREAS.AREA is undefined in

RE: SFTP?

2005-06-08 Thread Dave Watts
Can CF do secure FTP (SFTP)? No. If not, is there a Java class that can be used in CF that will? You could try this: http://www.jscape.com/sftp/ I haven't tried it myself, though. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

FTPS? (was RE: SFTP?)

2005-06-08 Thread Chris Terrebonne
Actually, I had my acronym backwards (which apparently makes a HUGE difference :). I am really looking for FTPS ability (FTP over SSL). Sorry for the confusion. Any idea where I can find a CF resource for that protocol? Thanks again, Chris [EMAIL PROTECTED] 06/08/05 08:58AM Can CF do

Re: Unicode and GetProfileString?

2005-06-08 Thread Raymond Camden
A resourcebundle. Used to localize a site (ie, translates Submit to the language X version of Submit, La Submit ;). For an example, download blogcfc from my site and check out the resourcebundle.cfc. On 6/8/05, Jake. [EMAIL PROTECTED] wrote: Jake . wrote: I have an app that reads in certain

RE: Unicode and GetProfileString?

2005-06-08 Thread Robertson-Ravo, Neil (RX)
Let's hope that isnt your translation for Submit :-) LOL -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 15:04 To: CF-Talk Subject: Re: Unicode and GetProfileString? A resourcebundle. Used to localize a site (ie, translates Submit to the language

RE: Should we support Access?

2005-06-08 Thread Matt Osbun
I just ran the following: cfquery name=qryCreateTable datasource=temp CREATE TABLE myfile ( ID counter not NULL PRIMARY KEY, PostDate datetime NULL , ModDate datetime NULL) /cfquery cfquery name=qryDateTest datasource=temp insert into myfile (PostDate, ModDate) values(

need advice on this application (cfc/xml/ini)

2005-06-08 Thread Ida Chen
I am writing a web application that can automatically generate a word document. Users can select the grouping criteria and the generated document will show appropriate content according to what criteria is selected. More specifically, users can choose the name of the academic program and print

RE: FTPS? (was RE: SFTP?)

2005-06-08 Thread Paul Vernon
In that case, you could proxy the connection through stunnel. Http://www.stunnel.org Paul ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: FTPS? (was RE: SFTP?)

2005-06-08 Thread Ken Ferguson
http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=26929forumid=4 (sorry if that wraps) --Ferg Chris Terrebonne wrote: Actually, I had my acronym backwards (which apparently makes a HUGE difference :). I am really looking for FTPS ability (FTP over SSL). Sorry for the

RE: session variables or multiple pages

2005-06-08 Thread RADEMAKERS Tanguy
By default, CF uses cookies to hold the session key, so you are running into the same basic problem. Solution is to use cfapplication ... setclientcookies=No and then pass CFID and CFToken by url or hidden form field on every page. Depending on the size of your app, you might have your work cut

RE: using excel functions in cfmx, now off topic

2005-06-08 Thread mayo
By the way I went to the Ice Hotel. It was absolutely beautiful -- and not cold at all for anyone who goes backpacking. mayo -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 4:29 AM To: CF-Talk Subject: RE: using excel functions

MX CSS Dynamic Menus

2005-06-08 Thread Robertson-Ravo, Neil (RX)
Anyone using Interakt's CSS menu stuff which plugs into DW? For those that have does it do cross frame display of menus...? i.e. rollover top menu in frame 1 and menu appears in frame 2... -Original Message- From: Chris Terrebonne [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 14:59

Verity implementation strategies

2005-06-08 Thread Pete Ruckelshaus
I'm implementing a Verity search for the first time on an internal application. All of our data is in the database, so I'll be creating a collection from a query result set. Before I dive in, though, I want to have my strategy clear in my mind so that the search works effectively and keeps new

Re: session variables or multiple pages

2005-06-08 Thread S . Isaac Dealey
My boss has indicated to me that he would like to open up two PC IE browser windows, log into our application under two different logins and view the data from each of those independently. I had been keeping information in cookies, but since they'd share a cookie, I migrated the

Re: asynch cfml gateway - working example

2005-06-08 Thread S . Isaac Dealey
Windows hosts files? Potential external/unknown variables? Hmmm... What you are talking about? Give me a potential point of break. Merely that the http protocol is designed to provide communication between disparate systems, and as such the http request leaves the current system to initiate

Update Dilemma

2005-06-08 Thread Dlumenau
Hi, I'm a complete newbie at Coldfusion, and have a pretty basic question. I'm trying to get an update page working, and it keeps returning the error: Error Executing Database Query. Syntax error in UPDATE statement. The error occurred in

Re: Sorting of Nested Structures Headaches

2005-06-08 Thread Kenton Gray
Would using an XML object be more effective? Is there a large performance penalty for that? I am amazed that something as seemingly essential as order is uncontrollable. The list sort works, but I can imagine this issue coming up again, and it could make the code difficult to maintain.

Re: Update Dilemma

2005-06-08 Thread Greg Morphis
what is #update.ID# ? look at the source for the page before submitting and check the value of it. If it's nothing or a string, there's your problem... ~| Logware (www.logware.us): a new and convenient web-based time tracking

Re: FW: Get New Record ID in ORACLE

2005-06-08 Thread Adrocknaphobia
James, Interesting test. This strongly contradicts what our DBAs have been telling me. I'm going to bring this up with them. (I love when they are proved wrong!). The only thing is that you are using only a single session. ie. same user to perfrom both actions since I'm assuming u/p is hardcoded

RE: session variables or multiple pages

2005-06-08 Thread Jim Davis
-Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 10:38 AM To: CF-Talk Subject: Re: session variables or multiple pages There's not a solution that's both reliable and easy to implement... Some combinations of windows/IE versions

RE: FTPS? (was RE: SFTP?)

2005-06-08 Thread Dave Watts
Actually, I had my acronym backwards (which apparently makes a HUGE difference :). I am really looking for FTPS ability (FTP over SSL). Sorry for the confusion. Any idea where I can find a CF resource for that protocol? The library I pointed you to does FTPS as well as SFTP. Dave

Re: asynch cfml gateway - working example

2005-06-08 Thread S . Isaac Dealey
Here's a quick example of using the Asynchronous CFML Gateway that is setup to demonstrate a 100X performance improvement (from a user's perspective) vs synchronous CFML execution for long-running tasks that can be run in parallel. Hope that helps (watch the URL wrap):

Re: nevermind -- asynch cfml gateway - working example

2005-06-08 Thread S . Isaac Dealey
Frustratingly the readme is virtually illegible under Windows... :-/ Use Wordpad instead of Notepad ;) -Joe Well that's frustrating... it'd be nice if people named files to be more portable... thanks Joe... s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add

Re: Update Dilemma

2005-06-08 Thread Jerry Johnson
Your cfif switch is trying to compare: var=NULL Valid SQL syntax var=1 var='1' var IS NULL I think. Jerry Johnson On 6/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I'm a complete newbie at Coldfusion, and have a pretty basic question. I'm trying to get an update page

Re: Update Dilemma

2005-06-08 Thread Dlumenau
Is that the NULL on Line 63? Dan In a message dated 08/06/2005 16:03:25 GMT Daylight Time, [EMAIL PROTECTED] writes: Your cfif switch is trying to compare: var=NULL Valid SQL syntax var=1 var='1' var IS NULL I think. Jerry Johnson On 6/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED]

Statistical Functions and Boxplots

2005-06-08 Thread Ryan Edgar
I have a client who wants some data represented by boxplots. I've been unable to find software for CF which will automatically calculate and graph the required information (upper quartile, lower quartile, median) from raw data passed, so I need to find a way of performing these calculations

Equivalent to Server.MapPath

2005-06-08 Thread SStewart
In ASP, the variable Server.MapPath can extrapolate the path of a given file is there an equivalent CF call? Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 300 Chantilly, VA 20151 Phone: (703) 995-1737 Fax: (703) 834-5527

Re: Equivalent to Server.MapPath

2005-06-08 Thread Adam Haskell
ExpandPath() Adam H On 6/8/05, SStewart [EMAIL PROTECTED] wrote: In ASP, the variable Server.MapPath can extrapolate the path of a given file is there an equivalent CF call? Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt

Re: Equivalent to Server.MapPath

2005-06-08 Thread Charlie Griefer
see: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/functi19.htm#wp1100017 all system related functions. On 6/8/05, SStewart [EMAIL PROTECTED] wrote: In ASP, the variable Server.MapPath can extrapolate the path of a given file is there an equivalent CF call? Scott A. Stewart,

CFML Language History

2005-06-08 Thread Emanuel Costa
Does anyone knows if this technote has been updated to MX 7 or if it will soon? http://www.macromedia.com/go/tn_18791 Thanks -- =+=+=+=+=+=+=+=+=+=+=+=+ Emanuel Costa site: http://www.emanuelcosta.com msn: [EMAIL PROTECTED] ICQ: 8013683 Orkut: Emanuel Costa Skype: Emanweb

Re: Update Dilemma

2005-06-08 Thread Greg Morphis
It would be all of them, you'd have to change them all from = null to is null On 6/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is that the NULL on Line 63? Dan In a message dated 08/06/2005 16:03:25 GMT Daylight Time, [EMAIL PROTECTED] writes: Your cfif switch is trying to

Re: CFMX 7 XmlSearch on IIS 6 metabase

2005-06-08 Thread Calvin Ward
I know, but the restriction extends to placing anything from external sources on the workstation. - Calvin On 6/8/05 9:39 AM, Massimo Foti [EMAIL PROTECTED] wrote: I have installation restrictions where I'm at right now :( There is nothing to install inside xpathvisualizer, just unzip and

RE: Sorting of Nested Structures Headaches

2005-06-08 Thread Jim Davis
-Original Message- From: Kenton Gray [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 10:41 AM To: CF-Talk Subject: Re: Sorting of Nested Structures Headaches Would using an XML object be more effective? Is there a large performance penalty for that? I am amazed that

RE: Get New Record ID in ORACLE

2005-06-08 Thread RADEMAKERS Tanguy
Adam, 1) Even with the same username/password, oracle treats it as two sessions. If you have TOAD you can verify this with the session browser. 2) stored procs don't change the transaction handling of oracle (unless, or course, you manually commit within the body of the proc) - ie cf handles

Secure WSDL Web Services (Advanced CFML problem)

2005-06-08 Thread Jordan Michaels
I'm currently working with a client who's attempting to consume a secure WSDL web service which uses a security mechanism similar to PayPal's web service. When you sign up to use PayPal's web service, they send you the public key which you then install in your JVM. (It's like installing a public

Re: CFML Language History

2005-06-08 Thread Charlie Griefer
not judging by the last updated date on that page :) On 6/8/05, Emanuel Costa [EMAIL PROTECTED] wrote: Does anyone knows if this technote has been updated to MX 7 or if it will soon? http://www.macromedia.com/go/tn_18791 Thanks -- =+=+=+=+=+=+=+=+=+=+=+=+ Emanuel Costa site:

Re: Update Dilemma

2005-06-08 Thread Dlumenau
Nope...still no joy It works with one field...but not with all of them... Here are the two codes... THIS ONE WORKS cfset CurrentPage=GetFileFromPath(GetTemplatePath()) cfif IsDefined(FORM.MM_UpdateRecord) AND FORM.MM_UpdateRecord EQ form1 cfquery datasource=artists UPDATE Sheet1 SET

RE: MX CSS Dynamic Menus

2005-06-08 Thread Emmet McGovern
I would venture to say no. I'll have to fire it up and check if I get a chance. We stopped using it because of the incompatibilities with flash and somewhat slower performance in IE. emmet -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: CFML Language History

2005-06-08 Thread Emanuel Costa
not judging by the last updated date on that page :) On 6/8/05, Emanuel Costa [EMAIL PROTECTED] wrote: I mean by another technote or website! Since it is just plain html in the cf_history.zip file. ~| Find out how CFTicket

RE: Secure WSDL Web Services (Advanced CFML problem)

2005-06-08 Thread Mark A Kruger
You can try this: http://mkruger.cfwebtools.com/index.cfm?mode=entryentry=8E44925A-B73D-E3AD- 709D4E02FD6D4588 It may not apply to CFMX 7 (it's an old note). -Mark -Original Message- From: Jordan Michaels [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 10:24 AM To: CF-Talk

Re: CFML Language History

2005-06-08 Thread Emanuel Costa
not judging by the last updated date on that page :) On 6/8/05, Emanuel Costa [EMAIL PROTECTED] wrote: And also, I said IF IT WILL SOON... So I wanna know if they (or anyone else) are planning to update soon and not only if that technote has been updated! If so, I may join efforts to help

Re: REPOST Re: FedEx Shipping custom tags

2005-06-08 Thread Bryan Stevenson
Oh come nowI see posts about FedEx integration all the time on listwhere are ya all now?? ;-) 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: REPOST Re: FedEx Shipping custom tags

2005-06-08 Thread Rey Bango
Hi Bryan. Go to houseoffusion.com and do a search on it bud. It'll get you faster results. Rey... Bryan Stevenson wrote: Oh come nowI see posts about FedEx integration all the time on listwhere are ya all now?? ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development

Secure WSDL Web Services (Advanced CFML problem)

2005-06-08 Thread Robert Munn
You could use Java to invoke the Web service. It takes some time to get through the setup the first time you want to do it, but you can use WSDL2Java to generate Java classes to invoke the Web service, then you can write a wrapper class in Java to access the Web service classes. Calling your

Re: REPOST Re: FedEx Shipping custom tags

2005-06-08 Thread Lee
I posted a while back with little response. I just needed to inline the fedex site with a tracking number and this is what I learned. Use the following with FedExID being the tracking number.

cannot install iis connector

2005-06-08 Thread Russ
I have windows xp pro sp2, and I'm trying to install CF MX 6.1, and it installs everything, except at the end tells me that it could not install the IIS connector. When I try running the bat file that installs it, I get the following: WARNING! This will install the ColdFusion MX IIS

Re: Secure WSDL Web Services (Advanced CFML problem)

2005-06-08 Thread Jordan Michaels
Thanks Mark. This actually was helpful in helping me understand WHY the request was failing, which I didn't quite understand before I read your blog entry there. The PFX file that was sent to us contained the CA cert which I extracted from the PFX file (using openssl) and imported it into the

RE: CFML Language History

2005-06-08 Thread Kerry
TechNote Details ID: tn_18791 Product(s): ColdFusion Versions: 4, 4.5, 5, MX, MX 6.1 -Original Message- From: Emanuel Costa [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 16:17 To: CF-Talk Subject: CFML Language History Does anyone knows if this technote has been updated to MX 7 or if it

XML Directory Listing

2005-06-08 Thread Kevin Aebig
Hey all, I'm trying to recursively list a directory structure as xml. Has anyone conquered this before (don't want to re-invent the wheel if theres no need)? Sincerely, Kevin -- http://www.keslabs.com Coldfusion Remote Dashboard :: http://www.keslabs.com/crd

CF + Lazlo

2005-06-08 Thread Yves Arsenault
Hello, Does or has anyone used Lazlo systems along side ColdFusion in delivering flash based sites? If so, what was your experience with Lazlo like? I'm assuming that they were running on different boxes, or were they? Any hardware setup comments? Thanks a bunch. -- Yves Arsenault This

Re: MX CSS Dynamic Menus

2005-06-08 Thread Yves Arsenault
While I didn't use that CSS menu, I've used a couple of list based menus... I choped one up to serve up to 3 layers of menus and to have it database driven... Getting IE to like it was a slight pain. Yves On 6/8/05, Emmet McGovern [EMAIL PROTECTED] wrote: I would venture to say no. I'll have

RE: Secure WSDL Web Services (Advanced CFML problem)

2005-06-08 Thread Mark A Kruger
Sounds like progress. You might try dropping Lewis Sellers a line (www.intrafoundation.com). He unpacked the paypal API into a CFX tag - but as I recall he had to alter the global SSL class with each call (which could cause problems with other SSL calls during the duration of the request/response.

Crystal reports

2005-06-08 Thread Andy Jarrett
Hi there, I cant seem to find this anywere but is it possible to pass parameters to Crystal (11) via CFMX 6.1? The report is expecting an ID to be passed to it i.e. 200 which in turn passes to a Stored Procedure (on MSSQL) to create the query. Cheers for any help Andy J

Re: Update Dilemma

2005-06-08 Thread Keith Gaughan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: I'm a complete newbie at Coldfusion, and have a pretty basic question. I'm trying to get an update page working, and it keeps returning the error: Error Executing Database Query. Syntax error in UPDATE

Re: Get New Record ID in ORACLE

2005-06-08 Thread Adrocknaphobia
1) No. Not true. I have a public website that has over 5k oracle users. 1 user account is used for the public (ie. people who do not log in). They all share the same session. When you look at active sessions in oracle there is only 1 entry for the public account. Unless that account is connecting

Re: Verity implementation strategies

2005-06-08 Thread Pete Ruckelshaus
Followup question, is there any way to specify the order of column output (i.e. like an SQL order by [column_name] statement) in a search result set? I'd rather avoid anything hack-ish like using a QoQ to sort. Thanks, Pete ~|

Re: Unicode and GetProfileString?

2005-06-08 Thread Paul Hastings
Jake . wrote: Sorry, rb? yes, resource bundle. see this example: http://www.sustainablegis.com/unicode/resourceBundle/javaRB.cfm ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

RE: FTPS? (was RE: SFTP?)

2005-06-08 Thread Chris Terrebonne
Thanks for the help everyone. I'll start digging through those libs and see what I can use. Thanks again, Chris [EMAIL PROTECTED] 06/08/05 10:06AM Actually, I had my acronym backwards (which apparently makes a HUGE difference :). I am really looking for FTPS ability (FTP over SSL).

neuromancer

2005-06-08 Thread Paul
I guess I'm not the only person on the list experimenting with Neuromancer, and I wonder if anyone else has seen this error. I'm simply trying to run the thinarray.html test page included with the distribution and I am getting a js error on line 25: 'ThinArray' is undefined. The other test

Re: neuromancer

2005-06-08 Thread Barney Boisvert
The API changed at some point, not exactly sure when. Might just be a case of the example not being updated to reflect that. ThinArray used to be defined in 'collections.js', and then was split out into 'thinarray.js'. Not sure if which version you've got, but if you've got a 'thinarray.js'

Re: neuromancer

2005-06-08 Thread Adrocknaphobia
Paul, Mike started an AJAX list. You'll probably find some answers there. Although traffic on that list is minimal at best. -Adam On 6/8/05, Paul [EMAIL PROTECTED] wrote: I guess I'm not the only person on the list experimenting with Neuromancer, and I wonder if anyone else has seen this

RE: neuromancer

2005-06-08 Thread Paul
Thanks for the idea, Barney. thinarray.js was already included in the demo file. I'm still not ruling out user error - can anyone duplicate this or am I the lucky one? -pm -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 11:59 AM To:

CF and Java Interfaces

2005-06-08 Thread Chris Terrebonne
I am trying to use CF to access a Java class method. One of the required arguments is an object extended from an interface. Using createObject() to instantiate the object, then passing it to the method as an argument causes an error because the interface is abstract and must be extended.

RE: Update Dilemma

2005-06-08 Thread Emmet McGovern
What's the best way to move a directory with a ton of folders and files in it? Recursive? Executable? Emmet ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: CF and Java Interfaces

2005-06-08 Thread Barney Boisvert
You can only use the interface on Java objects. So you'll need a concrete Java object that implements the interface. Just instantiate that concrete object and pass it into your method. The type system that CF uses is entirely divorced from the type system that Java uses. There are a couple

Re: CF and Java Interfaces

2005-06-08 Thread Nathan Strutz
Perhaps there's already a java object that impliments this interface? Look around to see if there's anything that impliments your target class. Otherwise, you could make one in java and createObject() it in CF. -nathan strutz Chris Terrebonne wrote: I am trying to use CF to access a Java

RE: Update Dilemma

2005-06-08 Thread Emmet McGovern
Woops.. didn't mean to hijack. -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 2:26 PM To: CF-Talk Subject: RE: Update Dilemma What's the best way to move a directory with a ton of folders and files in it? Recursive? Executable? Emmet

Re: Statistical Functions and Boxplots

2005-06-08 Thread Jochem van Dieten
Ryan Edgar wrote: I have a client who wants some data represented by boxplots. I've been unable to find software for CF which will automatically calculate and graph the required information (upper quartile, lower quartile, median) from raw data passed, so I need to find a way of performing

RE: Get New Record ID in ORACLE

2005-06-08 Thread RADEMAKERS Tanguy
Adam, 1) No. Not true. I have a public website that has over 5k oracle users. 1 user account is used for the public (ie. people who do not log in). They all share the same session. When you look at active sessions in oracle there is only 1 entry for the public account. Unless that account is

Re: Get New Record ID in ORACLE

2005-06-08 Thread Douglas Knudsen
1) huh? each connection to Oracle from CF creates a new session. If you happen to have connection pooling on in the ColdFusion DSN settings, then yes you would only see a fixed set of sessions as they are reused, having this set to one would get what you are seeing perhaps. If you have

Re: neuromancer

2005-06-08 Thread Rob
The thinarray.js library is no longer included in the distro for copyright reasons (some people want to show some people some things about stuff - hows that for vague) - I should have taken the test file out too sorry about that On 6/8/05, Paul [EMAIL PROTECTED] wrote: Thanks for the idea,

Source control

2005-06-08 Thread Burns, John D
What does everyone use for source control? Preferrably something that can handle different types of programming languages (CF, ASP, ASP.net, etc) I've use SourceSafe before but I'm just curious what other stuff may be out there that you use. Integration or simplicity to use with Dreamweaver and

Re: Source control

2005-06-08 Thread Joe Rinehart
Hey John, I've used VSS and CVS, but installed Subversion today and I have to say it's the smoothest I've seen. Great Windows instructions at: http://blogs.clearscreen.com/migs/archive/2005/01/21/824.aspx -Joe On 6/8/05, Burns, John D [EMAIL PROTECTED] wrote: What does everyone use for

Re: Source control

2005-06-08 Thread Barney Boisvert
I use CVS and Subversion. Slowly making a full migration from CVS to SVN, but it takes time to do that, and I don't have an overabundance of it. ;) All my new projects go into SVN though. I believe that Visual SourceSafe is the only thing that natively integrates with Studio or Dreamweaver,

Re: Source control

2005-06-08 Thread Charles Heizer
Check out seapine.com, works the same on multiple platforms and integrates with Dreamweaver, .Net Studio, Eclipse, and many more... I use it and love it. - Charles On 6/8/05 12:50 PM, Burns, John D [EMAIL PROTECTED] wrote: What does everyone use for source control? Preferrably something

Re: Source control

2005-06-08 Thread Douglas Knudsen
this question comes up often around here http://www.houseoffusion.com/cf_lists/threads.cfm/4 search away ace! I've been using CVS and Tortoise. Tortoise simply RAWKS for its ease of use. At the moment though I'm moving to Dimensions as its standard in my company...speaking of, I've never seen

RE: neuromancer

2005-06-08 Thread Paul
Vague indeed! Is there a way to accomplish the same end without it? If I'm not really great with advanced js might I be better off trying the cfajax package instead? -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 1:47 PM To: CF-Talk Subject: Re:

RE: Source control

2005-06-08 Thread Jim Davis
-Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 3:51 PM To: CF-Talk Subject: Source control What does everyone use for source control? Preferrably something that can handle different types of programming languages (CF, ASP, ASP.net,

Re: neuromancer

2005-06-08 Thread Barney Boisvert
Rob, is thinarray.js still available somewhere for download? On 6/8/05, Rob [EMAIL PROTECTED] wrote: The thinarray.js library is no longer included in the distro for copyright reasons (some people want to show some people some things about stuff - hows that for vague) - I should have taken the

Re: Source control

2005-06-08 Thread Ken Ferguson
We're using CVS and I use Jalindi Igloo to hook it into HomeSite +. It's been working perfectly ever since I first set it up a couple of months ago. --Ferg On 6/8/05, Burns, John D [EMAIL PROTECTED] wrote: What does everyone use for source control? Preferrably something that can handle

Re: neuromancer

2005-06-08 Thread Rob
If I'm not really great with advanced js might I be better off trying the cfajax package instead? If you are specifically looking to pass queries around, then you might want to look into it. I am into parsing the cfmx querybean into js (which is a fat query), but that is not done. String,

RE: Source control

2005-06-08 Thread Katz, Dov B \(IT\)
At home I use perforce's single-user version (I'm my only developer :) ) and cfeclipse with p4 plugin. I love it... I made my CFApp have a CFEXECUTE call to p4 sync to update itself. -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 4:35 PM To:

  1   2   >