Re: [ACFUG Discuss] Ajax isn't just some guy from way back when...

2006-10-19 Thread Steven Ross
Go get firebug for firefox if you dont have that installed... it will show you what your ajax is doing. https://addons.mozilla.org/firefox/1843/ On 10/19/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ok I know I am missing a piece of the Ajax/webservice puzzle in the below code can anyone

Re: Re: [ACFUG Discuss] Ajax isn't just some guy from way back when...

2006-10-19 Thread Steven Ross
sorry i didnt read all of your email charlie... I see you mentioned firebug. On 10/19/06, Steven Ross [EMAIL PROTECTED] wrote: Go get firebug for firefox if you dont have that installed... it will show you what your ajax is doing. https://addons.mozilla.org/firefox/1843/ On 10/19/06, [EMAIL

RE: [ACFUG Discuss] Ajax isn't just some guy from way back when...

2006-10-19 Thread john . lyons
Ah yes an error code would help wouldn't how about: Error: uncaught exception: [Exception... Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send] nsresult: 0x80004005 (NS_ERROR_FAILURE) location: JS frame :: http://127.0.0.1/test.cfm :: sendData :: line 36

Re: [ACFUG Discuss] Ajax isn't just some guy from way back when...

2006-10-19 Thread john . lyons
nice tool returned error. faultcodesoapenv:Server.userException/faultcode faultstringorg.xml.sax.SAXParseException: Content is not allowed in prolog./faultstring Go get firebug for firefox if you dont have that installed... it will show you what your ajax is doing.

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Douglas Knudsen
everything in CF is a string! :)1) see above. ;) Really, I don't know how, there is no isString(). 2) checkout listToArray(). http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htmIts been sometime since I did

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Teddy Payne
If it is a comma delimeted list then:Question 1: How would test to see if this actually is a String? ListLen(variableName) gt 0Question 2: How do I convert this String to an Array? Or is there a better way to process a cfselect element? ListToArray(variableName)TeddyOn 10/19/06, Leif Wells [EMAIL

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Teddy Payne
To really detect for existance of a string you may want to additionally peformcfif IsSimpleValue(variable) and Trim(variable) new This will ensure that the variable is a string, number or a boolean and that the value of the variable is not empty. TeddyOn 10/19/06, Douglas Knudsen [EMAIL PROTECTED]

RE: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Charlie Arehart
Hi Leif. For those who don't recognize the name, Leif is the manager of the Atlanta Adobe User Group. Leif, for your need, you say that what comes in is 2 UUIDs separated by a comma. That's called a "list" in CFML. Now, you say you want to test if it's a string. Do you mean you want to test

RE: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Charlie Arehart
Just to clarify, that's a CF7-only feature. /charlie http://www.carehart.org/blog/ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew PowellSent: Thursday, October 19, 2006 6:04 PMTo: discussion@acfug.orgSubject: Re: [ACFUG Discuss] Reading the results of a cfselect

RE: [ACFUG Discuss] jrun setup

2006-10-19 Thread Robert Reil
Only the following services seem relevant Macromedia JRun Admin Server Macromedia JRun CFusion Server Macromedia JRun Default Server No other Macromedia JRun services are installed Digging around in Google and LiveDocs I have come to this conclusion. I need to use the

Re: [ACFUG Discuss] Oracle 10g SSO and Coldfusion

2006-10-19 Thread Douglas Knudsen
I'll take a stab in the dark...http://download-east.oracle.com/docs/cd/B10464_05/manage.904/b10852/examples.htm#636475 mentions a JSP example solution. Did you know a CF app can share the underlying J2EE session? This maybe a possible route. I've experimented with JAAS in JRun doing this. You have