I've a complete SOAP envelope (XML) ready. What would be the easiest way to send this envelope in php? I know about SoapClient and Zend_Soap_Client but please consider this particular case, where I just want to send this envelope and print the xml response.
//Pseudo function for what I wanna do
public function sendEnvelope($xmlEnvelope, $url)
{
//send this envelope to $url
//return response
}