Oracle Web Services On Demand Troubleshooting Guide > Error Codes: Causes and Solutions >

SBL-EAI-04447


This error code has no error symbol.

Generic Error Message

PageSize method argument cannot be greater than '100' specified by the server parameter 'MaximumPageSize' (SBL-EAI-04447).

Causes and Solutions

The request specifies the maximum number of records to be returned if the response is greater than 100.

Error Message

PageSize method argument cannot be greater than '100' specified by the server parameter 'MaximumPageSize' (SBL-EAI-04447).

Incorrect SOAP Request

In the following incorrect SOAP request, the pagesize value is 200:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

   <soap:Body>

      <AccountQueryPage_Input xmlns="urn:crmondemand/ws/ecbs/account/">

         <ListOfAccount pagesize="200">

            <Account>

               <AccountName />

            </Account>

         </ListOfAccount>

      </AccountQueryPage_Input>

   </soap:Body>

</soap:Envelope>

Resolving Error SBL-EAI-04447

Specify the value for the pagesize argument so that it does not exceed 100.

Correcting the SOAP Request

To correct the SOAP request, set the PageSize value to be less than or equal to 100:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

   <soap:Body>

      <AccountQueryPage_Input xmlns="urn:crmondemand/ws/ecbs/account/">

         <ListOfAccount pagesize="100">

            <Account>

               <AccountName />

            </Account>

         </ListOfAccount>

      </AccountQueryPage_Input>

   </soap:Body>

</soap:Envelope>

Oracle Web Services On Demand Troubleshooting Guide Copyright © 2014, Oracle and/or its affiliates. All rights reserved. Legal Notices.