Consultor Eletrônico



Kbase P11427: How to setup WebLogic 7.0 with AIA ?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   07/07/2004
Status: Unverified

GOAL:

How to setup WebLogic 7.0 with AIA

FACT(s) (Environment):

Progress 9.1x

SYMPTOM(s):

WebLogic 7.0

FIX:

This soulution will show all the steps needed to configure WebLogic 7.0 to work with the Progress AIA.

Make sure you have a directory where the application will reside under <rootdir>/weblogic700/server/bin/applications/<user_app_dir>

Within your new application directory, create a directory named WEB-INF (please note this is all upper case).

Within the new WEB-INF directory, you will create a file named web.xml.
Thus, the full pathname for this file will be:
<rootdir>/weblogic700/server/bin/applications/<user_app_dir>/WEB-INF/web.xml

The web.xml file will contain the following (NOTE: the contents of this file are case sensitive, so enter it exactly as shown)

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>
Aia
</servlet-name>
<servlet-class>
com.progress.aia.Aia
</servlet-class>
<init-param>
<param-name>InstallDir</param-name>
<param-value>/dlc91x</param-value>
</init-param>
<init-param>
<param-name>instanceName</param-name>
<param-value>Aia1</param-value>
</init-param>
<init-param>
<param-name>propertyFileName</param-name>
<param-value>/dlc91x/properties/ubroker.properties
</param-value>
</init-param>
</servlet>

<servlet-mapping>
<servlet-name>Aia</servlet-name>
<url-pattern>/Aia</url-pattern>
</servlet-mapping>

<mime-mapping>
<extension>prowcapc</extension>
<mime-type>application/progress-wcappcab</mime-type>
</mime-mappi