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 spot what I am doing wrong.


[BEGIN GEEKISH WRITINGS]
script language=javascript
function processReqChange() {
// only if req shows loaded
if (xmlhttp.readyState == 4) {
// only if OK
if (xmlhttp.status == 200) {
// ...processing statements go here...
document.bob.innerHTML = xmlhttp.responseText;
} else {
alert(There was a problem retrieving the XML data:\n +
xmlhttp.statusText);
}
}
}
function sendData()
{
xmlhttp=null
// code for Mozilla, etc.
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest()
}
// code for IE
else if (window.ActiveXObject)
{
xmlhttp=new ActiveXObject(Microsoft.XMLHTTP)
}
if (xmlhttp!=null)
{
var frmInput = document.form.searchfield.value;
xmlhttp.open(POST, http://127.0.0.1/com/googlemini;, true);
xmlhttp.setRequestHeader(Content-Type, text/xml; 
charset=utf-8);

xmlhttp.setRequestHeader('SOAPAction','http://127.0.0.1/com/googlemini');
xmlhttp.send('varQ='+'needles');
xmlhttp.onreadystatechange = processReqChange;
  }
else
  {
alert(Your browser does not support XMLHTTP.)
  }
}
/script


form name=form 
input type=text name=searchfield /
input type=button name=myclick value=go onclick=sendData(); /
/form
div id=bob

