Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Unable to find SecurityPolicyFeature class or any jar for for it
Summary
HCM Data Loading using Java Example.This repository contains source code giving an example of how to load data into Oracle HCM using pure java.Content
import weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature;
I am getting error in above line as i am unable to find jar file for weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature. For reference, Code is given below in the code snippet. I am attaching the whole project in attachment for other file to understand.
Thank & Regards,
Code Snippet
package com.oracle.ateam.asset.hcmjavadataload.proxies; import com.oracle.ateam.proxy.hcmloader.HCMDataLoader; import com.oracle.ateam.proxy.hcmloader.HCMDataLoader_Service; import com.oracle.ateam.proxy.hcmloader.ServiceException; import java.io.IOException; import java.io.StringReader; import java.lang.Object; import java.net.MalformedURLException; import java.util.Map; import java.util.logging.Level; import java.util.logging.Logger; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import javax.xml.ws.BindingProvider; import javax.xml.ws.WebServiceFeature; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature; public class HCMDataLoaderUtil { private static final Logger LOGGER = Logger.getLogger(HCMDataLoaderUtil.class.getName()); HCMDataLoaderUtil() { LOGGER.setLevel(Level.ALL); } /** * This is using the WebServices via the generated classed with wsdl see: * http://help.eclipse.org/kepler/index.jsp?topic=%2Forg.eclipse.jst.ws.cxf.doc.user%2Ftasks%2Fcreate_client.html * * @param contentId * @return
0