To override the Content-type in your clients, use the HTTP Accept Header, append the .soap12 suffix or ?format=soap12
HTTP + SOAP12
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap12 HTTP/1.1
Host: api.helferportal.de
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<PostClientOrderAssessment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Klientenportal.ApiModel.Routes">
<OrderAssessment xmlns:d2p1="http://schemas.datacontract.org/2004/07/Klientenportal.ApiModel.Models.ApiModels.OrderAssessment">
<d2p1:Anonym>false</d2p1:Anonym>
<d2p1:AvoidHelper>false</d2p1:AvoidHelper>
<d2p1:CreatedAt>0001-01-01T00:00:00</d2p1:CreatedAt>
<d2p1:DescriptionText>String</d2p1:DescriptionText>
<d2p1:OrderId>0</d2p1:OrderId>
<d2p1:OrderSeriesId>0</d2p1:OrderSeriesId>
<d2p1:Origin>0</d2p1:Origin>
<d2p1:PersonGivingHelpId>0</d2p1:PersonGivingHelpId>
<d2p1:PersonInNeedId>0</d2p1:PersonInNeedId>
<d2p1:PreferHelper>false</d2p1:PreferHelper>
</OrderAssessment>
</PostClientOrderAssessment>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<ClientOrderAssessmentResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Klientenportal.ApiModel.Models.Response.OrderAssessment">
<Anonym>false</Anonym>
<AvoidHelper>false</AvoidHelper>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<OrderAssessmentId>0</OrderAssessmentId>
<OrderId>0</OrderId>
<OrderSeriesId>0</OrderSeriesId>
<Origin>Admin</Origin>
<PersonGivingHelpId>0</PersonGivingHelpId>
<PersonInNeedId>0</PersonInNeedId>
<PreferHelper>false</PreferHelper>
<Text>String</Text>
</ClientOrderAssessmentResponseModel>
</soap12:Body>
</soap12:Envelope>