Content Management in weblogic portal8.1

HI,
Can someone help me understand/point to a document which explains where BEA keeps
the repository? I figure (purely a guess) that it stores the repository in a database
- but i didnt configure any database while installing Weblogioc8.1 or during any
of the steps. But i am able to see a repository (BEA Repository) thru my admin
portal. This means, that it is using some database by default. How do i know where
all the information is stored? How do i get more information about this? If it
keeps the sample repository in Pointbase, how do i configure so i can point it
to some other database (say like Sybase) ? Obviously, we cannot use Pointbase
in the production environment.
Thanks
Madhuri

Hi, Markus et al,
So even with the binary content in the db, you're having no
performance issues? That would be great news for us, but
I'll have to convince my system adminstrator that it is true.
So far, we have about 800 MB of content (exludes metadata),
and would persist it in MS SQL Server. It's not much so far:
I'd expect it to grow approx. 25% per year. Any concerns?
Thanks for the clarification.
kinman
"Markus Blumrich" <[email protected]> wrote:
Yup - because our 3rd party vendor is dragging their feet wrt 8.1 Portal
support, we too are live in production with the built-in repository.
cheers,
Markus
"alex toussaint" <[email protected]> wrote in message
news:403680de$[email protected]..
Hi,
The Portal Content Management system in WebLogic Portal 8.1 is notonly a
reference
implementation. We have customers that have deployed Portal CM andare
live in
projects where Enterprise CM capabilities are not required. We alsohave
several
customers that have used our Virtual Content Layer to integrate withDocumentum,
and other CM systems.
Regards,
--alex
"kinman" <[email protected]> wrote:
How about not-so-serious work? We have some lightweight requirements
for content
management, but one of them is not to store the actual file (image,
document,
whatever) in the repository database. Seems like the referenceimplementation
would be good enough if it were tweaked to provide for storing content
on a filesystem
and only metadata in the database. Has anyone written their ownrepository,
or
are you all buying Documentum, Interwoven etc.?
Thanks for any advice you can give.
"Andrew Clifford" clifforda.no.spam.comcast.net wrote:
I seems BEA has given you enough rope to hang yourself with the bundled
CMS system. It is great for protoyping and sells Portal but I fear
many
projects
get suckered into thinking it a production system or that it can
be
extended.
A real
CMS just like a real Security system should be integrated upfront
for
serious
work.

