You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

Unable to find SecurityPolicyFeature class or any jar for for it

edited Feb 19, 2020 10:26AM in HCM Integrations

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
  

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!