我在返回 XML 响应的服务调用时收到此错误。我无法找到,并且此问题在一段时间内反复出现。
错误:
An error occured while Parsing an XML document.
The element type "hr" must be terminated by the matching end-tag "</hr>"
(评论更新)
我从IP Address Geolocation XML API获取 XML 。以下是 XML 响应。大多数时候我得到这个错误是正确的。
XML 响应:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<statusCode>OK</statusCode>
<statusMessage>
</statusMessage>
<ipAddress>x.x.x.x</ipAddress>
<countryCode>US</countryCode>
<countryName>UNITED STATES</countryName>
<regionName>NEW YORK</regionName>
<cityName>NEW YORK CITY</cityName>
<zipCode>10112</zipCode>
<latitude>40.7143</latitude>
<longitude>-72.006</longitude>
<timeZone>-03:00</timeZone>
</Response>