Array index out of bounds in oracle top links, jsf page

Dear All,
// This is my controller page //
* To change this template, choose Tools | Templates
* and open the template in the editor.
package jsfpack;
import db.Addressmaster;
import db.Partymaster;
import db.Propertymaster;
import db.RealEstateJSFBean;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.StringTokenizer;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.annotation.Resource;
import javax.faces.FacesException;
import javax.faces.application.FacesMessage;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.PersistenceUnit;
import javax.persistence.Query;
import javax.transaction.SystemException;
import javax.transaction.UserTransaction;
import sysadmin.Admin;
* @author siva.np
public class RealEstatectrler {
private RealEstateJSFBean realBean = null;
private List<RealEstateJSFBean> realBeans = null;
@Resource
private UserTransaction utx = null;
public int batchSize = 5;
private int firstItem = 0;
private int itemCount = -1;
private Admin ma = null;
@PersistenceUnit(unitName = "ReaEstatelJSFPU")
private EntityManagerFactory emf = null;
public EntityManager getEntityManager() {
System.out.println("Siva 1 ");
return emf.createEntityManager();
public String create() {     
//FacesContext fac = fac.getCurrentInstance().getExternalContext().getRequestMap().get("RealJSFProjBean");
EntityManager em = getEntityManager();
//RealEstateJSFBean RealEstBean = (RealEstateJSFBean) FacesContext.getCurrentInstance().getExternalContext().getRequestMap().get("RealEstateJSFBean");
RealEstateJSFBean RealEstBean = (RealEstateJSFBean) FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("RealEstateJSFBean");
Addressmaster am = null;
Partymaster pm = null;
Propertymaster ppm = null;
try {                      
Random rand = new Random();
Long l = rand.nextLong();
System.out.println("I am in the creat metyhod");
utx.begin();
am = new Addressmaster();
am.setAddresscode("A"+l.toString());
am.setPodoorno(RealEstBean.getPodoorno());
am.setStreetname(RealEstBean.getStreetname());
am.setPlace(RealEstBean.getPlace());
am.setCity(RealEstBean.getCity());
am.setState(RealEstBean.getStates());
am.setCountry(RealEstBean.getCountry());
am.setPhoneno(RealEstBean.getPhoneno());
am.setMobileno(RealEstBean.getMobileno());
am.setEmail(RealEstBean.getEmail());
em.persist(am);
ppm = new Propertymaster();
ppm.setPropertycode("PP"+l.toString());
ppm.setPropertytype(RealEstBean.getPropertytype());
ppm.setPropertyage(RealEstBean.getPropertyage());
ppm.setBuiltarea(RealEstBean.getBuiltarea());
ppm.setPlotarea(RealEstBean.getPlotarea());
ppm.setBhk(RealEstBean.getBhk());
ppm.setTotalnofloors(RealEstBean.getTotalnofloors());
ppm.setParkingrequired(RealEstBean.getParkingrequired());
ppm.setPaymenttype(RealEstBean.getPaymenttype());
ppm.setTotalamount(RealEstBean.getTotalamount());
ppm.setPropaddress1(RealEstBean.getPropaddress1());
ppm.setPropaddress2(RealEstBean.getPropaddress2());
ppm.setPlace(RealEstBean.getPropplace());
ppm.setCity(RealEstBean.getPropcity());
ppm.setState(RealEstBean.getPropstates());
ppm.setCountry(RealEstBean.getPropcountry());
ppm.setRemarks(RealEstBean.getRemarks());
em.persist(ppm);
// Party Master table
pm = new Partymaster();
pm.setPartycode("P"+l.toString());
pm.setPartyname(RealEstBean.getPartyname());
pm.setUsertype(RealEstBean.getUsertype());
pm.setUsername(RealEstBean.getUsername());
pm.setPassword(RealEstBean.getPassword());
// pm.setAddresscode(am.getAddresscode());
// pm.setPropertycode(ppm.getPropertycode());
em.persist(pm);
// Admin Table
ma = new Admin();
ma.setCode("P"+l.toString());
ma.setUsername(RealEstBean.getUsername());
ma.setPassword(RealEstBean.getPassword());
em.persist(ma);
utx.commit();
addSuccessMessage("Real Estate was successfully created.");
} catch (Exception ex) {           
try {
ex.printStackTrace();
utx.rollback();
} catch (IllegalStateException ex1) {
Logger.getLogger(RealEstatectrler.class.getName()).log(Level.SEVERE, null, ex1);
} catch (SecurityException ex1) {
Logger.getLogger(RealEstatectrler.class.getName()).log(Level.SEVERE, null, ex1);
} catch (SystemException ex1) {
Logger.getLogger(RealEstatectrler.class.getName()).log(Level.SEVERE, null, ex1);
} finally {
em.close();
return listSetup();
public String edit() {
RealEstateConverter converter = new RealEstateConverter();
String adminString = converter.getAsString(FacesContext.getCurrentInstance(), null, realBean);
String currentAdminString = getRequestParameter("jsfcrud.currentRealJSF");
Addressmaster am;
Partymaster pm;
Propertymaster ppm;
EntityManager em = getEntityManager();
try {
utx.begin();
am = em.find(Addressmaster.class, realBean.getAddresscode().trim());
if(am != null){
am.setAddresscode(realBean.getAddresscode().trim());
am.setPodoorno(realBean.getPodoorno());
am.setStreetname(realBean.getStreetname());
am.setPlace(realBean.getPlace());
am.setCity(realBean.getCity());
am.setState(realBean.getStates());
am.setCountry(realBean.getCountry());
am.setPhoneno(realBean.getPhoneno());
am.setMobileno(realBean.getMobileno());
am.setEmail(realBean.getEmail());
em.merge(am);
// Property Master table
ppm = em.find(Propertymaster.class, realBean.getPropertycode().trim());
if(ppm != null){           
ppm.setPropertytype(realBean.getPropertytype());
ppm.setPropertyage(realBean.getPropertyage());
ppm.setBuiltarea(realBean.getBuiltarea());
ppm.setPlotarea(realBean.getPlotarea());
ppm.setBhk(realBean.getBhk());
ppm.setTotalnofloors(realBean.getTotalnofloors());
ppm.setParkingrequired(realBean.getParkingrequired());
ppm.setPaymenttype(realBean.getPaymenttype());
ppm.setTotalamount(realBean.getTotalamount());
ppm.setPropaddress1(realBean.getPropaddress1());
ppm.setPropaddress2(realBean.getPropaddress2());
ppm.setPlace(realBean.getPropplace());
ppm.setCity(realBean.getPropcity());
ppm.setState(realBean.getPropstates());
ppm.setCountry(realBean.getPropcountry());
ppm.setRemarks(realBean.getRemarks());
em.merge(ppm);
// Party Master table
String Party = realBean.getPropertycode().replace("PP","P");
pm = em.find(Partymaster.class, Party.trim());
if(pm != null){
pm.setPartycode(Party.trim());
pm.setPartyname(realBean.getPartyname());
pm.setUsertype(realBean.getUsertype());
pm.setUsername(realBean.getUsername());
pm.setPassword(realBean.getPassword());
//pm.setAddresscode(am.getAddresscode());
// pm.setPropertycode(ppm.getPropertycode());
em.merge(pm);
// Admin Table
ma = em.find(Admin.class, Party.trim());
if(ma != null){
ma.setCode(Party.trim());
ma.setUsername(realBean.getUsername());
ma.setPassword(realBean.getPassword());
em.merge(ma);
utx.commit();
addSuccessMessage("Real Estate was successfully updated.");
} catch (Exception ex) {
ex.printStackTrace();
} finally {
em.close();
return detailSetup();
public String destroy() {
realBean = getRealFromRequest();
if (realBean == null) {           
String currentAdminString = getRequestParameter("jsfcrud.currentRealJSF");
addErrorMessage("The Real Estate with id " + currentAdminString + " no longer exists.");
String relatedControllerOutcome = relatedControllerOutcome();
if (relatedControllerOutcome != null) {
return relatedControllerOutcome;
return listSetup();
EntityManager em = getEntityManager();
try {           
utx.begin();
em.remove(em.find(Addressmaster.class, realBean.getAddresscode()));
em.remove(em.find(Propertymaster.class, realBean.getPropertycode().trim()));
String Party = realBean.getPropertycode().replace("PP","P");
em.remove(em.find(Partymaster.class, Party.trim()));
em.remove(em.find(Admin.class, Party.trim()));
utx.commit();
addSuccessMessage("Real Edit User was successfully deleted.");
} catch (Exception ex) {
try {
ensureAddErrorMessage(ex, "A persistence error occurred.");
utx.rollback();
} catch (Exception e) {
ensureAddErrorMessage(e, "An error occurred attempting to roll back the transaction.");
return null;
} finally {
em.close();
String relatedControllerOutcome = relatedControllerOutcome();
if (relatedControllerOutcome != null) {
return relatedControllerOutcome;
return listSetup();
public RealEstateJSFBean getEstProjBean(){  
System.out.println("Siva 12 ");
if(realBean == null){
//realBean = getEstProjBean();
realBean = getRealFromRequest();
if (realBean == null) {
realBean = new RealEstateJSFBean();
return realBean;
public String listSetup() {
System.out.println("Siva 13 ");
reset(true);
return "RealEst_list";
public String detailSetup() {
System.out.println("Siva 14 ");
return scalarSetup("RealEst_detail");
public String createSetup() {
System.out.println("Siva 15 ");
reset(false);
realBean = new RealEstateJSFBean();
return "RealEst_create";
public String editSetup() {       
System.out.println("EDit");
return scalarSetup("RealEst_edit");
private String scalarSetup(String destination) {
System.out.println("Dest "+destination);
reset(false);
realBean = getRealFromRequest();
if (realBean == null) {
String requestAdminString = getRequestParameter("jsfcrud.currentRealJSF");
addErrorMessage("The admin with sss id " + requestAdminString + " no longer exists.");
String relatedControllerOutcome = relatedControllerOutcome();
if (relatedControllerOutcome != null) {
return relatedControllerOutcome;
return listSetup();
return destination;
public int getFirstItem() {
System.out.println("Siva 16 ");
getItemCount();
if (firstItem >= itemCount) {
if (itemCount == 0) {
firstItem = 0;
} else {
int zeroBasedItemCount = itemCount - 1;
double pageDouble = zeroBasedItemCount / batchSize;
int page = (int) Math.floor(pageDouble);
firstItem = page * batchSize;
return firstItem;
public int getLastItem() {
System.out.println("Siva 17 ");
getFirstItem();
return firstItem + batchSize > itemCount ? itemCount : firstItem + batchSize;
public int getBatchSize() {
System.out.println("Siva 18 ");
return batchSize;
public String next() {
System.out.println("Siva 19 ");
reset(false);
getFirstItem();
if (firstItem + batchSize < itemCount) {
firstItem += batchSize;
return "RealEst_list";
public String prev() {
System.out.println("Siva 20 ");
reset(false);
getFirstItem();
firstItem -= batchSize;
if (firstItem < 0) {
firstItem = 0;
return "RealEst_list";
private Map<Object, String> asString = null;
public Map<Object, String> getAsString() {
System.out.println("Siva 21 ");
if (asString == null) {
asString = new HashMap<Object, String>() {
@Override
public String get(Object key) {
if (key instanceof Object[]) {
Object[] keyAsArray = (Object[]) key;
if (keyAsArray.length == 0) {
return "(No Items)";
StringBuffer sb = new StringBuffer();
for (int i = 0; i < keyAsArray.length; i++) {
if (i > 0) {
sb.append("<br />");
sb.append(keyAsArray);
return sb.toString();
System.out.println("This is siva ");
return new RealEstateConverter().getAsString(FacesContext.getCurrentInstance(), null, (RealEstateJSFBean) key);
return asString;
private String relatedControllerOutcome() {
System.out.println("Siva 22 ");
String relatedControllerString = getRequestParameter("jsfcrud.relatedController");
String relatedControllerTypeString = getRequestParameter("jsfcrud.relatedControllerType");
if (relatedControllerString != null && relatedControllerTypeString != null) {
FacesContext context = FacesContext.getCurrentInstance();
Object relatedController = context.getApplication().getELResolver().getValue(context.getELContext(), null, relatedControllerString);
try {
Class<?> relatedControllerType = Class.forName(relatedControllerTypeString);
Method detailSetupMethod = relatedControllerType.getMethod("detailSetup");
return (String) detailSetupMethod.invoke(relatedController);
} catch (ClassNotFoundException e) {
throw new FacesException(e);
} catch (NoSuchMethodException e) {
throw new FacesException(e);
} catch (IllegalAccessException e) {
throw new FacesException(e);
} catch (InvocationTargetException e) {
throw new FacesException(e);
return null;
private void reset(boolean resetFirstItem) {
System.out.println("Siva 23 ");
realBean = null;
realBeans = null;
itemCount = -1;
if (resetFirstItem) {
firstItem = 0;
private RealEstateJSFBean getRealFromRequest() {
System.out.println("Siva 24 ");
String theId = getRequestParameter("jsfcrud.currentRealJSF");
System.out.println("TEEE "+theId);
return (RealEstateJSFBean) new RealEstateConverter().getAsObject(FacesContext.getCurrentInstance(), null, theId);
private String getRequestParameter(String key) {
System.out.println("Siva 25 ");
return FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get(key);
public List<RealEstateJSFBean> getEstProjBeans() {
if (realBeans == null) {
System.out.println("Real JSF 1");
realBeans = getEstProjBeans(false);
return realBeans;
public List<RealEstateJSFBean> getEstProjBeans(boolean all) {
EntityManager em = getEntityManager();
//ArrayList results = null;
List results = new ArrayList();
List resList = new ArrayList();
RealEstateJSFBean[] test = null;
RealEstateJSFBean srsiva = new RealEstateJSFBean();
try {           
// Query q = em.createQuery("select object(o) from Addressmaster as o");
// Query q = em.createQuery("SELECT p.partyname, a.addresscode FROM Partymaster p LEFT JOIN p.Addressmaster a");
// Query q = em.createQuery("SELECT p.partyname, a.addresscode FROM Partymaster p LEFT JOIN p.Addressmaster a");
String strQuery = "select am.addresscode, pm.partyname,pm.propertycode, am.email, pm.username, am.podoorno,am.streetname, am.place, am.city, am.state, am.country, am.phoneno, am.mobileno, pm.usertype, ppm.propertytype,ppm.builtarea, ppm.plotarea, ppm.propertyage, ppm.bhk, ppm.TotalNoFloors, ppm.TotalAmount, ppm.PropAddress1, ppm.PropAddress2, ppm.place, ppm.city, " +
" ppm.state,ppm.country,ppm.remarks, ppm.parkingrequired, pm.password from partymaster pm left outer join propertymaster ppm on pm.propertycode = ppm.propertycode left outer join addressmaster am on pm.addresscode = am.addresscode";
Query q = em.createNativeQuery(strQuery);
resList=q.getResultList();
System.out.println("List Query "+resList);
int sizeTest = resList.size();
if (!all) {
q.setMaxResults(batchSize);
q.setFirstResult(getFirstItem());
System.out.println("Count Query "+sizeTest);
test=new RealEstateJSFBean[sizeTest];
for(int i=0;i<sizeTest;i++)
test[i]=new RealEstateJSFBean();
String s=resList.get(i).toString();
System.out.println("Res list"+s);
StringTokenizer st=new StringTokenizer(s,",");
while(st.hasMoreElements())
String leave_id=st.nextElement().toString();
StringTokenizer st1=new StringTokenizer(leave_id,"[");
while(st1.hasMoreElements())
test[i].setAddresscode(st1.nextElement().toString().trim());
test[i].setPartyname(st.nextElement().toString().trim());
test[i].setPropertycode(st.nextElement().toString());
test[i].setEmail(st.nextElement().toString().trim());
test[i].setUsername(st.nextElement().toString().trim());
test[i].setPodoorno(st.nextElement().toString().trim());
test[i].setStreetname(st.nextElement().toString().trim());
test[i].setPlace(st.nextElement().toString().trim());
test[i].setCity(st.nextElement().toString().trim());
test[i].setStates(st.nextElement().toString().trim());
test[i].setCountry(st.nextElement().toString().trim());
test[i].setPhoneno(Long.parseLong(st.nextElement().toString().trim()));
test[i].setMobileno(Long.parseLong(st.nextElement().toString().trim()));
test[i].setUsertype(st.nextElement().toString().trim());
test[i].setPropertytype(st.nextElement().toString().trim());
test[i].setBuiltarea(Double.parseDouble(st.nextElement().toString().trim()));
test[i].setPlotarea(Double.parseDouble(st.nextElement().toString().trim()));
test[i].setPropertyage(st.nextElement().toString().trim());
test[i].setBhk(Integer.parseInt(st.nextElement().toString().trim()));
test[i].setTotalnofloors(Integer.parseInt(st.nextElement().toString().trim()));
test[i].setTotalamount(Long.parseLong(st.nextElement().toString().trim()));
test[i].setPropaddress1(st.nextElement().toString().trim());
test[i].setPropaddress2(st.nextElement().toString().trim());
test[i].setPropplace(st.nextElement().toString().trim());
test[i].setPropcity(st.nextElement().toString().trim());
test[i].setPropstates(st.nextElement().toString().trim());
test[i].setPropcountry(st.nextElement().toString().trim());
test[i].setRemarks(st.nextElement().toString().trim());
test[i].setParkingrequired(st.nextElement().toString().trim());
String firstname=st.nextElement().toString();
StringTokenizer st2=new StringTokenizer(firstname,"]");
while(st2.hasMoreElements())
test[i].setPassword(st2.nextElement().toString().trim());
results.add(test[i]);
break;
System.out.println("III "+i);
return results;
} finally {
em.close();
public RealEstateJSFBean getEstProjBeansEdit(String Propertycode) {
EntityManager em = getEntityManager();
try {           
String strSQL = "select am.addresscode, pm.partyname,pm.propertycode, am.email, pm.username, am.podoorno,am.streetname, am.place, am.city, am.state, am.country, am.phoneno, am.mobileno, pm.usertype, ppm.propertytype,ppm.builtarea, ppm.plotarea, ppm.propertyage, ppm.bhk, ppm.TotalNoFloors, ppm.TotalAmount, ppm.PropAddress1, ppm.PropAddress2, ppm.place, ppm.city, " +
" ppm.state,ppm.country,ppm.remarks, ppm.parkingrequired, pm.password from partymaster pm left outer join propertymaster ppm on pm.propertycode = ppm.propertycode left outer join addressmaster am on pm.addresscode = am.addresscode where ppm.propertycode = '"+Propertycode.trim()+"'";
Query q = em.createNativeQuery(strSQL);
if (!Propertycode.equals("")) {
q.setMaxResults(batchSize);
q.setFirstResult(getFirstItem());
realBean=new RealEstateJSFBean();
String s=q.getSingleResult().toString();
StringTokenizer st=new StringTokenizer(s,",");
while(st.hasMoreElements())
String leave_id=st.nextElement().toString();
StringTokenizer st1=new StringTokenizer(leave_id,"[");
while(st1.hasMoreElements())
realBean.setAddresscode(st1.nextElement().toString().trim());
realBean.setPartyname(st.nextElement().toString().trim());
realBean.setPropertycode(st.nextElement().toString());
realBean.setEmail(st.nextElement().toString().trim());
realBean.setUsername(st.nextElement().toString().trim());
realBean.setPodoorno(st.nextElement().toString().trim());
realBean.setStreetname(st.nextElement().toString().trim());
realBean.setPlace(st.nextElement().toString().trim());
realBean.setCity(st.nextElement().toString().trim());
realBean.setStates(st.nextElement().toString().trim());
realBean.setCountry(st.nextElement().toString().trim());
realBean.setPhoneno(Long.parseLong(st.nextElement().toString().trim()));
realBean.setMobileno(Long.parseLong(st.nextElement().toString().trim()));
realBean.setUsertype(st.nextElement().toString().trim());
realBean.setPropertytype(st.nextElement().toString().trim());
realBean.setBuiltarea(Double.parseDouble(st.nextElement().toString().trim()));
realBean.setPlotarea(Double.parseDouble(st.nextElement().toString().trim()));
realBean.setPropertyage(st.nextElement().toString().trim());
realBean.setBhk(Integer.parseInt(st.nextElement().toString().trim()));
realBean.setTotalnofloors(Integer.parseInt(st.nextElement().toString().trim()));
realBean.setTotalamount(Long.parseLong(st.nextElement().toString().trim()));
realBean.setPropaddress1(st.nextElement().toString().trim());
realBean.setPropaddress2(st.nextElement().toString().trim());
realBean.setPropplace(st.nextElement().toString().trim());
realBean.setPropcity(st.nextElement().toString().trim());
realBean.setPropstates(st.nextElement().toString().trim());
realBean.setPropcountry(st.nextElement().toString().trim());
realBean.setRemarks(st.nextElement().toString().trim());
realBean.setParkingrequired(st.nextElement().toString().trim());
String firstname=st.nextElement().toString();
StringTokenizer st2=new StringTokenizer(firstname,"]");
while(st2.hasMoreElements())
realBean.setPassword(st2.nextElement().toString().trim());
System.out.println("SSS"+realBean.toString());
return realBean;
} finally {
em.close();
public int getItemCount() {
System.out.println("Siva 27 ");
if (itemCount == -1) {
EntityManager em = getEntityManager();
try {
itemCount = ((Long) em.createQuery("select count(o) from Addressmaster as o").getSingleResult()).intValue();
//itemCount = ((Long) em.createQuery("select count(partycode) from partymaster as pm left outer join propertymaster as ppm on pm.propertycode = ppm.propertycode left outer join addressmaster as am on pm.addresscode = am.addresscode").getSingleResult()).intValue();
//itemCount = ((int) em.createQuery("select pm.partyname,pm.propertycode, am.email, pm.username, am.podoorno,am.streetname, am.place, am.city, am.state, am.country, am.phoneno, am.mobileno, ppm.propertytype,ppm.builtarea, ppm.plotarea, ppm.propertyage, ppm.bhk, ppm.TotalNoFloors, ppm.TotalAmount, ppm.PropAddress1, ppm.PropAddress2, ppm.place, ppm.city, ppm.state,ppm.country,ppm.remarks, ppm.parkingrequired, pm.password from partymaster pm left outer join propertymaster ppm on pm.propertycode = ppm.propertycode left outer join addressmaster am on pm.addresscode = am.addresscode").getResultList().size());
} finally {
em.close();
return itemCount;
private void ensureAddErrorMessage(Exception ex, String defaultMsg) {
System.out.println("Siva 28 ");
String msg = ex.getLocalizedMessage();
if (msg != null && msg.length() > 0) {
addErrorMessage(msg);
} else {
addErrorMessage(defaultMsg);
public static void addErrorMessage(String msg) {
Fac

No one is going to read this. Please post only the code which caused the problem, not the whole project.
Please try to create a test case which reproduces this problem and post it here. And last but not least,
please use the CODE button in the message editor toolbar to get the tags. Paste code in there so
that you get well-formatted (and thus well-readable) code.
Please also carefully read this article: [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html].                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Array Index out of bound exception

    public Name[] getName() {
              Name[] retVal = new Name[0];
              retVal[0] = this.getNameInstance();
              return retVal;
         public void setName(Name[] theName) {
              theName[0]=this.getNameInstance();
         private Name myNameInstance = new Name();
         public void setNameInstance(Name theNameInstance) {
              if(isValidName(theNameInstance)){
              myNameInstance = theNameInstance;
         public Name getNameInstance() {
              return myNameInstance;
         }I am getting an array Index out of bound eception in the method setName, Can any one tell me where I am doing wrong?

    The array passed in must be empty. I suggest using the debugger for problems like these. If you don't know how to use the debugger, here's a start:
    (Assuming you have a debugger, any IDE you'd be using will)
    1. Set a breakpoint on or before your line of question. In this case, place it on the line of code in your setName() method. Set a breakpoint by either right clicking on that line and selecting "Add breakpoint," or simply click on the far left side of the editor window, right next to the line number. Either way, a little dot will appear to mark the breakpoint.
    2. Execute your code in Debug mode rather than release mode. This might mean clicking on the little bug-looking icon "Debug" rather than "Run."
    3. Your code will execute and you'll enter the debug perspective when that breakpoint is reached. There, in the variables window, you'll see your array and any information about it, particularly its size and contents.

  • Fusion Security, SearchResponse next returning array index out of bound

    I am trying to fetch all the roles under a search base and while iterating i am getting array index out of bound exception.
    SimpleSearchFilter filter=store.getSimpleSearchFilter(RoleProfile.NAME,SimpleSearchFilter.TYPE_EQUAL,null);
    String wildCardChar=filter.getWildCardChar();
    filter.setValue(wildCardChar);
    SearchParameters parameters=new SearchParameters(filter,SearchParameters.SEARCH_ROLES_ONLY) ;
    SearchResponse resp=store.searchRoles(Role.SCOPE_ANY, parameters);
    +while(resp.hasNext()){+
    Role role=(Role)resp.next();
    Can anybody kindly advise

    Hi..
    check this
    http://andrejusb.blogspot.com/2011/01/fusion-middleware-11g-security-retrieve.htmlhope this will helpful

  • Vector.get(0) Array Index out of bounds - Please Help

    Hi,
    I have a method, where i am accesing vector.get(0)
    and since it is a multi threaded application, somtimes i am getting
    Array Index out of bounds exception.
    I want to confirm that if i make that particular method synchronized, is it going to
    solve my problem.
    Please help me, since i am not able to reproduce the error very often, i want to make sure this will work.
    zraoz.

    It's a bit of both. The code you posted fails if two
    threads execute at the same time. He needs the
    synchronization, and the size check.Only if he is removes elements somewhere else. If not the code is safe.
    My guess is that he is trying to get the first element before it has been added.

  • Array index out of bounds

    I have in my code a method, proceed(), and in the method main, which i called.
    however, the error msg:
    java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 0
    could someone please tell me what is wrong with my code?
    // in the code, 2 arrays (keeping the contents and the count are
    //declared
    public static boolean proceed(String[] data, int[] count, int count_c){
    for(int i=0; i<21; i++){
    if ((data[i] == null) || (count[i] != count[i+1])){
    return false;
    if (count_c != count[21] && data[21] == null)
    return false;
    else
    return true;
    public static void main(String[] args){
    Vector v=new Vector();
    //... do something...
    if(proceed(array, count, count_c)){
    cell.setParameters(0, "cellid", array[0])
    cell.setParameters(1, "sac", array[1]);                
         cell.setParameters(21,"tmr_cspu", array[21]);
    v.add(cell);
    count_c++;
    temp[0] = ((OneCell)v.get(0)).printParameters()[0];
    error     -->     java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 0

    sorry, i hope that this is better now. thanks for your comment.
    in the code, 2 arrays (keeping the contents and the count) are declared
    temp is also an array of size 23
    i believe that the problem lies with the method proceedsince the method setParameters is correct...
    i hope that my question is now clearer. thx for the trouble taken to answer me...
    public static boolean proceed(String[] data, int[] count, int count_c){
        for(int i=0; i<21; i++){
            if ((data == null) || (count != count[i+1])){
                return false;
        if (count_c != count[21] && data[21] == null)
            return false;
        else
            return true;
    public static void main(String[] args){
        Vector v=new Vector();
        //... do something...
        if(proceed(array, count, count_c)){
            cell.setParameters(0, "cellid", array[0])
            cell.setParameters(1, "sac", array[1]);
            cell.setParameters(21,"tmr_cspu", array[21]);
            v.add(cell);
            count_c++;
        temp[0] = ((OneCell)v.get(0)).printParameters()[0];

  • Array Index out of bounds error when rendering graph

    Hello,
    OBIEE 11.1.1.5 running on RHEL version 5.7
    I'm encountering a strange problem with graph rendering. I have a graph and a table that are tied to a list of values. The graph renders correctly for many of the values in the list, but for certain values the graph does not render while the table does. What is even more odd is that the graph renders correctly using BI mobile on an iPad for all values in the LOV.
    From the Weblogic fusion bipublisher.log, I see this log entry immediately after getting the rendering error:
    Message:     java.lang.ArrayIndexOutOfBoundsException: 124
    The above log entry is followed about a minute later with this:
    Message ID: ADF_FACES-60099
    Component: AdminServer
    Module: oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer
    Message: The region component with id: emTemplate:fmwRegion has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.
    Any ideas on how to fix this?

    Hi Ray,
    I cannot find an array.  The only one I see is ResultList.  This one seems to be in all Test Stand sequences.  I am not sure exactly how it's used.
    I have pulled the sub-sequence out of the main sequence and made a new main sequence with all of the same variables.
    Look at it and let me know what you think.
    Thanks
    Attachments:
    Excel - Set Cell Color.seq ‏59 KB

  • OLT - multiple user load - Array Index Out of Bound error

    Hi,
    I am executing a load test with 12 users.
    All the 6 script scenarios are written in OpenScript editor. They all have databanks associated with them.
    When I run the test in OLT with 2 users per script scenario making that a total of 12 users, I see the following exceptions that have the wording as:
    + An unexpected exception occured in the script. Script section: Run. Caused by : ArrayIndexOutOfBoundsException occured. 71>=71
    + An unexpected exception occured in the script. Script section: Run. Caused by : ArrayIndexOutOfBoundsException occured. 206>=206
    + An unexpected exception occured in the script. Script section: Run. Caused by : ArrayIndexOutOfBoundsException occured. 206>=86
    Has anyone seen this error before, It is sporadic and does not always occur on the same scrip
    The version I am using is OLT 9.30.
    Thanks,
    Kranti.

    Thank You for your response.
    When I run with a single user using databank, I don't see this error.
    It apparently happens only when I use multiple users and it is quiet random so I cannot narrow down on a particular script to figure out the error.
    In one run scenario A shows this error in another run scenario A runs perfectly fine and some other scenarios shows this error.
    Also, I have around 100 values in the data bank and I see this error early on by around the 10th or 20th value in the data bank.
    Where can I check the resultIndex number?
    This is how I make my calls to the databank in the OpenScript script.
    getDatabank("ReinstatePolicyNumbers").getNextDatabankRecord();          
              getVariables().set("polNumber", "{{db.ReinstatePolicyNumbers.Var1}}");
              reinstatePolicy(userid, getVariables().get("polNumber"));
    Thanks,
    Kranti.

  • Problem with an array (Array index out of bounds)

    Hey guys, i have a problem with an array, i just want to print a few things but it won't let me because of this error, here's my code
         public static void MosDat()
              int i;
              for(i=0 ; i<n ; i++);
                   Client [ i ].print1();
                   Client [ i ].print2();
              return;
         }//MosDat
    where "n" is a global variable, and client is .
    I pretty much know how it woks, so i tried it like this and gave "n" the value of "1":
    public static void MosDat()
              int i;
              for(i=0 ; i<n ; i++);
                   Client [ 0 ].print1();
                   Client [ 0 ].print2();
              return;
         }//MosDat
    the printing methods i created worked prefectly when i tried it like that... so i really don't know where the problem could be... thanks anyone who can help me.

    for(i=0 ; i < n ; i++);I spy with my little eye,
    one semicolon too many.Well-spotted. ;-)Practicing on those weird question marks is my secret training.

  • Array Index Out Of Bound

    java.lang.ArrayIndexOutOfBoundsException i got this error while installing Jboss on linux ubuntu7.04 can anybody tell me how to solve this? plz

    StackTrace please...

  • Problem while connecting to mysql(Array Index Out Of Bound Exception)

    hi...
    java.sql.SQLException: Unable to connect to any hosts due to exception: java.lang.ArrayIndexOutOfBoundsException: 40
    this is the exception which i got.. when iam connecting to mysql...
    i alredy done googling...but....i didn't find any solution...
    pls suggest me...
    waiting 4r u r reply....

    I got a similar error, but its different scenario.
    vo=getVO;
    vo.setApplyViewCreteria("ViewC");
    vo.setQueryMode(Database_Rows | Entity_Rows );
    vo.exceuteQuery();
    for my case executequery() throws the same stacjk trace
    after removing Entity_Rows i mean vo.setQueryMode(Database_Rows | Entity_Rows ); ---> vo.setQueryMode(Database_Rows );
    I didn't get this error.
    Some problem with adding entity rows.

  • Index out of bound array : calling bapi

    Hi,
    I am facing a problem while executing a BAPI using the SAP .net connector. The steps I performed are as follows:
    Created a web project in Visual Studio .net using VB.net
    Added the SAP Connector Proxy to the project
    Dragged a Bapi_Customer_Getcontactlist onto the proxy
    Created a page with a button on it
    In the button_Click event of the web form I wrote the following code
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim Maxrows As Integer = 10
            Dim Return0 As BAPIRETURN1
            Dim Contactaddressdata As BAPICONTACT_ADDRESSDATATable
            Dim Customerrange As BAPICUSTOMER_IDRANGETable
            SapProxy11.Bapi_Customer_Getcontactlist(Maxrows, Return0, Contactaddressdata, Customerrange)
        End Sub
    But when I execute the code the method the control goes into the SAPProxy1.vb file in which the code for the method Bapi_Customer_Getcontactlist contains a statement as follows
    Dim results As Object()
            results = SAPInvoke("Bapi_Customer_Getcontactlist", New Object() { _
                                Maxrows, Contactaddressdata, Customerrange})
    When the SAPInvoke method is executed it gives an exception saying “Index was outside the bounds of the array.”
    For any other bapi that I execute it gives the same error. Please someone help me to execute the BAPI and let me know if I have missed out something.
    Regards,
    sridhar

    Thanks a lot for your suggestion.
    I got rid of the error by manually editing the code that the SAPProxy.vb contains in which the SAPInvoke method is called. This method expects the second parameter as the array of input parameters which it writes automatically but when executed the number of parameters is not the same as those in the actual method.
    i.e. The code that is written automatically when I drag the method from the Server explorer contains the BAPI method which internally calls the SAPInvoke method. Now the BAPI that I want to make a call contains the output parameters which you said I need to initialize. But the code excludes this output parameters in the SAPInvoke method. Thats the reason why the index out of bound error was generated.
    Now once I manually changed the code to include the output parameters too in the SAPInvoke method the error is gone but the call thus made does not return any value in the output parameters. Where as when executed from the SAP IDE it returns the values.
    Please let me know whats wrong with it.
    Regards,
    Sridhar

  • Error opening web analysis report in workspace: Array index out of range:2

    I am able to view this report in web analysis studio with no errors..Its only when I go to workspace and open report do I get following error: Array index out of range:2.
    Any suggestions?

    Have you tried checking the "Design for HTML" from the Edit toolbar to see if you get any error when saving?
    Do you have any advanced items on the report, as there are 4 types of differences between Studio and HTML:
    - font differences, Workspace (DHTML) uses the WA Server fonts whereas WA Studio client machine fonts.
    - Service Buttons are very restricted using Workspace
    - Display: Tab selection, Splitter panels, Slider selection do not render in Workspace
    - Cannot restrict WA Tools menu in Workspace at all, where you can in the Studio.
    For exact details check out the Hyperion Web Analysis Studio User’s Guide from the Doc Library:
    http://download.oracle.com/docs/cd/E10530_01/doc/nav/portal_4.htm

  • Java Index Out Of Bounds Exception error

    In the Query Designer when I choose access type for Result value as Master data, and execute, I get the following java Index Out Of Bounds Exception error:
    com.sap.ip.bi.webapplications.runtime.controller.MessageException: Error while generating HTML
         at com.sap.ip.bi.webapplications.runtime.impl.Page.processRequest(Page.java:2371)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.doServerRedirect(Page.java:2642)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.doProcessRequest(Page.java:2818)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.processRequest(Page.java:2293)
         at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.doProcessRequest(Controller.java:841)
         at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.processRequest(Controller.java:775)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:412)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.ip.bi.base.exception.BIBaseRuntimeException: Error while generating HTML
         at com.sap.ip.bi.webapplications.ui.items.UiItem.render(UiItem.java:380)
         at com.sap.ip.bi.webapplications.runtime.rendering.impl.ContainerNode.render(ContainerNode.java:62)
         at com.sap.ip.bi.webapplications.runtime.rendering.impl.PageAssemblerRenderingRoot.processRendering(PageAssemblerRenderingRoot.java:50)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.processRenderingRootNode(Page.java:3188)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.processRendering(Page.java:2923)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.doProcessRequest(Page.java:2877)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.processRequest(Page.java:2293)
         ... 39 more
    Caused by: java.lang.IndexOutOfBoundsException: fromIndex = -7
         at java.util.SubList.<init>(AbstractList.java:702)
         at java.util.RandomAccessSubList.<init>(AbstractList.java:860)
         at java.util.AbstractList.subList(AbstractList.java:569)
         at com.sap.ip.bi.bics.dataaccess.base.impl.ModifiableList.remove(ModifiableList.java:630)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsDataCells.removeRows(RsDataCells.java:480)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.removeTuples(RsAxis.java:550)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.applyResultVisibility(RsAxis.java:1312)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.applyResultVisibility(RsAxis.java:1326)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.applyResultVisibility(RsAxis.java:1326)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.applyResultVisibility(RsAxis.java:1326)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.applyResultVisibility(RsAxis.java:1272)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.RsAxis.applyResultVisibility(RsAxis.java:1170)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.ResultSet.applyPostProcessing(ResultSet.java:282)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.resultset.ResultSet.refreshData(ResultSet.java:262)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QueryView.getResultSet(QueryView.java:267)
         at com.sap.ip.bi.webapplications.ui.items.analysis.control.AcPivotTableInteractive.checkResultSetState(AcPivotTableInteractive.java:368)
         at com.sap.ip.bi.webapplications.ui.items.analysis.control.AcPivotTableExport.validateDataset(AcPivotTableExport.java:249)
         at com.sap.ip.bi.webapplications.ui.items.analysis.control.AcPivotTableInteractive.buildUrTree(AcPivotTableInteractive.java:282)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:33)
         at com.sap.ip.bi.webapplications.ui.framework.base.composites.UiRootContainer.iterateOverChildren(UiRootContainer.java:40)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.advancedcontrols.bridge.AcItemBridge.iterateOverChildren(AcItemBridge.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.FlowLayoutItem.iterateOverChildren(FlowLayoutItem.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.FlowLayout.iterateOverChildren(FlowLayout.java:69)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.framework.base.composites.UiRootContainer.iterateOverChildren(UiRootContainer.java:40)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.advancedcontrols.bridge.AcItemBridge.iterateOverChildren(AcItemBridge.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.MatrixLayoutCell.iterateOverChildren(MatrixLayoutCell.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.MatrixLayoutRow.iterateOverChildren(MatrixLayoutRow.java:56)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.MatrixLayout.iterateOverChildren(MatrixLayout.java:69)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.container.matrixlayout.control.AcMatrixControlGrid.iterateOverChildren(AcMatrixControlGrid.java:40)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.framework.base.composites.UiRootContainer.iterateOverChildren(UiRootContainer.java:40)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.advancedcontrols.bridge.AcItemBridge.iterateOverChildren(AcItemBridge.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.Group.iterateOverChildren(Group.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.container.group.control.AcGroupControl.iterateOverChildren(AcGroupControl.java:259)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.framework.base.composites.UiRootContainer.iterateOverChildren(UiRootContainer.java:40)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.advancedcontrols.bridge.AcItemBridge.iterateOverChildren(AcItemBridge.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.FlowLayoutItem.iterateOverChildren(FlowLayoutItem.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.FlowLayout.iterateOverChildren(FlowLayout.java:69)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.framework.base.composites.UiRootContainer.iterateOverChildren(UiRootContainer.java:40)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.advancedcontrols.bridge.AcItemBridge.iterateOverChildren(AcItemBridge.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.unifiedrendering.controls.Group.iterateOverChildren(Group.java:63)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.container.group.control.AcGroupControl.iterateOverChildren(AcGroupControl.java:259)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.framework.base.composites.UiRootContainer.iterateOverChildren(UiRootContainer.java:40)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.process(CompositeBuildUrTreeTrigger.java:36)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.CompositeBuildUrTreeTrigger.start(CompositeBuildUrTreeTrigger.java:59)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.ExtendedRenderManager.triggerComposites(ExtendedRenderManager.java:69)
         at com.sap.ip.bi.webapplications.ui.framework.base.impl.BICompositeManager.renderRoot(BICompositeManager.java:79)
         at com.sap.ip.bi.webapplications.ui.items.UiItem.render(UiItem.java:376)
    Any help in solving this error is highly appreciated. Points will be given
    Best Regards,
    Vidyut K Samanta

    Hi.
    Go to line 9 of your code.
    You are trying to use an array there.
    Suppose you have an array x[4] - this array has 4 elements indexed 0..3.
    you are trying to access an element with an index higher than 3.
    Nimo.

  • Can't store new target Array index out of range: 1 - SLD Configuration

    Hello ,
    Issue is regarding SLD configuration , We have ABAP + Java Addin on Suse Linux x86 ( 64 bit ) with Oracle 9.x .
    Java instalaltion competed succesfully , J2EE is up and runnung while configuring SLD , Data Supplier Bridge - Configure the data supplier bridge - Update SLDs
    As I set Update local SLD (sld/active) to true it gives error : Can't store new target Array index out of range: 1
    ( Error recorded in default.trace ,
    #1.5#001635052D79005D000000010000393A00041904004A592B#1153404882278#com.sap.engine.library.monitor.mapping.ccms.Trace##com.sap.engine.library.monitor.mapping.ccms.Trace######87587b2017f911dbc661001635052d79#SAPEngine_System_Thread[impl:5]_82##0#0#Error##Plain###RegisterNode</Services/Web Services/Requests Number/sap.com/com.sap.engine.heartbeat/GRMGWSTest/CurrentClient>: com.sap.mona.api.JMonException: com.sap.mona.api.JMonAPIException: Internal error in tree structure#
    #1.5#001635052D790049000000060000393A000419040226E9F1#1153404913510#com.sap.lcr.sagent.BuilderDirector#sap.com/com.sap.lcr#com.sap.lcr.sagent.BuilderDirector#J2EE_ADMIN#317####29009b1017fa11db96bd001635052d79#SAPEngine_Application_Thread[impl:3]_14##0#0#Error#1#/Applications/SLD#Plain###Can't access http store#
    #1.5#001635052D790049000000070000393A000419040226EA90#1153404913511#com.sap.lcr.sagent.BuilderDirector#sap.com/com.sap.lcr#com.sap.lcr.sagent.BuilderDirector#J2EE_ADMIN#317####29009b1017fa11db96bd001635052d79#SAPEngine_Application_Thread[impl:3]_14##0#0#Error##Plain###Thrown:
    com.sap.lcr.api.cimclient.LcrException: java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 1
    I have already through updated Component Repository – SAP Note : 669669 . 
    Regards ,
    Santosh

    Hi,
    I am having exactly the same issue. Would you please advise what the solution was?
    Thanks,
    Murad.

  • String index out of bounds?

    hi, i am writing a java program which reads in a file and then error checks it, once its done this it will output it to another file.
    It was working fine until i tried writing another method, now it keeps telling there is a string index out of bounds exception with the 'charAt' method. I have uploaded all the necessary files to compile and run the program.
    I am unsure of what the problem is so id be grateful of you would be able to check it out. If it helps i programmed and compiled this problem in netbeans 3.6.
    I uploaded it here: http://www.megaupload.com/?d=45QHZYN1
    you have to wait 45 seconds, the timer is in the right hand corner before you can begin download

    try
          {   System.out.println("2");
              Properties props   = new Properties();
              File file          = new File(System.getProperty("user.home") + File.separator + configFileName);
              BufferedInputStream bis = new BufferedInputStream(new FileInputStream (file));
              props.load(bis);
              if(bis != null)
                  bis.close();
              // Load the information from the properties file.
              String driver = (String)props.get("DB_DRIVER");
              String user    = (String)props.get("DB_USERNAME");
              String passwd  = (String)props.get("DB_PASSWORD");
              String url     = (String)props.get("DB_URL");
              conManager = ConnectionManager.getInstance(driver, user, passwd, url);
    logFilename = fileName.substring(0,fileName.lastIndexOf(".")) + ".log";
              System.out.println("log file name :: " + logFilename);
              fout = new FileOutputStream(new File(logFilename));
         catch (Exception e)
             e.printStackTrace();
      public static void main(String[] args)
        FormsRefresher formsRefresher = new FormsRefresher();
        String filename = "D:\\FCC\\FMB\\CLDUDCMT.fmb";   
        String username ="BPELDEMO";
        String pwd = "BPELDEMO";
        String url = "jdbc:oracle:thin:@PLUTO:1521:seriousim";
        String filename = args[8];
        formsRefresher.initialize(filename);
        formsRefresher.processForm(filename);
    }I am getting the error in the lines quoted bold
    This is the code and i am getting another error also along with that.
    That is Unsatisfiedlink error
    Message was edited by:
    Feroz_CG

Maybe you are looking for

  • Network Home Folders - iMac Freezes

    Hello all. I am trying to implement GarageBand for editing at a radio station. Everything is based off of a XServe G5 running OSX 10.4.11 with only 2 iMac workstations running 10.5.3. Only one main user right now who has a network based home folder.

  • Two instance with same port number in one machine.

    How can I config one machine(one IP) to listen to two different URLs with same port? (http://www.abc.com & http://www.xyz.com)??

  • Photo Software and Apps

      Photo Software and Apps After you have uploaded your digital photos to your computer, you are almost ready to start editing. With many options for photo editing software, the possibilities are seemingly endless. There are many different tasks and o

  • Best Qualilty From FCP into Compresser

    Ok, So ive filmed a short 6 min video in HDV 1080i60,and edited in that format, now because most of my clients DVD players don't read HDDVD I must compress it to something readable for SDDVD with out losing any of the quality.Now Ive tried MPEG-2 and

  • Internal Reconciliation - some documents not reconciling

    Hello, We've recently begun using the tool: Business Partners -> Internal Reconciliation -> Reconciliation. We select: Automatic All of our Customer Business Partners in the range selection Matching Rule 1 - Ref.2  (which is ORDR, NumAtCard), which w