I've created a ColdFusion Web Service, but it's returning WDDX instead of SOAP. How do I make it return SOAP instead of WDDX?

link|improve this question

50% accept rate
Perhaps I need to convert my complex data types to xml? – Eric Belair Nov 7 '11 at 17:41
Depends on what you wanna return. If XML is good enough, use XML since it's easier then setting up multiple CFCs just to get the SOAP types right. If you have control on both producer and consumer side, use JSON (super easy, but might have unexpected type conversion on number / integer / date). – Henry Nov 7 '11 at 17:47
I am only the service provider - I have no control over the consumer side. – Eric Belair Nov 7 '11 at 17:53
Is there no way for ColdFusion Web Services with Complex Types to return normal XML? – Eric Belair Nov 7 '11 at 17:57
yes, see my updated answer – Henry Nov 7 '11 at 18:07
show 1 more comment
feedback

3 Answers

For complex objects, you need to setup the CFCs correctly. Read: Using ColdFusion components to define data types for web services

update: Or, you can create the XML representation of your object yourself with <cfxml>, then return the XML object with returnType="xml" in cffunction.

You may check out coldbox's XMLConverter Plugin as code sample for converting built-in CF complex types into XML.

link|improve this answer
That throws an exception, because my returntype is complex. – Eric Belair Nov 7 '11 at 17:36
Edited my answer based on your clarification. – Henry Nov 7 '11 at 17:46
Edited my answer based on your clarification, again. – Henry Nov 7 '11 at 18:10
Ok. But how can I get the method to return properly formatted XML while the WSDL shows the complex type as the return type? – Eric Belair Nov 7 '11 at 18:12
I'm not a WSDL expert, but as far as I know once you've constructed your XML object, and return it with returnType="xml" in your remote cffunction, it should work. – Henry Nov 7 '11 at 18:20
show 5 more comments
feedback

A CFC method with access=remote ought to return soap, rather than WDDX. I'm sure I've used this functionality for years. What I'm suspecting may be happening is that the content-type is based on the request a client makes. I would download Soap-UI and test http://your.server/yourCFC.cfc?wsdl to see whether SOAP-UI gets WDDX thrown back at it. If is does, I'm at a bit of a loss, but do report it here anyway and I'll take a further look. If Soap-UI sees a proper response, take a look at the headers it's sending and compare them to the request you're making (possibly through the browser?)

You can also use Fiddler to record soap-ui traffic and compare that against any other source of requests.

The http request thing above may be completely off, but it's relatively easy to check and I think it's ringing a bell.

You may also want to check the return type of the function you're writing. In order for CF to generate a good WSDL, it needs to be able to extract metadata from the CFC you're returning.

link|improve this answer
Yes, SOAPUI showed me that my WebService was working correctly. I was trying to call it directly in a browser. – Eric Belair Nov 9 '11 at 2:22
feedback

Have the <cffunction> return an XML object, and have the "returnformat" parameter be set to "plain".

<cffunction name="GetData" returntype="xml" returnformat="plain">
link|improve this answer
No. I have created a Web Service, and when I call a method, it returns the data I expect, but in WDDX, not in SOAP-formatted XML. – Eric Belair Nov 7 '11 at 17:37
Edited my answer based on your clarification. – Shawn Holmes Nov 7 '11 at 17:44
But now I have to rewrite my complex types as xml. – Eric Belair Nov 7 '11 at 17:56
That is correct. – Shawn Holmes Nov 7 '11 at 20:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.