RE: CFMX and XML

2004-10-11 Thread John Stanley
Dave, thanks for the response. This is exactly the avenue I am pursuing. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Sunday, October 10, 2004 10:39 PM To: CF-Talk Subject: RE: CFMX and XML > Can anyone point me to a good resource on XML and CFML, > specif

RE: CFMX and XML

2004-10-10 Thread Dave Watts
> Can anyone point me to a good resource on XML and CFML, > specifically on setting up to receive an outside XML > transmission? Conceptually I'm a bit confused as to how to go > about doing this. I am familiar with sending XML, and parsing > the cfhttp.filecontent, and am setting up a page tha

RE: CFMX and XML

2004-10-08 Thread John Stanley
Doh! I had never used GetHttpRequestData beforeso.problem solved -Original Message- From: John Stanley Sent: Friday, October 08, 2004 1:25 PM To: '[EMAIL PROTECTED]' Subject: CFMX and XML Can anyone point me to a good resource on XML and CFML, specifically on setting up t

Re: CFMX and XML

2003-06-21 Thread Jochem van Dieten
Ian Skinner wrote: > I'm learning XML and integrating it wit CFMX at the same time. We are doing > a prototype application here, recreating our Intranet phone directory in > XML. The idea is to create one XML file that is stored for 1 week, (we > generally only get new employees on Mondays, so i

RE: CFMX and XML

2003-01-02 Thread Robert Bailey
: Thursday, January 02, 2003 7:15 AM To: CF-Talk Subject: RE: CFMX and XML Robert, I ran your UDF and it worked just fine. Tried with a query that had rows, one that didn't, with specifying optional params, and without specifying optional params. Worked fine every time on my system with

RE: CFMX and XML

2003-01-02 Thread Samuel Neff
D]] > Sent: Thursday, January 02, 2003 9:13 AM > To: CF-Talk > Subject: RE: CFMX and XML > > > I am convinced that the ToString() function is not working as > it is returning a null value or no value at all whenever I > try to return the XML doc as a string. Has anyone e

RE: CFMX and XML

2003-01-02 Thread Robert Bailey
]] Sent: Thursday, January 02, 2003 6:13 AM To: CF-Talk Subject: RE: CFMX and XML I am convinced that the ToString() function is not working as it is returning a null value or no value at all whenever I try to return the XML doc as a string. Has anyone else had a problem with this at all? If not, anyone

RE: CFMX and XML

2003-01-02 Thread Robert Bailey
! -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 5:34 PM To: CF-Talk Subject: RE: CFMX and XML Here is the code from the url I provided function queryToXML(query){ var root = "query"; var row = "row&quo

RE: CFMX and XML

2002-12-30 Thread Robert Bailey
ot;,"Rows"); xmlString = toString(xmlObj); Output using ToString(xmlObj) #ToString(xmlObj)# Output using CFDUMP var="xmlObj" -----Original Message- From: Samuel Neff [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 5:30 PM To: CF-Talk Subject: RE: CFMX and XM

RE: CFMX and XML

2002-12-30 Thread Samuel Neff
Perhaps if you post some code we can tell you what you're doing wrong. > -Original Message- > From: Robert Bailey [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 30, 2002 6:58 PM > To: CF-Talk > Subject: RE: CFMX and XML > > > No one knows what I am do

RE: CFMX and XML

2002-12-30 Thread Robert Bailey
No one knows what I am doing wrong? -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 12:31 PM To: CF-Talk Subject: CFMX and XML I am trying to return an XML string through a CFC. Even when using this in a normal CFM page, I it does not wo

Re: CFMX and XML-RPC

2002-11-07 Thread Roger
On Fri, 08 Nov 2002 01:47:12 -0600, in cf-talk you wrote: >Thanks... unfortunately, this is apparently a code-related problem... Hm... I apparently wasn't giving myself enough credit. The example code works fine on CF5, so it's a CFMX-specific issue. Guess I'll go see if it's a known bug or not..

Re: CFMX and XML-RPC

2002-11-07 Thread Roger
On Wed, 6 Nov 2002 14:31:48 -0500, in cf-talk you wrote: >You might want to try this program if you are on windows...it will >sniff http packets going along the wire. Jon, Thanks... unfortunately, this is apparently a code-related problem, because I'm getting the same results from a server hoste

RE: CFMX and XML-RPC

2002-11-06 Thread Stacy Young
There's also sniff'em which is quite good! Stace -Original Message- From: jon hall [mailto:jonhall@;ozline.net] Sent: Wednesday, November 06, 2002 2:32 PM To: CF-Talk Subject: Re: CFMX and XML-RPC You might want to try this program if you are on windows...it will sniff ht

Re: CFMX and XML-RPC

2002-11-06 Thread jon hall
You might want to try this program if you are on windows...it will sniff http packets going along the wire. I couldn't live without it. It will tell you exactly what is being send and where. http://www.effetech.com/sniffer/ -- jon mailto:jonhall@;ozline.net Wednesday, November 6, 2002, 1:46:

RE: CFMX and XML

2002-08-12 Thread Greg McDaniel
Mathew, Jon and Brook, Thank you for all of your input. I've looked into CFX xml tags, but not CFX http tags. JSP looks like an answer that will work. Who would have thought that sending and receiving an XML string would be such an effort. Greg __

Re: CFMX and XML

2002-08-10 Thread Jon Hall
I'm sure that's helpful to a lot of people, but it doesn't do what the code in his example did. Perhaps you know, can CF act as a server for data that is sent this way? I've tried and must be missing something. It's not a header, and it's not a form field. So I don't see how it could get past the

Re: CFMX and XML

2002-08-10 Thread Brook Davies
From the Release notes addition on macromedia.com: You can now use cfhttp to post raw XML data, by using a new parameter type called XML. This sends the raw XML data with content-type = text/xml. The following is a sample cfhttp call to post raw XML data: Also, cfhttp allows only one c

Re: CFMX and XML

2002-08-10 Thread Jon Hall
I was hoping someone else would answer this, because all my posts about this turn into rants. :) This is what cfhttp does, except that when you use cfhttp to post anything, it automatically urlencodes the string. If you have control over the other end of this transaction you could ask them to do

Re: CFMX and XML

2002-08-10 Thread Matthew Walker
I think you want cfxml and xmlparse() - Original Message - From: "Greg McDaniel" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, August 10, 2002 4:54 AM Subject: CFMX and XML > Does CFMX have a better way of sending and receiving > XML data? The following way seem