|
Home > Archive > WebSphere Portal Server > October 2005 > option "Map modules to servers" disappears !!!
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
option "Map modules to servers" disappears !!!
|
|
|
| Hi! I have noticed that after updating the web.xml file of an application with a servlet definition the option "Map modules to servers" of the Enterprise Application configuration screen disappears!!!, is this a bug? does anyone have any idea why this hap
pens?
Thanks 
| |
|
| can you describe in detail? info you gave is not enough to understand.
| |
|
| Hi!!, thank you for responding.
Ok, I am using Websphere Application Server Network Deployment 6.0 with the latest fix pack.
Initially, after installation the application has a web.xml file almost empty, here is the code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD
Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-a...d">
<web-app id="WebApp_ID">
</web-app>
I wanted to add a new servlet definition to it, so i create a new web.xml file with the following code inside of it:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD
Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-a...d">
<web-app id="WebApp_ID">
<servlet>
<servlet-name>MyServletClass</servlet-name>
<servlet-class>path.to.my.MyServletClass</servlet-class>
</servlet>
</web-app>
So, the next thing I have done is use the administrative console to update my file using the update option for the installed applications. The update was successful .
Then, I try to go to the option "Applications > Enterprise Applications > app_name > Map modules to servers" (under the Additional Properties section) but the option is no longer there.
If i log out from the console and log in again the option "Map virtual hosts for Web modules" has disappeared also!!!
I really dont understand what happens....
|
|
|
|
|