/div
!---
This works...
cfscript
myObj =
createobject(webservice,http://127.0.0.1/com/googlemini.cfc?wsdl;);
myObjVal = myObj.PostQuery(consent form,);
/cfscript
cfdump var=#myObjVal# /
---

[END GEEKISH WRITINGS]


-
To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-







--
Steven Ross
web application  interface developer
http://www.zerium.com
[mobile] 404-488-4364
[fax] 928-484-4364


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





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 PROTECTED] [EMAIL PROTECTED] wrote:
 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]
 script language=javascript
 function processReqChange() {
 // only if req shows loaded
 if (xmlhttp.readyState == 4) {
 // only if OK
 if (xmlhttp.status == 200) {
 // ...processing statements go here...
 document.bob.innerHTML = xmlhttp.responseText;
 } else {
 alert(There was a problem retrieving the XML data:\n +
 xmlhttp.statusText);
 }
 }
 }
 function sendData()
 {
 xmlhttp=null
 // code for Mozilla, etc.
 if (window.XMLHttpRequest)
 {
 xmlhttp=new XMLHttpRequest()
 }
 // code for IE
 else if (window.ActiveXObject)
 {
 xmlhttp=new ActiveXObject(Microsoft.XMLHTTP)
 }
 if (xmlhttp!=null)
 {
 var frmInput = document.form.searchfield.value;
 xmlhttp.open(POST, http://127.0.0.1/com/googlemini;, true);
 xmlhttp.setRequestHeader(Content-Type, text/xml; 
charset=utf-8);
 
xmlhttp.setRequestHeader('SOAPAction','http://127.0.0.1/com/googlemini');
 xmlhttp.send('varQ='+'needles');
 xmlhttp.onreadystatechange = processReqChange;
   }
 else
   {
 alert(Your browser does not support XMLHTTP.)
   }
 }
 /script


 form name=form 
 input type=text name=searchfield /
 input type=button name=myclick value=go onclick=sendData(); /
 /form
 div id=bob

 /div
 !---
 This works...
 cfscript
 myObj =
 createobject(webservice,http://127.0.0.1/com/googlemini.cfc?wsdl;);
 myObjVal = myObj.PostQuery(consent form,);
 /cfscript
 cfdump var=#myObjVal# /
 ---

 [END GEEKISH WRITINGS]


 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






--
Steven Ross
web application  interface developer
http://www.zerium.com
[mobile] 404-488-4364
[fax] 928-484-4364




--
Steven Ross
web application  interface developer
http://www.zerium.com
[mobile] 404-488-4364
[fax] 928-484-4364


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





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  data: no]


or nothing...


the cfc works great I can call it and use it from cf without any issue. I
only get wierdness when trying to consume via javascript. In this case i
know the issue is with the javascript and me swimming in deeper javascript
wates then I normally venture.





those are my options right now.



 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
 detect what parts of the code are working are working at all. Is it
 calling
 your CFC in the Ajax call? You could determine that by using CFLOG or
 CFTRACE (or even CFFILE) to write something from the CFC saying I'm
 here.
 You could even send yourself an email with CFMAIL. You could also use the
 FusionDebug debugger to literally set breakpoints in the CFC and they will
 fire if the CFC is called. If none of those show it being called, then you
 know the issue is in the Javascript.

 Or perhaps it's being called, but it's returning something other than what
 your Javascript is expecting. In that case, you can consider a tool like
 Fiddler or ServiceCapture, or Firebug in Firefox, to detect and show you
 what stream of data is coming from the CFC server. Perhaps there's an
 error.
 Perhaps it's including CF debugging output (in which case you'd want to
 turn
 that off). Or it may just be returning some form of output that the
 Javascript isn't expecting.

 Hope any of those help.

 PS I wrote more about these in a blog entry on working with Spry, thought
 the concepts apply with any Ajax caller:
 http://carehart.org/blog/client/index.cfm/2006/7/13/spry4_unexpected_server_
 results

 /charlie
 http://www.carehart.org/blog/

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
 [EMAIL PROTECTED]
 Sent: Thursday, October 19, 2006 10:04 AM
 To: discussion@acfug.org
 Subject: [ACFUG Discuss] Ajax isn't just some guy from way back when...

 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]
 script language=javascript
 function processReqChange() {
 // only if req shows loaded
 if (xmlhttp.readyState == 4) {
 // only if OK
 if (xmlhttp.status == 200) {
 // ...processing statements go here...
   document.bob.innerHTML = xmlhttp.responseText;
 } else {
 alert(There was a problem retrieving the XML data:\n +
 xmlhttp.statusText);
 }
 }
 }
 function sendData()
 {
   xmlhttp=null
   // code for Mozilla, etc.
   if (window.XMLHttpRequest)
   {
   xmlhttp=new XMLHttpRequest()
   }
   // code for IE
   else if (window.ActiveXObject)
   {
   xmlhttp=new ActiveXObject(Microsoft.XMLHTTP)
   }
   if (xmlhttp!=null)
   {
   var frmInput = document.form.searchfield.value;
   xmlhttp.open(POST, http://127.0.0.1/com/googlemini;,
 true);
   xmlhttp.setRequestHeader(Content-Type, text/xml;
 charset=utf-8);

 xmlhttp.setRequestHeader('SOAPAction','http://127.0.0.1/com/googlemini');
   xmlhttp.send('varQ='+'needles');
   xmlhttp.onreadystatechange = processReqChange;
   }
   else
   {
   alert(Your browser does not support XMLHTTP.)
   }
 }
 /script


 form name=form 
 input type=text name=searchfield / input type=button
 name=myclick
 value=go onclick=sendData(); / /form div id=bob

 /div
 !---
 This works...
 cfscript
 myObj =
 createobject(webservice,http://127.0.0.1/com/googlemini.cfc?wsdl;);
 myObjVal = myObj.PostQuery(consent form,); /cfscript cfdump
 var=#myObjVal# /
 ---

 [END GEEKISH WRITINGS]


 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists Archive @
 http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 

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.

 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 spot what I am doing wrong.


 [BEGIN GEEKISH WRITINGS]
 script language=javascript
 function processReqChange() {
 // only if req shows loaded
 if (xmlhttp.readyState == 4) {
 // only if OK
 if (xmlhttp.status == 200) {
 // ...processing statements go here...
 document.bob.innerHTML = xmlhttp.responseText;
 } else {
 alert(There was a problem retrieving the XML data:\n +
 xmlhttp.statusText);
 }
 }
 }
 function sendData()
 {
 xmlhttp=null
 // code for Mozilla, etc.
 if (window.XMLHttpRequest)
 {
 xmlhttp=new XMLHttpRequest()
 }
 // code for IE
 else if (window.ActiveXObject)
 {
 xmlhttp=new ActiveXObject(Microsoft.XMLHTTP)
 }
 if (xmlhttp!=null)
 {
 var frmInput = document.form.searchfield.value;
 xmlhttp.open(POST, http://127.0.0.1/com/googlemini;,
 true);
 xmlhttp.setRequestHeader(Content-Type, text/xml;
 charset=utf-8);
 
 xmlhttp.setRequestHeader('SOAPAction','http://127.0.0.1/com/googlemini');
 xmlhttp.send('varQ='+'needles');
 xmlhttp.onreadystatechange = processReqChange;
   }
 else
   {
 alert(Your browser does not support XMLHTTP.)
   }
 }
 /script


 form name=form 
 input type=text name=searchfield /
 input type=button name=myclick value=go onclick=sendData(); /
 /form
 div id=bob

 /div
 !---
 This works...
 cfscript
 myObj =
 createobject(webservice,http://127.0.0.1/com/googlemini.cfc?wsdl;);
 myObjVal = myObj.PostQuery(consent form,);
 /cfscript
 cfdump var=#myObjVal# /
 ---

 [END GEEKISH WRITINGS]


 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -






 --
 Steven Ross
 web application  interface developer
 http://www.zerium.com
 [mobile] 404-488-4364
 [fax] 928-484-4364


 -
 To unsubscribe from this list, manage your profile @
 http://www.acfug.org?fa=login.edituserform

 For more info, see http://www.acfug.org/mailinglists
 Archive @ http://www.mail-archive.com/discussion%40acfug.org/
 List hosted by http://www.fusionlink.com
 -







-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





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 this, but I recall using listToArray() then looping. Or you could just use CFLOOP with the list attribute. 
http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm
HTH!DKPostScript: caution, developer under mucho stresso churning out next weeks work and sipping coffee!On 10/19/06, Leif Wells
 [EMAIL PROTECTED] wrote: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 believe.Question 1: How would test to see if this actually is a String?Question 2: How do I convert this String to an Array? Or is there a better way to process a cfselect element?
Leif



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-- Douglas Knudsenhttp://www.cubicleman.comthis is my signature, like it?



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



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 PROTECTED] wrote:
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 believe.Question 1: How would test to see if this actually is a String?Question 2: How do I convert this String to an Array? Or is there a better way to process a cfselect element?
Leif



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-- cf_payne /Blog: http://cfpayne.wordpress.com/Atlanta CFUG: http://www.acfug.org




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



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] wrote:
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 this, but I recall using listToArray() then looping. Or you could just use CFLOOP with the list attribute. 

