From 8b6dae38ed57c6c4be469c605f65f2ef83b192e9 Mon Sep 17 00:00:00 2001 From: Karl Burkhart Date: Mon, 7 May 2012 07:30:53 +0000 Subject: [PATCH] --- soap/soap_test_lv.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/soap/soap_test_lv.php b/soap/soap_test_lv.php index d8addedd3..05151771c 100755 --- a/soap/soap_test_lv.php +++ b/soap/soap_test_lv.php @@ -70,12 +70,12 @@ if(!check_lektor($getuid)) { var soapBody = new SOAPObject("getLehrveranstaltungFromStudiengang"); var authentifizierung = new SOAPObject("authentifizierung"); - authentifizierung.appendChild(new SOAPObject("username")).val("burkhart"); - authentifizierung.appendChild(new SOAPObject("passwort")).val("R3sid3nt"); + authentifizierung.appendChild(new SOAPObject("username")).val(""); + authentifizierung.appendChild(new SOAPObject("passwort")).val(""); - soapBody.appendChild(new SOAPObject("studiengang")).val("bif"); - soapBody.appendChild(new SOAPObject("semester")).val("WS2010"); - soapBody.appendChild(new SOAPObject("ausbildungssemester")).val("3"); + soapBody.appendChild(new SOAPObject("studiengang")).val(""); + soapBody.appendChild(new SOAPObject("semester")).val(""); + soapBody.appendChild(new SOAPObject("ausbildungssemester")).val(""); soapBody.appendChild(authentifizierung); var sr = new SOAPRequest("getLehrveranstaltungFromStudiengang",soapBody);