On Tue, May 24, 2011 at 10:48 AM, James Holmes wrote: > One issue the OP faces is that the traffic is HTTPS. The request will > have to change to HTTP before anything useful will show up.
In that case, these are the steps I usually go through: 1. Download the WSDL file. 2. Change the endpoints from HTTPS to HTTP. 3. Save the file on a site. 4. Modify the hosts file of the ColdFusion server to point the hostname in the WSDL to some other server under your control. 5. On that other server set up a HTTP to HTTPS conversion listening on port 80 and forwarding to port 443 on the server the webservice runs on. (I typically use stunnel for that). 6. Invoke the service from CF. 7 Sniff with Wireshark. A setup with Fiddler could do this without the need for a second server, but I use this for lots of non HTTP protocols so I have a permanent stunnel setup anyway. Jochem -- Jochem van Dieten http://jochem.vandieten.net/ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344885 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

