Nobody could give me an example? My portlet.xml:
<?xml version="1.0" encoding="UTF-8"?>
<portlet-app>
        <event-definition>
                <name>org.sample.defaultevent</name>
                <java-type>java.lang.String</java-type>
        </event-definition>
        <portlet>
                <description>SamplePortlet</description>

                <portlet-name>SamplePortlet</portlet-name>

                <display-name>SamplePortlet</display-name>

                <portlet-class>org.sample.portlets.SamplePortlet</portlet-class>

                <supported-processing-event>
                        <name>org.sample.defaultevent</name>
                </supported-processing-event>

                <!-- some initialtization params -->
                <init-param>
                        <name>edit</name>
                        <value>/jsp/edit.jsp</value>
                </init-param>

                <init-param>
                        <name>help</name>
                        <value>/jsp/help.jsp</value>
                </init-param>

                <init-param>
                        <name>debug</name>
                        <value>true</value>
                </init-param>

                <expiration-cache>-1</expiration-cache>

                <!-- the supported PortletModes -->
                <supports>
                        <mime-type>text/html</mime-type>
                        <portlet-mode>VIEW</portlet-mode>
                        <portlet-mode>EDIT</portlet-mode>
                        <portlet-mode>HELP</portlet-mode>
                </supports>

                <supported-locale>de</supported-locale>

                <portlet-info>
                        <title>SamplePortlet</title>
                        <short-title>SamPor</short-title>
                        <keywords>test</keywords>
                </portlet-info>
        </portlet>
</portlet-app>

-- 
View this message in context: 
http://www.nabble.com/Deploying-JSR-268-Portlets-tf2643494.html#a7486481
Sent from the Pluto - Dev mailing list archive at Nabble.com.

Reply via email to