Similar Messages

  • Propagation of Content Management in Weblogic Portal

    Hi,
    Can anyone please provide me with the step-by-step procedure of propagating BEA Repository Content management data from one environment to another(Local to Dev or Dev to UAT) using Weblogic Workshop or using Ant.
    In the following URL http://edocs.bea.com/wlp/docs92/prodOps/propTool.html, some details has been provided. But I am not able to understand, what is Inventory File? How to create it if we have more than one project?
    I tried to findout the exact process in all the forums and also in BEA docs, but I didn't find any.
    Please suggest me on this.
    Thanks in advance.
    cheers

    hi,
    scoping comes into picture just before the merge of source and destination inventories.
    But in my case, when I try to download an inventory, the error i mentioned is being thrown. I went through the logs, it says "java.net.SocketException: socket write error: Connection aborted by peer".
    as far as I know following is the procedure that needs to be followed to propagate content from source to destination.
    1) Create inventory for both source and destination.
    2) set the scope
    3) merge the inventory files
    4) upload the merged inventory to server
    as per first step, we need to download the inventories for for their creation. I am getting error in this phase itself and not able to proceed further.
    I don't know whether I am following the right procedure or not.
    That's why I wanted to know the step-by-step process of content propagation from source to destination.
    Please advice me.
    thanks

  • Need maximum information about Content Management in Weblogic Portal 10.3

    Hi,
    I have worked with Weblogic Portal before, but it's been some time, I do not remember much and I quickly need to find some info.
    We are making a proposal to a customer and have suggested Weblogic Portal.
    I would like to give as much information about the technicalities of the CMS in Weblogic Portal as possible.
    Could you please answer these questions ?
    I am looking for information on the CMS that is integrated in Weblogic Portal 10.3
    I have already checked the available information on the site :
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/cm/introCM.html#wp1067976
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/portlets/development.html
    I would like to find more information, especially regarding these questions :
    What are the portlets that are available by default in Weblogic Portal 10.3 ? I read about the Content Presenter portlets, which display real-time data.
    Are there other portlets like these ?
    How can i manage the documentation in the CMS ? I have several source of data (databases, Lotus repositories ...) : can i load them into the WLP Virtual Content Repository ?
    What about images ? Do i need to work on a special format to handle them in my portlets ?
    Is it possible to load data coming from XML files into the repository so i can display them on the portal ?
    Thanks a lot for helping.

    BulkLoader is described in the docs here:
    http://e-docs.bea.com/wlp/docs102/cm/bulkloader.html
    As far as portlets go, WLP provides lots of facilities for creating your own portlets, to do exactly what you want them to do. It really depends upon what you want to do.
    If you're looking to display images, also take a look at the personalization features like Content Selectors and Placeholders, which can retrieve an image from the CM system.
    If you're looking to iterate over a set of content, take a look at display templates as a means to control the presentation.
    You may be able to use re-portlets from the WLP Admin tools, though I'm not familiar with the details.

  • Weblogic 10.3 content management requirement.

    Hi,
    I have a requirement to pull the pdf from the weblogic content management without weblogic portal configuration. Is it is possible to achive this.If possible please suggest me how to do.
    thanks in advance....
    Uday Sariki.

    In your JSP, use the <embed> and <object> html tags appropriate for Flash files, like this:
    http://www.w3schools.com/flash/flash_inhtml.asp
    For the src attribute (the url to your swf file in UCM), you can either use the ShowPropertyServlet class:
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/javadoc/com/bea/content/manager/servlets/ShowPropertyServlet.html
    Or construct it with something ugly like:
    src="<%= request.contextPath%>/ShowPropertyServlet?nodePath=<%= node.path %>"
    You might need to URLEncode the path.
    Some comparable Java code looks like this:
    try
    StringBuffer imageSrc = new StringBuffer();
    imageSrc.append(request.getContextPath());
    imageSrc.append("/ShowPropertyServlet?nodePath=");
    String requestEncoding = request.getCharacterEncoding();
    if (requestEncoding == null)
    requestEncoding = "UTF-8";
    String encodedPath = URLEncoder.encode(node.getPath(), requestEncoding);
    imageSrc.append(encodedPath);
    imageSrc.append("//");
    imageSrc.append(propertyName);
    return imageSrc.toString();
    catch(UnsupportedEncodingException uee)
    return "";
    }

  • Disable Edit Content button on virtual content management reposititory

    Hello,
    i have a requirement to disable content edit in virtual content management repository (Weblogic portal administration console).
    i set delegated administration to view capability on Repository and it took out all delete and add functionality but when i browse to the content still i see edit button there. i want to take that out. so that Administrator should not be able to edit the content.
    Any input.
    appreciate your reply.
    Thanks,

    i was able to do it by specifying <readOnly>true</readOnly> in context-config.xml .
    by doing that it still give edit button so that you can view/preview the content but if you try to change and save the content it will not let you save the content and will give
    com.bea.content.AuthorizationException: User does not have update privileges on this node.

  • Meta tag using weblogic content management console

    Hi..
    I want to add meta tag content to pages. How can I do this using weblogic content management console?
    please help......
    Edited by: 925203 on Apr 25, 2012 3:58 AM

    Hi!
    I do the following: In file framework/skeletons/bighorn/head.jsp or skeletons orther, include
    <skeleton:context type="headpc">
            <head>
                 <skeleton:contentTypeMeta/>
                 <jsp:include page="metadata.jsp" flush="true"></jsp:include>
                 <skeleton:children/>
            </head>
    </skeleton:context>Hopefully this will help you
    Thanks!

  • Search ranking (Autonomy) of weblogic portal's content management?

    Hi All,
    I would like to know is there any methods for me to manually customize the ranking of the search results of the contents in the content management repository provided by the weblogic portal? Either in Autonomy aspect or in Weblogic portal aspect is ok.
    What I prefer is to add some tags into the content document so that I can make the desired content to have a higher ranking in the search results.
    Thank you for yours help!
    Regards,
    Kevin
    Edited by kevin45 at 07/05/2007 3:44 AM

    Hi Kevin,
    If there is a single search you wish to order results for, and the search results are generally of a single ObjectClass, one way to do this is to add a new property definition of a numerical type to the ObjectClass.
    Make this an explicit property (which means you would need to manually add a column to the CM_NODE table).
    For each Node in the search result, you could assign this property value.
    You can then sort on the explicit property values in the search.

  • Accessing content in WebLogic Content Management system via link in JSP

    We are running WebLogic 8.1 (sp4) and are learning about the BEA Content Management System and what we can do with it. We have a user request to pull out the content based on certain indexes and display the titles as links in a JSP. The links in the JSP would actually allow the user to pull down the document.
    <BR>
    Is this possible?
    Could someone send an example on how to do this?
    <BR>
    Thank you,
    <BR>
    Robert
    <BR>
    This is what we have so far (which builds a link, but we don't have the correct mapping to open/save/etc. the file):
    <br><br>
    <pz:contentSelector rule="ProgramPublicLinks" id="pubLinks"/>
    <utility:notNull item="<%=pubLinks%>">
    <utility:forEachInArray array="<%=pubLinks%>" id="plink" type="com.bea.content.Node">
    <BR><BR>
    [a href="<%=request.getContextPath() + plink.getPath() %>"]
    <BR>
    <cm:getProperty id="plink" default="No content node found." name="binary" resultId="link"
    conversionType="url" />
    <%= link %>
    <BR>
    [a]
    <BR><BR>
    </utility:forEachInArray>
    </utility:notNull>

    Hi Robert,
    Take a look at the DownloadBinaryServlet. You can use this to download a CM Node's binary property value.
    If you are displaying images, the ShowPropertyServlet is probably a better match. (build up an image href URL to the ShowProperty servlet)
    -Steve

  • Content Management Configuration in WebLogic Portal 9.2 Beta

    Hello All,
    I am aware of configuring Content Management System to Third Party CMS using a DMBase directory reference in the application-config.xml in WLP 4.0, 7.0 and 8.1 Versions...
    This also include the DocumentConnectionPool to point to the Database where the METADATA is stored.
    But how do I do this in 9.2 Beta Version. I did read thru the cm.pdf where they talk about the CMS configuration.
    Where do I configure the DMBase direcory?
    Any help would be appreciated.
    Thanks and regards,
    Pazhanikanthan. P

    Hi,
    You can use the "i18n" tags associated with resource files.
    http://e-docs.bea.com/wls/docs92/i18n/utilities.html
    Also, in netuix-config.xml, you can enable localisation and choose the default locale:
    <localization>
    <enable>true</enable>
    <default-locale language="fr" country="FR"/>
    </localization>
    By default, the locale will be chosen from attributes in the request. But if you want to change this behavior (for example decide the locale from the URL), you can develop a custom LocaleProvider (com.bea.netuix.servlets.l10n.LocaleProvider)
    Best regards
    Stéphanie

  • Error while trying to edit in Bea Portal Administration Content Management

    Hi,
    we are exploring the weblogic portal administration 9.2 and we encounter an exception when editing a content in the Content Management feature. We use the weblogic default workflow, we create a user attached to a group, add that group to a role, then delegate the edit and view capability of a content node in the Content Management to that role, we login using the respective user, check out the content, try to edit the property but then the exception occurs.
    It says "A Repository Exception was thrown: User does not have view privileges on the node"
    the detail exceptio on the property page was:
    "javax.servlet.jsp.JspException: Could not find a node at the key: nodeReqAttr
    at com.bea.jsptools.content.node.ViewPropertyTag.doStartTag(ViewPropertiesTag.java374)
    at jsp_servlet._contenet._node._nodeselected._properties._listpropertiescheckout._jsp_tag46 ...."
    Could u help us what step we went wrong, because we previously try this in the WLP 8.1.4 portal administration the exact same step but never encounter this error before.
    And is there anyway I can atteched screenshots to help better explain this problem?
    Thank you for your help.

    Hi,
    You have to set your activex control properly. then only edit locally in KM will work.
    Also check the below wiki
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/KMC/HowtotroubleshootproblemswithLocalEditing
    Hope that helps
    Raghu

  • Transactionality in Content Management Operations

    We're using WebLogic Portal 10.3's built-in content management mechanism backed by Oracle 10g. A lot of our use cases involve the creation of more than one node within a single service call (creating a document and multiple links to it, for example).
    If possible, we'd like to rollback previous creates if a later create fails. Worst case scenario we can use compensating transactions to delete the new nodes, but it would be nice to have it automatically.
    Does INodeManager.addNode respect transaction boundaries? Or do we need to go the compensating transaction route?
    Thanks for the help,
    Dan Turkenkopf

    Hi Dan,
    The answer is repository-specific. The OOTB repository doesn't support user-transactions and you'll likely run into database locking issues if you try. You'll have to handle this case on your own.
    -Ryan

  • Out of the box porlets for Content Management with BEA Portal

    I am looking at BEA Portal for a simple Intranet site with some basic content management system capabilities. I would like to implement this without the use of a third party tool and wanted to know if there are any open source or out of the box BEA portlets/web-apps with basic CMS capabilities beyond what has been shown in the Portal tutorials around CMS. From doing the tutorials, I have learned how to manage content, and how to build a site from scratch to access the content using the <cm:> tags. However, without additional third party products such as Documentum or Interwoven, is there any free BEA/open source portlets to:
    - Configure exposure of this content in a runtime framework? (ie content manager can expose new content from the repository by a configurable admin GUI, place where this content is on the page)
    - Allow for a simple approval workflow where content that gets added to the repository by user A has to be approved by user B before automatically exposing?
    Interested to know if custom portal type development is the only way to do these kind of simple functions, or third party product.

    Hi,
    Did you have a chance to look into WebLogic Portal 8.1 SP3? Check out the new Library Services features, which includes versioning and simple approval:
    http://e-docs.bea.com/wlp/docs81/adminportal/help/CM_MAN_LifecycleOV.html
    We also provide a few ootb portlets that allow users to interact with the CM system. Let us know if you have additional questions.
    Best Regards,
    --alex                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • EJB Exception occurred during invocation from home: com.bea.content.manager

    BEA 8.1 Team,
    Is there any limitation on BEA Repository such as number of nodes, etc.
    I have a serious production issue. All i could see from the LOG file is the stact trace which i have posted it here.
    ####<Aug 24, 2006 8:04:57 AM CDT> <Info> <EJB> <websrv11> <PORTALSRVR> <ExecuteThread: '99' for queue: 'weblogic.kernel.Default'> <jdcs1400> <BEA1-60BE09B7462F> <BEA-010051> <EJB Exception occurred during invocation from home: [email protected]67bc75 threw exception: java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
         at java.lang.String.substring(String.java:1438)
         at java.lang.String.substring(String.java:1411)
         at com.bea.content.PathHelper.removeFirst(PathHelper.java:168)
         at com.bea.content.manager.internal.NodeOpsBean.getNode(NodeOpsBean.java:680)
         at com.bea.content.manager.internal.NodeOpsEJB_e40s0j_ELOImpl.getNode(NodeOpsEJB_e40s0j_ELOImpl.java:111)
         at com.bea.content.manager.servlets.ShowPropertyServlet.printNode(ShowPropertyServlet.java:180)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doPost(ShowPropertyServlet.java:72)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doGet(ShowPropertyServlet.java:64)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<Aug 24, 2006 8:04:57 AM CDT> <Error> <HTTP> <websrv11> <PORTALSRVR> <ExecuteThread: '99' for queue: 'weblogic.kernel.Default'> <<WLS Kernel>> <> <BEA-101020> <[ServletContext(id=30691960,name=myServicePoint,context-path=/myServicePoint)] Servlet failed with Exception
    javax.ejb.EJBException: EJB Exception: : java.lang.StringIndexOutOfBoundsException: String index out of range: -1
         at java.lang.String.substring(String.java:1438)
         at java.lang.String.substring(String.java:1411)
         at com.bea.content.PathHelper.removeFirst(PathHelper.java:168)
         at com.bea.content.manager.internal.NodeOpsBean.getNode(NodeOpsBean.java:680)
         at com.bea.content.manager.internal.NodeOpsEJB_e40s0j_ELOImpl.getNode(NodeOpsEJB_e40s0j_ELOImpl.java:111)
         at com.bea.content.manager.servlets.ShowPropertyServlet.printNode(ShowPropertyServlet.java:180)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doPost(ShowPropertyServlet.java:72)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doGet(ShowPropertyServlet.java:64)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    ; nested exception is: java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
         at java.lang.String.substring(String.java:1438)
         at java.lang.String.substring(String.java:1411)
         at com.bea.content.PathHelper.removeFirst(PathHelper.java:168)
         at com.bea.content.manager.internal.NodeOpsBean.getNode(NodeOpsBean.java:680)
         at com.bea.content.manager.internal.NodeOpsEJB_e40s0j_ELOImpl.getNode(NodeOpsEJB_e40s0j_ELOImpl.java:111)
         at com.bea.content.manager.servlets.ShowPropertyServlet.printNode(ShowPropertyServlet.java:180)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doPost(ShowPropertyServlet.java:72)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doGet(ShowPropertyServlet.java:64)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    javax.ejb.EJBException: EJB Exception: : java.lang.StringIndexOutOfBoundsException: String index out of range: -1
         at java.lang.String.substring(String.java:1438)
         at java.lang.String.substring(String.java:1411)
         at com.bea.content.PathHelper.removeFirst(PathHelper.java:168)
         at com.bea.content.manager.internal.NodeOpsBean.getNode(NodeOpsBean.java:680)
         at com.bea.content.manager.internal.NodeOpsEJB_e40s0j_ELOImpl.getNode(NodeOpsEJB_e40s0j_ELOImpl.java:111)
         at com.bea.content.manager.servlets.ShowPropertyServlet.printNode(ShowPropertyServlet.java:180)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doPost(ShowPropertyServlet.java:72)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doGet(ShowPropertyServlet.java:64)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    ; nested exception is: java.lang.StringIndexOutOfBoundsException: String index out of range: -1
         at weblogic.ejb20.internal.EJBRuntimeUtils.throwEJBException(EJBRuntimeUtils.java:152)
         at weblogic.ejb20.internal.BaseEJBLocalHome.handleSystemException(BaseEJBLocalHome.java:232)
         at weblogic.ejb20.internal.BaseEJBLocalObject.postInvoke(BaseEJBLocalObject.java:326)
         at com.bea.content.manager.internal.NodeOpsEJB_e40s0j_ELOImpl.getNode(NodeOpsEJB_e40s0j_ELOImpl.java:122)
         at com.bea.content.manager.servlets.ShowPropertyServlet.printNode(ShowPropertyServlet.java:180)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doPost(ShowPropertyServlet.java:72)
         at com.bea.content.manager.servlets.ShowPropertyServlet.doGet(ShowPropertyServlet.java:64)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    Any help would be greatly appreciated!!
    Thanks in Advance,
    -Nach.

    Hi Dragan,
    First of all we need to put some debug (System.out.println) to findout exactly which object reference is actually becoming NULL. From there only we can start diagnosis on this issue. that's the root. It should be very easy for your Developers to put some debug on that...because the NullPointerException is being thrown by your code...I m not Blaming on your Code... WLS may be responsible for that...but first of all we need to find out Which Object is becoming NULL.
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

  • P6 CMIS Content Management

    Hi there,
    we are experiencing one issue trying to integrate a CMIS-Compliant Content Management in Primavera P6 EPPM. As we check within P6WebAccess.html, we can see next trace:
    abr-21-2015 12:39:46 134
    [STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    DEBUG
    com.primavera.ucr.cmis.CmisPrimaveraWebServicesSpi
    Initializing Web Services SPI...
    abr-21-2015 12:39:46 837
    PrmThread-1
    INFO
    com.primavera.overallocationcheck.OverallocationCheckWorker
    OverallocationCheckWorker 0 : Overallocation Check Service Running
    abr-21-2015 12:39:46 837
    PrmThread-27
    INFO
    com.primavera.overallocationcheck.OverallocationCheckWorker
    OverallocationCheckWorker 1 : Overallocation Check Service Running
    abr-21-2015 12:39:48 446
    PrmThread-1
    DEBUG
    com.primavera.jobsvc.common.dao.PrmJdbcDaoSupport$SafetyDateProc
    Compiled stored procedure. Call string is [{call get_safety_date(?, ?, ?)}]
    abr-21-2015 12:39:48 462
    PrmThread-1
    DEBUG
    com.primavera.jobsvc.common.dao.PrmJdbcDaoSupport$SafetyDateProc
    RdbmsOperation with SQL [get_safety_date] compiled
    abr-21-2015 12:39:48 618
    [STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    ERROR
    com.primavera.ucr.cmis.CmisPrimaveraRepositoryServiceImpl
    Failed to load repository info for P6Library
    abr-21-2015 12:39:48 618
    [STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    ERROR
    com.primavera.ucr.cmis.CmisPrimaveraRepositoryServiceImpl
    Couldn't create SOAP message due to exception: XML reader error: com.ctc.wstx.exc.WstxEOFException: Unexpected EOF in prolog at [row,col {unknown-source}]: [1,0]
    abr-21-2015 12:39:48 634
    [STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    ERROR
    com.primavera.infr.srvcs.cr.UniversalContentRepositoryImpl
    Unable to initialize repository
    com.primavera.ucr.UniversalContentRepositoryException: Unable to retrieve repository P6Library
        at com.primavera.ucr.cmis.CmisContentRepositoryImpl.init(CmisContentRepositoryImpl.java:47)
        at com.primavera.infr.srvcs.cr.UniversalContentRepositoryImpl.init(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    Has anyone got a similar problem? Checking CMIS repository name through the getRepositoryInfo command confirm that is P6Library. Please find attached P6 Configuration, any help would be greatly appreciate it.
    Thank you in advance
    Regards

    Please find attached a screenshot of Primavera P6 Administrator
    Regards

  • Hardware requirement for Oracle Universal Content Management

    Hi Experts,
    What are the Hardware requirements for Oracle Universal Content Management ?
    Regards
    Nasir

    does this help?
    Oracle WebLogic Server 11g (10.3.3) System Requirements
    Oracle WebLogic Server supports a number of platforms including:
    – Linux
    – Sun Solaris
    – HP-UX
    – Windows 2000, 2003 Server, XP
    • Processor:
    – At least one 1 GHz CPU is recommended.
    – Intel and UNIX processors are supported.
    • Hard disk drive:
    – A full installation requires approximately 2 GB of disk space.
    – The Linux value for file descriptors must be 4096 or greater.
    – Samples are optional (download from OTN).
    • Memory:
    – A minimum of 2 GB RAM is recommended for WebLogic
    Server.
    – Consider the number of simultaneous users and sessions.
    – Consider in-memory programs, such as Coherence.
    System Requirements
    The following are some of the basic system requirements for Oracle WebLogic Server 10.3.3:
    • The Oracle WebLogic Server installer requires a Java Runtime Environment (JRE) to run.
    Oracle WebLogic Server is certified with JDK6.0. As part of the installation, it gives the option
    to install the JRockit JDK 6.0 version. As part of postinstallation, prefix the bin directory of
    the JDK to the PATH environment variable.
    • The Oracle WebLogic Server installer requires a temporary location in which to unpack the
    files. Typically, the installer requires approximately 2.5 times the amount of temporary space
    that is required by the installed files.
    Note: In this release of WebLogic Server, users can choose which components of WebLogic Server
    they use. Specifically, this release allows users to choose whether the Enterprise JavaBeans (EJB),
    Java Message Service (JMS), and J2CA services are started when WebLogic Server is started. The
    benefit of excluding some services is reduced memory footprint and reduced startup time.

Maybe you are looking for