Hello,
i've just written an extension for the EP Navigation to integrate an other application.
Everything works fine, but when i restart the Portalserver i have to deploy the PAR archive again to get the new navigation entry.
Can anyone help me, what i need to do, so that the extension loads automatically by server start?
Thanks
jan
Hi Jan,
I assume you've written a navigation service in order to have it attached to the portal navigation, so have you included the 'startup' parameter in your portalapp.xml:
<application> <application-config> ... </application-config> <components> ... </components> <services> <service name="navigationConnector"> <service-config> <property name="className" value="your_connector_service_class"/> <b><property name="startup" value="true"/></b> <property name="classNameFactory" value=""/> <property name="classNameManager" value=""/> <property name="poolFactory" value="0"/> </service-config> </service> </services> </application>
Kind regards,
Robin van het Hof
Add a comment