sartoris
sartoris

Reputation: 931

Where is a Websphere Portlet Application 'Title' stored

I'm using the Websphere (6.1) Portal Administration page. I expand the 'Portlet Management menu and click on 'Applications'. I see a list of the portlet applications but some of them show "Application Name not available for this Application" in the title column. Where is a portal application 'Application Name' supposed to be stored in order to be shown in this list?

Upvotes: 0

Views: 173

Answers (1)

Carlos
Carlos

Reputation: 1806

That would be the id attribute of the portlet-app element within the portlet.xml. In the example below this would be "com.test.portlets.testportlet.TestPortlet".

<?xml version="1.0" encoding="UTF-8"?>
<portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" version="2.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" 
    id="com.test.portlets.testportlet.TestPortlet">
    <portlet>
        <portlet-name>TestPortlet</portlet-name>
        <display-name>TestPortlet</display-name>
        <display-name xml:lang="en">TestPortlet</display-name>
        <portlet-class>com.test.portlets.testportlet.TestPortlet</portlet-class>
        <init-param>
            <name>wps.markup</name>
            <value>html</value>
        </init-param>
        <expiration-cache>0</expiration-cache>
        <supports>
            <mime-type>text/html</mime-type>
            <portlet-mode>view</portlet-mode>
        </supports>
        <supported-locale>en</supported-locale>
        <resource-bundle>com.test.portlets.testportlet.nl.TestPortletResource</resource-bundle>
        <portlet-info>
            <title>TestPortlet</title>
            <short-title>TestPortlet</short-title>
            <keywords>TestPortlet</keywords>
        </portlet-info>
    </portlet>
</portlet-app>

Upvotes: 1

Related Questions