Hi at all,
i'm developing a simple web app that maintains for each registered user a media library. All media items are stored into db table and phisically into a directory. More precisely i have a...
Type: Posts; User: edcruise; Keyword(s):
Hi at all,
i'm developing a simple web app that maintains for each registered user a media library. All media items are stored into db table and phisically into a directory. More precisely i have a...
HI at all,
i have a strange behavior using SpringWF....i already developed some web application using SWF and Spring, and never before now i saw it.
Well, i've usually form, with some...
I found real problem,
or rather i have a page with 2 form inside. Precisely one is loaded via <iframe> tag, and the other is defined via <form:form> tag.
Problem is that, after recall page more...
OK, maybe found something.
It seems more complicated then explained before.
Or rather, my page contains another form, loaded using <iframe> html tag. Of course, form pop-up after click on a link,...
Hi at all,
i have a problem with Spring web flow.
I developing using SWF, e i haven't realize until now this case.
I have a simple login form with a Validator bind to it. If i try to validate the...
<transition on-exception="org.springframework.webflow.execution.FlowExecutionException" to="errorView"/>
<view-state id="errorView" view="error">
<transition on="backHome" to="finish" />...
Hi klr8,
Yes, i have an execption view in my flow
<view-state id="errorView" view="error">
<transition on="backHome" to="finish" />
</view-state>
I don't know if my exception is...
Hi at all,
i've a problem with with exception handling with SWF....I read documentation on SWF site more many post on this forum, but i have not found the solution.
I have a simple application that...
Ok Degenaar,
I implemented your solution, and now my controller is more slim than before, trade-off is that now I have one "bean" for each task, extented from main abstract bean class, in which I...
I like your solution,
is it a typical spring-approch ? And then, put business logic into bean is a correct approach ?? I know that Command class is a Java Bean that holds state of a form view...
Hi Degenaar,
thanks for reply,
i understood your proposal, i believe...i define an abstract class as my command object, with abstract method.....after implement it as needed.
In this way I...
Hi at all,
i'm still spring newbie, i'm re-implementing a classical web application with spring, and i have a doubt on how to do a thing now.
Well, I have a classical task, in which a user can...
Thanks a lot...it works ;)
regards,
edcruise.
Hi at all,
i have a question on validation and file upload. Suppose I have a form that performs a upload of file, with some file information. On this form i implemented a validation, it works...