Search code examples
openamopensso

Disabling OpenSSO default Web Services


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

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