RE: Web Services and CFMX6.1 -- Why doesn't it work?

2004-04-13 Thread Michael Corbridge
Sung, Don't get too frustrated. The problem here is that you are not invoking the webservice through the correct path,Try: cfinvoke webservice=http://localhost:8500/ws/helloworld.cfc?wsdl http://localhost:8500/ws/helloworld.cfc?wsdl Let me know how it goes, Michael Corbridge _ From

RE: Web Services and CFMX6.1 -- Why doesn't it work?

2004-04-13 Thread Michael Corbridge
Sung, Sorry - my bad,I connect up to the built in webserver for testing. However, I note that I get the same error you get if the path to the cfc is incorrect. Can you browse the cfc? _ From: Sung Woo [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 13, 2004 10:21 AM To: CF-Talk Subject:

RE: JavaScript: using Submit()

2003-02-13 Thread Michael Corbridge
the submit() does not take any arguments to accomplish this, have that checkbox call a function that contains this code: document.forms[0].action = index.cfm; document.forms[0].myhidden.value = remove; document.forms[0].submit(); Make sure that your form DOES NOT have a submit button in it, and

RE: URL Scope

2003-01-12 Thread Michael Corbridge
Too Long) status if a URI is longer than the server can handle (see section 10.4.15). Note: Servers should be cautious about depending on URI lengths above 255 bytes, because some older client or proxy implementations may not properly support these lengths. hth michael corbridge macromedia

RE: Java script ot help

