Page 1 of 1

Error message "multiple points"

Posted: Thu Feb 18, 2021 2:23 pm
by Bernd Welter
Hi there,

yesterday a partner challenged me with the following error message:

Code: Select all

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <soap:Fault>
      <faultcode>soap:Server</faultcode>
      <faultstring>multiple points</faultstring>
    </soap:Fault>
  </soap:Body>
</soap:Envelope>
It took some seconds to determine the cause for the error. Obviously he made an error in the representation of the double values in his SOAP document's coordinates:

Code: Select all

<location>
      <kml xsi:nil="true" xmlns="http://common.xserver.ptvag.com"/>
      <point x="777.679.732" y="4.097.126.461" xmlns="http://common.xserver.ptvag.com"/>
</location>
I assume that the error isn't thrown by the backend module itself but by the framework we use to parse incoming requests.

That's it - have a nice day,

Bernd