http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm
HTH!DKPostScript: caution, developer under mucho stresso churning out next weeks work and sipping coffee!On 10/19/06, 
Leif Wells
 [EMAIL PROTECTED] wrote:
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 believe.Question 1: How would test to see if this actually is a String?Question 2: How do I convert this String to an Array? Or is there a better way to process a cfselect element?
Leif



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-- Douglas Knudsenhttp://www.cubicleman.com
this is my signature, like it?



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-


-- cf_payne /Blog: http://cfpayne.wordpress.com/Atlanta CFUG: http://www.acfug.org




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



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 if it's a list? Sadly, while 
there are several "decision functions" (isnumeric, isdate, etc.) there is 
neither isstring, islist, nor isUUID. 

Now, as for separating the the list into an array, you can 
do that with listtoarray(). But if you just want be able to process the list of 
values individually, you don't *need* to put them into an array. You can loop 
over them, with CFLOOP LIST. You can also get at each list element using, 
funnily enough, ListGetAt, or any number of other "list functions". Yes, I'm 
pointing you to the docs, since there may be still other options you'd want to 
consider.

Finally, though, if you might be wanting to take this list 
of UUIDs (or any list) coming from a multiple select form field (or a checkbox) 
and use them in SQL, you may know you could use such a comma-separated list of 
values directly in SQL using the IN clause. But you may really be stumped in 
that you need to get single quotes around the individual elements, to change IN 
(item1, item2) to become IN ('item1','item2'). Here, CFML comes to the rescue 
again with a very often missed function called ListQualify (introduced in CF 
4.01, which is why I think many missed it). So assuming your form field was ids, 
you could use IN (#listqualify(form.ids)#), and it would look like the last 
clause above when sent to SQL.

Is any 
of this close to what you needed? Sorry if I've gone off half-cocked. As always, 
I hope the info might help someone. :-)

