Hi David,
Thanks for the reply.

Yes this portion of HTML code is in side Table definition.


The VO I am trying to access the properties in the tags is as follows:

public class TopupMethodVO implements Serializable{
  
    private String topumMethod=null;
    private ArrayList bundles=null;
    private ArrayList selBundles=null;
 
    public TopupMethodVO() {

}
// getter/ setter methods
 }


Regards,
Nagesh




-----Original Message-----
From: David G. Friedman [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 9:37 PM
To: Struts Users Mailing List
Subject: RE: Error deploying struts webapp to iPlanet

Just to nitpick, do you care that your below HTML has an opening TR,
opening TD, then another opening TR and opening TD BUT NO TABLE
declaration between them?

Regards,
David

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 11:53 AM
To: user@struts.apache.org
Subject: FW: Error deploying struts webapp to iPlanet



 Hi ,
I hope  this issue can be resolved  which i am struggling for a couple
of days.
The scenario:
 I have an application perfectly working in Tomcat 5.0. the same
application when deployed in iPlanet is giving an error that
unterminated tag.
 [03/Apr/2006:17:16:55] failure ( 5100): for host 10.116.21.235 trying
to POST /<CONTEXT>/offerMetadata.do, service-j2ee reports:
StandardWrapperValve[action]: WEB2792: Servlet.service() for servlet
action threw exception
org.apache.jasper.compiler.ParseException:
/jsp/offer/oneoffSubscription.jsp(480,33) WEB4118: Unterminated
user-defined tag: ending tag &lt;/html:select&gt; not found or
incorrectly nested  at
org.apache.jasper.compiler.Parser$Tag.accept(Parser.java:901)
 at org.apache.jasper.compiler.Parser.parse(Parser.java:1157)

 I am posting the part of the JSP code with the select tag that is
giving problem.
 <TR>

<logic:iterate id="topup" name="topupMethodVOList" >// topupMethodVOList
is an arrayList available in session scope

<bean:define id="topupId" name="topup" type="The full qualified path of
the  VO" />

<tr><td>

<tr>

<td align="left" width="49%">

<html:checkbox property="topupId" ><bean:write name="topupId"
property="topumMethod"/></html:checkbox>

</td>

<td>
<html:select property="subbundles" name="simpleAggForm" multiple="true">

<logic:iterate id="bundlesID" name="topup" property="bundles" >//bundles
this is an arrayList inside each topupMethodVO whose collection is
itereting in the above iterate tag with "topupMethodVOList" as ArrayList

<bean:define id="bundle" name="bundlesID"
type="org.apache.struts.util.LabelValueBean"/>

<html:option value="<%=String.valueOf(bundle.getValue())%>">

<bean:write name="bundle" property="value"/>

</html:option>

</logic:iterate >

</html:select>/// this tag is not closed is the error??????

</td>
</tr>
</td>

</tr>
</logic:iterate>

</TR>

any references  on this issue ?? I guess the problem can be with
"handling nested properties of VO"?? but i am not sure how to go about
it.
 regards,
Nagesh



The information contained in this electronic message and any attachments
to this message are intended for the exclusive use of the addressee(s)
and may contain proprietary, confidential or privileged information. If
you are not the intended recipient, you should not disseminate,
distribute or copy this e-mail. Please notify the sender immediately and
destroy all copies of this message and any attachments.
WARNING: Computer viruses can be transmitted via email. The recipient
should check this email and any attachments for the presence of viruses.
The company accepts no liability for any damage caused by any virus
transmitted by this email.
 www.wipro.com


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to