Re: Secure Flash Audio Player and CF

2008-05-09 Thread Jochem van Dieten
Jeff Price wrote: I'm looking for a Flash Audio Player that has the ability to prevent downloads. Heck, we don't even need it all that secure, we just need to hide the URL of the audio. Audio that is served through HTTP can not be protected. You need Flash Media Server to serve your audio

Re: Session variables across servers

2008-05-09 Thread Jochem van Dieten
Scott Stewart wrote: I'm looking for different possibilities it's a rig until they move the sites to the same server... You efforts are probably better spent speeding up the site move. Jochem ~| Adobe® ColdFusion® 8

Re: OT - Google Hosted Email

2008-05-09 Thread Dominic Watson
Just curious, Are all the clients in your scenario registered email users of your domain? No - and yeh, email has been the least enjoyable part of the project; all sorts of trouble! Dominic -- Blog it up: http://fusion.dominicwatson.co.uk

Re: OT - Google Hosted Email

2008-05-09 Thread James Smith
Google apps rules, we use it for about a dozen domains and about 25 users and it works like a dream, even for those older staff members who insist on keeping with outlook! I still haven't got around to re-purposing the old linux mail server though! -- Jay

Re: CF8 on Windows 2008 Web Edition

2008-05-09 Thread Kenneth Ferguson
:::ping::: Anybody, anyone, nobody's tried it yet at all - Original Message From: Ken Ferguson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, May 5, 2008 10:01:57 AM Subject: CF8 on Windows 2008 Web Edition Anybody running this combination of CF and OS? We're

Re: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread C S
Here is a down-and-dirty example. I realized the snippet above does not account for lines broken across the grabBytes barrier. So that alteration is needed. But the code snippet should give the basic idea at least. ~|

Fancy auto-suggest

2008-05-09 Thread Don L
I think there was a thread talking about two connected levels of auto-suggest or auto-suggest chain. A quick search did not yield it. Does anyone happen to recall something to the effect of that thread title? The flow would be like something like the following: (Instruction: a) first type an

Re: Fancy auto-suggest

2008-05-09 Thread Dominic Watson
So are you wanting a single autosuggest that will suggest two kinds of things? Seems a little odd to me; better to have two boxes. However, it could be done using: http://betterautosuggest.riaforge.org/ You would need the 'delimChar' attribute of the custom tag. HTH Dominic -- Blog it up:

RE: OT - Google Hosted Email (New Question)

2008-05-09 Thread ColdFusion
OK with all the talk of using Google Hosted Email and such poses a question or so since I do not use it: I have my own domain and it is hosted by a provider in California (Been of great service and very happy with). They use SmarterMail 3.x (not yet upgraded to 4 or the latest 5 yet). Now I use

Re: Fancy auto-suggest

2008-05-09 Thread Richard Dillman
I would really caution against doing this. My rule of thumb is that IF i have to explain the page to someone. I didn't do my job designing it. Your not going to be there to hold your users hand every time they come to your page. Build your page and give it to the most non techie person you

Avoid multiple form submits.

2008-05-09 Thread Robert Rawlins
Hello Guys, I've got an issue with a form which is sometimes a little slow to process. Seems that some of the users are clicking the submit button a whole bunch of times and we're getting a few problems arise as a result of it. How are you tackling this problem? presumably something with

Query Help - include

2008-05-09 Thread daniel kessler
I am using Oracle and I have a table for expenditures that stores a person's ID when the expenditures is approved. The person's ID is from a People table. When I query, I want to make a new variable that references the other table to put in their full name. I have two problems doing this. 1

Re: OT - Google Hosted Email (New Question)

2008-05-09 Thread Richard Dillman
there are only 2 reasons i use googles email. *Storage Space* 6.7 GB *Key Words* What I find very annoying with outlook is when client emails me about 3 different contracts, what folder do I put it in? Gmail lets me put it in as many as I want by letting me add multiple Key words or Labels to

RE: Session variables across servers

