Deploying ADF application to a managed server in weblogic - security ADF error

Hello

Our group wrote an ADF web application, we are trying to deploy on a weblogic managed server. So far, we have succumbed. The application deploys successfully to the AdminServer. Our facility:

WebLogic version is 10.3.0. Domain name is adf_domain. We installed the ADF (ADF version is 11.1.1.0.0), JSTL (1.2.0.1), and the JSF (1.2.7.1) runtime libraries and they are addressing both the server administrator AND managed server called CollabServer. This server communicates with node Manager and you will be able to be started and the console of administration successfully. The AdminServer is on 7101 port, and the CollabServer is on port 7104. We do not use SSL.

application.XML:

<? XML version = "1.0" encoding = "windows-1252"? >
< application xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance".
xsi: schemaLocation = "http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd".
version = '5' xmlns = "http://java.sun.com/xml/ns/javaee" >
< display name > OracleRetailCollaboration < / display-name >
<>module
< web >
< web - uri > orc.war < / web - uri >
ORC < context root > < / root context >
< / web >
< / module >
< / application >

WebLogic - application.XML (as taken from the ear file):

<? XML version = "1.0" encoding = "windows-1252"? >
< application weblogic xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: schemaLocation = "http://www.bea.com/ns/weblogic/weblogic-application.xsd" xmln
s = "http://www.bea.com/ns/weblogic/weblogic-application" >
<>earpiece
oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener <-listener class > < / listener class >
< / earphone >
< library-ref >
< name of the library - > adf.oracle.domain < / library name >
< / library-ref >
< / weblogic application >

WebLogic.XML (as taken from the file. War):

<? XML version = "1.0" encoding = "UTF - 8"? >
< weblogic-web-app xmlns = "http://www.bea.com/ns/weblogic/weblogic-web-app" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: schemaLocation = "work".
w.bea.com/NS/WebLogic/WebLogic-Web-App http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd ' > '.

<>container-descriptor
< prefer-web-inf-classes > true < / prefer-web-inf-classes >
< / container-descriptor >
< security-role-assignment >
valid users - < role name > < / role name >
users of < SPN > < / main-name >
< / security role assignment >
< library-ref >
< name of the library - > jstl < / library name >
specification of the < version > 1.2 < / specification-version >
< / library-ref >
< library-ref >
JSF < library name > - < / library name >
specification of the < version > 1.2 < / specification-version >
< / library-ref >

< / weblogic-web-app >

As I said, there is no deployment errors when deploying on the management server. However, we still see the following errors when deploying to the managed server:

java.lang.ClassNotFoundException: oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener
etc.

This error occurs when the deployment using the < wldeploy > Ant task included with weblogic and the deployment of the application manually using the administration console.

So I removed this WebLogic - application.xml:

<>earpiece
oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener <-listener class > < / listener class >
< / earphone >

Who decided the initial error (I guess that there is some sort of bug that causes of workaround is necessary). The following error is the following:

java.lang.ClassNotFoundException: oracle.adf.share.security.authentication.AuthenticationServlet

Yet once, we do not get this error when deploying to the AdminServer - ONLY the managed server CollabServer.

Web.XML:

...
< servlet >
< name servlet - > adfAuthentication < / servlet-name >
> the servlet class < oracle.adf.share.security.authentication.AuthenticationServlet < / servlet-class >
< load-on-startup > 1 < / load-on-startup >
< / servlet >
...
< servlet-mapping >
< name servlet - > adfAuthentication < / servlet-name >
< url-pattern > /adfAuthentication / * < / url-pattern >
< / servlet-mapping >
...

I then added some jars of adf the ear file, finally get this error message:

java.lang.ClassNotFoundException: oracle.adf.share.jsp.ADFLibUtils

Any ideas on how to solve this problem? Thank you.

Published by: user10451099 on April 15, 2009 12:10

Dan,
Thanks for remind me :-)

Here are the steps we had to take to get a WLS managed to run an adf application without copying any jar in the field/lib directory:

1. you should always install the adf runtime to any server you want the adf application to deploy on

2. open the administration console, select the managed server and select the "start server" tab in the settings of trial.

3. Add

/u01/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/bea/patch_jdev1111/profiles/default/sys_manifest_classpath/weblogic_patch.jar:
/u01/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/bea/jrockit_160_05/lib/tools.jar:/u01/bea/wlserver_103/server/lib/weblogic_sp.jar:
/u01/bea/wlserver_103/server/lib/weblogic.jar:/u01/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/u01/bea/wlserver_103/server/lib/webservices.jar:
/u01/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/u01/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:/u01/bea/jdeveloper/modules/features/adf.share_11.1.1.jar:
/u01/bea/wlserver_103/common/eval/pointbase/lib/pbclient57.jar:/u01/bea/wlserver_103/server/lib/xqrl.jar:
/u01/bea/patch_wls1030/profiles/default/sysext_manifest_classpath/weblogic_ext_patch.jar

the classpath box, you need to change ' / u01/bea /' with your bea home. The classpath must be on a single line without CR/LF, I put in to make it readable.

4. Add

-Xms256m -Xmx512m -da -Dplatform.home=/u01/bea/wlserver_103 -Dwls.home=/u01/bea/wlserver_103/server -Dweblogic.home=/u01/bea/wlserver_103/server
-Ddomain.home=/u01/bea/user_projects/domains/naa_qs -Doracle.home=/u01/bea/jdeveloper -Doracle.security.jps.config=/u01/bea/user_projects/domains/naa_qs/config/oracle/jps-config.xml
-Doracle.dms.context=OFF -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.management.discover=false -Dweblogic.management.server=http://localhost:7001
-Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=
-Dweblogic.ext.dirs=/u01/bea/patch_wls1030/profiles/default/sysext_manifest_classpath:/u01/bea/patch_jdev1111/profiles/default/sysext_manifest_classpath:/u01/bea/patch_cie660/profiles/default/sysext_manifest_classpath
-Dweblogic.management.username=weblogic -Dweblogic.management.password=******** -Dweblogic.Name=GESTIS_QS
-Djava.security.policy=/u01/bea/wlserver_103/server/lib/weblogic.policy

editing area of the "Arguments". As with the change of calsspath ' / u01/bea ' your home BEA and change the domain name (in our case "naa_qs") to your domain name. change the managementuser and the password to your needs. As whith the classpath I put a CR/LF in the section of code to make it readable.

5. save the changes and restart the server

Essentially, all that we have copied the arguments of the admin server start script and more to add the path of the class.

Timo

Tags: Java

Similar Questions

  • Layout error while deploying the application on the glassfish server. Any body can help?

    Mr President.

    Layout error while deploying the application on the glassfish server. Any body can help?

    The server log is

    [2015-06-05T12:05:15.646+0500] [glassfish 4.1] [WARNING] [NCLS-DEPLOYMENT-00023] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487915646] [levelValue: 900] [[
      Ignoring AshCMS_ViewController_webapp_war/ because the containing archive C:\glassfish4\glassfish\domains\domain1\applications\AshCMS_Project1_AshCMS recorded it as a pre-existing stale file]]
    
    
    [2015-06-05T12:05:15.646+0500] [glassfish 4.1] [WARNING] [] [javax.enterprise.system.tools.deployment.javaeefull] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487915646] [levelValue: 900] [[
      Exception while locating sub archive: AshCMS_ViewController_webapp.war]]
    
    
    [2015-06-05T12:05:15.706+0500] [glassfish 4.1] [WARNING] [NCLS-DEPLOYMENT-00023] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=88 _ThreadName=deployment-jar-scanner] [timeMillis: 1433487915706] [levelValue: 900] [[
      Ignoring AshCMS_ViewController_webapp_war/ because the containing archive C:\glassfish4\glassfish\domains\domain1\applications\AshCMS_Project1_AshCMS recorded it as a pre-existing stale file]]
    
    
    [2015-06-05T12:05:17.484+0500] [glassfish 4.1] [INFO] [] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487917484] [levelValue: 800] [[
      visiting unvisited references]]
    
    
    [2015-06-05T12:05:23.074+0500] [glassfish 4.1] [WARNING] [NCLS-DEPLOYMENT-00023] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923074] [levelValue: 900] [[
      Ignoring AshCMS_ViewController_webapp_war/ because the containing archive C:\glassfish4\glassfish\domains\domain1\applications\AshCMS_Project1_AshCMS recorded it as a pre-existing stale file]]
    
    
    [2015-06-05T12:05:23.074+0500] [glassfish 4.1] [WARNING] [NCLS-DEPLOYMENT-00023] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923074] [levelValue: 900] [[
      Ignoring AshCMS_ViewController_webapp_war/ because the containing archive C:\glassfish4\glassfish\domains\domain1\applications\AshCMS_Project1_AshCMS recorded it as a pre-existing stale file]]
    
    
    [2015-06-05T12:05:23.784+0500] [glassfish 4.1] [WARNING] [NCLS-DEPLOYMENT-00023] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923784] [levelValue: 900] [[
      Ignoring AshCMS_ViewController_webapp_war/ because the containing archive C:\glassfish4\glassfish\domains\domain1\applications\AshCMS_Project1_AshCMS recorded it as a pre-existing stale file]]
    
    
    [2015-06-05T12:05:23.804+0500] [glassfish 4.1] [WARNING] [NCLS-DEPLOYMENT-00023] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923804] [levelValue: 900] [[
      Ignoring AshCMS_ViewController_webapp_war/ because the containing archive C:\glassfish4\glassfish\domains\domain1\applications\AshCMS_Project1_AshCMS recorded it as a pre-existing stale file]]
    
    
    [2015-06-05T12:05:23.804+0500] [glassfish 4.1] [WARNING] [NCLS-DEPLOYMENT-00023] [javax.enterprise.system.tools.deployment.common] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923804] [levelValue: 900] [[
      Ignoring AshCMS_ViewController_webapp_war/ because the containing archive C:\glassfish4\glassfish\domains\domain1\applications\AshCMS_Project1_AshCMS recorded it as a pre-existing stale file]]
    
    
    [2015-06-05T12:05:23.804+0500] [glassfish 4.1] [SEVERE] [] [javax.enterprise.system.core] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923804] [levelValue: 1000] [[
      Exception while deploying the app [AshCMS_Project1_AshCMS]]]
    
    
    [2015-06-05T12:05:23.804+0500] [glassfish 4.1] [SEVERE] [NCLS-CORE-00026] [javax.enterprise.system.core] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923804] [levelValue: 1000] [[
      Exception during lifecycle processing
    java.lang.IllegalArgumentException: Could not find sub module [AshCMS_ViewController_webapp.war] as defined in application.xml
      at com.sun.enterprise.deployment.archivist.ApplicationArchivist.readModulesDescriptors(ApplicationArchivist.java:560)
      at com.sun.enterprise.deployment.archivist.ApplicationArchivist.openWith(ApplicationArchivist.java:229)
      at com.sun.enterprise.deployment.archivist.ApplicationFactory.openWith(ApplicationFactory.java:232)
      at org.glassfish.javaee.core.deployment.DolProvider.processDOL(DolProvider.java:193)
      at org.glassfish.javaee.core.deployment.DolProvider.load(DolProvider.java:227)
      at org.glassfish.javaee.core.deployment.DolProvider.load(DolProvider.java:96)
      at com.sun.enterprise.v3.server.ApplicationLifecycle.loadDeployer(ApplicationLifecycle.java:881)
      at com.sun.enterprise.v3.server.ApplicationLifecycle.setupContainerInfos(ApplicationLifecycle.java:821)
      at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:377)
      at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:219)
      at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:491)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$2$1.run(CommandRunnerImpl.java:539)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$2$1.run(CommandRunnerImpl.java:535)
      at java.security.AccessController.doPrivileged(Native Method)
      at javax.security.auth.Subject.doAs(Unknown Source)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$2.execute(CommandRunnerImpl.java:534)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$3.run(CommandRunnerImpl.java:565)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$3.run(CommandRunnerImpl.java:557)
      at java.security.AccessController.doPrivileged(Native Method)
      at javax.security.auth.Subject.doAs(Unknown Source)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:556)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1464)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$1300(CommandRunnerImpl.java:109)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1846)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1722)
      at org.glassfish.admin.rest.utils.ResourceUtil.runCommand(ResourceUtil.java:253)
      at org.glassfish.admin.rest.utils.ResourceUtil.runCommand(ResourceUtil.java:231)
      at org.glassfish.admin.rest.utils.ResourceUtil.runCommand(ResourceUtil.java:275)
      at org.glassfish.admin.rest.resources.TemplateListOfResource.createResource(TemplateListOfResource.java:328)
      at org.glassfish.admin.rest.resources.TemplateListOfResource.post(TemplateListOfResource.java:163)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory$1.invoke(ResourceMethodInvocationHandlerFactory.java:81)
      at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:151)
      at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:171)
      at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$ResponseOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:152)
      at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:104)
      at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:387)
      at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:331)
      at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:103)
      at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:271)
      at org.glassfish.jersey.internal.Errors$1.call(Errors.java:271)
      at org.glassfish.jersey.internal.Errors$1.call(Errors.java:267)
      at org.glassfish.jersey.internal.Errors.process(Errors.java:315)
      at org.glassfish.jersey.internal.Errors.process(Errors.java:297)
      at org.glassfish.jersey.internal.Errors.process(Errors.java:267)
      at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:297)
      at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:254)
      at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:1028)
      at org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpContainer.service(GrizzlyHttpContainer.java:365)
      at org.glassfish.admin.rest.adapter.RestAdapter$2.service(RestAdapter.java:316)
      at org.glassfish.admin.rest.adapter.RestAdapter.service(RestAdapter.java:179)
      at com.sun.enterprise.v3.services.impl.ContainerMapper$HttpHandlerCallable.call(ContainerMapper.java:459)
      at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:167)
      at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:201)
      at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:175)
      at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:235)
      at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119)
      at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:284)
      at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:201)
      at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:133)
      at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:112)
      at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77)
      at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:561)
      at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:112)
      at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:117)
      at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:56)
      at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:137)
      at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:565)
      at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:545)
      at java.lang.Thread.run(Unknown Source)
    ]]
    
    
    [2015-06-05T12:05:23.814+0500] [glassfish 4.1] [SEVERE] [] [javax.enterprise.system.core] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487923814] [levelValue: 1000] [[
      Exception while deploying the app [AshCMS_Project1_AshCMS] : Could not find sub module [AshCMS_ViewController_webapp.war] as defined in application.xml]]
    
    
    [2015-06-05T12:05:30.224+0500] [glassfish 4.1] [INFO] [] [org.jvnet.mimepull.WeakDataFile] [tid: _ThreadID=42 _ThreadName=admin-listener(2)] [timeMillis: 1433487930224] [levelValue: 800] [[
      File C:\Users\TANVIR\AppData\Local\Temp\MIME4440540335098498486.tmp was not delet
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    ed]]
    
    

    Any body can help to find the error.

    Because I'm not able to find the error.

    Concerning

    As indicated in the supported link you must use Glassfish 3.1 NOT Glassfish 4

  • Deploy the domain on the managed server

    version: 10g WLS

    Scenario:
    1 Admin Server and 2 Managed Server in a clustered environment.

    Given that the field is configured on the management server. Are there additional measures for deployment of the field on managed servers or will
    This is done automatically? Previously on v9.2 we made two ways

    1 copy the directory of the domain on each managed server, I don't think that it is a method of support for the deployment.
    2. using pack and unpack commands where you get a managed server template.

    I want just the domain to be recognized and executed on each of the servers managed in the fastest way possible.

    Thank you

    Read this...

    http://e-docs.BEA.com/common/docs100/Pack/commands.html

  • Deploy the Application on the side server.

    Hello

    I have developed an application using Apex in my Local Machine. Now, I want to deploy the Application on the server which is der on another machine.
    even there is some difference in the versions also. my version is 3.0 and 3.1 servers version.
    so, how is it possible to copy my application on the server side?

    Hello

    Check the log of the installation supporting objects.

    and everything is granted correctly?

    Kind regards
    Iloon

  • During the installation of Oracle sector Public Revenue Management Applications, we face "" java.lang.ClassNotFoundException: weblogic.security.Encrypt "issues."

    During the installation of Application Framework via./install.sh script, then that account activity held an entry for "WebLogic Admin User ID system" we face as "' java.lang.ClassNotFoundException: weblogic.security.Encrypt" emits messages. "


    Please, help us to solve this problem as soon as POSSIBLE.


    Details of the environment:

    Operating system: 64-bit 5U8 OEL.


    Follow-up document:

    PSRM - sector Public Revenue Management Oracle Installation Documentation (Doc ID 2067339.1)-PSRM_Installation_Guide_v2_4_0_0_0

    Error message:

    Enter the value to be encrypted: 160122:164014 < criteria > error occurred running /usr/java/jdk1.6.0_45/bin/java-Dweblogic.RootDirectory=/ebiz/app/ouaf/Release-FW-

    V4.2.0.0.0/FW. V4.2.0.0.0/data/product/WLS.splapp weblogic.security.Encrypt:

    Output is Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/security/encryption

    Caused by: java.lang.ClassNotFoundException: weblogic.security.Encrypt

    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:202)

    at java.security.AccessController.doPrivileged (Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)

    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

    The main class is not found: weblogic.security.Encrypt.  Program ends.

    End of output

    The program finished in line 118 of the data/bin/perllib/SPL/splLog.pm.

    Error: install.plx has not completed successfully. On the way out.

    From now on, we have completed the slot status of activities for your reference.

    Sl.No

    Name of the activity

    Status

    1

    Create users and groups

    Completed

    2

    Install prerequisite software

    Completed

    3

    Oracle 11.2.0.3 database

    Completed

    4

    Java 6

    Completed

    5

    Oracle WebLogic 10.3.6

    Completed

    6

    Hibernation 4.1.0

    Completed

    7

    Micro Focus Server 5.1 WrapPack 8

    Completed

    8

    Install Oracle Utilities application.

    Here issue facing

    9

    Install Oracle Utilities Application Framework Service Pack 1.

    Pending

    10

    Install Oracle Public Revenue Management sector

    Pending

    11

    Deploy Oracle sector Public Revenue Management application

    Pending















    Concerning

    Knani G

    Hello

    During the installation, we have wrongly given Home Directory Web Application Server like/Ebiz/app/woof/Middleware

    So we changed the Homepage Directory Web Application Server as /ebiz/app/ouaf/Middleware/wlserver_10.3

    then the problem is resolved.

    Thanks for the support.

    Concerning

    Villi Kumar

  • Soa composite application with managed server deployment

    Hello

    I have an admin server and two managed servers; SOAServer and OSBServer.
    My requirement is to deploy an application on the managed server that is to say; SOA infra (SOAServer) by EM. But when I connect to the EM console I see SOA-Infra (AdminServer) and allows you to deploy the target server Admin application.
    Is it possible to create a SOA-Infra Server SOA or what a change of configuration to do.


    Thanks in advance.

    Hello

    Maybe there is a problem when you created the domain...

    When I go to EM I see under Farm_soa_domain > SOA > soa-infra (soa_server1), if you see soa-infra (AdminServer), it is not a good sign...

    If you go to Farm_soa_domain > Weblogic domain > soa_domain and click right button on the servers you should see "Deploying applications" for each server, but "Deployment SOA" only for the soa server...

    Please let me know if this was helpful...

    See you soon,.
    Vlad

  • Do not receive the classes in the optional package on managed server

    Hello

    I have a strange problem. I have an optional package and an application that refer to him through MANIFEST. MF file.
    When I deploy my application and package optional on Admin Server, everything works well.

    But, when I deploy them both on my managed server (soa_server1), the application is indicated as being coupled with the optional package (in the console), but classes are not available in the application.
    What could possibly go wrong?

    I think your problem is the relative URL when you use the Class-Path option (http://download.oracle.com/javase/1.5.0/docs/guide/extensions/spec.html#bundled)

    Can you put the classes you need directly in the optional package, rather than using the Class-Path option?

  • WebLogic Managed Server Error - JavaEE agent test failed in ODI

    Hi all
    Please help the mind the question below!
    Versions: ODI 11.1.1 and Weblogic 11g Release1 10.3.3.
    Server: Windows 2003 server, 32-bit operating system.
    -> able to connect the agent independent successfully.

    Question: In Weblogic, the server administrator will connect without error. But when I run the managed server 'odi_server1', we found major error that occur when connecting to the master repository. Stuck under the error log.

    Help, please!

    # < 23 March 2011 15:58:16 IST > < error > < hats > < admin-3fqjbc1oo > < odi_server1 > < ExecuteThread [ASSET]: '0' for the queue: '(self-adjusting) weblogic.kernel.Default' > < < WLS Kernel > > < 1300876096336 > < BEA-149231 > < cannot create the activation state to true for the application "oraclediagent".
    weblogic.application.ModuleException: [HTTP:101216] Servlet: 'AgentServlet' failed by preloading at startup in a Web application: "oraclediagent."
    ODI-1404: OracleDIAgent Agent start failed: an authentication error occurred when connecting to the master repository.
    at oracle.odi.runtime.agent.servlet.AgentServlet.init(AgentServlet.java:233)
    at javax.servlet.GenericServlet.init(GenericServlet.java:241)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletInitAction.run (StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    to weblogic.servlet.internal.StubLifecycleHelper. < init > (StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    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:41)
    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:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    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:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1514)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    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:41)
    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:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    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:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Caused by: ODI-1404: Agent OracleDIAgent start failure: an authentication error occurred when connecting to the master repository.
    at oracle.odi.runtime.agent.servlet.AgentServlet.init(AgentServlet.java:233)
    at javax.servlet.GenericServlet.init(GenericServlet.java:241)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletInitAction.run (StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    to weblogic.servlet.internal.StubLifecycleHelper. < init > (StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    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:41)
    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:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    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:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Thank you
    Kenny

    Hi Kenny,

    This error seems to indicate that the credentials that you specified to the master repo do not work. Either ensure that the work of connecting to the pension, or rerun the installation program and specify a set known good powers it.

    Kind regards
    Robb Salzmann

  • Error trying to deploy the application on the content of webcenter

    Hi, Im trying to deploy an application to webcenter content server, but I get the following error.

    Can someone help me?

    Weblogic Server Exception: weblogic.application. ModuleException: [HTTP:101216] Servlet: 'wcmInitServlet' failed by preloading at startup in a Web application: 'myapp'.

    Oracle.Stellent.WCM.common. LocalizedRuntimeException: oracle.stellent.wcm.client. ApplicationException: application initialization error

    to oracle.stellent.wcm.javaee. ServletApplicationFactory. createInstance (ServletApplicationFactory. ) java: 72)

    to oracle.stellent.wcm.javaee. ServletHelper. initializeApplication (ServletHelper.java:192)

    to oracle.stellent.wcm.javaee. servlet.filter. WCMInitializeServlet.init (WCMInitializeServlet.java:43)

    to javax.servlet.GenericServlet. Init(GenericServlet.Java:241)

    to weblogic.servlet.internal. StubSecurityHelper$ ServletInitAction.run (StubSecurityHelper.java:283)

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

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

    to weblogic.servlet.internal. StubSecurityHelper. createServlet (StubSecurityHelper.java:64)

    to weblogic.servlet.internal. StubLifecycleHelper. createOneInstance (StubLifecycleHelper.java:58)

    to weblogic.servlet.internal. StubLifecycleHelper. < init > (StubLifecycleHelper.java:48)

    to weblogic.servlet.internal. ServletStubImpl. prepareServlet (ServletStubImpl.java:539)

    to weblogic.servlet.internal. WebAppServletContext. preloadServlet (WebAppServletContext.java:1981)

    to weblogic.servlet.internal. WebAppServletContext. loadServletsOnStartup (WebAppServletContext.java:1955)

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

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

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

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

    to weblogic.application.internal. the stream of . ModuleStateDriver$ 3.next (ModuleStateDriver.java:425)

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

    to weblogic.application.internal. the stream of . ModuleStateDriver.start (ModuleStateDriver.java:119)

    to weblogic.application.internal. the stream of . ScopedModuleDriver.start (ScopedModuleDriver.java:200)

    to weblogic.application.internal. the stream of . ModuleListenerInvoker. start(ModuleListenerInvoker. ) java: 247)

    to weblogic.application.internal. the stream of . ModuleStateDriver$ 3.next (ModuleStateDriver.java:425)

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

    to weblogic.application.internal. the stream of . ModuleStateDriver.start (ModuleStateDriver.java:119)

    to weblogic.application.internal. the stream of . StartModulesFlow. activate(StartModulesFlow. ) java: 27)

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

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

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

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

    to weblogic.application.internal. DeploymentStateChecker. Activate (DeploymentStateChecker.java:161)

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

    to weblogic.deploy.internal. TargetServer.operations. AbstractOperation.activate (AbstractOperation.java:569)

    to weblogic.deploy.internal. TargetServer.operations. ActivateOperation. activateDeployment (ActivateOperation.java:150)

    to weblogic.deploy.internal. TargetServer.operations. ActivateOperation.doCommit (ActivateOperation.java:116)

    to weblogic.deploy.internal. TargetServer.operations. AbstractOperation.commit (AbstractOperation.java:323)

    to weblogic.deploy.internal. targetserver. DeploymentManager. handleDeploymentCommit (DeploymentManager.java:844)

    to weblogic.deploy.internal. targetserver. DeploymentManager. activateDeploymentList (DeploymentManager.java:1253)

    to weblogic.deploy.internal. targetserver. DeploymentManager. handleCommit (DeploymentManager.java:440)

    to weblogic.deploy.internal. targetserver. DeploymentServiceDispatcher. validation (DeploymentServiceDispatcher. ) java: 163)

    to weblogic.deploy.service. internal.TargetServer. DeploymentReceiverCallbackDeli verer.doCommitCallback (DeploymentReceiverCallbackDeliverer.java:195)

    to weblogic.deploy.service. internal.TargetServer. DeploymentReceiverCallbackDeli verer.access$ 100 (DeploymentReceiverCallbackDeliverer.java:13)

    to weblogic.deploy.service. internal.TargetServer. DeploymentReceiverCallbackDeli humour$ 2.run (DeploymentReceiverCallbackDeliverer.java:68)

    to weblogic.work. SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl. ) java: 545)

    to weblogic.work.ExecuteThread. run (ExecuteThread.java:256)

    to weblogic.work.ExecuteThread. Run(ExecuteThread.Java:221)

    Caused by: oracle.stellent.wcm.client. ApplicationException: application initialization error

    to oracle.stellent.wcm.client. ClientApplication.initialize (ClientApplication.java:316)

    to oracle.stellent.wcm.javaee. . ServletClientApplication < init > (ServletClientApplication.java:54)

    to oracle.stellent.wcm.javaee. ServletApplicationFactory. createInstance (ServletApplicationFactory. ) java: 61)

    ... more than 45

    Caused by: oracle.stellent.ridc. IdcClientException: Content Server not found "SSXARunTime" function

    to oracle.stellent.wcm.core.idc. IdcClientFactory. validateConfiguration (IdcClientFactory.java:166)

    to oracle.stellent.wcm.client. ClientApplication.initialize (ClientApplication.java:267)

    ... more than 47

    Caused by: oracle.stellent.ridc.protocol. ProtocolException: failed to initialize the idc connection: / / myserverip:4444

    to oracle.stellent.ridc.protocol. intradoc.Socket. SocketConnectionManager. initializeConnection (SocketConnectionManager.java:35)

    to oracle.stellent.ridc.protocol. intradoc.Socket. SocketConnectionManager. initializeConnection (SocketConnectionManager.java:22)

    to oracle.stellent.ridc.protocol. impl. SimpleConnectionPool. acquireConnection (SimpleConnectionPool.java:44)

    to oracle.stellent.ridc. IdcClient.sendRequest (IdcClient.java:151)

    to oracle.stellent.wcm.core.idc. AbstractIdcApi.executeService (AbstractIdcApi.java:163)

    to oracle.stellent.wcm.core.idc. impl. AdminApi.runTimeConnect (AdminApi.java:48)

    to oracle.stellent.wcm.core.idc. IdcClientFactory. validateConfiguration (IdcClientFactory.java:148)

    ... more than 48

    Caused by: oracle.stellent.ridc.protocol. ProtocolException: java.net.ConnectException: Connection timed out: connect

    to oracle.stellent.ridc.protocol. intradoc.Socket. SocketConnection.connect (SocketConnection.java:52)

    to oracle.stellent.ridc.protocol. intradoc.Socket. SocketConnectionManager. initializeConnection (SocketConnectionManager.java:33)

    ... more than 54

    Caused by: java.net.ConnectException: Connection timed out: connect

    to java.net. DualStackPlainSocketImpl. connect0(Native Method)

    to java.net. DualStackPlainSocketImpl. socketConnect (DualStackPlainSocketImpl.java:79)

    to java.net. AbstractPlainSocketImpl. doConnect (AbstractPlainSocketImpl.java:339)

    to java.net. AbstractPlainSocketImpl. connectToAddress (AbstractPlainSocketImpl.java:200)

    to java.net. AbstractPlainSocketImpl. Connect (AbstractPlainSocketImpl.java:182)

    impossible. Connect (PlainSocketImpl.java:172)

    to java.net.SocksSocketImpl. Connect (SocksSocketImpl.java:392)

    to java.net.Socket.connect (Socket.java:579)

    to java.net.Socket.connect (Socket.java:528)

    at java.net.Socket. < init >(Socket. ) java: 425)

    at java.net.Socket. < init >(Socket. ) java: 208)

    to oracle.stellent.ridc.protocol. intradoc.Socket. SocketConnection.createSocket (SocketConnection.java:126)

    to oracle.stellent.ridc.protocol. intradoc.Socket. SocketConnection.connect (SocketConnection.java:44)

    ... 55 more

    [09:35:12] caused by: java.lang.Throwable: substituted except oracle.stellent.wcm.client. ApplicationException, who is not a builder of the original - message application initialization error string

    [09:35:12] check the server logs or the console of the server for more details.

    Solved. You must clear the .ear, restart UCM, and then deploy the application again.

  • BDE 2.1.1 Fling Management server does not connect to vCenter

    I have the management server deployed in the environment, the plugin installed successfully and vCenter is connected to the administration via the Web interface of vCenter server. This problem occurs when I go to a data store or add it to a network.

    I get the following (via the GUI or CLI):

    Version: 2.1.1

    Welcome to Serengeti CLI

    Serengeti > Connect - host hadoop - mgmt.or1.omniture.com:8443

    Enter the user name: [email protected]

    Enter password: *.

    Connected

    Serengeti > data store, add - name defaultDS - spec DS10HadoopOR1 - shared type

    datastore defaultDS add failed: unable to connect to vCenter Server.

    The error in the serengeti.log file is a generic JAVA error. The vCenter is 5.5U2 and ESXi hosts are 5.5U1.

    --

    Chris.

    Thanks Charlie for a helping hand.

    I found some info in the serengeti.log and the serengeti - boot.log Chris post:

    Serengeti - boot.log:

    I, [2015-02 - 12 T 20: 56:27.722910 #3336] INFO -: templateVmName: vSphere Big Data Extensions - Node Template

    Serengeti.log:

    Caused by: com.vmware.bdd.utils.AuAssert: FAILURE

    at com.vmware.bdd.utils.AuAssert.FAILURE(AuAssert.java:28)

    at com.vmware.bdd.utils.AuAssert.check(AuAssert.java:43)

    at com.vmware.bdd.utils.AuAssert.check(AuAssert.java:50)

    at com.vmware.bdd.service.impl.ClusteringService.getTemplateVm(ClusteringService.java:408)

    [2015 02-12 T 14: 46:47.438 - 0700] INFO Event_Expander | com.vmware.bdd.service.event.EventScheduler: to develop events: [{me = null: VirtualMachine:vm - 136, event = VmResourcePoolMoved}]

    [2015 02-12 T 14: 46:47.626 - 0700] INFO pool-2-wire-4 | com.vmware.bdd.service.utils.VcResourceUtils: folder xxx-uuid was not found.

    [2015 02-12 T 14: 46:47.627 - 0700] INFO pool-2-wire-4 | com.vmware.bdd.service.event.VmEventManager: VM root folderxxx-uuid is not yet created. Ignore the event outside of VM.

    [2015 02-12 T 14: 46:58.393 - 0700] Event_Handler INFO | com.vmware.bdd.service.event.EventScheduler: processed 2 new events

    [2015 02-12 T 14: 46:58.394 - 0700] Event_Handler INFO | com.vmware.bdd.service.event.EventScheduler: processed events: [{me = null: VirtualMachine:vm - 137, event = VmResourcePoolMoved}, {me = null: VirtualMachine:vm - 136, event = VmResourcePoolMoved}]

    [2015 02-12 T 14: 47:13.183 - 0700] Http-8443-5 ERROR | com.vmware.bdd.rest.RestResource: rest call error

    com.vmware.bdd.exception.BddException: unable to connect to vCenter Server.

    at com.vmware.bdd.exception.BddException.INIT_VC_FAIL(BddException.java:189)

    at com.vmware.bdd.rest.RestResource.verifyInitialized(RestResource.java:1175)

    at com.vmware.bdd.rest.RestResource.addDatastore(RestResource.java:636)

    This log shows THAT BDE Server cannot find the node named "vSphere Big Data Extensions - Node Template" model.  When you deploy the BDE Fling, the management server and hadoop-model VM must be deployed in the same folder in, under a pile of vCenter.  Please check and follow the BDE 2.1.1 Fling deployment guide and deploy again.  BTW, you can customize the name of the server VM and the VM model during their deployment and make sure the correct model name together when you deploy the server VM.

  • obiee11.1.1.7g installation of evolution, second managed server not able to boot

    Hi all


    Help, please...


    We have installed an Obiee11g (SW only) on server1, now we are changing with another facility on server2 (both are virtual machines).

    for Server1, all services are working well, but what installation on server2 his starts don't not managed server.

    process struck at 72% and now I see again and continue the active buttons.

    I see idle state of the node Manager of Server2 managed server in weblogic console.

    Here is the error message:

    Sending start request for managed server: bi_server2 (through mbean: com.bea:Name = bi_server2, Type = ServerLifeCycleRuntime)

    [2014 04-22 T 19: 24:43.644 + 02:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000KM88690DkZECj7fP8o1JLWex000006, 0] waiting for the managed server to start (10 minutes timeout)

    [2014 04-24 T 07: 24:42.090 + 02:00] [as] [ERROR] [] [oracle.as.install.bi] [tid: 15] [ecid: 0000KM88690DkZECj7fP8o1JLWex000006, 0] time-out the server managed wait to start. [[

    java.util.concurrent.TimeoutException: Timeout in waitForCondition()

    at oracle.bi.management.wlsprovision.scaleout.ConditionWaiter.waitForCondition(ConditionWaiter.java:58)

    at oracle.bi.management.wlsprovision.scaleout.AdminServerProxyImpl.startManagedServer(AdminServerProxyImpl.java:588)

    at oracle.bi.management.wlsprovision.scaleout.ScaleOutProcessorImpl.startManagedServer(ScaleOutProcessorImpl.java:179)

    at oracle.as.install.bi.biconfig.standard.StartScaledOutManagedServerTask.doExecute(StartScaledOutManagedServerTask.java:38)

    at oracle.as.install.bi.biconfig.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:70)

    at oracle.as.install.bi.biconfig.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:66)

    at oracle.as.install.bi.biconfig.BIConfigMain.doExecute(BIConfigMain.java:113)

    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)

    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)

    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)

    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)

    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)

    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)

    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)

    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)

    at java.lang.Thread.run(Thread.java:662)

    Hi all

    Thanks for the replies

    He talked with widows firewall. I turned on the fire wall and re start the balance and it worked.

    By clicking on continue most of the time works. but as I wanted to try and find out why he was arrested I did some research and found the issue with the firewall.

  • Cannot start WebLogic managed server

    Hello

    I have a domain weblogic on a physical machine with two servers (AdminServer and osb_server1 [Managed Server]). (Weblogic 10.3.6)
    I started nodeManager and registered the domain by using the command nmEnroll in WLST.
    I can start "AdminServer" drawn nmStart ('AdminServer') command. AdminServer start correctly.

    However, when I want to start managed server (osb_server1):
    1. in the WebLogic administration console, he said:
    (Warning) User is not authorized to perform operations of the lifecycle on the server osb_server1.
    (Warning) All selected servers are currently in a State that is not compatible with this operation or are not associated with a Node Manager running or you are not authorized to perform the requested action. No action will be taken.

    2 using the startManagedWebLogic.cmd script after you have entered the name of user and password, it returns authentication denied.
    22 October 2012 10:31:21 IS > < critical > < security > < BEA-090403 > < authentication user weblogic denied >
    < 22 October 2012 10:31:21 IS > < critical > < WebLogicServer > < BEA-000386 > < server subsystem failed. Reason: weblogic.security.SecurityInitializationException: authentication of user weblogic has denied.
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:966)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1054)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    Truncated. check the log file full stacktrace
    Caused by: javax.security.auth.login.FailedLoginException: [Security: 090303] authentication failed: user weblogic weblogic.security.providers.authentication.LDAPAtnDelegateException: [Security: 090295] caught unexpected exception
    at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:251)
    to com.bea.common.security.internal.service.LoginModuleWrapper$ 1.run(LoginModuleWrapper.java:110)
    at java.security.AccessController.doPrivileged (Native Method)
    at com.bea.common.security.internal.service.LoginModuleWrapper.login(LoginModuleWrapper.java:106)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    Truncated. check the log file full stacktrace
    >

    3 using the nmStart nodeManager command, it complains boot.properties file.

    I can connect AdminServer with the same account with no problem.

    Best regards

    Published by: ToRRaDo on October 22, 2012 17:25

    Did you reboot AdminServer after deleting the LDAP authentication provider?
    I think that your managed server is always try to authenticate the user via ldap authentication provider.

  • Problem when deploying an ADF application to a remote server

    Hello

    I have an app ADf with just a Page JSF (created automatically as a form of parameter ADF data control)...

    I run the page on the integrated weblogic server and it works fine,

    When I have it deployed on a remote server, the successful deployment but when I tried to run the page using http:// < server-url >: < server-port > /Portal demo-ViewController-context-root /

    the button send is not made, all items on the page EXCEPT the submit button!

    Any Suggestion?

    P.S: JDeveloper version is 11.1.1.6.

    Thanks in advance,

    Kind regards

    OLA,

    Have you checked that the ADF runtime is installed on the remote server and the managed server, you perform the deployment has access to them?

    You see error messages in the server log file?

    Timo

  • Remote server Weblogic deployment of Application ADF

    Hello world

    I created an Application ADF 11.1.1.2 and deployed successfully on the server remote weblogic 10.3.3 in the same instance.

    I want to know can we create ADF application in an instance and deploy in remote weblogic server, create different instance data Source?

    Let me put it differently.

    I created ADF Application using the test instance and now I want to move to PROD but I don't have access to the database of the PROD but I can do the DBA run the PROD database scripts that are needed for the application runs successfully, is there so that I can create using the test instance and creation of DataSource application in weblogic server giving details of database of PROD?

    Is it possible I can give DBA access to enter the connection details of database for my application as change any file in ADF Application like Model.jpx?

    Please give me solutions?

    Thank you.

    Your application should use a DataSource WebLogic - then you can define this data source on any server you want pointing to a database you need.
    Info here:
    http://download.Oracle.com/docs/CD/E17904_01/Web.1111/b31974/bcservices.htm#CHDJDBJB

  • Unable to deploy adf 12 c app server glassfish 3.1.2

    Hi all

    I'm trying to deploy adf apps (.ear) application developed on 12 c in Server glassfish 3.1.2

    Here is the error that I got when I deployed.

    [#|2015-07-01T20:02:49.422+0800|SEVERE|glassfish3.1.2|javax.enterprise.resource.webcontainer.jsf.config|_ThreadID=86;_ThreadName=Thread-2;|Critical error during deployment: 
    com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! org.jboss.weld.jsf.WeldPhaseListener cannot be cast to javax.faces.event.PhaseListener
      at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:375)
      at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:225)
      at org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:4750)
      at com.sun.enterprise.web.WebModule.contextListenerStart(WebModule.java:550)
      at org.apache.catalina.core.StandardContext.start(StandardContext.java:5366)
      at com.sun.enterprise.web.WebModule.start(WebModule.java:498)
      at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:917)
      at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:901)
      at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:733)
      at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:2019)
      at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1669)
      at com.sun.enterprise.web.WebApplication.start(WebApplication.java:109)
      at org.glassfish.internal.data.EngineRef.start(EngineRef.java:130)
      at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:269)
      at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:301)
      at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:461)
      at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:240)
      at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:389)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:348)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:363)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1085)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$1200(CommandRunnerImpl.java:95)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1291)
      at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1259)
      at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:214)
      at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:207)
      at org.glassfish.admin.rest.resources.TemplateListOfResource.createResource(TemplateListOfResource.java:148)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      at java.lang.reflect.Method.invoke(Method.java:606)
      at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
      at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205)
      at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
      at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)
      at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
      at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
      at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
      at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
      at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
      at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
      at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
      at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)
      at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)
      at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)
      at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)
      at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer._service(GrizzlyContainer.java:182)
      at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer.service(GrizzlyContainer.java:147)
      at org.glassfish.admin.rest.adapter.RestAdapter.service(RestAdapter.java:148)
      at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
      at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:117)
      at com.sun.enterprise.v3.services.impl.ContainerMapper$Hk2DispatcherCallable.call(ContainerMapper.java:354)
      at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
      at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:860)
      at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:757)
      at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1056)
      at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:229)
      at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
      at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
      at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
      at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
      at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
      at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
      at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
      at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
      at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
      at java.lang.Thread.run(Thread.java:745)
    Caused by: java.lang.ClassCastException: org.jboss.weld.jsf.WeldPhaseListener cannot be cast to javax.faces.event.PhaseListener
      at com.sun.faces.config.processor.LifecycleConfigProcessor.addPhaseListeners(LifecycleConfigProcessor.java:148)
      at com.sun.faces.config.processor.LifecycleConfigProcessor.process(LifecycleConfigProcessor.java:111)
      at com.sun.faces.config.processor.AbstractConfigProcessor.invokeNext(AbstractConfigProcessor.java:114)
      at com.sun.faces.config.processor.FactoryConfigProcessor.process(FactoryConfigProcessor.java:222)
      at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:360)
      ... 66 more
    |#]
    

    I have found the WeldPhaseListener class in the weblogic.server.merged.jar class but this pot is not in my ear which I am deploying. Even I did grep for this class in the ear, and nothing is found.


    Can someone tell me what could be the reasons for this error and also guide me on how to fix this error, while deploying?


    Thank you

    Naveen dauby

    Shay,

    I couldn't find any reference to this class in all the projects that we have.

    Finally with small trial and error approach, I could find the file asking the questions.

    One of our projects is the file with the following content beans.xml.

    
    
    

    As you said, this file is not used by the adf and it became strong at the point of stem.

    The beans.xml is not longer used in our project and remove this file / filtering this file in the deployment of war profile helped me fix this problem.

    Thanks a lot for your help.

    Kind regards

    Naveen Dauby.

Maybe you are looking for