Prathap had the most helpful reply. I ended up a class that extends
StandardManager and implements RemoteInterface and has a static method
below.
public static List getECApprovals(WTChangeOrder2 ecn) {...}
My List returned a list of a bean class holding my table data. The JSP
table is defined below
<jca:describetable var="tableDescriptor" id="goodrich.ecapprovals.table"<br"/>label="EC Approvals" configurable="false" >
<jca:describecolumn id="role" label="Role"/>
<jca:describecolumn id="fullname" label="Name"/>
<jca:describecolumn id="completedDate" label="Date"/>
<jca:describecolumn id="vote" label="Vote"/>
</jca:describetable>
<jca:getmodel var="tableModel" descriptor="${tableDescriptor}"<br"/>
serviceName="<my classname=">"
methodName="getECApprovals">
<jca:addserviceargument value="${param.oid}"<br"/>type="wt.change2.WTChangeOrder2"/>
</jca:getmodel>
<jca:rendertable model="${tableModel}"/>
Now on to my next issue. See next post.