Student20.05: c# und php, problem beim anwenden einer video anleitung

Beitrag lesen

den php code habe ich wohl auch richtig nachgebaut:

<?php

require_once('lib/nusoap.php');

function add($a,$b){
return $a + $b;
}

function div($a,$b){ return $a / $b;
}
$server = new soap_server();

$server->configureWSDL("Jemix WS ","urn:http://jemiaymen.com");


$server->register("add", 
		//param
		array('a'=>'xsd:int','b'=>'xsd:int'),
		//return
		array('return'=>'xsd:int'), 
		//namespace
		"http://jemiaymen.com",
		//soapaction
		false,
		//style
		'rpc', 
		// use
		'encoded',
		//description
		'A simple add web method');

$HTTP_POST_RAW_DATA = isset($HTTP_POST_RAW_DATA) ? $HTTP_POST_RAW_DATA : '';
$server->service($HTTP_POST_RAW_DATA);

?>