which attributes from existing WSDL do I have to use in order to get the same functionality in non-wsdl mode? I would like to use non wsdl SoapClient in PHP but I can't get the correct configuration. I want to use Salesforce SOAP API but I don't want to store the wsdl file localy. I created that wsdl file and it works when i use it like this
$soap = new \SoapClient("enterprise.wsdl.xml");
but I would prefer this way
$soap = new \SoapClient(null, [
"location" => "#SomeValueThatICanFindInTheActualWSDL#",
"uri" => "#SomeOtherValueThatICanFindInTheActualWSDL#",
]);
which wsdl attributes should I use as location and uri?