|
Configuring Context Path for WDK Application |
|
|
|
Written by <a href="http://www.mydocumentum.net/component/comprofiler/userprofile/jazar">James Azarja</a>
|
|
Friday, 03 April 2009 14:44 |
|
Copyright 2008. All Rights Reserved.
When a WDK application was deployed, sometimes we want to change the context path from /webtop or /taskspace into something else, this article will discuss how to change the context path when we deploy WDK application (Webtop, Documentum Administrator, Taskspace, etc) in Weblogic Application Server.
- Edit file weblogic.xml located at WEB-INF directory in your WDK Application.
- Add new contextpath tag, for example:
1 2 3 4 5 6 7 8 9 10 11 12
|
<weblogic-web-app> <description>Weblogic Webapp</description> <!--To enable session replication for failover support uncomment the following --> <!-- <session-descriptor> <session-param> <param-name>PersistentStoreType</param-name> <param-value>replicated</param-value> </session-param> </session-descriptor> --> <context-root>/mynewtaskspace</context-root> </weblogic-web-app>
|
Trackback(0)
 |