Skip to content
Snippets Groups Projects
Commit 6e446bfc authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev #13554 [] to array()

parent 975f86f3
Branches
Tags
5 merge requests!258Dev/13872 Orphee Allow Hold Available Items,!114Master,!109Hotline 6.42,!106Hotline 6.42,!105Hotline#13544 Compatibilité Script Monitoring Web Service Aloes Avec Php5.3
......@@ -3,34 +3,34 @@ try {
$id_notice="2044709";
$url = "http://10.200.3.30:80/websrvaloes/serviceRecherche.asmx?WSDL";
$soap_client= new SoapClient($url,["trace" => 1]);
$soap_client= new SoapClient($url,array("trace" => 1));
$result = $soap_client->__soapCall("OuvrirSession", ["OuvrirSession" => [
"Param" => [
$result = $soap_client->__soapCall("OuvrirSession", array("OuvrirSession" => array(
"Param" => array(
"NomMachine" => "INTERNET",
"ListeServeurs" => [[ "BasesServeurs"=> [],"NomServeur" => "INTERNET"]]
]
]
]
"ListeServeurs" => array(array( "BasesServeurs"=> array(),"NomServeur" => "INTERNET"))
)
)
)
);
$guid=$result->OuvrirSessionResult->GUIDSession;
$notice=$soap_client->__soapCall("RecupererNotice", ["RecupererNotice" => [
"Param" => [
$notice=$soap_client->__soapCall("RecupererNotice", array("RecupererNotice" => array(
"Param" => array(
"RangNotice" => 1,
"FondsEnPret" => true,
"Affichage" => [ "NiveauAffichage" => 0],
"Affichage" => array( "NiveauAffichage" => 0),
"GUIDSession" => $guid,
"NumNotice" => $id_notice,
]
]
]
)
)
)
);
$soap_client->__soapCall("FermerSession", ["FermerSession" => [
"Param" => [
$soap_client->__soapCall("FermerSession", array("FermerSession" => array(
"Param" => array(
"GUIDSession" => $guid
]]]);
))));
if ($notice->RecupererNoticeResult->Notice->NumNotice==$id_notice)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment