cancel
Showing results for 
Search instead for 
Did you mean: 

webscript java backed and presentation

yassra
Champ in-the-making
Champ in-the-making
Hi everybody,

I have a javabacked webscript that executes some issues and return values, as well i have  a presentation webscript that contains a form and i need to put those values into it.


How can i pass values from webscript to another ?



Thank you for your time.
3 REPLIES 3

abarisone
Star Contributor
Star Contributor
Hi,
your Java-backed webscript controller should have as view (of the Model-Viev-Control pattern) a ftl file that contains the form to be submitted to another webscript that would manipulate data.
So I think you don't need to pass (in the strict meaning of the term) values from one webscript to another, but you should follow a fair MVC pattern flow.

Regards,
Andrea

yassra
Champ in-the-making
Champ in-the-making
Thanks for responding ANDREA.

Is there a tutorial that exlpain how this works, i mean( the  form to be submitted to another webscript)?
Can you please give an example?