1 |
If you receive an exception indicating that the number of inventory connections has reached the maximum, the request has been rejected. This occurs when there are five concurrent find or findToFile requests. There is no indication of the number of concurrent requests. The OSS client must pace the requests.
<?xml version="1.0" encoding="UTF-8"?> |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> |
<SOAP:Header> |
<header xmlns="xmlapi_1.0"> |
<requestID>XML_API_client@n</requestID> |
<requestTime>Apr 15, 2010 4:23:38 PM</requestTime> |
<responseTime>Apr 15, 2010 4:23:38 PM</responseTime> |
</header> |
</SOAP:Header> |
<SOAP:Body> |
<findResponse xmlns="xmlapi_1.0"> |
<result/> |
</findResponse> |
<XMLException xmlns="xmlapi_1.0"> |
<description>The Inventory connections reached its maximum please retry later</description> |
<line>1</line> |
<column>1078</column> |
</XMLException> |
</SOAP:Body> |
</SOAP:Envelope> |
<?xml version="1.0" encoding="UTF-8"?> |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> |
<SOAP:Header> |
<header xmlns="xmlapi_1.0"> |
<requestID>XML_API_client@n</requestID> |
<requestTime>Apr 15, 2010 4:39:35 PM</requestTime> |
<responseTime>Apr 15, 2010 4:39:35 PM</responseTime> |
</header> |
</SOAP:Header> |
<SOAP:Body> |
<findToFileException xmlns="xmlapi_1.0"> |
<description>javax.xml.stream.XMLStreamException: The Inventory connections reached its maximum please retry later</description> |
</findToFileException> |
</SOAP:Body> |
</SOAP:Envelope> |
|