|
|
In the WebConfig.xml file, the following load rules are shipped with <DownloadLoadRule>:
• As Stored - Downloads the configuration of the model as it was saved into the Creo Elements/Direct Model Manager Server database.
• Highest Revisions - Downloads the highest revision of every object within the model.
• Highest Released Revisions - Downloads the highest revision that has been released of every object within the model.
|
|
|
PTC recommends that you should create a new theme instead of modifying the existing ones. For details on creating and applying a new theme, see Customizing the web page layout.
|
|
|
PTC recommends that you should work with an additional web application as follows:
1. Create a new web application in <Creo Elements/Direct Manager Server installation location>\webapps\mmweb_dev.
2. Register the new web application under the Jetty Server configuration section in <Creo Elements/Direct Manager Server installation location>ServiceControllerConfig.xml file. For example:
<Service enabled="true" java_class="com.osm.services.webservice.JettyServer" name="JettyServer"> 3. Type http://<server>:8580/mmweb_dev/ in a browser to test the web application. For example, http://localhost:8580/mmweb_dev/.
|
<!-- basic authentication -->
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>osmRealm</realm-name>
</login-config>
<!-- forms authentication -->
<!--
<login-config>
<auth-method>FORM</auth-method>
<realm-name>osmRealm</realm-name>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/error.jsp</form-error-page>
</form-login-config>
/login-config>
|
|
Only one authentication type can be enabled at a time.
|