This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Setting SOAP configuration to disable WSDL caching and adjust socket timeout | |
ini_set('soap.wsdl_cache_enabled', 0); // Disable WSDL caching | |
ini_set('soap.wsdl_cache_ttl', 900); // Set the time to live for cached WSDL files to 900 seconds (15 minutes) | |
ini_set('default_socket_timeout', 15); // Set the default socket timeout to 15 seconds | |
// Define parameters for the SOAP request | |
$params = array('param1'=>$param1); | |
// Define the WSDL URL | |
$wsdl = 'http://service_url/method?WSDL'; |