2002-11-05 Thread Michael Corbridge
Joshua, You a bit thin on the details here, but make sure that the cf variable (#projectid#) is wrapped in cfoutput/cfoutput - mike -Original Message- From: Joshua Tipton [mailto:jtipton1;directvinternet.com] Sent: Monday, November 04, 2002 7:00 PM To: CF-Talk Subject: Java script

RE: CFC newbie

2002-10-18 Thread Michael Corbridge
create a CF mapping for 'com' -Original Message- From: Thomas Chiverton [mailto:thomas.chiverton;locavista.com] Sent: Friday, October 18, 2002 11:05 AM To: CF-Talk Subject: RE: CFC newbie cfinvoke component=com.locavista.gui method=header That should read com.local.gui sorry,

RE: Dynamic checkboxes and the resultant page.

2002-10-15 Thread Michael Corbridge
try this: cfset variables.testVar = 102310OLD=QQQ100,202301OLD=QQQ200 cfset variables.nvPair1 = listGetAt(variables.testVar,1) cfset variables.nvPair2 = listGetAt(variables.testVar,2) cfset variables.var1=listGetAt(variables.nvPair1,1,) cfset

RE: CF Intermediate Page.

2002-10-14 Thread Michael Corbridge
or you can use CFFLUSH, a new tag with CFMX -Original Message- From: Srimanta [mailto:[EMAIL PROTECTED]] Sent: Monday, October 14, 2002 12:50 AM To: CF-Talk Subject: CF Intermediate Page. Hi All, Can someone please advise as to how to implement an intermediate page in Cold Fusion

RE: CFINCLUDE in CFMX so sloooow !

2002-10-11 Thread Michael Corbridge
I just wanted to add some data to this... initial run: included page first Method = 21453 second Method = 1860 total = 23313 /included page base page runtime = 25297 /base page - second run: included page first Method = 22203 second Method = 1625 total =

RE: Another MX boo boo

2002-10-10 Thread Michael Corbridge
Rob, I get: dateFormat(now(), dd/mm/yy (ddd)) = 10/10/02 (Thu) on my CFMX server. Are you still experiencing difficulties, and let me know if you are. Thanks, michael d corbridge macromedia 617.219.2307 [EMAIL PROTECTED] -Original Message- From: Rob Rohan [mailto:[EMAIL

RE: Web services question from a beginner

2002-10-08 Thread Michael Corbridge
John, We've all spent '8 hours' getting to square one, so don't get discouraged. Here's some code that accomplishes what you are after: cfscript ws = createObject(webservice,http://www.ejseinc.com/WeatherService/Service.asmx?WSDL;); getLocation =

RE: Web services question from a beginner

2002-10-08 Thread Michael Corbridge
btw cfscript ws = createObject(webservice,http://www.ejseinc.com/WeatherService/Service.asmx?WSDL;); objWs = ws.getWeatherInfo(02466); getLocation = objWs.getLocation(); getForecast = objWs.getForecast();

RE: CFMX bug?

2002-10-03 Thread Michael Corbridge
Peter, I would like to look into this issue for you. What was your upgrade path? michael d corbridge macromedia 617.219.2307 [EMAIL PROTECTED] -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 2:09 AM To: CF-Talk Subject: CFMX bug?

RE: CFC debug bug...

2002-10-03 Thread Michael Corbridge
Here's my debug info: ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk FAQ:

RE: Math In MX?

2002-10-03 Thread Michael Corbridge
Lee, Any resolution to this math error? I ran the division on my MX box and indeed the quotient is 0.346752058554 michael d corbridge macromedia 617.219.2307 [EMAIL PROTECTED] -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 10:19 PM To:

RE: -OT- Another Javascript problem with forms

2002-10-03 Thread Michael Corbridge
Thane, I can get the fields to sum correctly by ensuring that the initial value of: window.document.ExpenseForm.GrandTotalAmount.value = 0; outside the while loop; SCRIPT language=Javascript function addTotals() { i = 0

RE: CFC debug bug...

2002-10-03 Thread Michael Corbridge
:\CFusionMX\wwwroot\research\cfBugs\cftalk-03.cfm -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 9:37 AM To: CF-Talk Subject: RE: CFC debug bug... Looks like your page is working :OD -Original Message- From: Michael

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-18 Thread Michael Corbridge
Try javacast, which is a new function in cfmx cfscript x = 1; y = javacast(int,x); /cfscript -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 10:30 AM To: CF-Talk Subject: RE: Jsp Vs Cfm (CFMX) -- Test Code I doubt anyone outside of

RE: Flash Remoting Date Problem

2002-09-17 Thread Michael Corbridge
I just checked this out on my system and the proper date is return from the cfc to flash. Perhaps you can send me your code so I can have a look. michael d corbridge macromedia 617.219.2307 [EMAIL PROTECTED] -Original Message- From: Ben Johnson [mailto:[EMAIL PROTECTED]] Sent:

RE: CFC newbie question

2002-09-05 Thread Michael Corbridge
Ali, Here is a stripped down version of your cfc that works with the native 'exampleapps' datasource that is shipped with CFMX. Notes: You have set the method access='private' which means that method can only be called from another method in the component. When starting out with cfc's, I

RE: CFC newbie question

2002-09-05 Thread Michael Corbridge
h... all the example code was removed from my previous email. I'll try again. cftalk1.cfm --- cfinvoke component=cftalk1 method=sendMail emailid=Raymond returnVariable=r_return cfdump var=#r_return# cftalk1.cfc

RE: Newbie Needs Help

2002-09-03 Thread Michael Corbridge
here's some code: cfquery datasource=exampleapps name=q1 select FirstName from tblEmployees /cfquery cfquery datasource=exampleapps name=q2 select LastName from tblEmployees /cfquery cfset i = 0 script language=JavaScript1.2 aTemp1 = new Array();

RE: flash and cfmx integration

2002-08-26 Thread Michael Corbridge
frame-to-frame inside the one flash movie. This can be accomplished by placing a button on the movie that has a 'nextFrame()' action attached to it. I can email a very simple example app to you if you wish. Michael Corbridge macromedia -Original Message- From: Vikram Ponuganti [mailto

RE: Losing Client variables

2002-08-25 Thread Michael Corbridge
I'm not seeing this behavior on Netscape 6.2.3 -Original Message- From: Kathy Wargo [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 25, 2002 9:50 AM To: CF-Talk Subject: Losing Client variables A move to Cold Fusion 6 mx has resulted in the lose of Client variables when using

RE: 33 and 33d the same?

2002-08-14 Thread Michael Corbridge
Brian, I'll keep you updated. At this time I don't have any firm dates. Michael Corbridge Macromedia (617) 219-2307 [EMAIL PROTECTED] -Original Message- From: Brian Thornton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 1:55 AM To: CF-Talk Subject: RE: 33 and 33d

RE: 33 and 33d the same?

2002-08-13 Thread Michael Corbridge
This behavior has been confirmed and a bug has been entered. Michael Corbridge Macromedia (617) 219-2307 [EMAIL PROTECTED] -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 9:06 PM To: CF-Talk Subject: Re: 33 and 33d the same? CFMX