Search the web
Sign In
New User? Sign Up
ajaxcfc · ajaxCFC Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1351 - 1386 of 1584   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1351
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" ...
Ryan
phidelt1350
Offline Send Email
Jul 1, 2007
11:11 pm
1352
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...
erik tsomik
erstud77
Offline Send Email
Jul 2, 2007
6:30 pm
1353
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...
Ben Densmore
bsdensmore
Offline Send Email
Jul 2, 2007
8:46 pm
1354
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...
erik tsomik
erstud77
Offline Send Email
Jul 2, 2007
8:57 pm
1355
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...
Ben Densmore
bsdensmore
Offline Send Email
Jul 3, 2007
1:54 am
1360
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...
Ryan
phidelt1350
Offline Send Email
Jul 3, 2007
2:06 pm
1361
... What did that method say ? -- Tom Chiverton Helping to elementarily consolidate wireless segments on: http://thefalken.livejournal.com ...
Tom Chiverton
tom.chiverton
Offline Send Email
Jul 3, 2007
2:17 pm
1362
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"...
russ
snake_hollywwod
Offline Send Email
Jul 3, 2007
2:50 pm
1363
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 Bango
reybango
Offline Send Email
Jul 3, 2007
4:22 pm
1364
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 ...
Ryan
phidelt1350
Offline Send Email
Jul 4, 2007
1:36 am
1365
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...
Rey Bango
reybango
Offline Send Email
Jul 4, 2007
1:49 am
1366
Rey, I downloaded the copy of AJAX I am using from RIAFORGE just a couple weeks go, however I am not using the Query files, I am just using the ...
Ryan
phidelt1350
Offline Send Email
Jul 4, 2007
2:31 am
1368
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...
daemone1
Offline Send Email
Jul 5, 2007
9:27 pm
1369
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...
Rob Gonda
z0mb1e7
Offline Send Email
Jul 6, 2007
2:05 am
1370
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...
Keith
head_java
Offline Send Email
Jul 6, 2007
8:45 pm
1371
pass all your values in a single argument instead of multiple arguments. you can serialize then into a WDDZ packet and send that. _____ From:...
Russ Michaels
snake_hollywwod
Offline Send Email
Jul 6, 2007
9:09 pm
1372
must use an array if more than 10 variables...
Troy Pioth
piotht
Offline Send Email
Jul 7, 2007
1:56 am
1374
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. ...
Keith
head_java
Offline Send Email
Jul 10, 2007
6:11 pm
1375
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...
Troy Pioth
piotht
Offline Send Email
Jul 10, 2007
6:23 pm
1376
what type of db error Russ _____ From: ajaxcfc@yahoogroups.com [mailto:ajaxcfc@yahoogroups.com] On Behalf Of Keith Sent: 10 July 2007 19:11 To:...
Russ Michaels
snake_hollywwod
Offline Send Email
Jul 10, 2007
6:23 pm
1377
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...
Keith
head_java
Offline Send Email
Jul 11, 2007
8:52 pm
1378
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...
Russ Michaels
snake_hollywwod
Offline Send Email
Jul 12, 2007
11:43 am
1379
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...
Bash103
Offline Send Email
Jul 12, 2007
10:18 pm
1380
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 ...
Russ Michaels
snake_hollywwod
Offline Send Email
Jul 12, 2007
11:15 pm
1381
Sorry, I should have added that I have dumped the method on a page and both the query and string came through fine. ... -- Bash ...
Bash
Bash103
Offline Send Email
Jul 13, 2007
1:46 am
1382
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 ...
Russ Michaels
snake_hollywwod
Offline Send Email
Jul 13, 2007
7:35 am
1383
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 ...
Bash
Bash103
Offline Send Email
Jul 13, 2007
2:19 pm
1384
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. ...
Russ Michaels
snake_hollywwod
Offline Send Email
Jul 13, 2007
2:38 pm
1385
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...
Bash
Bash103
Offline Send Email
Jul 13, 2007
2:49 pm
1386
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...
Russ Michaels
snake_hollywwod
Offline Send Email
Jul 13, 2007
3:40 pm
Messages 1351 - 1386 of 1584   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help