Thanks, yes, I have used the DAO pattern. If now I could just get past this JSF hurdle. I seemed to have managed somewhat in replacing the PF Dialogs with Panels by adding some helpful methods to...
Type: Posts; User: henryve; Keyword(s):
Thanks, yes, I have used the DAO pattern. If now I could just get past this JSF hurdle. I seemed to have managed somewhat in replacing the PF Dialogs with Panels by adding some helpful methods to...
I have decided to use Roo with JSF because I wanted to use PrimeFaces, however, the way Roo has implemented it frustrates me.
All the forms are implemented as Dialogs and although it works with...
Hi
If you use STS this is easy. The target class is usually part of the AJ filename, for example <TargetClass>_Roo_JavaBean.aj.
To override the method you have to push it in from the aspect to...
Thanks Shah, your help was most welcome.
As for my Eclipse, I am going to re-install. I am also on Ganymede SR1 (eclipse.buildId=M20080911-1700), but I think sometimes the new Equinox P2...
Thank you for taking the time to reply.
I was hoping to use JaxWsPortProxyFactoryBean, but I do not know how to set up the local service interface. Do I just code it or generate it?
I wanted...
I think you have to have the service interface available locally as a Java defined interface.
But I am not the expert. Maybe the only option is WSDL2Java?
I need to consume a web service that was created with .NET. It does not use any of the WS-* profiles, and uses very simplistic document based input/output parameters. Obviously I have access to the...
Which JSF implementation are you using? Have you tried the mojarra-1.2_09 release?
I have been a klutz. The solution is simple. Only use result-type="dataModel" in the evaluate tag if the type being returned is a collection, like a List<>.
Now even my AJAX enabled page works...
OK. The problem is not related to the AJAX enabling of the page. I have created a separate action-state to evaluate the expression, and I am still getting the same exception.
<?xml...
I am getting this exception which is giving me headaches since I can't see what I am doing wrong:
Caused by: org.springframework.binding.convert.ConversionExecutionException: Unable to convert...
:)
I have found the cause of my problem. My view-state had an incorrect value for the view-state's view attribute. I should have added the xhtml extension also.
:rolleyes:
This is from the stdout log:
2008-10-09 11:30:59,003 DEBUG [org.springframework.webflow.engine.ViewState] - <Entering state 'displayMainMenu' of flow 'main'>
2008-10-09 11:30:59,018 DEBUG...
I have double-checked my config files as well as the location of my flow config files.
The only difference to the example app is that I am using version 2.5 of the servlet spec whereas the example...
I have now found my Tomcat problem. Removing the el-api.jar solved that problem.
Now I get the same error running on Tomcat that I get with GlassFish.
None have any idea why my app don't want...
I am new to SWF and am trying to write an app based on the booking-faces sample app provided. To the configs that I ripped from there, I also added the RichFaces integration in the configs.
When...
Hi
I am new to Spring and just need to ask a simple question.
I have just started the implementation of my JDBC DAO layer. I am using Java 6.
Are there any other advantages/disadvantages of...