Re: CF 4.5 SOAP

2005-05-11 Thread Keith Gaughan
Doug Ford wrote: Hi Folks - I am relatively new to this forum... Long time stalker, first-time poster! I was wondering if anybody has any experience with CF 4.5 (yes, I know it's old) and SOAP. The company who I process online ACH payments with has recently switched to using a SOAP

RE: CF 4.5 SOAP

2005-05-11 Thread Ben Forta
[mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 2:11 PM To: CF-Talk Subject: Re: CF 4.5 SOAP Doug Ford wrote: Hi Folks - I am relatively new to this forum... Long time stalker, first-time poster! I was wondering if anybody has any experience with CF 4.5 (yes, I know it's old

RE: CF 4.5 SOAP

2005-05-11 Thread Mark A Kruger
, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 1:15 PM To: CF-Talk Subject: RE: CF 4.5 SOAP You could also use cfhttp to make the calls, but parsing the results

Re: CF 4.5 SOAP

2005-05-11 Thread Adam Haskell
. In all honesty, it would take less time to upgrade than to jump through the hoops you'll need to make this work. --- Ben -Original Message- From: Keith Gaughan [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 2:11 PM To: CF-Talk Subject: Re: CF 4.5 SOAP Doug Ford wrote

RE: CF 4.5 SOAP

2005-05-11 Thread Doug Ford
Keith thanks for the info. I will look into that. Ben - Thanks for the idea of suggesting, but unfortunately the company I am with doesn't want to invest the money into a new product at this time. Plus, I would have to make sure that a home-grown store/enrollment program works with the new

RE: CF 4.5 SOAP

2005-05-11 Thread Doug Ford
Here's a page from the manual that I have been sent. This is what the server wants. This is the sample they gave me. What I would be doing have a few more fields in it, but not a lot more. To post messages and

Re: CF 4.5 SOAP

2005-05-11 Thread Jochem van Dieten
Doug Ford wrote: I was wondering if anybody has any experience with CF 4.5 (yes, I know it's old) and SOAP. Yes. Unfortunately, I might add, because I learned so many things I so don't want to know. The company who I process online ACH payments with has recently switched to using a

Re: CF 4.5 SOAP

2005-05-11 Thread Jochem van Dieten
Doug Ford wrote: Here's a page from the manual that I have been sent. This is what the server wants. Over SSL? ?xml version=1.0 encoding=utf-8? CF 4.5 doesn't do UTF-8. Fortunately the first 128 characters are identical to those in US-ASCII. soap:Envelope

Re: CF 4.5 SOAP

2005-05-11 Thread Adam Haskell
Nothing about HTTP headers. You won't be able to post this using cfhttp, but it looks doable to construct the XML in CF and then post it using something else. Jochem Why couldn;t he post using cfhttp, i must be missing something? Adam H On 5/11/05, Jochem van Dieten [EMAIL

RE: CF 4.5 SOAP

2005-05-11 Thread Mark A Kruger
You crack me up jochem - nice mantra. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 1:45 PM To: CF-Talk Subject: Re: CF 4.5 SOAP Doug Ford wrote: I was wondering if anybody has any experience with CF 4.5 (yes, I know it's old

Re: CF 4.5 SOAP

2005-05-11 Thread Jochem van Dieten
Adam Haskell wrote: Nothing about HTTP headers. You won't be able to post this using cfhttp, but it looks doable to construct the XML in CF and then post it using something else. Why couldn;t he post using cfhttp, i must be missing something? How are you going to get this XML into the

Re: CF 4.5 SOAP

2005-05-11 Thread Jochem van Dieten
Jochem van Dieten wrote: Doug Ford wrote: I was wondering if anybody has any experience with CF 4.5 (yes, I know it's old) and SOAP. Yes. Unfortunately, I might add, because I learned so many things I so don't want to know. COrrection: it was CF 4.0 ... Jochem

RE: CF 4.5 SOAP

2005-05-11 Thread Ali Awan
I think this is what you are looking for. CFSOXML from the Macromedia CF Developer Exchange. Beware of the wrapping URL. http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn131extID=100361 8#loc=en_usview=sn131extID=1003618viewName=ColdFusion%20Extensionavm=1 In a previous

Re: CF 4.5 SOAP

2005-05-11 Thread David Lakein
On 5/11/05, Jochem van Dieten [EMAIL PROTECTED] wrote: Adam Haskell wrote: Nothing about HTTP headers. You won't be able to post this using cfhttp, but it looks doable to construct the XML in CF and then post it using something else. Why couldn;t he post using cfhttp, i must be

Re: CF 4.5 SOAP

2005-05-11 Thread David Lakein
A few months ago I had to (temporarily) backport a webservice-using app to CF5 from MX. Even in MX it couldn't use cfinvoke, as the webservice didn't have a WSDL, but was able to use CFHTTP in CFMX (coworker found exact xml syntax and http headers necessary). The XML packet gets sent in the

Re: CF 4.5 SOAP

2005-05-11 Thread Adam Haskell
Thank you... forgot body type was added in MX :) Adam H On 5/11/05, Jochem van Dieten [EMAIL PROTECTED] wrote: Adam Haskell wrote: Nothing about HTTP headers. You won't be able to post this using cfhttp, but it looks doable to construct the XML in CF and then post it using something