|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-12-09 14:50 UTC] jille at hexon dot cx
[2021-02-12 15:55 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2021-02-12 15:55 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sat Jan 17 02:00:01 2026 UTC |
Description: ------------ When you construct a SoapClient it immediatly fetches the WSDL, before you have the chance to set cookies. Our setup requires some cookie to be sent when fetching the WSDL which is currently impossible. It should be possible to give cookies to the SoapClient constructor which should be sent along with the request for the WSDL. Test script: --------------- $soap = new SoapClient('http://webservice/wsdl', array('username' => 'x', 'password' => 'y')); $soap->__setCookie('extra_thing', 'z');