1 Reply Latest reply on Feb 25, 2008 11:00 PM by pmuir

    Access components in a conversation within a ConversationList iteration

      Hi,


      I want to compare attributes of a component in the current conversation with attributes of the same component in any conversationEntry of the conversationList.
      I can't find any API or way to achieve this. Can somebody help me?



      for (Iterator iter = conversationList.iterator(); iter.hasNext();) {
         element = (ConversationEntry) iter.next();
         // component of the current conversation
         MyActionBean myAction = (MyActionBean) Component.getInstance("myAction");  
         // how to access the same component name but the one from element?
         ....
       }
      



      Thanks a lot
      Markus