hii,
I am trying to deploy a pure (jsp, servlet "without EJB") web application to jboss 4.0.1 from tomcat 5.0.27 container. I am able to deploy the war file in the jboss. But i m NOT able to place the context file (placed under conf/Catalina/localhost/mycontext.xml) in jboss. For example:
i deployed the war file named : test.war
i placed a test.xml context file under (conf/jboss.web/localhost/test.xml). The content of my test.xml with some parameters are
<Context path="/test" docBase="test" debug="0" privileged="true">
<Parameter name="some" value="dum" />
<Parameter name="one" value="ein" />
</Context>
i even tried with a docBase of "/test"...but the application is not able to get the initialisation parameters from the context file.
HOW & WHERE to place the context file for the web-application in jboss??
Please advice.
thanks
aks