Try OpenEdge Now
skip to main content
Administration
Web Services Adapter Administration : Managing the Web Services Adapter : WSA administration architecture : WSA as a Java container Web application
 
WSA as a Java container Web application
To configure a WSA, it is also necessary to understand the architecture of the WSA as a Java container Web application. The WSA Web application consists of a set of directories and files. The following table shows the directory structure.
Table 16. Directory structure of the WSA as a Java container Web application
. . . /WSA-web-application-directory
       [ optional static html pages ]
       .
       .
       .
       WEB-INF/
              web.xml ( WSA Web application descriptor file )
              lib/
                     wsa.jar
                     soap.jar
                     [ any additional WSA Web application jar files ]
                     .
                     .
                     .
              classes/
                     [ optional Java .class files ]
                     .
                     .
                     .
The WSA Web application consists of a subdirectory named WEB-INF (the name is case sensitive) that contains the Web application descriptor file (web.xml) and two subdirectories for holding Java class files and Java jar files. The WSA Web application does not contain any class files, but does include several jar files. These form a single Web application that can contain one or more WSA instances. A Java container can contain multiple WSA Web applications, and each Web application can contains multiple WSA instances.
Configuring a WSA Web application involves editing its web.xml file, an XML-based file that must conform to the Java container version's document type definition (DTD) published by Sun Microsystems, Inc. You might have to manually edit web.xml to set WSA instance security or to add a WSA instance to the WSA Web application. For a full description of the web.xml file, see Sun's Java container specifications.