[JBoss Portal] - Re: Blog for JBoss Portal
by roy.russo@jboss.com
"sacha.labourey(a)jboss.com" wrote : where can I find a documentation for JBoss Portal that lists all available portlets, and for each, what they do, what can be configured, etc.?
We're not in the business of building portlets or promoting them. Whatever is in PortletSwap is whats available. We also leverage partners for our portlets. Admittedly, OOTB, we do not package much.
PSWAP, needs to be refactored, as the portlets found there have to be modified to work with 2.4 (descriptors have changed). Maybe one day when I have time, that will actually happen.
"sacha.labourey(a)jboss.com" wrote :
| Also, the names that appear in the porlet list of the admin view are not really meaningfull. Can we imagine that each portlet also has a real name and a description that we could display (i.e. additional meta-data), at least for OUR portlets?
The AdminUI was added to ease manageability. We understand its lacking in the usability area. Now with a dedicated resource, it should be addressed in the 2.6 release.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958047#3958047
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3958047
19 years, 9 months
[EJB 3.0] - simple question
by taras1984
Hi,
I have one simple question.
When writing simple HelloWord application with EJB3, the @EJB annotation is used in application client to get reference to bean's interface -probably.
My client for this application uses this annotation and it works fine but only when deployed and ran on Sun Server Application not on JBoss.
In Jboss I have to use this code:
InitialContext ctx = new InitialContext();
soldierRemote soldierOne = (soldierRemote)ctx.lookup("jbossSoldier/soldierBean/remote");
in SunAS
"@EJB soldierRemote soldierOne" is fine.
My assumption is that my client app. for SSA works because I execute it with appclient ( is this client container? ) and one for JBoss must have the additional code because it is a standalone application.
Is that true??
If so:
When writing standalone client for SSA, do I need a different code from that for JBoss ?
How to execute application client with @EJB annotation for Jboss, how to run its client container ?
Thx for help.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958043#3958043
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3958043
19 years, 9 months