Browse Source

Undo changes in 499e472548ecaf88f45bdcc0475364992ac40243

Julio Montoya 10 years ago
parent
commit
812e047184

+ 1 - 1
main/webservices/client_soap.php

@@ -12,7 +12,7 @@
  *
  */
 
-//exit; //Uncomment this in order to execute the page
+exit; //Uncomment this in order to execute the page
 
 require_once '../inc/global.inc.php';
 $libpath = api_get_path(LIBRARY_PATH);

+ 5 - 4
main/webservices/registration.soap.php

@@ -59,14 +59,15 @@ function WSHelperVerifyKey($params)
         }
     }
 
-    if ($debug)
-        error_log("checkip ".intval($check_ip));
+    if ($debug) {
+        error_log("checkip " . intval($check_ip));
+    }
 
     if ($check_ip) {
         $security_key = $_configuration['security_key'];
     } else {
         $security_key = $ip.$_configuration['security_key'];
-        error_log($security_key);
+        //error_log($secret_key.'-'.$security_key);
     }
 
     $result = api_is_valid_secret_key($secret_key, $security_key);
@@ -79,7 +80,7 @@ function WSHelperVerifyKey($params)
 // Create the server instance
 $server = new soap_server();
 
-//$server->soap_defencoding = 'UTF-8';
+$server->soap_defencoding = 'UTF-8';
 
 // Initialize WSDL support
 $server->configureWSDL('WSRegistration', 'urn:WSRegistration');

+ 0 - 1
plugin/bbb/lib/bbb_api.php

@@ -283,7 +283,6 @@ class BigBlueButtonBN {
 		$meetingId = '1234'		-- REQUIRED - The unique id for the meeting
 		*/
 		$xml = $this->_processXmlResponse($this->getIsMeetingRunningUrl($meetingId));
-        error_log(print_r($xml, 1));
 		if($xml) {
 			return array(
 				'returncode' => $xml->returncode,