A few questions :)
What is the correct/preferred way of handling exceptions, specifically with the intent of translating those in to user-friendly messages? I see we can register instances of...
Type: Posts; User: sqrrrl; Keyword(s):
A few questions :)
What is the correct/preferred way of handling exceptions, specifically with the intent of translating those in to user-friendly messages? I see we can register instances of...
Problem appears to be in FlowController.
protected MutableAttributeMap defaultFlowExecutionInputMap(HttpServletRequest request) {
return new LocalAttributeMap(request.getParameterMap());
}
...
Yup, works fine with MyFaces. Had some other issues with it which is why I switched to JSF-RI, but I worked around those. Jetty with the jetty-ant task has some classpath issues with JSF and I had...
I'm seeing the same thing (FF 2.0.0.11 on OSX 10.5) and also fails with Safari 3.0.4. Using Jetty 6 as container with JSF-RI 1.2
Specifically, it doesn't look like anything that renders fragments...
Due to way sitemesh works, you can't really access any of your request scoped attributes in the decorator, at least not directly. You can, however, gain some control by using content blocks, a...
Looks like a lot of the indents got swallowed :( Oh well..
Thought somebody might find this useful... it's a simple FactoryBean for injecting lists of beans declared elsewhere in the context, identified by their type.
package...
Anyone have any luck getting websphere (5) to have a single shared application context among multiple EJBs?
My EAR strucuture is something like:
myapp.ear
- webapp1.war
- webapp2.war
-...
I also did some prelimary work here and was able to get something simple working very quickly using an extra form parameter to discriminate between instances. But there's one issue that bothers me...