How do you then handle the exception on the ws consumer-side thrown by the ws producer-side?
I'm now using SOAP because I can use <cfinvoke> easily and not worry about JSON messing up my data types. However its disadvantages are:
- WSDL must have a return type (i.e. can't return custom exception struct easily)
- WSDL needs reloading during development
- exception is not transmitted over nicely nor very helpful, and
- performance is quite slow
Other then SOAP, what would you use to do CF-to-CF method call? I can think of these alternatives:
<cfhttp>to?method=remoteMethod
Cons: need to use a custom json serializer because CF's would mess up datafield like phone number (serializes to a float) or dates (serializes to human-readable date)
<cfhttp>to.cfm
Cons: need to make sure onRequest and other layouts are not rendered (cannot use onCFCRequest())
Any comment or suggestion?