Hi All
I have requirment to access web service wsdl (newCarConfig.cfc?wsdl) file through javascript with out using webservice.htc file. Is there any way to achive this functionality
Thanks in advance
答:
you can read the service wsdl just as a XML file, using AJAX can achieve easily.
The following example (from http://www.captain.at/howto-ajax-process-xml.php) demonstrates a simple AJAX JavaScript for requesting XML data from a server and displaying the response in a HTML-table. The server-side script is a simple PHP script, which actually just sends some XML data. I think it can lead you to achieve what your needs: