Hi I am new into XML Beans. I have generated the code using axis from wsdl.

Then  using Factory method I created several objects until I found object I
was looking for.

In the end this method is called:

  public boolean
isNilWatchListQueryServiceEntryIdsInnerSetTupleTypeArray(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.actimize.eh.WatchListQueryServiceEntryIdsInnerSetTupleType
target = null;
            target =
(com.actimize.eh.WatchListQueryServiceEntryIdsInnerSetTupleType)get_store().find_element_user(WATCHLISTQUERYSERVICEENTRYIDSINNERSETTUPLETYPE$0,
i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            return target.isNil();
        }
    }

and find_element_user returns null because method in abstrac class XObj has
_firstChild attribute set as null.


    public TypeStoreUser find_element_user ( QName name, int i )
    {
        for ( Xobj x = _firstChild ; x != null ; x = x._nextSibling )
            if (x.isElem() && x._name.equals( name ) && --i < 0)
                return x.getUser();

        return null;
    }

I got stuck here and I have no idea why is first cild null
-- 
View this message in context: 
http://old.nabble.com/find_element_user-returns-null.-tp32664970p32664970.html
Sent from the Xml Beans - Dev mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org
For additional commands, e-mail: dev-h...@xmlbeans.apache.org

Reply via email to