2008-05-09 Thread Scott Stewart
You're right, however I'm the contractor on an established team so I have zero say in this . -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Jochem van Dieten [mailto:[EMAIL

Re: Query Help - include

2008-05-09 Thread Ian Skinner
daniel kessler wrote: 1 - I'm not so good at sql and the join only works if there's an id in the approved_by field. This is going to be empty unless the ticket has been approved, but I still want it to work whether it's approved or not. Is that an outter join? Yes it will be an LEFT

Re: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread Claude Schneegans
find how many lines in it with ListLen() and then a ListGetAt() to get the last line. or simply use listLast(). -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address:

Re: OT - Google Hosted Email (New Question)

2008-05-09 Thread Paul Kukiel
Connect google hosted mail to outlook using IMAP. Then your labels show up as folders. You can then create sub labels/ sub folders. They are also usable from the webclient not just outlook. Paul. On 09/05/2008, at 11:31 PM, Richard Dillman wrote: there are only 2 reasons i use googles

Re: Avoid multiple form submits.

2008-05-09 Thread Richard Dillman
cfinput id=submit name=submit type=submit validate=submitonce / On 5/9/08, Robert Rawlins [EMAIL PROTECTED] wrote: Hello Guys, I've got an issue with a form which is sometimes a little slow to process. Seems that some of the users are clicking the submit button a whole bunch

RE: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread Dawson, Michael
I haven't tried it myself, but Java does have a tail command that should do exactly what you want. m!ke -Original Message- From: C S [mailto:[EMAIL PROTECTED] Sent: Friday, May 09, 2008 7:53 AM To: CF-Talk Subject: Re: CF8: Reading a file from the end instead of the beginning? Here

Re: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread C S
I haven't tried it myself, but Java does have a tail command that should do exactly what you want. m!ke That sounds very promising. I will take a look at that. Thanks. ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: Query Help - include

2008-05-09 Thread daniel kessler
I had continued to try and figure it out after I sent the email. I did figure out a way to make it work. FROM expenditures e, people p WHERE e.approved_by = people.id (+) In Oracle, the + does the outer join. And it worked well, but it wasn't explicit. I don't know sql well enough to read

Re: Fancy auto-suggest

2008-05-09 Thread Don L
I would really caution against doing this. My rule of thumb is that IF i have to explain the page to someone. I didn't do my job designing it. Your not going to be there to hold your users hand every time they come to your page. Build your page and give it to the most non techie person you

Re: Query Help - include

2008-05-09 Thread Ian Skinner
daniel kessler wrote: I had continued to try and figure it out after I sent the email. I did figure out a way to make it work. FROM expenditures e, people p WHERE e.approved_by = people.id (+) In Oracle, the + does the outer join. Yes, that is the original outer join syntax for Oracle.

RE: OT - Google Hosted Email (New Question)

2008-05-09 Thread Scott Stewart
Yes, I'm doing that right now for sstwebworks.com. You just need to be able to make changes to the DNS records (specifically the MX records) -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original

Writing a re-usable business function with CF8

2008-05-09 Thread Don L
and then make it distributable to virtually any web server platform (say, for windows, IIS (5x,6x,7x?); for unix/linux flavor, Apache). Some of you may have thought of this or even have been there done that. Off my head, I'm thinking: a) the business function; b) a 'connector' to the target web

Re: Avoid multiple form submits.

2008-05-09 Thread Larry Lyons
Assuming that the user has JavaScript turned on you can use this bit of code, it disables the button used for submitting the form once its been clicked: INPUT TYPE=Button VALUE=Submit onClick=if(this.value == 'Submit') this.form.submit(); this.value = 'Please Wait.';this.disabled=true; hth,

Re: Avoid multiple form submits.

2008-05-09 Thread Robert Rawlins
Thanks for the suggestions guys, The JS based solution doenst quite work for me, it seems to grey the button out and change the value to 'please wait' but doesnt actualy submit the form :-) I've read about this on a few different occasions and appears to be a problem with IE7 or something like

Error: attempted to dereference a scalar variable

2008-05-09 Thread Gerald Guido
We have a live survey and we took a look at the application log and we ran into this several times in the course of 20 min. I am assuming it is one user. You have attempted to dereference a scalar variable of type class java.math.BigDecimal as a structure with members. It seems to happen in

Re: Error: attempted to dereference a scalar variable

2008-05-09 Thread Matt Quackenbush
Assuming that Q.q4_a_int is a recordset, try changing it to Q.q4_a_int[1]. I'm kinda grabbing at straws here, but if your recordset contains more than one record (which I'm guessing it should not), that might result in the error message you are seeing. Typically speaking though, that particular

