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 h

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 jru

[ACFUG Discuss] Oracle 10g SSO and Coldfusion

2006-10-19 Thread matthew abbott
Hey guys, I thought Id ask here in the discussion group if any of you have had to implement a single sign on with oracle SSO and coldfusion. I have been able to get it working when I use the oracle portal login, by modifying the apache mod_sso file, but I really need to get it working with a

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] Reading the results of a cfselect form element

2006-10-19 Thread Andrew Powell
If you want to see if it's a string you can use:isValid("string",varToTest)On Oct 19, 2006, at 5:51 PM, Charlie Arehart wrote: 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 separate

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 Teddy Payne
To really detect for existance of a string you may want to additionally peformThis 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]> wrote: everything in CF is a string!  :)1) see abo

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 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_Documentation&file=part_cfm.htmIts been sometime since I d

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

2006-10-19 Thread Leif Wells
All,Sorry for the beginner's question (and my absence from this list and the meetings).I have created a coldfusion file that has form that has a cfselect element. The multiple attribute is set to true. When processing the form I get what I believe are two UUIDs separated by a comma. A String, I bel

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

2006-10-19 Thread Steven Ross
maybe you need to wrap your call in a cdata tag (just a random guess)? Better yet double check what you are sending and verify it is correctly formed for the webservice you are calling. still hard to tell what is going wrong. On 10/19/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: nice tool r

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

2006-10-19 Thread john . lyons
nice tool returned error. soapenv:Server.userException org.xml.sax.SAXParseException: Content is not allowed in prolog. > 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,

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 3

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 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 s

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

2006-10-19 Thread Charlie Arehart
John, while someone may well spot something for you, I think it's a bit much to ask to just dump the code and ask "what am I doing wrong?". :-) It would help a lot more if you told us what's not working as you'd expect. Indeed, that begs the question of what sort of debugging you are doing to de

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

2006-10-19 Thread john . lyons
ok I know I am missing a piece of the Ajax/webservice puzzle in the below code can anyone spot what I am doing wrong. [BEGIN GEEKISH WRITINGS] function processReqChange() { // only if req shows "loaded" if (xmlhttp.readyState == 4) { // only if "OK" if (xmlhttp.status ==