Hi,
I'm trying to use the Oracle WebCenter Content Web services ( /idcws/GenericSoapPort?WSDL) with the oracle/wss_username_token_service_policy policy. I have been following this tutorial: https://blogs.oracle.com/fadevrel/entry/release_10_idcws_example.
It works fine if I execute the java in my computer. It works fine if I deploy the application in the weblogic server where OWC is installed. But, if I deploy the applications in another weblogic in another machine, I get this error:
javax.xml.ws.WebServiceException: No Handler for OWSM Security Policy found.
The error is raised when I call to the getGenericSoapPort method
SecurityPoliciesFeature securityFeatures =
new SecurityPoliciesFeature(new String[] { "oracle/wss_username_token_client_policy" });
genericSoapPortType = genericSoapService.getGenericSoapPort(securityFeatures);
What do I need to install in Weblogic for to use the owsm policies?
Thanks
Regards,