I'm making a SOAP request with cfhttp due to SSL certificates to retrieve a document. We have limited access to the server, so I'm not sure if we can adjust the server to get the certificats added to the CF keystore. (http://www.coldfusionmuse.com/index.cfm/2005/01/29/keystore)
The responseBody returns a ByteArrayOutputStream which holds the content of the soap message and document contents (http://www.w3.org/TR/SOAP-attachments).
Does anyone know if ColdFusion provides any built in methods to separate the two, IE cast it into a ColdFusion.Response object of some sort which is the result of using cfinvoke, or do I need to dust off my Java books and iterate through the ByteArray to strip out my content. Thanks.