Consultor Eletrônico



Kbase P19723: Failed to Deploy WebService application in Progress Explorer: WSA request error: REQUEST FAILURE
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   4/9/2010
Status: Verified

SYMPTOM(s):

Cannot deploy a new Web Service

Cannot list the Web Services

Failed to deploy web service for: wsa1.

WSA request error: REQUEST FAILURE

Failed to get run-time properties for WSA: wsa1.

Web Server authentication Failed. Please re-enter Web Server login information and re-do your last action.

Didn't check the option to disable the Administration Security on install

Has disabled the Administration Security through Progress Explorer

FACT(s) (Environment):

OpenEdge 10.x
All Supported Operating Systems

CAUSE:

The security constraints for administration are enabled by default.

FIX:

1. Disable security constraints by commenting the tag in the WEB-INF\web.xml file where the WSA has been deployed in the Java Servlet Engine (JSE).

<!--
<security-constraint>
<web-resource-collection>
<web-resource-name>wsa1 Admin</web-resource-name>
<url-pattern>/wsa1/admin/*</url-pattern>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>PSCAdmin</role-name>
<role-name>PSCOper</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
-->
2. Check that the following entries are disabled in the ubroker.properties file:
adminAuth=0
webServerAuth=0
3. Restart the JSE in order for the changes to take effect.