• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Web.xml

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
Can any body please send me complete Web.xml. It's there in K&B as bit's and pieces. But I want to see all at once. Tahnks in advance.
 
Ranch Hand
Posts: 292
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Refer to the spec.....you've got everything there
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is the "web.xml" from a sample application from Web Logic.

web.xml - click to download

---
Thanks
Andres Santana
 
Srinivasa Suresh
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks very much
 
Srinivasa Suresh
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks very much
 
Ranch Hand
Posts: 87
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can see if this is useful
<web-app>
<icon>
<small-icon>
<large-icon>
</icon>

<display-name>
<description>
<distributable>

<context-param>
<param-name>
<param-value>
<description>
</context-param>

<filter>
<icon>
<small-icon>
<large-icon>
</icon>
<filter-name>
<display-name>
<description>
<filter-class>
<init-param>
<param-name>
<param-value>
<description>
</init-param>
</filter>

<filter-mapping>
<filter-name>
<url-pattern>
<servlet>
</filter-mapping>

<listener>
<listener-class>
</listener>

<servlet>
<icon>
<small-icon>
<large-icon>
</icon>
<servlet-name>
<display-name>
<description>
<servlet-class> or <jsp-file>
<init-param>
<param-name>
<param-value>
<description>
</init-param>
<load-on-startup>
<security-role-ref>
<description>
<role-name>
<role-link>
</security-role-ref>
</servlet>

<servlet-mapping>
<servlet-name>
<url-pattern>
</servlet-mapping>

<session-config>
<session-timeout>
</session-config>

<mime-mapping>
<extension>
<mime-type>
</mime-mapping>

<welcome-file-list>
<welcome-file>
</welcome-file-list>

<error-page>
<error-code>
<exception-type>
<location>
</error-page>

<taglib>
<taglib-location>
<taglib-uri>
</taglib>

<resource-ref>
<description>
<res-ref-name>
<res-ref-type>
<res-ref-auth>
<res-sharing-scope>
</resource-ref>

<security-constraint>
<web-resource-collection>
<web-resource-name>
<description>
<url-pattern>
<http-method>
</web-resource-collection>
<auth-contraint>
<description>
<role-name>
</auth-constraint>
<user-data-contraint>
<description>
<transport-guarantee>
<user-data-contraint>
</security-constraint>

<login-config>
<auth-method>
<realm-name>
<form-login-config>
<form-login-page>
<form-error-page>
</form-login-config>
</login-config>

<security-role>
<description>
<role-name>
</security-role>

<env-entry>
<description>
<env-entry-name>
<env-entry-value>
<env-entry-type>
</env-entry>

<ejb-ref>
<description>
<ejb-ref-name>
<ejb-ref-type>
<home>
<remote>
<ejb-link>
<run-as>
</ejb-ref>
</web-app>
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic