[JBoss Portal] - Multiple portals
by juancito
Hello everybody, the truth that I am very new to me and good java and seen in the nesecidad watch jboss Potal.
I wonder if you can create multiple portals from which I can access them from my homepage.
What we want is to create a menu on the left side with a list of all potential customers and the company may have to click on each one of them go to their website
This portal will be completely independent of the homepage will have their own Fortune cabezeras, menus, css, any different from the other sites they may have.
This would be the main portal page default.html.
Cabezera (Logo de la empresa principal)
--------------------------------------------------------------------------------------
Menu
---------------------------
Empresa Cliente 1
Empresa Cliente 2
Empresa Cliente 3
----------------------------
Menu
----------------------------
----------------------------
It is possible to do this with jboss portal?
Thank any help
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4128572#4128572
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4128572
18 years, 2 months
[JBoss Seam] - Re: Longrunning process
by hispeedsurfer
Hi,
I have a mdb
@MessageDriven(name="QueryMessageBean", activationConfig = {
| @ActivationConfigProperty(propertyName="destinationType", propertyValue="javax.jms.Queue"),
| @ActivationConfigProperty(propertyName="destination", propertyValue="queue/oatsMessageQueue"),
| @ActivationConfigProperty(propertyName="maxSession", propertyValue="1")
|
| })
| @Name("queryMessageBean")
| public class QueryMessageBean implements MessageListener {
|
| @Resource
| private MessageDrivenContext context;
| @In(create=true)
| private MySqlToORDB mySqlToOrdb;
and on class header of MySqlToOrdb I have declared these transactionattribute
@Stateless
| @Name("mySqlToOrdb")
| @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
| public class MySqlToORDbBean implements MySqlToORDB {
|
| @PersistenceContext
| private EntityManager entityManager;
I hope this helps
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4128568#4128568
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4128568
18 years, 2 months