lets say that I make a servelet and put it in  this 
directory->C:\windows\desktop\TOMCAT\webapps\examples\servlets\TEST.html

and the server.xml is configured like this:
        <Context path="/examples"
                 docBase="webapps/examples"
                 crossContext="false"
                 debug="0"
                 reloadable="true" >
        </Context>

Therefore the web-inf folder would been this directory:
    C:\windows\desktop\TOMCAT\webapps\examples\web-inf

I also edit the web.xml file to add this :
    
        <servlet>
        <servlet-name>
            TEST
        </servlet-name>
        <servlet-class>
            TEST
        </servlet-class>
    </servlet>

Now if I want to execute this on a web browser how do I do it. I tried 

http://127.0.0.1/examples/servlets/TEST 

but this don't work... Any suggestions........


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to