RE: Avoid multiple form submits.

2008-05-09 Thread Rich
A client side only solution can not ensure that this problem will not occur. A more robust solution is to use the Synchronizer Token Pattern from core J2EE Patterns. Here is an excerpt from http://www.corej2eepatterns.com/Design/PresoDesign.htm: Synchronizer (or Déjà vu) Token This strategy

Re: Secure Flash Audio Player and CF

2008-05-09 Thread Tom Chiverton
On Thursday 08 May 2008, Jeff Price wrote: Heck, we don't even need it all that secure, Handy, as you can't stop people recording their audio out. we just need to hide the URL of the audio. You can't. Not even using RTMP or any other sort of streaming. What are you trying to achieve ?

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Tom Chiverton
On Friday 09 May 2008, Don L wrote: and then make it distributable to virtually any web server platform (say, for windows, IIS (5x,6x,7x?); for unix/linux flavor, Apache). I'm not sure what you're asking but if you write your application in CFML it'll run on all of those yes, by magic. --

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Don L
On Friday 09 May 2008, Don L wrote: and then make it distributable to virtually any web server platform (say, for windows, IIS (5x,6x,7x?); for unix/linux flavor, Apache). I'm not sure what you're asking but if you write your application in CFML it'll run on all of those yes, by

Re: Avoid multiple form submits.

2008-05-09 Thread Massimo Foti
If what you are looking for is just a client-side solution, the TMT Validator offers this: http://www.massimocorner.com/validator/ http://www.massimocorner.com/validator/samples/generic.htm Massimo ~| Adobe® ColdFusion® 8

CF Cookie questions

2008-05-09 Thread Scott Stewart
Hey all, Because I normally use session variables for security, I rarely use the cf cookie tag. If I need multiple variables (loggedin, fname, lname, recornum.etc) do I need to set multiple cookies or is there a way to set all this in one cookie? Thanks as always sas -- Scott

Problem with using xml from RSS

2008-05-09 Thread Phill B
I am trying to use the Yahoo Weather RSS feed but CF doesn't like the node yweather:condition. How do I get around this? RSS Link http://tinyurl.com/6pvxmk RSS Weather docs http://tinyurl.com/kon6q Thanks -- Phil ~| Adobe®

RE: CF Cookie questions

2008-05-09 Thread Dawson, Michael
You could set it as a delimited list. TRUE|Michael|Dawson|69 Just be aware of a cookie's max length. m!ke -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, May 09, 2008 9:53 AM To: CF-Talk Subject: CF Cookie questions Hey all, Because I normally use

Re: CF8 on Windows 2008 Web Edition

2008-05-09 Thread Tom Chiverton
On Friday 09 May 2008, Kenneth Ferguson wrote: Anybody, anyone, nobody's tried it yet at all Well, just in general, never, ever, go with 'this years' version of anything. That goes double for MS products. -- Tom Chiverton This email is

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Tom Chiverton
On Friday 09 May 2008, Don L wrote: Sorry, I forgot to add, without cf8 server package. So, without any CFML engine, Railo/OpenBD etc., what are you trying to achive ? You could use CFML to template an AJAX front end, for instance, but that still leaves you stuck for the backend. -- Tom

RE: CF Cookie questions

2008-05-09 Thread Dave Watts
Because I normally use session variables for security, I rarely use the cf cookie tag. If I need multiple variables (loggedin, fname, lname, recornum.etc) do I need to set multiple cookies or is there a way to set all this in one cookie? A cookie is a string. You can put whatever you

