-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Choose WSDL #10
Comments
Can you elaborate? |
Yes, sorry. For example: Get client from diferent wsdl depending on the url like: If a call dev.synergy.com/weather Or dev.synergy.com/calculator |
Because is possible to get the portType output if a have the address of service? |
did not get the question... do you have to do something this?: if(strpos($URL, 'weather')!==false){
$client = $factory->getClient('http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL', "WeatherSoap", "Weather");
} elseif(strpos($URL, 'calculator')!==false){
$client = $factory->getClient('http://www.dneonline.com/calculator.asmx?WSDL', "CalculatorSoap", "Calculator");
} |
Hi,
In this project is posible load wsd or another depending on the url?
The text was updated successfully, but these errors were encountered: