Hey Everyone, I have a pretty damn simple AJAX call on a new web site I'm setting up but it's not working. I get the dreaded "Invalid Reply from Server" ...
Hi. I am trying to create a 2 dropdown list wich supposed to populate the county depends upon slected state. I Took the code from the web site but it doesn ot...
in your getCounty() function you are passing in a string called 'state' instead of passing in a variable name state so when your function receives the argument...
OK. I change the 'state' to '$(state).value and now it gives me county as "anavailable " which suppposed to happened when state does not match . IN the...
have you verified the argument being passed in is actually passing in a value? Do an alert on the state variable and see what's being passed in. Or you can...
An update on this, I found that if I commented out the "onRequest" function in Application.cfc page that the AJAX call works. Does this help any? Ryan...
I believe this is a known restriction of AjaxCFC as I did read somewhere that you cannot use onrequest, and it doesn't work for me either. ... From: "Ryan"...
Ryan, Can you create a small test example using a standard application.cfc with nothing specified in the onRequest methods. That will narrow it down...
Rey and Everyone, Thanks for your replies. The same AJAX function that does not work with the onRequest function in the Application.cfc file DOES work if I ...
I think this is what Russ is referring to: http://www.robgonda.com/blog/index.cfm/2006/1/13/ajaxCFC-addressing-html-code-in-applicationcfc It looks like he...
Hello, I am trying to get ajaxCFC working in model glue and am running into trouble. Can anyone provide any examples or instructions? Any help is greatly...
Having an onRequest method in your Application.cfc is known to break Web Services, Flash Remoting, and Ajax Calls. It affects and but is not limited to...
I'm collecting values from my form to insert into database. If I have ten params that I pass via DWREngine all is great. If I add a eleventh param every...
Russ, Do you have an example. I created the WDDX packet, looked at the packet using alert, looks good. But when I send it off I'm getting a DB error. ...
Maybe I am missing something but if you are passing more than 10 variables from your form to the engine just create a javascript array and use that as one...
I know this may not be the correct forum for this ? but since I got the util.js file from AjaxCFC I'm going to post it here. I have three html radio button...
if they have the same name then they should also have the same ID, otherwise they are not going to be an array of values, they are still going to be separate...
Could someone please tell me what I'm missing? In IE 6 I get a list of 'undefined' values and in FF I get an alert box with "Invalid reply from server". I...
in order to debug this you can call the CFC from a CF page instead of from ajax. you can also dump the output to a lot file to check that what your CFC is ...
use firedebug plugin for firefox to view the request that is actually sent to the server so u can verify if it is in the correct format that the CFC is ...
Thanks for that! It is still not working but I did figure out why FF was throwing "Invalid response from server". Even thought the check HHTP is working on ...
ok well lets see how far its getting after the response is received, if your callback function is being called or if the ajax library is giving that error. ...
Got the alert ('hi'). Then another alert with "Missing callback function or metadata object". Can't thank you enough for all this step by step help. It is...
right well i'd say the problem is in your wmt_writeWorkgroups just go through your function and comment out everything then uncomment 1 line at a time until...