Re: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread C S
I haven't tried it myself, but Java does have a tail command that should do exactly what you want. m!ke Michael, I have done some searching, but I am still unclear on the tail command. I may be overlooking the obvious, as I have not had my full measure of coffee yet ;-) Can you tell me a

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Don L
standalone business function The key word here is Flexibility. Probably in essence, there are two big groups of web programming languages: java-based (CFML etc.) vs. Microsoft-based (asp, asp.NET etc.). And if my understanding is correct, any asp code would run under IIS web server

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Tom Chiverton
On Friday 09 May 2008, Don L wrote: Now, what if there's some free and light J2EE component, that be easily plugged into any web server, then, what? maybe, any compiled cfml code (java bytecode) can run under such a web server environement, a probable yes? You could, GPL permitting,

RE: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread Dawson, Michael
Sorry for the confusion. I meant OS rather than Java. It's been a long week for me. ;^) If you are on *nix, there is a built-in tail command. The Windows 2003 Resource Kit includes the tail command for that platform. http://malektips.com/xp_dos_0001.html

Re: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread C S
Sorry for the confusion. I meant OS rather than Java. It's been a long week for me. ;^) If it helps, you are not the only one .. ;-) If you are on *nix, there is a built-in tail command. Yes, it has been a while, but *nix tail was my first thought. But I guess I was still hoping there was

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Brian Kotek
It sounds like you're asking if you can run a CFML-based function without a CFML engine. The answer is no. You'd need to write it in Java or a .NET language depending on which server platform the system is running. IIS is only a web server. In order to actually execute code, IIS has to be

Re: Problem with using xml from RSS

