Quantcast
Channel: Discussion Forum > Connect Data Services
Viewing all articles
Browse latest Browse all 2504

Array Index Out of Bounds

$
0
0

Topic by Jacopo Bellati

Hello! See if you can help me. I`m trying to issue the following request and receiving the following response using JAVA (javax.xml)

REQUEST:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  <SOAP-ENV:Header xmlns:ns7="urn:messages.ws.rightnow.com/v1_2" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <ns7:ClientInfoHeader SOAP-ENV:mustUnderstand="0">
      <ns7:AppID>Run report sample</ns7:AppID>
    </ns7:ClientInfoHeader>
    <wsse:Security mustUnderstand="1">
    <wsse:UsernameToken>
      <wsse:Username>username</wsse:Username>
      <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">password</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
  </SOAP-ENV:Header>
  <SOAP-ENV:Body xmlns:ns7="urn:messages.ws.rightnow.com/v1_2">
    <ns7:RunAnalyticsReport>
      <ns7:AnalyticsReport xmlns:ns4="urn:objects.ws.rightnow.com/v1_2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns4:AnalyticsReport">
        <ID xmlns="urn:base.ws.rightnow.com/v1_2" id="1"/>
      </ns7:AnalyticsReport>
      <ns7:Limit>100</ns7:Limit>
      <ns7:Start>0</ns7:Start>
      <ns7:Delimiter>~</ns7:Delimiter>
    </ns7:RunAnalyticsReport>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

RESPONSE:

<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
  <soapenv:Body>
    <soapenv:Fault>
      <soapenv:Code>
        <soapenv:Value>soapenv:Sender</soapenv:Value>
      </soapenv:Code>
      <soapenv:Reason>
        <soapenv:Text xmlns:xml="http://www.w3.org/XML/1998/namespace" xml:lang="en">Array list index out of bounds</soapenv:Text>
      </soapenv:Reason>
    </soapenv:Fault>
  </soapenv:Body>
</soapenv:Envelope>


Viewing all articles
Browse latest Browse all 2504

Trending Articles