Kbase P108214: Deployed Web Service always contains the WSA URL of another WSA instance
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  29/08/2005 |
|
Status: Unverified
FACT(s) (Environment):
OpenEdge 10.0x
Web Services
SYMPTOM(s):
Deployed Web Service always contains the WSA URL of another WSA instance
Web Service's WSDL document contains the WSAL URL of another WSA instance
More than one WSA instances are defined in Progress Explorer / ubroker.properties
CAUSE:
The WSA servlet's web.xml file is pointing to the incorrect WSA instance.
FIX:
The servlet related to the WSA instance references the ubroker.properties file when starting. You need to change the "instanceName" listed in the WSA servlet's web.xml file to correspond to the one listed in the ubroker.properties file. For example for a WSA instance called "wsatest" ( [WSA.wsatest] section in the ubroker.properties), you would modify the web.xml as follows:
<init-param>
<param-name>instanceName</param-name>
<!-- Enter this WSA servlet instance's name that will be used to locate
its properties in the Progress ubroker.properties file -->
<param-value>wsatest</param-value>
</init-param>