<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <SayHelloRequest> <firstName>string</firstName> </SayHelloRequest> </soap:Body> </soap:Envelope>
curl --location --request POST '/SayHello/' \ --header 'SOAPAction: sayHello' \ --header 'Content-Type: text/xml; charset=utf-8' \ --data-raw '<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <SayHelloRequest> <firstName>string</firstName> </SayHelloRequest> </soap:Body> </soap:Envelope>'
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <SayHelloResponse> <greeting>string</greeting> </SayHelloResponse> </soap:Body> </soap:Envelope>