vote up 0 vote down star

I am forwarding to an action by giving as

<forward  name="sample" path="/sample.do?button=default" />

i want to add one more attribute in path and i used:

<forward  name="sample" path="/sample.do?button=default&value=text" />

...and I am getting org.xml.sax.SAXParseException

Any solution for it?

flag

2 Answers

vote up 0 vote down

<forward name="sample" path="/sample.do?button=default&value=text" />

You can pass multiple parameter in forward. But you have to use '&' instead of '&'.

To be strictly accurate, the parser handler should scan the buffer for ampersand characters (&);and left-angle bracket characters (<) and replace them with the strings &amp; or &lt;, as appropriate.

So, the forward statement will be as

<forward name="sample" path="/sample.do?button=default&amp;value=text" />

link|flag
vote up 0 vote down

you can not use '&' in struts-config.xml

value=text should be passed from your action...not the way you are trying to pass it (in url).

Your forward tag must be associated with an action. that action should have a getter called value which returns 'text'.

what way sample.do will have access to that varable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.