PackageBase
PackageBase copied to clipboard
Contains base classes from which the generated classes from PackageGenerator inherit
This seems to be a PHP 8 issue. Due to the `__default_headers` being a private property, subsequent calls to setSoapHeader overwrite the previously set headers.
As an enhancement (?) , for those who need to change the http header globally, we could allow stream_context to be passed through options once so it would not be...
SoapClient->_stream_context is private in php8. To work around that a stream context is systematically created during init and provided to SoapClient. Another aproach I tried before was to get access...
Trying to write tests for next case. My app is calling soap service and correctly stores response to db. I have many response xml examples from service documentation app, so...
Hello Everyone i just came across an error when trying to set custom http headers. `$get->setHttpHeader("x-api-key", "123456");` Which throws an error: `Cannot access private property SoapClient::$_stream_context` Caused by the line...
What is the correct way to overwrite the default soap client? Also please convert self:: references to static:: references so they because instance away. self:: doesn't now recognize any constant...
is there's support multi request same time with out waiting each others
Hello, i have generated class by wsdltophp and all is ok, but now I need to use a method that requires two parameters of type DateTme and defined in the...
Hello since PHP 8.3 we have a new issue, Deprecated: Return type of WsdlToPhp\PackageBase\AbstractStructBase::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily...