Arrange the search results in the server of the University Complutense of Madrid?

Hi all

Oracle ucm-text search if I search a specific text like 'my text' and 'my text' text already exists in several documents I want to arrange the search results according to the number of repeating in each document text. and if the text existing in more than ten documents I want to show the top five only.

Is this possible in oracle ucm.

Thank you

The latter is easy - check for the parameter ResultCount service (see, for example, https://blogs.oracle.com/interactions/entry/ucm_get_search_results_with_full_text_search)

The first - not sure about that. I'll try to find something and come back.

OK - as well as in the first case, check:

https://blogs.Oracle.com/Kyle/entry/adjusting_the_score_on_oracle and/or http://www.fishbowlsolutions.com/fishbowl/groups/public/documents/white_papers/042831.pdf (chapter on relevance ranking)

Tags: Fusion Middleware

Similar Questions

  • How to send a file in the server of the University Complutense of MADRID using the Code?

    Hello

    I tried several times to upload a file to the server of the University Complutense of Madrid from the adf page, but I can't do it.

    First: I have used this method to do, but it feel that the file downloaded successfully and when I open the server I haven't found this...

    public String addNewContent() {}
    InputStream fileStream = null;

    try {}
    createConnection();
    String filePath = "C:\\Users\\Administrator\\Desktop\\ucm classes\\Class1.java";
    String autherName = "weblogic";
    fileStream = new FileInputStream (filePath);
    = New File (filePath);
    String [] fileTitle = filePath.split("/");
    long fileLength = new File (filePath) .length ();
    param.getBinder (.putLocal (CMConstants.CM_SERVICE_NAME),
    CMConstants.CM_CHECKIN);
    param.getBinder () .putLocal ("dDocType", "Application");
    Title of the downloaded file
    param.getBinder () .putLocal ("dDocTitle", fileTitle [fileTitle.length - 1]);
    Name of the author
    param.getBinder () .putLocal ("dDocAuthor", autherName);
    Content security for (Group and account)
    param.getBinder () .putLocal ("dSecurityGroup", "Public");
    param.getBinder () .putLocal ("dDocAccount", "");
    param.getBinder () .putLocal ("dFormat", "text/html");
    param.getBinder () .putLocal ("xCollectionID",
    (getFolderIdFromPath ("/ Contribution dossiers/22 /"))) ;
    param.getBinder () .addFile ("primaryFile", file);
    param.setServiceResponse (param.getIdcClient (.sendRequest (param.getIdcContext ()),
    (param.getBinder ()));

    InputStream myInputStream = param.getServiceResponse () .getResponseStream ();
    String myResponseString = param.getServiceResponse () .getResponseAsString ();
    System.out.println ("downloaded file Details: \n" +)
    myResponseString);

    DataBinder myResponseDataBinder =
    param.getServiceResponse () .getResponseAsBinder ();

    System.out.println ("file uploaded successfully");
    } catch {(IdcClientException idcce)
    System.out.println ("IDC customer Exception occurred. Cannot download the file. Message: «+»
    idcce.getMessage () + ", the stack trace:");
    idcce.printStackTrace ();
    } catch (IOException ioe) {}
    System.out.println ("IO Exception has occurred. Cannot download the file. Message: «+»
    ioe.getMessage () + ", the stack trace:");
    ioe.printStackTrace ();
    } catch (Exception e) {}
    System.out.println ("Exception occurred. Cannot download the file. Message: «+»
    e.getMessage () + ", the stack trace:");
    e.printStackTrace ();
    } {Finally
    If (param.getServiceResponse ()! = null) {}
    param.getServiceResponse (m:System.NET.Sockets.Socket.close ());
    }
    If (fileStream
    ! = null) {}try {}fileStream.close ();} catch (Exception e) {}e.printStackTrace ();}}}

    Returns a null value.

    }

    ----------------------------------------------------------------------

    Second: I used this method, but it did not work also

    public String uploadFile() {}
    try {}
    String inputFile1 ="";
    UF UploadedFile = (UploadedFile) inputFile1.getValue ();
    String filePath="C:\\Setup\\mmm.txt; »
    InputStream fileStream = null;
    try {fileStream = new FileInputStream (filePath) ;} catch (FileNotFoundException e) {}}
    String [] fileTitle = filePath.split("/");
    long fileLength = new File (filePath) .length ();

    //DataBinder Binder = IdcClient.crea
    param.getBinder (.putLocal (CMConstants.CM_SERVICE_NAME),
    CMConstants.CM_CHECKIN);
    param.getBinder () .putLocal ("dDocAuthor",
    "weblogic"); If the user is admin, can specify any user
    param.getBinder () .putLocal ("dDocTitle", "titleee");
    param.getBinder () .putLocal ("dDocName", "nameee");
    param.getBinder () .putLocal ("dDocType", "DigitalMedia");
    param.getBinder () .putLocal ("xCollectionID",
    getFolderIdFromPath ("/ files/11 Contribution")); parent folder
    param.getBinder () .putLocal ("dSecurityGroup", "Public");
    param.getBinder () .putLocal ("dDocAccount:", "");
    param.getBinder () .putLocal ("xComments", "Review of Montreal");
    param.getBinder () .putLocal ("xWCTags", "Montréal");

    param.getBinder () .addFile ("primaryFile",
    new TransferFile (fileStream, 'child',
    fileLength,
    "text/html"));
    ServiceResponse response =
    param.getIdcClient (.sendRequest (param.getIdcContext ()),
    param.getBinder ());

    } catch (Exception e) {}
    System.out.Print("");
    }

    Returns a null value.
    }

    -------------------------------

    Can someone tell me what's wrong? !

    Thank you

    This will definitely work

    package demo;
    
    import java.io.*;
    import oracle.stellent.ridc.*;
    import oracle.stellent.ridc.model.*;
    import oracle.stellent.ridc.protocol.*;
    import oracle.stellent.ridc.protocol.intradoc.*;
    import oracle.stellent.ridc.common.log.*;
    import oracle.stellent.ridc.model.serialize.*;
    import oracle.stellent.ridc.protocol.http.*;
    import java.util.List;
    
    /*
     * This is a class used to test the basic functionality
     * of submitting a checkin to Content Server using RIDC.
     */
    
    public class TestRIDCCheckin {
    
        public static void main(String[] args) {
            // Create a new IdcClientManager
            IdcClientManager manager = new IdcClientManager();
            try {
                // Create a new IdcClient Connection using idc protocol (i.e. socket connection to Content Server)
                IdcClient idcClient = manager.createClient("idc://localhost:4444");
                // Create new context using the 'sysadmin' user
                IdcContext userContext = new IdcContext("sysadmin");
                // Create an HdaBinderSerializer; this is not necessary, but it allows us to serialize the request and response data binders
                HdaBinderSerializer serializer = new HdaBinderSerializer("UTF-8", idcClient.getDataFactory());
    
                // Databinder for checkin request
                DataBinder dataBinder = idcClient.createBinder();
                dataBinder.putLocal("IdcService", "CHECKIN_UNIVERSAL");
                //dataBinder.putLocal("dDocName","TestRIDCCheckin");
                dataBinder.putLocal("dDocTitle", "Test RIDC Checkin");
                dataBinder.putLocal("dDocType", "Document");
                dataBinder.putLocal("dDocAccount", "");
                dataBinder.putLocal("dSecurityGroup", "Public");
                dataBinder.addFile("primaryFile", new File("c:/test.txt"));
    
                //dataBinder.putLocal("doFileCopy", "1");
    
                // Write the data binder for the request to stdout
                serializer.serializeBinder(System.out, dataBinder);
                // Send the request to Content Server
                ServiceResponse response = idcClient.sendRequest(userContext, dataBinder);
                // Get the data binder for the response from Content Server
                DataBinder responseData = response.getResponseAsBinder();
                // Write the response data binder to stdout
                serializer.serializeBinder(System.out, responseData);
    
            } catch (IdcClientException ice) {
                ice.printStackTrace();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            }
        }
    
    }
    
  • Authentication and authorization JPSUserProvider at the University Complutense of MADRID 11g

    Hello

    Can someone direct me on where I can find more information on JPSUserProvider. Documentation of the Complutense University of MADRID just mentions that JPSUserProvider is configured in the UCM by default and used for authentication, the authorization. In another document that it is mentioned that UCM 11 g has nothing to do with the authentication of the user, all the authentication will be supported by Weblogic and SSO must be configured against weblogic. If SSO is configured and an external LDAP is used as a user store in weblogic, I need to make changes to the AAU? I want to know the role JSPUserProvider plays in the University Complutense of MADRID and the series of events that take place after the user enters the credentials to < Server >: < port > / cs/login/login.htm.
    Any help in pointing the right resources is appreciated.

    Thank you
    Shyam

    Sometimes, you don't have no need to make changes, but other times, you may need to update the map attribute, the delimiter of account permissions, default roles and/or accounts. Occasionally, an ID card is applied to translate incoming AD group names to match the role names and/or account UCM.

    Meet real external LDAP permissions is made via the WLS, but the JPSProvider does the work of extracting data from WLS in object UserData of the AAU.

    -ryan

  • Impossible to update the Information contained in the University Complutense of MADRID 11.1.1.8

    Hello

    I'm unable to update content at the University Complutense of MADRID 11.1.1.8 information. the error is 'Impossible to update content' or '< abc_abc_2015_081763 >' Record the content ID must be specified

    In general the Configurations page, auto assign an ID of content to the consignment is selected and abc_abc_2015_ is provided.

    I don't know why its not allowing me to update information.

    Thank you

    Hello

    The problem is solved, said dDocName and make hid in profile.

    Thank you.

  • See the news feed from the University Complutense of MADRID to the Webcenter Portal

    Hello

    I'm new to AAU and Webcenter portal technology. I have a requirement to display the contents of RSS feeds which is kept at the Complutense University of MADRID and to display in a webcenter portal.
    Please guide me on how can I achieve this. What all the technology that I use.

    Sahar

    Hello Sahar,

    There are at least two options:

    (1) query metadata (UCM) and host content (PGC)
    (2) RSS feed component (UCM) and RSS task Flow (WCP)

    Ad 1) take a look at this tutorial: http://www.yonaweb.be/webcenter_tutorial/using_content_presenter_templates

    In a Word, your 'news' can be any content stored in the University Complutense of MADRID, defined by its metadata. To view it, you can create a template according to your needs.

    AD 2) could not work any longer.

    The idea is to use get news RSS FEEDS and display them. As part of the WCP, there will be no problem - for more details, see http://docs.oracle.com/cd/E23943_01/webcenter.1111/e10149/rss.htm#WCSUG1384
    I don't know, however, for the part of the Complutense University of MADRID. There used to be a component that has enabled the sharing of content as RSS feeds. The component is available at http://www.oracle.com/technetwork/middleware/webcenter/content/rssfeeds-129386.zip
    Unfortunately, it seems in 11g were dropped (I could find no reference to this in the docs of 11g), however, it might still work - see the discussion in the activation of the RSS FEED at the Complutense University of MADRID

    If you want to go this way, you will need to test / fix it yourself.

    Jiri

  • Migrate the contents of the AAU 10 g at the University Complutense of MADRID 11 g

    Hello

    I'm a newbie in the Complutense University of MADRID and is involved in an internal project as a consultant. For the moment, I am facing following 2 questions:

    1. How can import the structure of UCM 10 records g at the University Complutense of MADRID 11 g (11.1.1.5.0)? Is there an automated way to do this?
    2. How can migrate the contents of the AAU 10 g at the University Complutense of MADRID 11 g (11.1.1.5.0)? Is there an automated in this way?

    Can you please suggest any documentation on above or would be happy if you could share your knowledge about it. Can you tell me if there are traps or how to do the above, I must avoid.

    I googled for hours to find info on the issue of migration. I found this document:
    http://download.Oracle.com/docs/CD/E22203_01/ doc.31 /e20664/chapter_13.htm

    and this thread:
    Data migration from ucm10gR3 to ecm 11 GR 1 material: 11.1.1.5.0

    I need a more progressive direction.

    Appreciate all the help I can get :)

    Hello

    These are the 2 sql queries that you must run on schema UCM to be able to use the Stand Alone on UCM 11 g cmdlets:

    update users set dpasswordencoding = "where dname as 'sysadmin ';

    update users set dpassword = "idc" where dname like 'sysadmin ';

    After this connection for applets on ucm 11g.

    Thank you
    Srinath

  • How to disable 'Quick search' at the University Complutense of MADRID 10g for users in bulk

    Hi friends,

    We use the AAU 10 g and there are 1,000 users to use it. There are millions of records in the server and users tend to use the wildcard searches in the 'Quick search' option on the homepage.

    There is only one way, we can disable the quick search.

    (1) first, the layout SHOULD be classic. To make a layout by default for all users, the config.cfg goto file and edit it with entry below.

    DisableAmberLayouts = true - this will change all users to the classic layout.

    (2) goto user profile and click on "design portal for XXX (username).

    (3) uncheck the quick search option.

    -My question is, how to realize for all whithout users asking them to perform steps 2 and 3.

    Y at - it no service call, we can do?

    Looking forward to your response.

    Thank you

    Srikanth

    controlledQuery = 1 turns off quick search on 11g...

    try to add the URL parameter and see if it works in 10g more

  • Search for documents of the University Complutense of MADRID of sites webcenter

    Hi all

    We explore the options of integration of wc with UCM sites only.

    Assets will be created something like article white paper contributor interface and documents will be extracted from the existing UCM server.

    are there options available?

    Help appreciated.

    Kind regards

    GP

    Implementation the same using the RIDC API...

  • Can not start the server of the University Complutense of MADRID after the new installation of 11.1.1.8 on Microsoft server 2008 R2 SP1 64-bit EA

    Hi all

    After the new installation of the WCC 11.1.1.8 on Microsoft server 2008 R2 SP1 64-bit UCM_server1 EE cannot start. (Please see trace below). WCC 11.1.1.7 work fine in this environment.

    Steps to follow:

    1. installation of jrockit - jdk1.6.0_45 - R28.2.7 - 4.1.0

    2. installation of WLS 10.3.6

    3. installation of the WCC 11.1.1.8

    4 creating the UCR 11.1.1.8 schema

    5. creation of field of config.cmd with AdminServer, UCM_server1, IBR_server1

    6. run Admin - (success)

    7 run (optional) NodeManager - (success)

    8 run UCM_server1 - failed

    Still not work after having patched MLR 1 for WCC 11.1.1.8 or upgrade 11.1.1.7.

    Log files we can see this problem caused by the JniNativeOsUtils.dll file in ' < Middleware Home > \Oracle_ECM1\ucm\idc\components\NativeOsUtils\lib\windows-amd64\7.2.1.1.

    I have replaced JniNativeOsUtils.dll with the same 11.1.1.7 file version and UCM_server1 started working

    I got errors when starting (syNativeOsUtilsNotLoaded and UnsatisfiedLinkError - you can raise in trace below), but COE upward and the works.

    I also get error when you try to start the utility SystemProperties or ComponentWithard:

    Activation context generation failed for "C:\Oracle\MIDDLE~1\USER_P~1\domains\WCC_DO~1\ucm\cs\bin\SystemProperties.exe." Load Assembly Microsoft.VC80.MFC, processorArchitecture = "amd64", publicKeyToken is "1fc8b3b9a1e18e3b", type = "win32", version = "8.0.50727.762' is not found. Please use sxstrace.exe for detailed diagnosis.

    Any ideas?

    Thank you

    Leon

    -------------------------------------------------------------------------------------------------------------------------

    ERROR:

    javax.servlet.ServletException: could not start a deployment of servers of IDC.

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1268)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: java.io.IOException: csServletFailedToFullyInitialize

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.common.ServiceException:

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:252)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1259)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:672)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:52)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:31)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.data.DataException:! Abandoned facility.

    at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:554)

    at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)

    at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1259)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:672)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:52)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:31)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.common.ServiceException:! csInitSecurityError

    at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:140)

    at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)

    at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)

    at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)

    at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)

    at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)

    at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)

    at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:328)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:101)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1259)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:672)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:52)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:31)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: intradoc.common.ServiceException:! syFileUtilsUnableToCreateSpecifiedDir, C:/Oracle/MEDIUM ~ 1/USER_P ~ 1/areas/WCC_DO ~ 1-AAU/cs/config/private

    at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:570)

    at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)

    at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)

    at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)

    at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:76)

    at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)

    at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)

    at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:574)

    at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)

    at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)

    at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:328)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:101)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1259)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:427)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:672)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:52)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:31)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: java.lang.AssertionError:! syNativeOsUtilsNotLoaded

    at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:452)

    to intradoc.common.NativeOsUtilsBase. < init > (NativeOsUtilsBase.java:360)

    to intradoc.common.NativeOsUtils. < init > (NativeOsUtils.java:28)

    at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)

    at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)

    at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)

    at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)

    at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)

    at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)

    at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)

    at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)

    at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)

    at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)

    at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: java.lang.UnsatisfiedLinkError: intradoc/common/NativeOsUtilsBase.getNativeVersion () Ljava/lang/String;

    at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:448)

    to intradoc.common.NativeOsUtilsBase. < init > (NativeOsUtilsBase.java:360)

    to intradoc.common.NativeOsUtils. < init > (NativeOsUtils.java:28)

    at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)

    at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)

    at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)

    at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)

    at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)

    at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)

    at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)

    at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)

    at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)

    at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)

    at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)

    at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)

    at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)

    at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.initializeContentServer (ServletUtils.java:1257)

    to idcservlet. ServletUtils.startAndConfigureServer (ServletUtils.java:531)

    to idcservlet. ServletUtils.initializeAllServers (ServletUtils.java:460)

    to idcservlet. IdcFilter.initContentServer (IdcFilter.java:181)

    to idcservlet. IdcFilter.init (IdcFilter.java:156)

    to weblogic.servlet.internal.FilterManager$ FilterInitAction.run (FilterManager.java:343)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)

    at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)

    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)

    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)

    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)

    to weblogic.application.internal.BaseDeployment$ 2.next(BaseDeployment.java:671)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)

    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)

    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)

    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)

    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)

    to weblogic.management.deploy.internal.DeploymentAdapter$ 1.doActivate(DeploymentAdapter.java:51)

    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)

    to weblogic.management.deploy.internal.AppTransition$ 2.transitionApp(AppTransition.java:30)

    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)

    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)

    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)

    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)

    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)

    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Hi all

    Cause of problems is the lack of 'Visual C++ 2005 SP1 Redistributable Package'

    Environment works great after installing the two versions (x 86 and x 64)

    Thank you

    Leon

  • Check connectivity to the server of the University Complutense of MADRID

    Hello

    What is the best practice to check the connectivity Server UCM by customers of CRMI? failover mechanism following the course of the connectivity and all service processes.
    If there is no integrated API function support

    Hello

    Use the PING_SERVER API to see if AAU works or not from customers CRMI.

    Thank you
    Srinath

  • Display in AutoVue error document at the University Complutense of MADRID (WCC)

    Hi, I configured Oracle AutoVue for AAU but when I connect to UCM and click on the option "View in AutVue", following error occurred:

    Failed to initialize. Exception trying to run channel applications; nested exception is:
    java.io.FileeeeNotFoundException: http://ots:16200/vuelink/VueServlet
    An error occurred when connecting to the server.
    Restart the applets?

    Sometimes empty screen but nothing to display.

    Please suggest me a useful solution.

    It is usually the result of a servlet badly deployed (in general, not exclusive to AutoVue)
    Please check that
    1. the used hostname is actually resolved correctly (FQDN is not used, so the address IP obtained or not depends on the network configuration and machine it is, under VPN that wouldn't work)
    2. the used path is visible (the servlet is actually deployed on the application server to this place)
    3. the configuration on the servlet actually points to the server of AutoVue
    4. the AutoVue server is actually running

    Since there is no newspaper, not easy to say what is actually incorrectly configured but I would choose the URL than not correct VueServlet
    Suggest you use a browser a ping this URL
    In addition, please read the documentation on the deployment of the UCM AutoVue and VueLink there are useful troubleshooting steps

  • Document is always displayed on the console of the University Complutense of MADRID, even once it is checked by "archiving". Why?

    I have archived the documents by using the "Check in" present in the Administration Panel. Even after having obtained archived documents are always be displayed if searched on the console of the ECM and their status is displayed as "liberated." That's why it would be even shown in the portal.

    The main objective is to empty space by archiving the content so that the space can still be used.

    Why is it shown? Y at - it another way to archive so that it doesn't get displayed if searched in the console of the Complutense University of MADRID and he leaves the space by getting archived?

    Just to eliminate the obvious, when you start Actions - export... There's an option: "remove the revisions after archive successful". It has been verified? And if so, successful export has?

  • Documentation - components from the University Complutense of MADRID and IdcServer

    Hello. I need the documentation for the development of the Special Services IdcService, filters. I found the book of Bex Huff, as he is old, but it works for most. I wanted to understand the syntax of the file component.hda. I also have doubts in many other places. The Oracle a documentation about these? Here can be found the JavaDoc for intradoc.server which is the idcserver.jar and some tutorial covering classes in this jar, not all, but important? I use 11g.

    It's had a ScheduledEvent component queue provided by Bex Huff to 11g.
    <?hda version="11gR1-11.1.1.3.0-idcprod1-100505T121221" jcharset=UTF8 encoding=utf-8?>
    @Properties LocalData
    blFieldTypes=
    preventAdditionalComponentDowngrade=0
    hasPreferenceData=0
    blDateFormat=M/d/yy {h:mm[:ss] {aa}[zzz]}!mAM,PM!tAmerica/Chicago
    libpath=$COMPONENT_DIR/lib
    classpath=$COMPONENT_DIR/classes
    ComponentName=ScheduledEvent
    version=2011_03_16
    @end
    @ResultSet Filters
    4
    type
    location
    parameter
    loadOrder
    checkScheduledEvents
    ScheduledEvent.CustomFrequentEvent
    checkScheduledEvents
    1
    scheduledSystemEvent
    ScheduledEvent.CustomSystemEvent
    scheduledSystemEvent
    1
    @end
    @ResultSet MergeRules
    4
    fromTable
    toTable
    column
    loadOrder
    CustomScheduledEvents
    IdcScheduledSystemEvents
    action
    1
    @end
    @ResultSet ResourceDefinition
    4
    type
    filename
    tables
    loadOrder
    resource
    scheduled_event_resource.htm
    null
    1
    @end
    @ResultSet ClassAliases
    2
    classname
    location
    @end
    Can someone explain the architecture of this file?
    Thank you.

    Could be useful to open a new thread for what is new, but almost all of the work of Bex & parties related to Java Oracle Developer's guide are associated with the idcserver.zip. Who is the major code that includes all the base classes for the server. The name has changed since 10gr 3, but the story remains the same.

    There are also a few threads on this forum that cover the ins and outs.

    That being said, your question is rather vague. If there is something specific you need after hitting the books, remember to provide as much detail as possible so that others can help you in the best possible way.

    -ryan

  • Personalized service at the University Complutense of MADRID 11g - can't find correct .jar files

    Hello

    I'm migrating some personalized services I created in gr 10, 3 in the new 11 g platform. The services contain some java methods custom that I was upgrading from the previous version by using the server\shared\classes\server.zip package.

    It seems that the structure of the new UCM has somewhat changed - I found a package of 11g to ucm\cs\weblayout\common\idcapplet.jar which seems to contain some of the classes, but not all. Specifically, it doesn't have the packs of intradoc.server or intadoc.provider I need to expand the classes of Service and ServiceHandler.

    Does anyone know where these packages are kept in 11g, or if they even still exist in the new architecture?

    Sorry if I missed some information key, do not hesitate to ask. Thanks in advance!

    Hey,.

    idcserver.jar is indeed the correct file. You can find it at %MIDDLEWARE_HOME%/Oracle_ECM1/ucm/idc/jlib/

    Hope that helps,
    Andy Weaver - Senior Consultant software
    Fishbowl Solutions< http://www.fishbowlsolutions.com?wt.mc_id="L_Oracle_Consulting_amw_OTN_ECM">

  • How to assign the value "ID or content dDocName" (property of the University Complutense of MADRID) Webcenter capture.

    Hello

    Could you please help me for the script for extracting Webcenter UCMS property in Webcenter Capture. I also have a requirement where I need to assign a value to the UCM property ' dDocName or content ID "of the capture of webcenter.

    Someone please help me with above scenarios.

    Hello

    Thanks for the reply. My requirement is, when check-in file to the AAU, it generates values to the property "docId" for the file that is unique. I need the value of the docId during validation webcenter capture processor. I solved this problem.

    I created a filter in the AAU for archiving profile. This filter is triggered whenever the Service factor of the AAU invoke. In this filter, I can get the value of "docID".

    Thank you.

Maybe you are looking for

  • Satellite A100-003 - flickering screen then shows black alone

    My Toshiba has been flashed with the latest available v6.00 BIOS and has a geforce go 7600 gpu.About 2 weeks ago the screen started to Flash and loud gray lines have appeared, momentarily, in the days that the problem has increased in frequency and t

  • I can't open the training videos, I downloaded of Office 2011 for Mac

    I just bought Office 2011 for Mac and use their training, however I downloaded their files including videos. Do I need special software to open these? IM using an iMac 2013 Mavericks running.

  • OPENING DESKTOP ICON?

    I have my yahoo icons, igoogle, on my desktop and when I right click on it looks that this impression Send to Cup copy Properties. I want to have the ability for him to open. I don't even have a printer, could someone help me please?

  • change the screen?

    Developers, I am starting to develop blackberry. so I can't change screen with argument. Please developers

  • Microsoft Works word processor: error PRINTING

    Hello! I created a spreadsheet in Microsoft Works word processor supplied with Windows 7 Home Premium. The problem is that my spreadsheet does not print correctly. My spreadsheet is printing in the form of 2 pages (with 1/2 of the worksheet on each p