Cliente soap de zend - usuario custom?
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
$context = stream_context_create(array( 'http' => array( 'user_agent' => 'pruebas' ) ); $client = new Zend_Soap_Client($wsdl, array('stream_context' => $context)); $client->setStreamContext($context);
#3
$client = new Zend_Soap_Client($wsdl); $options = array_merge($client->getOptions(), array( 'trace' => true, 'user_agent' => 'testing' )); $soapClient = new Zend_Soap_Client_Common(array($client, '_doRequest'), $wsdl, $options); $client->setSoapClient($soapClient);