How to implement webservice for exporting order in coldfusion?
This means instead of exporting orders as xls it would export as a web service.
Thanks
Kishor
How to implement webservice for exporting order in coldfusion? This means instead of exporting
Share
The easiest way to do this in coldfusion is to create a CFC with the functions you want to surface to the outside world have the value of ‘remote’ for the ‘access’ attribute, this will generate a SOAP webservice.
An example of how to do this (adapted from the CF docs here):
More information on how to use the built-in webservice functionality can be found here.