Skip to content

Commit

Permalink
Updated mod/rcontent
Browse files Browse the repository at this point in the history
  • Loading branch information
sarjona committed May 12, 2017
1 parent 95a73c0 commit d7630ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Changes 17.05.23
- Removed progress block (Trello #1503)
- Updated LangPacks
- Updated report/coursequotas
- Updated mod/rcontent


Changes 17.04.24
Expand Down
14 changes: 9 additions & 5 deletions mod/rcontent/WebServices/wsSeguimiento.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,15 @@ function ResultadoDetalleExtendido($Resultado) {
'DetalleResultado' => 'DetalleResultado',
'RespuestaResultadoExtendido' => 'RespuestaResultadoExtendido',
'ResultadoDetalleExtendidoResponse' => 'ResultadoDetalleExtendidoResponse');
$server = new SoapServer("$CFG->wwwroot/mod/rcontent/WebServices/wsSeguimiento.php?wsdl");
try {
$server = new SoapServer("$CFG->wwwroot/mod/rcontent/WebServices/wsSeguimiento.php?wsdl");

$server->setClass("wsSeguimiento");
//$server->addFunction("ResultadoDetalleExtendido");
$server->addFunction(SOAP_FUNCTIONS_ALL);
$server->setClass("wsSeguimiento");
//$server->addFunction("ResultadoDetalleExtendido");
$server->addFunction(SOAP_FUNCTIONS_ALL);

$server->handle();
$server->handle();
} catch (Exception $e) {
log_to_file("wsSeguimiento: WSDL initialization - Exception = " . $e->getMessage());
}
}

0 comments on commit d7630ec

Please sign in to comment.