0 Replies Latest reply on May 19, 2003 10:42 AM by spod

    How to bind a resource to JNDI Path?

    spod

      Hello

      Can anyone help me with this problem? I have a web-application that needs to have some config parameters set and I want to distribute that applications WAR file to several different servers without needing to modify that file afterwards. My idea was to manage this problem by working with environment resource refernces as described in the servlet and J2EE standard. My web.xml would look like this:

      <resource-env-ref>
      Path to XML documents <resource-env-ref-name>myapp/templates</resource-env-ref-name> <resource-env-ref-type>java.lang.String</resource-env-ref-type>
      </resource-env-ref>

      In tomcat I had to configure the context for this application with the appropriate environment entries and this worked great. But I'm totally stuck on how to do this on my jboss server. I need to bind a corresponding String object to a ressource JNDI name, but how can I do this in jboss-web.xml ?