SSL証明書で認証をしたのち、ログインAPIでCookieを取得しようとしています。
その際に以下のリクエストを送信すると、「PHP00099」で原因不明のエラーとなってしまいます。
どう修正すれば正しいレスポンスを取得できるでしょうか?
【リクエストボディ】
<?xml version=“1.0” encoding=“utf-8”?>
<soap:Envelope xmlns:soap=“http://www.w3.org/2003/05/soap-envelope” xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns=“http://wsdl.cybozu.co.jp/base/2008” xmlns:base_services=“http://wsdl.cybozu.co.jp/base/2008” xmlns:schedule_services=“http://wsdl.cybozu.co.jp/schedule/2008” xmlns:address_services=“http://wsdl.cybozu.co.jp/address/2008” xmlns:workflow_services=“http://wsdl.cybozu.co.jp/workflow/2008” xmlns:mail_services=“http://wsdl.cybozu.co.jp/mail/2008” xmlns:message_services=“http://wsdl.cybozu.co.jp/message/2008” xmlns:notification_services=“http://wsdl.cybozu.co.jp/notification/2008” xmlns:report_services=“http://wsdl.cybozu.co.jp/report/2008” xmlns:cabinet_services=“http://wsdl.cybozu.co.jp/cabinet/2008” xmlns:admin_services=“http://wsdl.cybozu.co.jp/admin/2008” xmlns:util_api_services=“http://wsdl.cybozu.co.jp/util_api/2008” xmlns:star_services=“http://wsdl.cybozu.co.jp/star/2008” xmlns:bulletin_services=“http://wsdl.cybozu.co.jp/bulletin/2008” xmlns:typens=“http://wsdl.cybozu.co.jp/base/2008/types” xmlns:base=“http://schemas.cybozu.co.jp/base/2008” xmlns:schedule=“http://schemas.cybozu.co.jp/schedule/2008” xmlns:base_types=“http://wsdl.cybozu.co.jp/base/2008/types” xmlns:address=“http://schemas.cybozu.co.jp/address/2008” xmlns:workflow=“http://schemas.cybozu.co.jp/workflow/2008” xmlns:mail=“http://schemas.cybozu.co.jp/mail/2008” xmlns:message=“http://schemas.cybozu.co.jp/message/2008” xmlns:notification=“http://schemas.cybozu.co.jp/notification/2008” xmlns:report=“http://schemas.cybozu.co.jp/report/2008” xmlns:cabinet=“http://schemas.cybozu.co.jp/cabinet/2008” xmlns:admin=“http://schemas.cybozu.co.jp/admin/2008” xmlns:util_api=“http://schemas.cybozu.co.jp/util_api/2008” xmlns:star=“http://schemas.cybozu.co.jp/star/2008” xmlns:bulletin=“http://schemas.cybozu.co.jp/bulletin/2008”>
<soap:Header>
<Timestamp>
<Expires>
</Expires>
</Timestamp>
</soap:Header>
<soap:Body>
<tns:UtilLogin>
<parameters>
<login_name>xxxxx</login_name>
<password>xxxxx</password>
</parameters>
</tns:UtilLogin>
</soap:Body>
</soap:Envelope>
【レスポンス】
<?xml version=“1.0” encoding=“utf-8”?>
<soap:Envelope xmlns:soap=“http://www.w3.org/2003/05/soap-envelope”
xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”
xmlns:xsd=“http://www.w3.org/2001/XMLSchema”
xmlns:wsa=“http://schemas.xmlsoap.org/ws/2004/08/addressing”
xmlns:wsse=“http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd”
xmlns:wsu=“http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd”>
<soap:Header><vendor>Cybozu</vendor><product>Garoon</product><product_type>1</product_type><version>4.6.3</version><apiversion>1.10.0</apiversion></soap:Header>
<soap:Body>
<soap:Fault>
<soap:Code>
<soap:Value>soap:Receiver</soap:Value>
</soap:Code>
<soap:Reason>
<soap:Text>予期しないエラーが発生しました。</soap:Text>
</soap:Reason>
<soap:Detail>
<code>PHP00099</code>
<diagnosis>予期しないエラーが発生しました。</diagnosis>
<cause>原因は不明です。</cause>
<counter_measure>サイボウズオフィシャルパートナー、または販売元にお問い合わせください。 </counter_measure>
</soap:Detail>
</soap:Fault>
</soap:Body>
</soap:Envelope>