hi,
if u r using tomcat then follow the steps
1. open server.xml in the conf dir
2. create new context path tag for mapping
<Context path="/path/tobe/given/inurl"
docBase="/path/where/servlets/are/placed"
crossContext="false"
debug="0"
reloadable="true" >
</Context>
3.And then in ur case create "Web-inf" dir inside "C:\servlets"
4.then create "classes" dir inside "web-inf"
5.compile all the java servlets and put the class files inside the classes dir
6.then start the tomcat server from the classes dir
7.check in the url
Ex:
http://<hostname>:<port>/<path>/<filename> thanx
arun