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?
feedback
|
|
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 You may check out coldbox's XMLConverter Plugin as code sample for converting built-in CF complex types into XML. | |||||||||||
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. | |||
feedback
|
|
Have the
| |||||||||
feedback
|