I thought the same, because I'm using another mvc:resources that points to a disk location, and that is working fine... And when I hardtype the JS resources URL they are correctly found...
Right...
Type: Posts; User: piedrahitac; Keyword(s):
I thought the same, because I'm using another mvc:resources that points to a disk location, and that is working fine... And when I hardtype the JS resources URL they are correctly found...
Right...
Hello everyone,
I'm trying to use Spring JS and Spring Faces in my project, but the resources never get loaded, I get a 404 error when looking up the .js and .css files.
My dispatcher servlet...
Thank you for your answer migelct1983... Turns out that you were right and you helped me solve my problem, however there was another tiny bit I was missing...
When I switched to the ajax enabled...
Hello everyone,
As the title says, when I try to render fragments using JSF + Facelets, the whole page is refreshed via a 302 redirect, instead of just the fragment I need...
I'm using Spring...
Your flowA must have an end-state that specifies a view parameter with one of the different redirect types WebFlow offers.
Something along the lines of:
<end-state id="flowAEndState"...
Hello everyone,
I have a parent flow with a <var> element, let's say:
<var name="myBean" class="my.package.MyBean" />
and then I have a <subflow-state>
It wooooooooorked!
Thank you so much rwinch! First I bumped up the intercept url, that alone did not work, however I think it was a good recommendation. Then I checked my Spring Security...
I tried your suggestion and it didn't work... Thanks a lot rwinch, I guess I'll try the logging thing to find out what's going on...
I believe this is an area where WebFlow should work on... This kind of question/request is all over the forum but there is no definitive answer... I suppose some of the responsibility falls also on...
I'm having this exact same behavior... Is there a way to sort this out?
Thanks for the reply rwinch.
Actually, the static resources are mostly pictures, I don't know if that has anything to do with, and the URL of the resources is in the form of:...
Hello everyone,
I'm having a little trouble with my webapp. Recently I had to configure it to serve some static content, so to that purpose I used the following in my applicationContext.xml:
...
Hello,
I've been using Webflow for my new project and I'm very satisfied with the results, even though I'm still getting the hang of it.
In my web app I have many flows and all of them are...
Excellent, thanks a lot for the response! Everything makes more sense now... This makes me wonder, is it OK to use this approach or are there any "side effects" I should take into account?
Hello everyone,
I've searched this on the forums and while the question has been asked a few times I haven't found a thorough answer, so here's another shot at it. Here's the deal:
I have a...
Just in case, here's the info straight from the horse's mouth: http://javaserverfaces.java.net/nonav/rlnotes/2.1.0/issues.html
Are you using Tomcat? Because if you do, JSF 2.1 does not support it.
If I understand your first question correctly, then you need to make use of EL expressions in your JSP to be able to bind the parameter to your Java code.
Also, in order to invoke your login...
Ok, so it turns out I had two flowHandlerControllers defined in my configuration and my current flow was not using the appropiate JSF controller, so I was getting a NullPointerException when the JSF...
Thanks for the answer Falcon... However, I have already tried with normal JSF commandLink/commandButton and with my JSF library of choice OpenFaces, and get exactly the same result... This is very...
Good day, everyone.
I'm getting the following NullPointerException when I make a transition in a flow. I'm trying to select a row from a <h:dataTable> element through a <sf:commandLink>, just like...
Hello,
I have a little question. In my web application, I have a simple annotated Spring bean, for example:
@Component
public class MyBean implements Serializable {
private String...
Ok, I solved this... I don't know if there's a typo in the documentation or if I'm missing something, but when I changed the faces namespace to:
...
Hello everyone,
I'm trying to use Spring 3.0.5, Spring Webflow 2.3.0 and JSF 2.0. All the .jars are in place in my web app and I've done all the configuration according to the documentation.
...
Thanks a lot for the advice Luke! I'm really not an expert in application security, but this looks like a great opportunity to learn a few things... I'll give a shot at implementing my own...