Você está na página 1de 5

Content Integration Suite- Itegrating with Webcenter Content

On May 26, 2013, in Oracle ADF, Oracle WebCenter, by gera.divya

CIS or Content Integration Suite is a set of APIs that help the users to access the content server services. Through these APIs, the user can actually fetch the UCM services like document check in, workflow, search, full text search etc in a custom application and deploy it in any J2EE compatible container.

The CIS API connects to the content server through the Universal Content and Process Management APIs which in turn communicate to it through the SCS APIs. So the UCPM API wraps the content services and data in a unified object model that is accessed by the SCS API through its classes.

To use CIS, you need to configure adapter in your application. The adapter settings are stored in adapterconfig.xml in your application. You need to specify the following tags in the adapterconfig.xml

Name: This specifies the name of the adapter to be used to connect. Adapter Type: This specifies the type of connection to be established. Like in case of RIDC, it is a socket connection. CIS provides the following options: Socket: A socket connection is established when you trust the connection source. It establishes a direct connection with the content server. The port used to establish a content server is 4444. It requires authentication only at the first call. Hence, it does not prompt you for user credentials at every call. Web: Connection over the web require authentication at every call made to the server. So you connect to the content server through the Sysadmin user which is supposed to be the super user for content server. Host: The IP address of the content server you are trying to connect to. Port: The port through which you connect to the content server.

At the content server end, to make it compatible for communication through CIS connection, we need to enable the CIS_Helper component in the content server. This component needs to be

explicitly installed before it is enabled. Moreover, we need to ensure that our application server IP address is included in the UCM security filter.

To allow the IP address, follow the steps below:

1. Go to Server Administration -> System Properties. 2. Then select Contact Server and the name of your content server instance. 3. Go to Utilities -> System Properties and Select Server. 4. Enter your IP address in the IP Address Filter. Example: 127.90.76.* | 10.42.65.* 5. Restart the content server to reflect the changes. To install and enable the CIS_HELPER component, once you download the component as the zip file, follow the steps below:

1. Go to Administration -> Admin Server. 2. Click on the server instance name. On the page that opens, click Component Manager in the menu on the left. 3. The Component Manager page opens. Click Browse next to the Install New Components Field. A file selection dialog opens. 4. Select CIS_Helper.zip file. Click Install. A page appears confirming the component to be installed. 5. Click Continue. Once the confirmation message appears confirming the successful installation, click Continue. 6. Now, check the box against this component to enable it. 7. Restart the server to reflect the changes. The CIS API The UCPM API uses the ICISApplication class to gain a reference to the IUCPMAPI Object. The class offers a getUCPMAPI() method to access the object. Since the UCPM API in turn uses the SCS APIs, we take reference to the SCS API using the getActiveAPI() method. The SCS API then acquires the content server services and exposes them to the end user.

SCSActiveAPI activeAPI = m_cisApplication.getUCPMAPI ().getActiveAPI (); As discussed earlier about creation of adapter in adapterconfig.xml. The sameis then called through code. We initialise CIS using the CISApplicationFactory inside the com.stellant.cis.impl package. This initialization happens only once since we typically connect through the socket. We first set the following properties as it is as shown below and then read the other details defined in the adapterconfig.xml as under:

ICISApplication application; URL xmlRes = new File (adapterconfig.xml).toURL() Properties properties = new Properties(); properties.setProperty(ICISApplication.PROPERTY_CONFIG_TYPE, server); properties.setProperty(ICISApplication.PROPERTY_CONFIG_SERVER_ADAPTER_CONFIG, xmlRes.toExternalForm()); properties.setProperty(ICISApplication.PROPERTY_CONFIG_SERVER_TYPE, standalone); application = CISApplicationFactory.initialize(properties);

After the CIS instance has been initialize, we call the SCSInitializeServlet to initialize the CISApplication from within our web, typically a J2EE, application. To call the SCSInitializeServlet, the following configuration is required in the deployment descriptor, web.xml:

<servlet id=scsInitialize> <servlet-name>scsInitialize</servlet-name> <display-name>SCS Initialize Servlet</display-name> <servlet-class>com.stellent.cis.web.servlets.SCSInitializeServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet>

Oracle WebCenter 11g Online and Classroom Training Oracle WebCenter Training at SMC will help you understand the concepts of Oracle WebCenter. Participants will understand how to use Oracle WebCenter to create content-rich, collaborative, customizable web based applications. Participants will be using Oracle JDeveloper to enrich an ADF Faces application with portlets, documents, discussion forums, tags, links, and search t. The trainers would be demonstrating numerous small examples which will help you understand the concepts of WebCenter. Training would focus and ensure that the participants get enough hands experience and are comfortable with Oracle WebCenter. Training Duration 2 Weeks Who Can Benefit ADF Developers Web Administrator Java/J2EE Developers Course Contents Introduction to Oracle WebCenter 11g,Oracle Jdeveloper and ADF,Oracle WebCenter Framework,WebCenter Portlets, Oracle Composer,WebCenter Services,Integrating Content,WebCenter Spaces,Installation and Configuration.

Courses offered at SMC We deal with Oracle Fusion Middleware comprising of Oracle ADF, SOA/BPEL, AIA, APEX, OAF, Web center 11g, service bus 11g, performance tuning training,oracle ODI,oracle workflow. Why should you prefer learning at SMC? First two classes are absolutely FREE! Facilitated with Experienced and Real Time expert trainers! Real Time Development Environment with Source Control and Remote Database

Two way interactive mode(Trained many aspirants from India, USA, U.K, China etc) Post training support via chat, email, forum available 24*7 online help is provided we attend to your every query Students have the option to record the session Online lab facility with 64GB RAM Server

For Online registration and other queries


Contact : Mr. Rajesh
India : +91.80 19490782 USA : +1.650.585.2312 Mail id:smconsultants.in@gmail.com Website : http://smconsultants.in/training-schedulecomplete-list

Trainers please contact us at : trainers@smconsultants.inHurry up ,seats gets filled.registration done on criteria of first come first serve basis

Você também pode gostar