Last modified: Mon, 04/03/2017 - 17:28
This is the "root" of the LAS configuration. Inside this file one references all of the other configuration files that the LAS Product Server needs to run.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://struts.apache.org/dtds/struts-config_1_3.dtd">
<struts-config>
<action-mappings>
<action path="/ProductServer"
type="gov.noaa.pmel.tmap.las.product.server.ProductServerAction">
<forward name="error"
path="/productserver/templates/error.vm" redirect="false" />
<forward name="progress"
path="/productserver/templates/progress.vm" redirect="false"/>
<forward name="info" path="/productserver/templates/info.vm" redirect="false"/>
<forward name="cancel" path="/productserver/templates/cancel.vm" redirect="false"/>
</action>
</action-mappings>
<plug-in
className="gov.noaa.pmel.tmap.las.product.server.LASConfigPlugIn">
<set-property property="configFileName"
value="/home/porter/rhs/testbed/conf/server/las.xml" />
<set-property property="v7OperationsFileName"
value="/home/porter/rhs/testbed/conf/server/operationsV7.xml" />
<set-property property="lasUIFileName"
value="/home/porter/rhs/testbed/conf/server/ui.xml" />
</plug-in>
<plug-in
className="gov.noaa.pmel.tmap.las.product.server.ServerConfigPlugIn">
<set-property property="configFileName"
value="/home/porter/rhs/testbed/conf/server/productserver.xml" />
</plug-in>
</struts-config>