Getting resource attributes from resourceObject

Hi,i have used listResourceObjects method in com.waveset.ui.util.Formutil to extract list of resource objects.How can i see the attributes in that object?-Sanjeev
[190 byte] By [Sanjeev1028a] at [2007-11-27 7:07:34]
# 1

listResourceObjects returns a list, which can be manipulated with all of the XPRESS list operations.

<defvar name='myList'>

<invoke name='listResourceObjects' class='com.waveset.ui.FormUtil'>

<ref>:display.session</ref>

<!--

Your

other

arguments

go

here

-->

</invoke>

</defvar>

<dolist name='element'>

<ref>myList</ref>

<block trace='true'>

<ref>element</ref>

<!-- Add whatever operations to perform on the elements -->

</block>

</dolist>

This will output the individual elements of the list. You could just as easily put the trace around the defvar, but the dolist is where you'll do something useful with the results.

Jason

jsalleea at 2007-7-12 18:58:58 > top of Java-index,Web & Directory Servers,Directory Servers...