How to configure Content server with Oracle Portal

I am working on oracle portal using JDeveloper 11.1.1.5.0. I need to configure Content server to work with UCM. Which content server version should i use and what basic steps required to configure it.
OS environment is Windows XP SP3.
Database server is Oracle 10gR2

Hi
"I need to configure Content server to work with UCM." - I am not clear on this .
UCM is content server .
Now if you are looking to have UCM contents rendered on Oracle Portal then you will need to use Content Portlet Suite .
Hope this helps .
Thanks
Srinath

Similar Messages

  • How to configure http server in oracle 10g

    Hi
    I am configuring apex 3.2.1 on oracle 10g 10.2.0 I need help how to configure http server bec i did not find any Apache file or folder in 10g if it is then how .
    Arshad

    Hi
    I use to configure only this in $ORACLE_HOME/forms/server/forms.conf (and restart ias):
    AddType application/x-orarrp rrp_
    AddType application/x-orarrp-text rrpt
    AddType application/x-orarrp-ps rrpp
    AddType application/x-orarrp-pdf rrpa
    AddType application/x-orarrp-rtf rrpr
    AddType application/x-orarrp-html rrph

  • Configure content server with  DMS

    i have a content server setup by BASIS team , i need to use this server as a storage category for DMS to store Documents on it .
    what is the required configurations to integrate the content server with DMS . 

    Dear Reda,
    for this information please see the online documentation at
    Knowledge Provider (BC-SRV-KPR) - SAP Library
    SAP Library - SAP Content Server
    I hope that this could answer your questions and help your basis team.
    Regards,
    Christoph

  • How to configure UDDI Server with in EDK with a 4.5WS?

    I'm trying to develop a crawler service using EDK5.0.1 with a 4.5ws portal.
    To do this job, I have to deploy and coufigure a UDDI Server which is a requirement for services in 4.5ws.
    After develping and deploying a crawler service, I created gadget server in the 4.5ws portal, and tried to add remote data source, but the popup window for datasource seems not to be able to find the crawler service and showed 'Empty Gadget Server'.
    I think I set up the uddi server with a wrong way, but I don't know what I have to do more to set a uddi server.
    Actually, after developing crawler service and sci service, I deployed these with DeployServlet which is a deploy toolkit offered by EDK.
    With this deploying result, I modified the uddi.xml file and put that file into c:\program files\Plumtree\ptedk\5.0\devkit\config\java\uddi folder.
    Is there any things to set for uddi server?
    Can anybody provide me any advise on this?
    Any help would be appricated.

    The UDDI is used with web services in 4.5x. This is best described as a phone book of URLS for any web services installed in that machine. Those URLS will then point to the individual web services.
    In 5.0 the UDDI server is not needed since it is replaced with the "Remote Server" and "Web Services" tabs. HOw to setup a UDDI with TOMCAT
    UDDI can be setup to run with TOMCAT and I believe this is the only one provided in the EDK installer in the ptedk\5.0\devkit\java directory
    Here's a little TOMCAT information. Web applications are deployed in a folder called "webapp". This case, we have a uddi server installed and it's in a folder called "uddi". So, our file structure for the UDDI server looks like: /webapp - tomcats web application folder /uddi - the uddi application /WEB-INF - standard WEB-INF directory stores java classes, jars and any descriptor files. server-config.wsdd - this is the web service descriptor file for this uddi server - provided by plumtree web.xml - this is the web.xml descriptor file for how the web services in this application will be loaded and run - provided by plumtree /lib - contains the jar files for the uddi server - provided by plumtree The server-config.wsdd file should be the only item that the user needs to modify. Within the file (XML based), there should be the following tag: <!--service for uddi server--> <service name="MessageService" provider="java:MSG" style="message"> <parameter name="allowedMethods" value="find_tModel find_business find_binding"/> <parameter name="className" value="com.plumtree.remote.uddi.UDDIServer"/> <!-- enter the base url for your services. The individual urls will be appended to this url--> <parameter name="baseUrl" value="http://rickc-loaner:81/ntcws/"/> <!-- Enter true if this is dotnet, leave at false if the service is java--> <parameter name="isDotNet" value="true"/> <!-- enter only the urls and names required for your service. For a java crawl, this would be crawler name, documentProviderRpc, containerProviderRpc, sciDataSourceRpc, sciCrawlRpc, and sciCardRpc if using remote card submission--> <!-- Enter the crawler name. This is the name that will show when expanding the remote server--> <parameter name="crawlerName" value="NT File CWS"/> <!-- Enter the auth name. This is the name that will show when expanding the remote server--> <parameter name="authName" value=""/> <!-- Enter the relative url to the rpc (Java) document provider soap endpoint --> <parameter name="documentProviderRpc" value="DocumentProviderSoapPort"/> <!-- Enter the relative url to the rpc (Java) container provider soap endpoint --> <parameter name="containerProviderRpc" value="ContainerProviderSoapPort"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the rpc (Java) sci data source soap endpoint --> <parameter name="sciDataSourceRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci crawl soap endpoint --> <parameter name="sciCrawlRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci card soap endpoint --> <parameter name="sciCardRpc" value=""/> <!-- note that relative auth only works in rpc for 4.5--> <!-- Enter the url to the auth provider soap endpoint --> <parameter name="authProvider" value=""/> <!-- Enter the relative url to the sync provider soap endpoint --> <parameter name="syncProvider" value=""/> <!-- Enter the relative url to the auth sci (rap) soap endpoint --> <parameter name="authSci" value=""/> <!-- Enter the relative url to the doclit (.NET) document provider soap endpoint --> <parameter name="documentProviderDoclit" value="documentprovidersoapbinding.asmx"/> <!-- Enter the relative url to the doclit (.NET) container provider soap endpoint --> <parameter name="containerProviderDoclit" value="containerprovidersoapbinding.asmx"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the doclit (.NET) sci data source soap endpoint --> <parameter name="sciDataSourceDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci crawl soap endpoint --> <parameter name="sciCrawlDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci card soap endpoint --> <parameter name="sciCardDoclit" value="xuiservice.asmx"/> </service> This tag contains the information that will be specific to the user's deployment of the web service (CWS or AWS).First off: <parameter name="baseUrl" value="http://machinename:81/ntcws/"/>
    This is the location of the web server that has the target web service installed. THIS CANNOT BE "localhost". This has to be a resolvable machine name or IP address. In 5.0 this is the Remote Web Service settings. Second, you need to set the type of web service. <!-- Enter true if this is dotnet, leave at false if the service is java--> <parameter name="isDotNet" value="true"/> If your app server hosting the web service is dotnet, you need to set this to "true". This is equivalent to the Document encoding setting in 5.0. .NET supports Document/Literal incoding instead of RPC for Java. Third, name your web services. This is the name that will display in the drop down list in 4.5WS when you decide to create a remote data source. <!-- Enter the crawler name. This is the name that will show when expanding the remote server--> <parameter name="crawlerName" value="NT File CWS"/> <!-- Enter the auth name. This is the name that will show when expanding the remote server--> <parameter name="authName" value=""/> This is the web service name property when you create a new web service in 5.0. Next are the configuration settings for your particular web service: <!-- Enter the relative url to the rpc (Java) document provider soap endpoint --> <parameter name="documentProviderRpc" value="DocumentProviderSoapPort"/> <!-- Enter the relative url to the rpc (Java) container provider soap endpoint --> <parameter name="containerProviderRpc" value="ContainerProviderSoapPort"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the rpc (Java) sci data source soap endpoint --> <parameter name="sciDataSourceRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci crawl soap endpoint --> <parameter name="sciCrawlRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci card soap endpoint --> <parameter name="sciCardRpc" value=""/> <!-- note that relative auth only works in rpc for 4.5--> <!-- Enter the url to the auth provider soap endpoint --> <parameter name="authProvider" value=""/> <!-- Enter the relative url to the sync provider soap endpoint --> <parameter name="syncProvider" value=""/> <!-- Enter the relative url to the auth sci (rap) soap endpoint --> <parameter name="authSci" value=""/> <!-- Enter the relative url to the doclit (.NET) document provider soap endpoint --> <parameter name="documentProviderDoclit" value="documentprovidersoapbinding.asmx"/> <!-- Enter the relative url to the doclit (.NET) container provider soap endpoint --> <parameter name="containerProviderDoclit" value="containerprovidersoapbinding.asmx"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the doclit (.NET) sci data source soap endpoint --> <parameter name="sciDataSourceDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci crawl soap endpoint --> <parameter name="sciCrawlDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci card soap endpoint --> <parameter name="sciCardDoclit" value="xuiservice.asmx"/> These are equivalent to setting the Document provider URL, Container Provider URL, Remote UI URL etc etc that are in 5.0 web services settings. Once you have installed the UDDI server, and started TOMCAT, you should be able to hit the services list at:http://machinewithuddi:8080/uddi/services This will become your Remote Gadget Server URL and you should be good to go!!

  • How to configure PHP Server with Flex

    Hello everyone,
    I am trying to create new flex application with PHP as server option.
    but on the Configure PHP server window it gives error as
    " You must enter a valid root URL."
    I am usingh xampp as php server, and i have changed the port no of apache to 90.
    so my web root is //localhost:90
    \xampp\htdocs\phpProject-debug
    Can anyone help me to configure the PHP server with Flash builder 4
    I am not using Zend server...

    Hello Rupesh,
    You need to specify full url like this "http://localhost:90/" and need to start server before validating.
    This check may be missed by you.
    Thanks,
    Vikram

  • How to configure file server with portal using KM

    Hi
    i have some word documents,excel documents in my computer.i want to integrate these documents into portal using KM.how to do that?can anybody suggest the steps involved or tutorial to do this configuration.thanks for your help in advance
    Prasad

    Hi,
      It´s very simple to do that.
    1.You must create repository. (I gave you this information).
    2.Create portal users. (in portal or read from ldap)
    3.Create KM navigation iview to point folders in your repository.
    4.Create roles.
    5.Assing roles to users.
      For you that is new in this tools, perhaps needs 3 or 4 days.
    Patricio.

  • Peoplesoft Enterprise Integration with Oracle Portal 10g

    I am looking for documentation which explains the steps in detail on how to integrate peoplesoft Enterprise with Oracle portal. I found this http://www.oracle.com/technology/products/ias/portal/pdf/oow06_S281760_apps_integration.pdf. But, I am looking for some documentation which explains the process in detail.
    Could somebody please suggest pointers to the documentation.
    Regards,
    Lavanya

    Any responses to this?
    I am also looking for a more detailed "Guide" of sorts for the integration.
    Must say that the presentation is pretty good though.

  • How  to integrate File Server with Portal??

    Hi all,
    can any one tell me that how interegate the File Server With Portal Server??
    In my portal server under home tab i have sub tab (second level navigation) of File server.Whe i click this tab it throws an syntax error
    ie
    System Error
    An exception occurred during the program execution. Below you will find technical information pertaining to this exception that you might want to forward to your system administrator.
    Exception Class  :: class com.sapportals.wcm.repository.NotSupportedException
    Exception Message  :: Not Implemented
    thease are the steps that i have taken
    >created HTTP System..
    >created WebDAV Repository.
    >Created Cache.
    >Created KM WebDAV System.
    >Created Iview and in iview i have to specify the <b>Path to Initially Displayed Folder</b>
    i have specified the folder of file server that i want to display..
    but i get the same syntax error ..
    infact i dint get that folder in KM.
    But when i specify the folder that is present in KM its Work fine..
    Now the Scnerio According to me is that File server is not integrated properly
    if it would be integrated properly i would be able to see the folder of File server in  KM...
    am i correct ??
    please Guide me to integrated the File Server Properly??
    Points will be given for any help..
    Regards
    Vinit

    Hi Vinit,
    if you want some Windows File Server integrated into Portal, please do not use a WebDAV Repository, but use the File System Repository instead. Therefore you need to configure the according Repository Manager. Please refer to this documentation:
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm">Integrating Documents from a Windows System into KM</a>
    HTH,
    Carsten

  • How can I send files by FTP with Oracle Portal?

    I want to send some file by FTP.
    How can I send files by FTP with Oracle Portal?
    Any ideas?

    Enrique,
    Are you trying to transfer more content from remote locations to expose as items within a portal page? By itself, the Oracle Portal runs within the context of the database so I'm not sure how FTP at the OS level will help. However, if you're attempting to transfer files from a remote PC to upload within the Portal, here are a couple of suggestions.
    Option 1:
    A. Create a portal page.
    B. Convert a region to Items.
    C. When you're challenged to upload a file from the local OS, ensure you've a drive mapped to your remote location and pick the file to upload into the Oracle9iAS Portal.
    Option 2:
    Alternatively, the Oracle9iAS Portal 9.0.2 supports the WebDAV protocol(Web-based Distributed Authoring and Versioning Protocol) allowing endusers with a WebDAV client to upload content into the Portal seamlessly from their desktop.
    Pls. check out:
    http://portalcenter.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/PUBLISH_CONTMGMT/TECHNOTE_WEBDAV.HTML
    Hope that helps!
    Thanks,
    Sudi Narasimhan
    Oracle9iASPortal Partner Management/Development
    I want to send some file by FTP.
    How can I send files by FTP with Oracle Portal?
    Any ideas?

  • How to integrate P2G with Oracle portal

    Has any one out there successfully integrated P2G with Oracle portal? If so, could you be kind enough to tell me how you did it. I need to do the same thing.
    Thanks.

    Hi
    You shuld take a look to the metalink note Note:233436.1 "Installing Oracle Application Server 10g with Oracle E-Business Suite Release 11i", there you will get info how to SSO them..
    If yuo want to integrate (no SSO) you can use some other solutions like webclipping, iframe, etc...

  • Integrating Microsoft Filenet content Management system with oracle portal

    1. Client is having Microsoft Filenet system as content management.
    2. Client wants to integrate Filenet system with oracle portal.
    3. Please confirm whether it is feasible or not and kindly suggest us the
    document for integration process.

    I think clue is on the this line;
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    make sure LDAP connection is working. Make sure use default ports for all connections. Most of the samples on the OTN uses default port, if you change them you, you have to modify sample code.

  • How to Configure Exchange server in EP6.0

    Hi
    How to configure mailing server in Portal
    With Regards
    Azhar

    Hi Azhar
    You can specify your mail server on the Portal.
    Go to System Administration -> System Configuration -> UM Configuration.
    You will find a field there to specify your mail Server.
    You may also have to specify this in the config tool of your WAS Server to enable email notification
    Take a look at <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/07/9bda3d5ed05610e10000000a114084/frameset.htm">this</a> .
    Hope that helps.
    Best Regards
    Priya

  • Register the Oracle 9iFS Portlet with Oracle Portal

    I did register the Oracle 9iFS Portlet with Oracle Portal.
    But when I am adding the portlet to a portal page I get the error:
    "500 Internal Server Error"
    When I am trying to access the page by url:
    http://<myserver>:7777/ifs/portlet
    I get the error:
    "You are not authorized to view this page"

    not a problem with BEA , just means your database has been configured to close your session after a period of inactivity(which is normal).
    Check you connection pool testing settings and tune accordingly.

  • Does Oracle XML Publisher version 5.6.2 integrate with Oracle Portal?

    We want to know if XMLP is just an external application to Oracle Portal or if
    it integrates with Oracle Portal.

    Shaun,
    How did get World Sales report work? What did you put on URL? I put:
    http://Sever name:15101/xmlpserver/Sales Manager/World Sales/WorldSales.xml
    It always showed error message to me.
    Please help, Thanks.
    - Jessie

  • OLM on content server with ias (10.1.3) java.lang.OutOfMemoryError

    Dears,
    we have set up OLM on content server with ias (10.1.3)
    I'm Facing the following error when uploading 100 M learning material although i have changed the server properties of OC4J java heap size to 1024 - 2048 and maxpermsize to 1024
    JSP Error:
    Request URI:/OA_HTML/OA.jsp
    Exception:
    java.lang.OutOfMemoryError
    Thanks,
    Regards.

    PLease refer Husain comments below
    "Please see these docs.
    OLM Content Import Erroring with java.lang.outofmemoryerror for Large Files [ID 368479.1]
    When Importing And/Or Uploading Large Upk-Type Files Fail to Unzip [ID 735653.1]
    Out Of Memory Errors While Uploading Large Content [ID 1130960.1]
    Utilizing Content Servers with Oracle Learning Management [ID 374677.1]
    Thanks,
    Hussein"
    apart from the above what I would normally is, while zipping the file I would exclude heavy content file and upload the file.
    after uploading file, just go and paste excluded file in respective folder.
    sathish

Maybe you are looking for