SOAP ServerFunktion (c-code)
-
SOAP ServerFunktion
--------------------------------------------------------------------------------
HALLO Leute
bin neu hier ich habe ein frage für die lösung werde ich sehr dankbar sein ,es ist ein klausuraufgabe,die habe schon gelöst aber ich brauche noch eine bestätigung um sicher zu gehen, so sieht es also aus :a. Welche Serverfunktion wird hier aufgerufen (C-Code)???:
POST /WebSitel/Service.asmx HTTP/1.1
Host: localhost
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length<?xml version="1.0" encoding="utf-8"?>
<soap!2:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap!2="http://www.w3.org/2003/05/soap-envelope"> .
soapl2:Body
<MultiplikationsFunktion xmlns="http://tempuri.org/"> <x>int</x> <y>int</y>
</MultiplikationsFunktion>
</soap!2:Body>
</soap!2:Envelope>
-
int MultiplikationsFunktion (int x, int y) { ... }
den rückgabewert hab' ich aber geraten.
kommt wohl mit der HTTP response zurück, ne?