[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-22 Thread Andrew Scott
07 8:26 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes On 1/22/07, Andrew Scott <[EMAIL PROTECTED]> wrote: That's exactly what Adam asked for. The response that the user would see, did he not? Not exact

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-22 Thread Shane Farmer
On 1/22/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > > That's exactly what Adam asked for. The response that the user would see, > did he not? > Not exactly. he said the client would be connecting with a .net client. There are some known issues with .net and CF not talking as they should through

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-21 Thread Andrew Scott
D] On Behalf Of Toby Tremayne Sent: Monday, 22 January 2007 11:09 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes Yes :) But using cf to grab the response isn't necessarily 100% accurate, as depending on his app

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-21 Thread Adam Chapman
ooglegroups.com Subject: [cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes Thanks Toby & Shane, Will give both these methods a crack and see what happens.. Cheers, Adam From: Shane Farmer [mailto:[EMAIL PROTECTED] Sent: Sunda

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-21 Thread Toby Tremayne
roups.com [mailto:[EMAIL PROTECTED] > On Behalf Of Toby Tremayne > Sent: Monday, 22 January 2007 10:50 AM > To: cfaussie@googlegroups.com > Subject: [cfaussie] Re: cfinvoke webservice, xml response and 'cf' > datatypes > > > > That will get the generat

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-21 Thread Andrew Scott
ehalf Of Toby Tremayne Sent: Monday, 22 January 2007 10:50 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes That will get the generated response from cf, but the full detail of what is received by the browser could be

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-21 Thread Toby Tremayne
That will get the generated response from cf, but the full detail of what is received by the browser could be altered by his environment or application - so the only way to see that is look at the full message and response. Toby On 22/01/2007, at 10:36 , Andrew Scott wrote: > Adam, > > > >

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-21 Thread Andrew Scott
Adam, I am surprised these gurus, no offence guys. But I will ask is this on cfmx 7.0? If so try this: ws = CreateObject("webservice","http://localhost/soapheaders/headerservice.cfc?WS DL"); req = getSOAPRequest(ws); If you look at the other function available y

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-21 Thread Adam Chapman
Thanks Toby & Shane, Will give both these methods a crack and see what happens.. Cheers, Adam _ From: Shane Farmer [mailto:[EMAIL PROTECTED] Sent: Sunday, 21 January 2007 4:55 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: cfinvoke webservice, xml response and

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-20 Thread Shane Farmer
Hi Adam, A very handy tool you could try is SoupUI (www.soapui.org). We use it at work to run test suites against our Java web services. You point it at the WSDL, it can generate a default request where you fill in the blanks and hit send. What you get back is the actual SOAP envelope with all the

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-20 Thread Toby Tremayne
And yes that should be principle not principal - more caffeine required. On 21/01/2007, at 12:52 , Toby Tremayne wrote: > Hi Adam, > > what you need is an http proxy - basic principal is that you goto > http://localhost:somerandomport and setup the http forwarder to > listen on that po

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-20 Thread Toby Tremayne
Having re-read the second part of your email I'd also recommend that you're probably best off creating an xml packet to return rather than passing a native array - that way your service becomes tech agnostic and you can consume it any way you like. Toby On 19/01/2007, at 16:00 , Adam Chapma

[cfaussie] Re: cfinvoke webservice, xml response and 'cf' datatypes

2007-01-20 Thread Toby Tremayne
Hi Adam, what you need is an http proxy - basic principal is that you goto http://localhost:somerandomport and setup the http forwarder to listen on that port, but forward to your proper web address. Then you make your web requests as normal and you can watch the raw data being d