2008-05-09 Thread Dominic Watson
You can use XmlSearch and XPath to easily get at the data you want. The following gets a forecast for the current day from the xml: cfset weatherXml = XmlParse('http://weather.yahooapis.com/forecastrss?p=90210') cfset aForecasts = XmlSearch(oXml, '//yweather:[EMAIL PROTECTED]#DateFormat(Now(),'d

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Don L
On Friday 09 May 2008, Don L wrote: Now, what if there's some free and light J2EE component, that be easily plugged into any web server, then, what? maybe, any compiled cfml code (java bytecode) can run under such a web server environement, a probable yes? Tom Chiverton You

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Brian Kotek
You could also just set it up as a centralized web service and allow people on any platform to call it that way. That's what they're for, after all. On Fri, May 9, 2008 at 12:34 PM, Don L [EMAIL PROTECTED] wrote: On Friday 09 May 2008, Don L wrote: Now, what if there's some free and light

Dynamically prepolate the select box

2008-05-09 Thread erik tom
I am dynamically buildin a select box . How can i prepopluate the data so when it loads it will select the previously submited answer So far i got this cfset selectOptions = selectOptions 'option value=#options#_#id#cfif qryAnswers.answer eq #id#selected/cfif#options#/option'

Re: Problem with using xml from RSS

2008-05-09 Thread Phill B
Thanks Dominic. That was just what I needed! On Fri, May 9, 2008 at 11:31 AM, Dominic Watson [EMAIL PROTECTED] wrote: You can use XmlSearch and XPath to easily get at the data you want. The following gets a forecast for the current day from the xml: cfset weatherXml =

RE: Dynamically prepolate the select box

2008-05-09 Thread Niski, Brian
Hi Erik, As I see it, there is more than one way to prepare your select box. At a quick glance you look headed in the right direction. Here is an alternative example of how I have done it... SELECT id=aname name=aname OPTION VALUE=-1Select Something/OPTION CFLOOP QUERY=ItemQ

Playing movies in cfpresentation

2008-05-09 Thread Dominic Watson
Hey all, I have a swf movie that I'd like to have as the source of a cfpresentation slide. The swf references a flv movie and I think this is causing problems. Has anyone encountered or conquered this? Here is the flv movie working:

Re: Writing a re-usable business function with CF8

2008-05-09 Thread Don L
You could also just set it up as a centralized web service and allow people on any platform to call it that way. That's what they're for, after all. On Fri, May 9, 2008 at 12:34 PM, D web service Yes, thanks, my own, kind of limited, experience with web service has been that the cf web service

RE: Playing movies in cfpresentation

2008-05-09 Thread Mark Kruger
Dominic, I think you should post your code. It almost seems like you are pointed to the FLA or the FLV instead of the SWF file in your presentation. -mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message-

Re: Dynamically prepolate the select box

2008-05-09 Thread Dominic Watson
Another option is the iif() function ('inline if'). So: cfloop query=ItemQ option value=#Item_ID# #iif(item_ID EQ selectedId, DE('selected=selected'), DE(''))# #Item# /option /cfloop Dominic -- Blog it up: http://fusion.dominicwatson.co.uk

Re: Playing movies in cfpresentation

2008-05-09 Thread Dominic Watson
It seems, but not so :0 Here is the code: cfpresentation control=brief shownotes=no showoutline=no showsearch=no title=My First Presentation cfpresentationslide title=My First Slide src=btb.swf / /cfpresentation Dominic 2008/5/9 Mark Kruger [EMAIL PROTECTED]: Dominic, I think you

RE: Dynamically prepolate the select box

2008-05-09 Thread Bobby Hartsfield
Chapter 1: option value=#Item_ID#cfif item_ID EQ selectedId selected=selected/cfif ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Friday, May 09, 2008 1:49 PM To: CF-Talk

OT: Enterhost is down -- backbone down?

2008-05-09 Thread Michael Muller
Enterhost is down. They have been bouncing all afternoon so far. Anyone have any info? Is this a backbone issue or just them? I can't get through to their support. The lines are busy (which I half expected). Mik ~| Adobe®

Re: OT: Enterhost is down -- backbone down?

2008-05-09 Thread Phillip Vector
I dunno as I don't use that hosting provider.. But I can assure you, Mae East and Mae West are doing fine. The backbone is not down. :) On Fri, May 9, 2008 at 11:25 AM, Michael Muller [EMAIL PROTECTED] wrote: Enterhost is down. They have been bouncing all afternoon so far. Anyone have any

Re: OT: Enterhost is down -- backbone down?

2008-05-09 Thread Matt Quackenbush
I'm on Enterhost, and all of my servers are running just fine (and have been all day). On Fri, May 9, 2008 at 1:25 PM, Michael Muller wrote: Enterhost is down. They have been bouncing all afternoon so far. Anyone have any info? Is this a backbone issue or just them? I can't get through to

Re: Enterhost is down -- backbone down?

2008-05-09 Thread Michael Muller
Interesting. I can ping enterhost.com but not tracert. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive:

Re: Enterhost is down -- backbone down?

2008-05-09 Thread Michael Muller
Their corp site is back up now, but my two servers aren't. Matt said: I'm on Enterhost, and all of my servers are running just fine (and have been all day). ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: Dynamically prepolate the select box

2008-05-09 Thread erik tom
Another option is the iif() function ('inline if'). So: cfloop query=ItemQ option value=#Item_ID# #iif(item_ID EQ selectedId, DE('selected=selected'), DE(''))# #Item# /option /cfloop Dominic -- Blog it up: http://fusion.dominicwatson.co.uk Tahnks

Re: OT: mod_jk + blank .jsp-coding

2008-05-09 Thread Adam Haskell
workers.properties or the other .properties (name escapes me) are most likely not configured correctly, that would be my initial thought. Adam Haskell On Thu, May 8, 2008 at 6:24 PM, [EMAIL PROTECTED] wrote: Has anybody an idea, what could be wrong if I see the blank raw java-coding on a

RE: OT - Google Hosted Email (New Question)

2008-05-09 Thread Eric Roberts
I am almost positive you can pop3 into another email account and dl the emails to Google. Downside is that the Google mail wouldn't be of the same domain. Really what you want to do is just use Google apps mail for your domain email. I made the switch over to Google apps after the server that

Re: uploading zip file with cfhttp creates file cf/java can't unzip but other apps can

2008-05-09 Thread Daniel Roberts
Solution found thanks to -==cfSearching==- (http://cfsearching.blogspot.com/) over at the adobe cf forums. He noticed that the size received by ColdFusion is 2b bigger than the original file. If however an additional cfhttpparam form field is added after the file field, it magically works. If

Catching and Displaying Errors with CFLDAP

2008-05-09 Thread Den Made
Error updating the server MyServer:389. The error is javax.naming.directory.InvalidAttributeValueException: [LDAP: error code 19 - invalid password syntax: no special character]; remaining name 'uid=testuser,ou=ME,dc=example,dc=com' I am connecting to Sun One Directory Server 6.0 on Windows

Gasp! XML XSL transform with params!

2008-05-09 Thread Andre Turrettini
Crimminy, Why am I having trouble passing parameters in xmltransform? cfsavecontent variable=x?xml version=1.0 encoding=UTF-8? article/article /cfsavecontent cfsavecontent variable=l xsl:transform version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xsl:param name=mpath

Multiple recipients in BCC via Exchange

2008-05-09 Thread Jason Durham
MS Exchange requires that fields containing multiple email addresses be separated by semicolons. It appears that ColdFusion is taking my semicolon-delimited BCC list and converting it to commas based upon the undeliverable which results. Does anybody know if I can prevent ColdFusion from doing

Re: Dynamically prepolate the select box

2008-05-09 Thread Brian Kotek
Literally. http://www.amazon.com/Adobe-ColdFusion-Web-Application-Construction/dp/032151548X/ On Fri, May 9, 2008 at 2:00 PM, Bobby Hartsfield [EMAIL PROTECTED] wrote: Chapter 1: option value=#Item_ID#cfif item_ID EQ selectedId selected=selected/cfif ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby

RE: Catching and Displaying Errors with CFLDAP

2008-05-09 Thread Dawson, Michael
cftry cfldap... cfcatch cfdump var=#cfcatch# !--- Look for the cfcatch struct var that contains the error message --- /cfcatch /cftry Once you find the cfcatch struct var, use it in a CFIF block inside the CFCATCH block. m!ke -Original Message- From: Den Made

RE: Multiple recipients in BCC via Exchange

2008-05-09 Thread Dawson, Michael
ColdFusion needs a comma-separated list of email addresses. Unless your Exchange admin has done something funky, it should work fine with commas. I don't think Exchange requires semicolons, anyway. I think that is more of an Outlook setting. In Outlook, you can enable the comma as a separator.

RE: Multiple recipients in BCC via Exchange

2008-05-09 Thread Jason Durham
I'm fairly certain MS Exchange will not allow comma delimited emails. I also manage our Exchange Server. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Friday, May 09, 2008 4:28 PM To: CF-Talk Subject: RE: Multiple recipients in BCC via Exchange ColdFusion

Re: Spry Eclipse Plugin?

2008-05-09 Thread Brad Melendy
The only problem I have with CS3 is that it is a dog, runs horribly on my three workstations (two XP and one Vista). I've got the CPU utilization problem in all three cases and there seems no help on the horizen. Just downloaded JSEclipse. However, I really am beginning to wonder about the

Re: Gasp! XML XSL transform with params!

2008-05-09 Thread Dominic Watson
Crimminy, Why am I having trouble passing parameters in xmltransform? You're not going mad; check out the first comment in the livedocs: http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0673.htm On further

Re: Gasp! XML XSL transform with params!

2008-05-09 Thread Dominic Watson
http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0673.htm I've now read all the comments (I'm far too impatient) and comment four assesses the problem brilliantly; the comment by Ethan Cane ([EMAIL PROTECTED]).

Re: Catching and Displaying Errors with CFLDAP

2008-05-09 Thread Den Made
Thanks so much. I real appreciate your help!!! Error updating the server MyServer:389. The error is javax.naming. directory.InvalidAttributeValueException: [LDAP: error code 19 - invalid password syntax: no special character]; remaining name 'uid=testuser,ou=ME,dc=example,dc=com' I am

Re: Catching and Displaying Errors with CFLDAP

2008-05-09 Thread Den Made
Thanks a bunch, I real appreciate your help, it worked just fine!!! cftry cfldap... cfcatch cfdump var=#cfcatch# !--- Look for the cfcatch struct var that contains the error message --- /cfcatch /cftry Once you find the cfcatch struct var, use it in a CFIF block inside the

Re: Avoid multiple form submits.

2008-05-09 Thread Eric Haskins
The Javascript example above doesnt have a TYPE=submit so it will cause weird behavior in some browsers. I bet it will work if you add it Eric On Fri, May 9, 2008 at 10:52 AM, Massimo Foti [EMAIL PROTECTED] wrote: If what you are looking for is just a client-side solution, the TMT Validator

Re: Avoid multiple form submits.

2008-05-09 Thread Gerald Guido
Massimo? As in Massimo The DW Extension Guru? Awesome! I just wanted to say thank you SIR!! I have been using your stuff for years. And thanx for showing up when you did. I was *just* about to write a custom tag for DHTML Calendar for work. I looked and noticed that you have not posted any of

Re: Playing movies in cfpresentation

2008-05-09 Thread Dominic Watson
Well I managed to get video working but not with a swf that referenced a flv. I had to create a video that was a 'pure' swf file which is fine and dandy :). Dominic 2008/5/9 Dominic Watson [EMAIL PROTECTED]: It seems, but not so :0 Here is the code: cfpresentation control=brief

