Re: WDDX v.s. CF 7 XML functionality

2007-04-02 Thread Tom Chiverton
On Friday 30 Mar 2007, Rick Root wrote: I'm currently working on a flex application where the user can set a variety of preferences. For example, a list of items to be automatically selected in a certain list control. OOI, why not use SharedObject() ? -- Tom Chiverton Helping to enormously

Re: WDDX v.s. CF 7 XML functionality

2007-03-30 Thread Dan O'Keefe
Thanks Jim, this is very helpful. Dan On 3/23/07, Jim Davis [EMAIL PROTECTED] wrote: -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: Friday, March 23, 2007 7:54 AM To: CF-Talk Subject: WDDX v.s. CF 7 XML functionality While having a few legacy apps

Re: WDDX v.s. CF 7 XML functionality

2007-03-30 Thread Rick Root
I still use WDDX in old and new applications. Not often, but I find it valuable for storing data in the database that I don't need to be searchable. I'm currently working on a flex application where the user can set a variety of preferences. For example, a list of items to be automatically

WDDX v.s. CF 7 XML functionality

2007-03-23 Thread Dan O'Keefe
While having a few legacy apps myself making use of WDDX, I was wondering if WDDX still has value that is not currently offered in the XML support of CF 7.02. Seems like opedwddx.org is pretty stale. Any thoughts? Thanks, Dan -- Dan O'Keefe

RE: WDDX v.s. CF 7 XML functionality

2007-03-23 Thread Tero Pikala
PROTECTED] Sent: 23 March 2007 11:54 To: CF-Talk Subject: WDDX v.s. CF 7 XML functionality While having a few legacy apps myself making use of WDDX, I was wondering if WDDX still has value that is not currently offered in the XML support of CF 7.02. Seems like opedwddx.org is pretty stale. Any thoughts

RE: WDDX v.s. CF 7 XML functionality

2007-03-23 Thread Jim Davis
-Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: Friday, March 23, 2007 7:54 AM To: CF-Talk Subject: WDDX v.s. CF 7 XML functionality While having a few legacy apps myself making use of WDDX, I was wondering if WDDX still has value that is not currently

WDDX from CF 5 to CF MX 6.1

2005-05-13 Thread Anthony Dimino
hi liere, It works! Thanks so much for your help. Yes, there are other developers still working with spectra! hi anthony, we faced the same problems when migrating from spectra1.5. 1/oracle8i/cf5 to spectra1.5.3/oracle8i/CFMX for us the culprits are control characters inside a CF5 wddx

WDDX from CF 5 to CF MX 6.1

2005-05-12 Thread anthony . dimino
existing WDDX but i'm trying to search a better solution, without lot of development :( For the new WDDX, using CF MX 6.1, no problem If i change JVM parmaters with dfile.encoding = iso-8859-1 The problem is only for the prevoius WDDX used in CF 5... What's the best way using unicode ?utf-8? I'm lost

WDDX from CF 5 to CF MX 6.1

2005-05-12 Thread liere lieresen
hi anthony, we faced the same problems when migrating from spectra1.5.1/oracle8i/cf5 to spectra1.5.3/oracle8i/CFMX for us the culprits are control characters inside a CF5 wddx paket, which CFMX cannot deserialize anymore, to see if it is the same for you, try this snippet we just do a replace

WDDX on CF 5.0

2004-05-09 Thread Karl Simanonok
I'm running CF 5.0 and using WDDX to get data back from another site.What's weird is sometimes the WDDX code is accepted on my server, sometimes it isn't and throws an error.Exact same WDDX code is returned in both cases.Has anybody seen this happen before?Any ideas about what to do about

Re: WDDX on CF 5.0

2004-05-09 Thread Dick Applebaum
What error do you get? I did a lot of WDDX exchanges in 5.0 between remote hosts -- once I got the programs debugged there was no problem with WDDX. Can you make it fail? Could a timeout be the cause? Could you catch a unaccepted WDDX packet and save it to a text file where you could do a

Javascript/WDDX and CF

2003-01-22 Thread brook
I'm kinda stumped here. I have a pop up window. When it loads, I'm using JS to get a WDDX packet from a form field in the main window. How do I then pass this JS Var back to CF, so CF can deserialize the packet? I guess I could use a hidden form to submit the data to the new window so it is

Re: Javascript/WDDX and CF

2003-01-22 Thread Rahmin Pavlovic
. - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 23, 2002 11:57 AM Subject: Javascript/WDDX and CF I'm kinda stumped here. I have a pop up window. When it loads, I'm using JS to get a WDDX packet from a form field in the main window

WDDX and CF

2000-08-07 Thread Roger Lim
Guys, I have a program code to pass variables from CF to Javascript using WDDX packets, in part of my program below, extract() is a Javascript function. However I need to pass the variable out from JS back to CF, but I realised that WDDX doesn't have a JS2WDDX and WDDX2CFML action. Is there any

RE: WDDX and CF

2000-08-07 Thread Matthew Walker
Is there any way to pass variables in and out of Javascript function? The CF only runs in the fraction of a second before the page loads, then the JavaScript runs. There's no CF processing after the page loads You would have to load a new page (it could be a hidden frame) to send info from

RE: WDDX and CF

2000-08-07 Thread Matthew Walker
Hmm, which means I just have a plain new page to execute all the JS functions and automatically re-direct to the page which I want to display out the variables? If you want to take the data from CF, do something with it in JS then send it back to the server so that it can be displayed by CF