Based on the following information, please construct the full path for the
servlet.
Please select one correct answer.
docbase = c:/temp/
context path = /test
alias name = MyMail
servlet-name = com.jiris.common.util.MailServlet
url-pattern = /mail/*
A : c:/temp/mail/com/jiris/util/MailServlet.class
B : c:/temp/test/mail/com/jiris/util/MailServlet.class
C : c:/temp/test/mail/util/MailServlet.class
D : c:/temp/test/com/jiris/util/MailServlet.class
The answer given is B.
REason specified is
he full servlet path is construted as follows:
full path = docbase + context path + url-pattern + Resource
Is this correct? Isnt the url-pattern a virtual path?