cfpresentation streaming...

2008-05-09 Thread Dominic Watson
I've created a static cfpresentation flash movie that includes slides that play swf videos (so it all adds up to a fair size). When I view this presentation in my browser, I must wait to download the entire presentation content before any of it will play. My client wants 30+ slides per

Re: OT: mod_jk + blank .jsp-coding

2008-05-09 Thread denstar
Unless you're stuck with old versions, mod_proxy_ajp is (I think) faster, and for sure easier to set up. On Thu, May 8, 2008 at 4:24 PM, [EMAIL PROTECTED] wrote: Has anybody an idea, what could be wrong if I see the blank raw java-coding on a .jsp page coming from Tomcat5 passed to Apache2

Re: Spry Eclipse Plugin?

2008-05-09 Thread denstar
On Fri, Apr 27, 2007 at 8:30 PM, Aaron Roberson [EMAIL PROTECTED] wrote: Really, are we throwing the baby (DW) out with the bathwater (commercial license)? Nope. Eclipse just plain destroys dreamweaver, from a coder's perspective. I'm liking JSDT for Eclipse javascript development.

Re: CF8: Reading a file from the end instead of the beginning?

2008-05-09 Thread C S
You could shell out (CFEXECUTE) the tail command to get those lines. Michael, Good suggestion. Tail works very well. Cheers. cfset numOfLines = 10 cfset logFilePath = server.coldFusion.rootDir /logs/exception.log cfexecute name=c:\program files\Windows Resource Kits\tools\tail.exe

Re: Avoid multiple form submits.

2008-05-09 Thread Massimo Foti
Massimo? As in Massimo The DW Extension Guru? Yes. I looked and noticed that you have not posted any of you work to riaforge.org. Any reason for this? Yours is a great contribution to the community, both CF and Web Dev in general, and riaforge.org might serve to broaden the reach of your

Re: Spry Eclipse Plugin?

2008-05-09 Thread Gerald Guido
And Eclipse 3.4 has a WYSIWYG HTML editor, for those pesky table-based layouts. @denstar Could you point me to that wonderful nugget of joy? With that, CF studio will become just another text editor (though awesome). I think the only other thing I use it for is the change tag case feature... G

Re: Spry Eclipse Plugin?

2008-05-09 Thread Loathe
You can change selection case on right click in eclipse. Gerald Guido wrote: And Eclipse 3.4 has a WYSIWYG HTML editor, for those pesky table-based layouts. @denstar Could you point me to that wonderful nugget of joy? With that, CF studio will become just another text editor (though