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: fixtures.dormanslandtennisclub.co.uk
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>
<FixturesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DLTCFixturesWebService.ServiceModel">
<League>String</League>
<SeasonId>String</SeasonId>
<TeamId>String</TeamId>
</FixturesRequest>
</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>
<FixturesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DLTCFixturesWebService.ServiceModel">
<FixturesInfo xmlns:d2p1="http://schemas.datacontract.org/2004/07/DLTCFixturesWebService.ServiceModel.Types">
<d2p1:CurrentSeason>String</d2p1:CurrentSeason>
<d2p1:FixtureList>
<d2p1:SeasonFixture>
<d2p1:AwayGamesWon>String</d2p1:AwayGamesWon>
<d2p1:AwayPlayer1>String</d2p1:AwayPlayer1>
<d2p1:AwayPlayer2>String</d2p1:AwayPlayer2>
<d2p1:AwayPlayer3>String</d2p1:AwayPlayer3>
<d2p1:AwayPlayer4>String</d2p1:AwayPlayer4>
<d2p1:AwayRubbersWon>String</d2p1:AwayRubbersWon>
<d2p1:AwaySetsWon>String</d2p1:AwaySetsWon>
<d2p1:ClubRank>String</d2p1:ClubRank>
<d2p1:ClubTeam>String</d2p1:ClubTeam>
<d2p1:Date>String</d2p1:Date>
<d2p1:Division>String</d2p1:Division>
<d2p1:FixtureId>String</d2p1:FixtureId>
<d2p1:HomeGamesWon>String</d2p1:HomeGamesWon>
<d2p1:HomePlayer1>String</d2p1:HomePlayer1>
<d2p1:HomePlayer2>String</d2p1:HomePlayer2>
<d2p1:HomePlayer3>String</d2p1:HomePlayer3>
<d2p1:HomePlayer4>String</d2p1:HomePlayer4>
<d2p1:HomeRubbersWon>String</d2p1:HomeRubbersWon>
<d2p1:HomeSetsWon>String</d2p1:HomeSetsWon>
<d2p1:League>String</d2p1:League>
<d2p1:Notes>String</d2p1:Notes>
<d2p1:Opposition>String</d2p1:Opposition>
<d2p1:OppositionRank>String</d2p1:OppositionRank>
<d2p1:OppositionTeam>String</d2p1:OppositionTeam>
<d2p1:P1vP1S1>String</d2p1:P1vP1S1>
<d2p1:P1vP1S2>String</d2p1:P1vP1S2>
<d2p1:P1vP1S3>String</d2p1:P1vP1S3>
<d2p1:P1vP2S1>String</d2p1:P1vP2S1>
<d2p1:P1vP2S2>String</d2p1:P1vP2S2>
<d2p1:P1vP2S3>String</d2p1:P1vP2S3>
<d2p1:P2vP1S1>String</d2p1:P2vP1S1>
<d2p1:P2vP1S2>String</d2p1:P2vP1S2>
<d2p1:P2vP1S3>String</d2p1:P2vP1S3>
<d2p1:P2vP2S1>String</d2p1:P2vP2S1>
<d2p1:P2vP2S2>String</d2p1:P2vP2S2>
<d2p1:P2vP2S3>String</d2p1:P2vP2S3>
<d2p1:PlayDate>0001-01-01T00:00:00</d2p1:PlayDate>
<d2p1:PlayDay>String</d2p1:PlayDay>
<d2p1:Result>String</d2p1:Result>
<d2p1:SeqNo>0</d2p1:SeqNo>
<d2p1:ShowPopupFlag>String</d2p1:ShowPopupFlag>
<d2p1:Team>String</d2p1:Team>
<d2p1:TeamEvent>String</d2p1:TeamEvent>
<d2p1:Time>String</d2p1:Time>
<d2p1:Venue>String</d2p1:Venue>
</d2p1:SeasonFixture>
</d2p1:FixtureList>
<d2p1:SeasonList>
<d2p1:Season>
<d2p1:SeasonFromToYear>String</d2p1:SeasonFromToYear>
<d2p1:SeasonId>String</d2p1:SeasonId>
</d2p1:Season>
</d2p1:SeasonList>
<d2p1:TeamList>
<d2p1:SeasonTeam>
<d2p1:ClubTeam>String</d2p1:ClubTeam>
<d2p1:Id>String</d2p1:Id>
</d2p1:SeasonTeam>
</d2p1:TeamList>
</FixturesInfo>
</FixturesResponse>
</soap12:Body>
</soap12:Envelope>