6.2 Installation

Installing Struts with your servlet container

Bluestone Universal Business Server 7.2

  • You need UBS version 7.2 to run war file applications. The UBS 7.2.2 evaluation is located here . If you're using version 7.2.1, you need to download the WAR file patch, located in the product enhancement section of Bluestone's website here
  • After installation of the correct version and/or patch of UBS 7.2, you need to modify your apserver.txt file to point to the correct directory for your war file applications. Look for the section that says something similar to the following:
                                [SaServletEngine.class]
                                session_affinity=1
                                type=1
                                program=/SaServletEngine.class
                                file_path=f:\webapps
                                host=localhost:20000
                            
  • Use the directory specified by the "file_path" variable, or modify it to point to your own custom webapp directory. Copy the "struts-documention.war" and "struts-example.war" files into that webapp directory, and start the UBS (read documentation distributed with UBS for information on how to start it if necessary). Your webapps are now accessible from the following URL: http://localhost/<PLUGIN>/SaServletEngine.class/struts-example/
    http://localhost/<PLUGIN>/SaServletEngine.class/struts-documentation/
  • Note: "<PLUGIN>" represents the plugin you are using for your specific webserver. For Apache on Windows, it might be "cgi-bin/SaCGI.exe", for IIS on Windows, it might be "scripts/SaCGI.exe" or "scripts/ISAPI.dll". Consult the UBS documentation for more information.

Back to Installation