Webcenter Content and OSB

Hi,
Can anyone let me know how we can integrate the Webcenter content with OSB. We want to create users but through OSB. Do Webcenter provide any Web service?
Thanks in advance.

a) WebCenter Content has its standard services - see http://docs.oracle.com/cd/E23943_01/doc.1111/e11011/toc.htm
b) the most common services are exposed in WSDL as Web Services - see http://docs.oracle.com/cd/E23943_01/doc.1111/e10807/c25_wsdl_and_soap.htm#BEHDIABD
c) for the remainder (even for your own custom services) you may use WSDL Generator to expose them
d) since the version 11g, WCC does not hold its own identity pool, but rather takes it from one used by the Weblogic domain (usually, an external LDAP), so if you are interested in creation of users you might want to integrate with this LDAP, rather than with WCC

Similar Messages

  • OCR with WebCenter Content and Imaging

    Hi,
    I'm searching for some information about OCR with webcenter content and imaging.
    I've seen that there are two solutions :
    - WebCenter Capture
    - Webcenter Forms Recognition
    But I can't find if any of that product use lexical post-correction of OCR results. Is anyone have this information?
    Thanks,
    David

    David:
    Both products will use print (vs handwritten) character recognition to identify "tokens" from the image of a document with text. Capture usage focuses mainly on zonal recognition of information - what I would call structured forms processing. Forms Recognition is for information capture from semi-structured documents - say invoices, where you know that many fields are present, but their location differs from example to example. It can use patterns, text locators, etc to find the field. Both benenfit when there exists a reference DB of acceptable values, but that is not a requirement.
    Lexical correction (as I understand it to mean) is not a feature of either. They are not going to try to validate extracted tokens based upon language analysis. I would try to use them to extract all of the tokens and then add some tool to do lexical analysis. You could do that as a separate, post OCR process, or try to see if you can fit it into an FR post-extraction EP.
    Might I ask what the business problem you are trying to solve is?
    Bernard

  • Webcenter Content and WCI 10gR4

    I'm trying to find information on how to integrate Webcenter Content(UCM) and Webcenter Interaction 10gR4. Any help would be GREATLY appreciated!
    Thanks,
    Steve

    This is actually not so much a WCC question like a Weblogic one. Therefore, it might be better in a forum dedicated to such kind of questions - I believe this one is the correct WebLogic Server - Security
    However, maybe this post http://oraclemiddlewareblog.com/2011/09/05/26/ will help you.
    Also, not being an expect in that area, I'd believe that using WNA kind of expects that all users are in the AD domain. Note that you still need to register external users' identities somewhere (most likely not in AD - perhaps, in another LDAP, then?) I don't know if WNA makes any sense in this setup. Either way, what might be necessary as the first step is to "unite" identities from AD and the other LDAP. Either Weblogic Server, or a product like Oracle Virtual Directory might be able to do that; for SSO, however, there still might be other things needed.

  • WebCenter Content and BPM

    Hi,
    I have installed UCM and SOA BPM. Now I need to integrate this products.
    Can somebody advice me how to do this?
    Thanks!

    Where can I create, deploy and activate BPEL process? This is more a BPEL (SOA) question than a UCM one. Are you sure that you have everything OK on the BPEL side?
    In a nutshell, BPEL processes are best created in JDeveloper (it is a bunch of XMLs, so you could use other means to get them, but JDev will give you much better support, incl. deployment). A process is deployed on BPEL Process Manager (or BPM Engine); a J2EE app running on Weblogic.
    UCM just reads what processes are available on BPEL PM. I'm just studying the matter in a bit deeper way, so it seems that a process must have a certain properties set to be recognized (see here: Re: UCM 11G and SOA 11G ). And, of course, the connection between UCM and BPEL PM (or SOA server) must be set first - I'm currently struggling with this one as ports to be read seemed to be filtered off, and I'm unable to connect to the server. That's why I'd recommend to narrow down the problem first.

  • Databind method call returns null in WebCenter Content Filter

    Hi,
    I have inherited some code that has an issue and I'm new to WebCenter Content and the Filters that can be added. We have a FileNameFilter class that starts off with the code
    public class CWEFileNameFilter implements FilterImplementor {
        public CWEFileNameFilter() {
            super();
        public int doFilter(Workspace workspace, DataBinder dataBinder,
                            ExecutionContext executionContext) throws DataException {
            String service = dataBinder.getLocal("IdcService");
    However, service sometimes comes back null and then the filter throws a NPE.
    My questions are:
    1) Can anyone explain what dataBinder.getLocal("IdcService"); is doing and why it could come back as null
    2) Can anyone provide any links to documentation that explains Filters and a bit more about the DataBinder object as the JavaDoc isn't much help.
    Thanks
    Marc

    Hi Marc,
    Below code will give service name for which filter is implemented  from LocalData
    String service = dataBinder.getLocal("IdcService");
    for example below
    http://localhost:16200/cs/idcplg?IdcService=DOC_INFO_BY_NAME&dDocName=1111111&IsJava
    This will print entire response data including localdata and results which are created as part of service execution. Below is snippet
    <?hda version="11.1.1.8.0PSU-2015-04-01 00:14:53Z-r126309" jcharset="UTF8" encoding="utf-8"?>
    @Properties LocalData
    DocUrl=https://localhost:16200/cs/weblayout/groups/secure/documents/test/mhdk/mjg1/1111111.pdf
    IdcService=DOC_INFO_BY_NAME
    so String service = dataBinder.getLocal("IdcService"); will be service ="DOC_INFO_BY_NAME".
    Below blog will give some idea about filter but best place to learn or start is "The Definitive Guide to Stellent Content Server Development" by Brian Huff
    http://www.redstonecontentsolutions.com/technical-blog/ucm-service-handlers-and-javafilters
    Also i would recommend reading "WebCenter Content Services Reference Guide"
    http://docs.oracle.com/cd/E23943_01/doc.1111/e11011/toc.htm
    Regards,
    Amol Gavali.

  • Get value based on column names for custom metadata field of Webcenter Content

    In UCM, I created a custom metadata field of type Text.  I then enabled optlist in that field.  I populate values to the optList, I am using a View.  The View has three columns.  Let us call them ID, Key, Value.  OptList displays the Keys in its list.  I then create a Content (Content ID: MyContent) in Webcenter Content and choose values from OptList for my new metadata field (MyField).
    From Webcenter Portal, I am populating a selectOneChoice with values of MyField in the Content ID: MyContent.  Remember from previous step, the values populated in selectOneChoice is the list of values selected from optList field MyField.  This optList is in-turn populated from View.  After the user selects a value in selectOneChoice, in Javascript, I need to alert a message in this format "value chosen - corresponding value from View of optList that populates MyField"
    I think an example will be useful:
    Here is a View that I created in Configuration Manager applet in Admin Applets of Webcenter Content:
    ID | State | Capital
    1 | North Carolina | Raleigh
    2 | California | Sacramento
    3 | Illinois | Chicago
    Then, I create a Custom Field (Name: MyField).  MyField is an optList the values are populated from View created above.  The internal value and display value are both State.  Then I Check-In a new content with Content Id: MyContent.  For MyContent, I select these values from OptList for MyField: {North Carolina, Illinois}.
    In my Webcenter Portal application, I create a Content Presenter Taskflow.  I configure it as a single item content presenter.  I assign MyContent as Content Id.  Then, in templateView, I get all values of MyField in MyContent and display them as selectOneChoice.  I created a javascript function that would get the value that user selected in selectOneChoice.  In the View created in Webcenter Content's Configuration Manager (above), there is a value corresponding to each value displayed.  So, for the selected value, I need to get the corresponding Capital and display it in my alert message.
    From Javascript, how can I get the value of Capital, given I have the value of State.

    Hi.
    The idea to achieve your requirement is next:
    Create a helper manage bean that will be call as Map access: #{stateUtil['Calofironia']} (it will return Raleigh). This value will be get calling GET_SCHEMA_VIEW_VALUES IDC service using RIDC in your manage bean.
    Pass the result of #{stateUtil['statename']} to your JavaScript function using <af:clientAttribute.../>
    I hope this information help you.
    Regards,

  • Webcenter -Content can be socialized ???

    Hello,
    We are work on POC and here I need your suggestions and help.
    We have an application using Site Studio and Webcenter Content. Our application shows different electronic products in each secondary page. Its working fine.
    Now we want our user to communicate. They should be allowed to express their experience and feedback. I looked into OSN - Conversation feature. I liked it!!
    what is our requirement and plan::
    1. We can have one small portlet where we can show latest conversation.
    2. If user want to express they can log in and add their comments.
    In different words, if you have used/ seen the Facebook application, currently we see one portlet on right top, which shows all the updates of your friends. Similar things but in my case we will show all the conversation related to the product. So if I am looking at Iphone product, we get all conversation only related to the Iphone. Once I switch to different page lets suppose Samsung 4S product page then we should see only conversation related to Samsung 4S product.
    Suggestion need??
    1. So do we have any connection with webcenter content and 'Oracle Social network' in terms of implementation.
    2. How can I selectively bring the conversation feature in my application?
    3. Do we have OSN downloadable tool available for POC?
    4. Please lets us know any development document available?
    Please let me know if you need more information.
    Thanks,
    MAK

    Hi Srinivas ,
    Yes , ECM can be integrated with Oracle EBS (enterprise business suite) and other Oracle Apps as well like Peoplesoft , Siebel etc .
    Details can be read from the following link : http://docs.oracle.com/cd/E23943_01/doc.1111/e17953/toc.htm
    Thanks
    Srinath

  • Acces from iPhone to WebCenter Content's Documents

    Hello.
    We have Webcenter Content and Webcenter Portal. We are using iPhone application "Webcenter" for acces to Webcenter Portal. Webcenter Portal is connected to Webcenter Content Server and we can get access to WCC's documents throw web-browser.
    But our main idea is getting access and search from iPhone for documents which was checked-in from Webcenter Content. Is it real to realise that idea? Could you advice me how to realise it?
    Thak you.

    If you haven't shelled out for a third party app yet see Recover your iTunes library from your iPod or iOS device. There is a no cost way of retrieving the media. It may require more effort on your part to extract the media and any metadata that you want but it might even do a better job. Last three entries in the table in particular.
    tt2

  • Licenses for WebCenter Suit and WebLogic

    Good day! I need help. I understand that, in addition to the license for WebCenter Suit, I need to also purchase a license for WebLogic. Is that if I need 4 licenses for WebCenter, it is necessary and 4 licenses WebLogic?
    Thank you in advance for your reply!

    This answer is actually not so easy - it depends what license do you actually refer to.
    The current Oracle price list contains two SKUs that could apply:
    - WebCenter Portal (WCP), formerly (about a year ago) called WebCenter Suite,
    - and WebCenter Suite Plus (WCSP), which consists of WCP, WebCenter Content, and WebCenter Sites
    WCP requires a license of Weblogic (to be precise: Weblogic Server Enterprise Edition) as a mandatory pre-requisite. And yes, the number of WLS corresponds to the number of WCP.
    WCSP, on the other hand, is not that clear - the document Oracle Technology Global Price List Supplement does not mention WLS as a pre-requisite, but neither it mentions that WLS is included in the license in the restricted mode. In fact, two of suite products, namely, WCC and WCS won't need the WLS license (for WCC it is included in the restricted mode, and WCS might not need it at all).
    Therefore, if you have WCSP rather than WCP I'd suggest to cross-check you needs with your local Oracle sales rep.

  • Webcenter Portal and UCM - Content Presenter Error

    Hello,
    I get an error while I'm adding a Content Presenter over the default resource catalog of my webcenter portal application and try to create content.
    When pressing the create content button a new browserpage opens and after beeing logged in to the Content Server the cs/resources/wcm/custom/sitestudio/contentwizard/webcenter/contentwizard.hcsp is called and this error message appears as an alert:
    "*this placeholder is restricted, but no region definitions have been specified*"
    Thanks for any advice!

    Looks like the configuration of UCM (SSXA) is not completed in your system. Take a look at this manual http://docs.oracle.com/cd/E23943_01/doc.1111/e13650/toc.htm to understand the relationship between region definitions and placeholders. Note that Content Presenter is just a client here (it's a matter of WebCenter Content configuration).

  • Looking for a clone solution for Oracle WebCenter Content, Imaging and related products

    Hi,
    We are looking for a manual or automated cloning solution for Oracle WebCenter Content (UCM), Imaging (ICM) and related products. Oracle FMW has T2P cloning option, but we are looking for more specific to just this product to clone and configure (if needed). Any help is appreciated.
    Best Regards

    Hi
    Assuming you have set up Purchasing with accrual method on receipt (and not on period end), you could enter the PO lines with receipt required. The receipt transactions you are uploading will generate the accounting to charge the expense accounts / or inventory valuation account.
    There is no need to interface those also to Payables. In AP enter one invoice with the real monthly amount and match it to the purchase order level or to the receipts level. Approve and pay that invoice.
    Dina

  • Inbound Refinery and WebCenter Content link not convert doc into PDF

    hi
    I like to have possibility to convert uploaded document over web center space to PDF
    in order to have that I installed UCM and IBR and linked them
    when I upload doc in web space I see that document is shown in WC Content and it have been sent it to IBR but when I go to IBR Conversion history I get the following
    Step PDFExport forced conversion failure by conversion engine because of error: Unable to start process 'CmdLineConversion_1_exsimple'. for every document file and for every image file I get
    Step CreateNativeThumbnailWithImageExport forced conversion to be incomplete with error: Unable to start process 'CmdLineConversion_205_exsimple'.
    HELP ?!?
    Laslo

    You may want to post this question in the WebCenter Content forum instead of WebCenter - Interaction, which is a completely different product.

  • SOON: Advisor Webcast - WebCenter Content: Database Searching and Indexing

    Learn how to improve search performance by attending the 1 hour Advisor Webcast: WebCenter Content: Database Searching and Indexing on March 15, 2012 at 16:00 UK / 167:00 CET / 08:00 am Pacific / 9:00 am Mountain / 11:00 am Eastern. For details, go here https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=1399682.1.
    TOPICS WILL INCLUDE:
    * Optimize the database index for faster searching
    * Locate WebCenter Content problematic queries
    * Use SQL Developer to find explain plans and profile SQL statements
    * Configure WebCenter Content to tweak search settings
    Edited by: user754652 on Jan 30, 2012 7:44 AM
    Edited by: user754652 on Mar 7, 2012 7:09 AM

    Hi All,
    Not sure if this is the right forum however I am not able to find the installation for Release 11gR1: 11.1.1.7.0 at http://www.oracle.com/technetwork/middleware/webcenter/content/downloads/index.html
    Any pointers where can I download from?
    Thanks

  • Import and Upload option not being shown in the WebCenter Content: Imaging

    Hi,
    I finished installing the weblogic, soa, ucm and ipm servers in my local machine. When I try to run the webcenter content:imaging, I am not able to view the upload and import options under the tools menu on the left navigation bar. Any help in fixing this is appreciated.
    Thanks and Regards,
    Nid............................

    Hi i dont have primary checked heres what ive done
    Hi thank youve tried editing all the basic and extended metadata options and so far i have managed to get the key words to show up on one photo at a time with a colour label.
    To do this i have to go to the metadata tab on the left add a custom field to the general tab called it keywords to keep things simple lol.
    This is the only way of getting my keyword to appear below the photo
    However when i try and tag all the photos in the project with the same keyword and label it only tags the last one in the project ive held down cmd /option /ctrl nothing / some of these just tag one random picture with the metadata
    i thank you guys in advance for your help
    Craig

  • Issue  in Configuring Oracle WebCenter Content: Records

    HI,
    I have an issue in Configuring Oracle WebCenter Content: Records
    In "Records Management Setup Checklist"
         Checked-in Audit Entries Default Metadata    
         Checked-in Screening Reports Default Metadata    
         Checked-in Reservation Default Metadata
    Am not able to select the category/folder in the default check-in form for the above, and i don't see anything in the drop down also
    When i click on the Browse button of above 3..
    see Retention Schedule & favorite Schedule
    But am not able to select any of those.
    AnyOne faced this issue, pls help..
    Thanks!!!!

    The Oracle webcenter content: Records system will enable the retention schedule but it won't create any default retention category. If you want apply retention to a content then first you have to create the retention category and the disposition rule. Once you create the retention category then it will be listed under Retention Schedule. In your case complete the default configuration without applying retention, once you create retention you can apply that to those contents.
    Browse Content --> Retention Schedules --> Create Retention Category
    HTH..
    Regards,
    Manoj

Maybe you are looking for