Kbase P20332: Cannot deploy a webservice. Get security errors - Web Server authentication Failed
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  3/2/2005 |
|
Status: Verified
FACT(s) (Environment):
Progress 9.1D
FACT(s) (Environment):
OpenEdge 10.0A
SYMPTOM(s):
Trying to deploy Web Service and gets error
Web Server authentication Failed. Please re-enter Web Server login
information and re-do your last action.
Web Services Toolkit
Didn't check the option to disable the Administration Security on install
Has Disabled the Administration Security through Progress Explorer
CAUSE:
The security has not been disabled within web.xml file
FIX:
Need to go into the web.xml file in the servlet directory and disable the administration security by commenting out the following section of the file:
<!--
<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>
-->