/charlie
http://www.carehart.org/blog/



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
On Behalf Of Leif WellsSent: Thursday, October 19, 2006 5:01 
PMTo: discussion@acfug.orgSubject: [ACFUG Discuss] Reading 
the results of a cfselect form element
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 believe.Question 1: How would test to 
see if this actually is a String?Question 2: How do I convert this 
String to an Array? Or is there a better way to process a cfselect element? 
Leif- 
To unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform 
For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink 
- 



-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by FusionLink

-




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 form element
If you want to see if it's a string you can use:

isValid("string",varToTest)




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by FusionLink

-




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 jrunsvc as Doug has
replied to, and I saw that livedoc, to install a windows service for that
service.

I cant seem to get the service to
load using that command though there are no samples, only wild cards and I
think I am getting the syntax wrong.

I wish I had a sample of a command line,
with an extaction of the Windows services entry.



If I use the JRun welcome.jsp file console
to turn off the cfusion service, and to turn on the cfusion7 service that
works, but the cfusion turns back on.

I did notice that going into windows
services and stopping the cfusion service does completely stop it.



So with that, I guess I should turn the JRun
cfusion svc to manual (which I just did)

And that I need some help on getting the
JRun cfusion7 svc to install and have it run in the Windows services as
Automatic.



I want to run:

C:/jrun4/bin/jrunsvc install jrun-server
service-name service-display



I want it to post into Windows Services
as:

Name:

Macromedia JRun CFusion7 Server



Description:
Macromedia JRun ColdFusion 7 Server



Startup Type:

Automatic



Please help me with the syntax











From: Douglas Knudsen
[mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 18, 2006
5:00 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] jrun
setup





Are both of these listed
in the Windows Services MMC Snap In?

DK



On 10/18/06, Robert
Reil [EMAIL PROTECTED]
 wrote:





I
have CFMX, and CFMX7 running in the JRUN console.

How
do I make a default of MX stopped, and MX7 in run mode?







Robert P. Reil

Managing Director,

Motorcyclecarbs.com, Inc.

4292 Country Garden
Walk NW

Kennesaw , Ga. 30152

Office 770-974-8851

Fax 770-974-8852

www.motorcyclecarbs.com













-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it? 
- 
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by FusionLink 
- 








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 to check use jsessionid in the cfadmin tool. Just a stab. Also, this 
http://download-east.oracle.com/docs/cd/B10464_05/manage.904/b10852/examples.htm#637210 mentions a servlet approach. You can call servlets with cfhttp, might be a path to follow.
I get to do this with the IBM solution FIM soon. We are getting a IBM consultant for the project (replete with blue suit and all probably) Might be something your company can consider.good luckDK
On 10/19/06, matthew abbott [EMAIL PROTECTED] wrote:
Hey guys,I thought Id ask here in the discussion group if any of you have had toimplement a single sign on with oracle SSO and coldfusion. I have beenable 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 custom loginscreen in coldfusion, without the use of oracle portal.I have found some examples off of oracle.com
 that deal with php and jsp waysof doing it, but I am not able to convert it over to cf.The php code to do the sso stuff can be found here
http://www.oracle.com/technology/oramag/webcolumns/2003/techarticles/bennett_php.htmlOracle has its own Java API for the SSO, but again, I am not totally surehow to use this.
http://download-east.oracle.com/docs/cd/B10464_05/manage.904/b10422/toc.htmhttp://download-east.oracle.com/docs/cd/B10464_05/manage.904/b10852/toc.htm
Any help would be appreciated.Thanks,Matthew_Stay in touch with old friends and meet new ones with Windows Live Spaces
http://clk.atdmt.com/MSN/go/msnnkwsp007001msn/direct/01/?href=""
-To unsubscribe from this list, manage your profile @http://www.acfug.org?fa=login.edituserform
For more info, see http://www.acfug.org/mailinglistsArchive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com--- Douglas Knudsen
http://www.cubicleman.comthis is my signature, like it?



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-