You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a project with several, different Webservices (different WSDLs) where i generated client classes with the generator.
When i try to use multiple services within one php runtime, i get problems as each client shares the same instance of AbstractSoapClientBase::soapClient.
IMHO there are two solutions:
AbstractSoapClientBase::soapClient will be made an instance variable
AbstractSoapClientBase::soapClient should be defined some where further down in the hierarchy (per WSDL client)
The text was updated successfully, but these errors were encountered:
I understand your issue. First thing first, could you create this issue at the PackageBase project as it does concern the PackageGenerator project actually.
In a way it also affects the PackageGenerator project, as client generation must be changed, if changes are made in AbstractSoapClientBase. I created now PackageBase#15 to address the issue in PackageBase project.
I have a project with several, different Webservices (different WSDLs) where i generated client classes with the generator.
When i try to use multiple services within one php runtime, i get problems as each client shares the same instance of AbstractSoapClientBase::soapClient.
IMHO there are two solutions:
The text was updated successfully, but these errors were encountered: