Hi WASUser,
You can verify if in your plugin you have entries for applications like
/APPLICATION_CONTEXT_ROOT/*
instead of
/APPLICATION_CONTEXT_ROOT/servlets/YOURSERVLETS
/APPLICATION_CONTEXT_ROOT/*.jsp
/APPLICATION_CONTEXT_ROOT/*.jsp"/
if file server enabling propertie is true then plugin generate in that way
/APPLICATION_CONTEXT_ROOT/*
if not generate an entry for all servlets and java based contents.
To check if the properties is enabled you need to see inside your Application Web Module (.war) in ibm-web-ext.xmi file
fileServingEnabled="false"
if fileServingEnabled="false" then you need to move static content to your Web Server and generate an Alias to serve the content in your configuration file (httpd.conf f.e) an example:
Alias /APPLICATION_CONTEXT_ROOT/ "C:/IBMHttpServer/htdocs/APPLICATION_CONTEXT_ROOT"
Some examples:
WebSphere Application Server V5: Separating Static and Dynamic Web Content
www.redbooks.ibm.com/abstracts/tips0223.... IBM WebSphere Developer Technical Journal: Handling Static Content in WebSphere Application Server
www.ibm.com/developerworks/websphere/tec... Hope this helps.
regards