Previous Topic: Prerequisites to Deploy an FWS WAR File in JBoss ServerNext Topic: Create a module.xml File


Update the Affwebservices Deployment Descriptor File

Edit the affwebservices deployment descriptor to add a few <context-param> entries.

Follow these steps:

  1. Open the affwebservices deployment descriptor file (webagent_option_pack/affwebservices/WEB-INF/web.xml) in a text editor.
  2. Add the following lines after the <web-app> tag and before the <servlet> tag:
    <context-param>
    <param-name>resteasy.scan</param-name>
    <param-value>false</param-value>
    </context-param>
    <context-param>
    <param-name>resteasy.scan.resources</param-name>
    <param-value>false</param-value>
    </context-param>
    <context-param>
    <param-name>resteasy.scan.providers</param-name>
    <param-value>false</param-value>
    </context-param>
    
  3. Save and exit the text editor.