Simples Assim

Posts Tagged ‘JBoss Portal

How to Change the HTTP Port in JBoss Portal 2.7.2

leave a comment »

Refer to the 3.1 section of the Reference Guide.

Written by Fernando Ribeiro

September 12, 2009 at 9:21 pm

Posted in Software

Tagged with

GateIn

leave a comment »

The next generation of JBoss Portal.

http://www.jboss.org/gatein/

Written by Fernando Ribeiro

September 3, 2009 at 1:46 pm

Posted in Software

Tagged with ,

Criando um Projeto com Apache Maven Archetype Portlet Bridge da JBoss

leave a comment »

Written by Fernando Ribeiro

September 1, 2009 at 11:21 pm

Posted in Software

Tagged with ,

Bug in JBoss Portal 2.7.2

leave a comment »

https://jira.jboss.org/jira/browse/JBPORTAL-2445 (vote for it!)

You can try to work around with 1.0.7, that worked for me.

Written by Fernando Ribeiro

August 17, 2009 at 12:27 pm

Posted in Software

Tagged with

Merger of JBoss and eXo Portals

with one comment

Red Hat will continue to focus it’s JBoss Community Portal resources on high performance infrastructure and containers, security and rich application integration, while eXo will be contributing and continuing to evolve their excellent user interface and administration features.

Looks like very good news for the community.

http://press.redhat.com/2009/06/10/jboss-org-community-grows/

http://exoplatform.com/portal/public/website/aboutUS/eXoJBossPartnership

Written by Fernando Ribeiro

June 11, 2009 at 1:36 am

Posted in Business, Software, Technology

Tagged with

Extending User Profiles in JBoss Portal 2.7

leave a comment »

1) Add to the jboss-portal.sar/conf/identity/profile-config.xml file:

<property>
  <name>property</name>
  <type>java.lang.String</type> <!-- Mandatory -->
  <access-mode>read-write</access-mode>
  <usage>mandatory</usage>
  <display-name xml:lang="en">Display Name</display-name>
  <description xml:lang="en">Description</description>
  <mapping>
    <database>
      <type>dynamic</type>
      <value>propertyname</value>
    </database>
  </mapping>
</property>

2) Add to the jboss-portal.sar/portal-identity.sar/conf/identity-ui-configuration.xml file:

<ui-component name="property">
  <property-ref>property</property-ref>
  <required>true</required>
</ui-component>

3) Add to the resource bundle(s):

IDENTITY_PROPERTY=Property

4) Add to the jboss-portal-sar/portal-identity.sar/portal-identity.war/jsf/common/editProfileInfo.xhtml file:

<h:panelGroup>
  <h:outputText value="#{bundle.IDENTITY_PROPERTY}"/>
  <h:outputText value=" *" rendered="#{metadataservice.property.required}" />
</h:panelGroup>
<h:inputText id="#{metadataservice.property.name}" value="#{manager.uiUser.attribute.property}" required="#{metadataservice.property.required}"/>
<h:panelGroup />
<h:message for="#{metadataservice.property.name}" infoClass="portlet-msg-success" errorClass="portlet-msg-error" fatalClass="portlet-msg-error" warnClass="portlet-msg-alert"/>

5) Add to the jboss-portal-sar/portal-identity.sar/portal-identity.war/jsf/common/register.xhtml file:

<h:panelGroup>
  <h:outputText value="#{bundle.IDENTITY_PROPERTY}"/>
  <h:outputText value=" *" rendered="#{metadataservice.property.required}" />
</h:panelGroup>
<h:inputText id="#{metadataservice.property.name}" value="#{manager.uiUser.attribute.property}" required="#{metadataservice.property.required}" />
<h:panelGroup />
<h:message for="#{metadataservice.property.name}" infoClass="portlet-msg-success" errorClass="portlet-msg-error" fatalClass="portlet-msg-error" warnClass="portlet-msg-alert"/>

6) Add to the jboss-portal-sar/portal-identity.sar/portal-identity.war/jsf/common/viewProfileInfo.xhtml file:

<h:outputText value="#{bundle.IDENTITY_PROPERTY}:" rendered="#{editprofilemgr.uiUser.attribute.property != null}"/>
<h:outputText value="#{editprofilemgr.uiUser.attribute.property}" rendered="#{editprofilemgr.uiUser.attribute.property != null}"/>
<h:outputText value="#{bundle.IDENTITY_PROPERTY}"/>
<h:outputText id="#{metadataservice.property.name}" value="#{manager.uiUser.attribute.property}"/>
<h:panelGroup />

https://jira.jboss.org/jira/browse/JBPORTAL-2383 (vote for it!)

http://fernandoribeiro.eti.br/2009/02/02/xmllang-attribute/

Thanks to Paulo for the original report.

Written by Fernando Ribeiro

April 30, 2009 at 1:18 pm

Posted in Software

Tagged with

Handling Exceptions in Action and Event Requests in JBoss Portal

leave a comment »

According to the Portlets 2.0 specif a portlet throws an exception in the processAction or processEvent method, all operations on the ActionResponse must be ignored including set events [e.g setRenderParameter]. The 5 portal/portlet-container should continue processing the other portlets visible in the portal page.

It also says that it is up to the portlet container implementation if the error is faced to the end user, the portlet is removed from the current request cycle or if the render method of the portlet is called.

In JBoss Portal, the responses are cleared and the render methods are called.

Written by Fernando Ribeiro

April 13, 2009 at 12:07 pm

Posted in Software

Tagged with

Alfresco Integration with JBoss Portal

with one comment

With the release of Alfresco v3.x a few months ago, the options for integrating with a portal or other custom web application have greatly increased.

Nice arguments, but I don’t think we should drop web scripts in favor of CMIS before it turns 1.0.

http://blogs.citytechinc.com/jeffbrown/?p=29

Written by Fernando Ribeiro

April 10, 2009 at 1:09 am

Posted in Software

Tagged with ,

Limiting Access by IP in JBoss Portal

leave a comment »

Written by Fernando Ribeiro

April 6, 2009 at 1:58 am

Posted in Software

Tagged with

Preventing Duplicate User Sessions in JBoss Portal

leave a comment »

Written by Fernando Ribeiro

April 5, 2009 at 11:56 pm

Posted in Software

Tagged with

Follow

Get every new post delivered to your Inbox.

Join 784 other followers