Question

How can i disable OpenSSO Web Services which are provided by default?

Currently my application's OpenSSO can be accessed by the following URL's:

http://host_machine.domain:8080/opensso/identityservices/IdentityServices

http://host_machine.domain:8080/opensso/identityservices?WSDL
Was it helpful?

Solution

This can only be done by tweaking web.xml

Have you tried to remove the following servlet-mappings?

IdentityServices /identityservices/ IdentityServicesHandler /identity/

Sidenote: If you're using newer agents they might not work anymore.

-Bernhard

OTHER TIPS

Commented only this part in web.xml and it worked!!!

<servlet-mapping>
    <servlet-name>IdentityServices</servlet-name>
    <url-pattern>/identityservices/*</url-pattern>
  </servlet-mapping>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top