みなさん、こんにちは。
WSDLを介してアプリケーションをTaleoと統合しようとしています。すべて正常に機能していますが、1つのリクエストでこの例外が発生します。これは、送信リクエストです。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:urn="urn:TBEWebAPI">
<soapenv:Header/>
<soapenv:Body>
<urn:submitCandidate>
<in0>session-idxxxxxx</in0>
<in1>48</in1>
<in2>
<array>
<!--Zero or more repetitions:-->
<item>15</item>
</array>
</in2>
</urn:submitCandidate>
</soapenv:Body>
</soapenv:Envelope>
エラーorg.xml.sax.SAXExceptionが発生しています:不正なタイプ(int-> long)
[faultcode] => soapenv:Server.userException
[faultstring] => org.xml.sax.SAXException: Bad types (int -> long)
NuSoapを使用しています。Lemmeは、デバッグに他に必要なものがあるかどうかを知っています。
ありがとう