<?xml version="1.0" encoding="ISO-8859-1"?>


<!DOCTYPE web-app

	PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
	"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<context-param>
	<param-name>webmaster</param-name>
	<param-value>webmaster@myeducationonline.com</param-value>
</context-param>
<context-param>
	<param-name>jdbcDriver</param-name>
	<param-value>sun.jdbc.odbc.JdbcOdbcDriver</param-value>
</context-param>
<context-param>
	<param-name>dbURL</param-name>
	<param-value>jdbc.odbc.clientDB</param-value>
</context-param>
<session-config>
	<session-timeout>30</session-timeout>
</session-config>
<welcome-file-list>
	<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>

so this file as to be put in my "workspace" where my projects are ?

Yes, the web.xml file goes in the WEB-INF directory of your app.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.