Action « portlet « Java Enterprise Q&A





1. Row Action of Data Table on Faces Portlet not working    coderanch.com

Good day, I have a problem with tmy Faces portlet and Data Table. Here is what id do: 1. I have a ArrayList object which contains entity bean that i use to display on my data table. (Work perfectly) 2. I added a RowAction on my Data Table which save the ID of the bean and I use that bean on ...

2. Action List Builder    coderanch.com

Hi I have a Problem with the Action List Builder At first: I want to realize a Search-Function with Portlets. That means, that the user can fill out a form. The input data is squares with entries in a db2 database. I get the database information form a Service-Provider-Model and in the Service-Consumer Model I have an Action List which processes ...

4. Portlets in Action: What's a good fit?    coderanch.com

If you go for an open source Portal solution like Liferay then the cost will be considerably less. Still as you said, you have to hire good developers to do the job. And that might be expensive. Or you can use services of already trained/experienced consultants to do the job for you, if you are not hiring. But its always good ...

5. Portals in Action - Question    coderanch.com

Hi Ashish Sarin, It is really nice to see a book on Portals. I have few queries. 1. What exactly the differences are in Portal Servers than the normal web servers 2. To what extent the MVC is applied in Portals? 3. How do I achieve the portability in Portals? In terms of switching the servers. Just the jar files will ...

6. Portlets in Action- examples for different types of compliant portlet servers are covered in book?    coderanch.com

Hi Sarin, I'm new to portlets and trying to understand better the available options for implementation. How is your book different from the "Liferay in Action" for example ? Does your book tackle the development of portlets using different types of compliant portlet servers (beside Liferay) ? What criteria should one take into consideration before selecting a certain portlet server? Thanks, ...

8. * Winners: Portlets in Action    coderanch.com





10. What is the best way to get all parameters in process action    coderanch.com

Ravisha, There are lot's of ways to accomplish this, but here is a sample of how to call your bean setters in a way that is reusable across all beans. import java.lang.reflect.Method; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; ..... public class BindHelper { .... public static Object bind( Object bean, Map parameterMap) throws Exception{ Method[] methods = bean.getClass().getMethods(); //traverse you parameter ...