私は物事のサーバー側にいることに非常に慣れていません。xmlリクエストを受信するために単純なserver.phpを設定する必要があります。
これからどうやって始めたらいいのかわからない。私は通常のPost/Get変数をフォームから取得することに慣れています。
これが私が聞いていて、応答する必要があるものの例です:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<authenticate xmlns="http://someplace.someplace.com/">
<strUserName xsi:type="xsd:string">username</strUserName>
<strPassword xsi:type="xsd:string">password</strPassword>
</authenticate>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
明らかに、私が中に見ることができるユーザー名/パスワードがあります。
ユーザー/パスの検証は簡単ですが、どうすればそれを解析できますか?