Exception in Weblogic Server Starting

Hi all,
While starting weblogic server, I can see some exception as follows but server is started. Because of this I can't able to deploy OSM cartridges.
java.sql.SQLSyntaxErrorException: ORA-04092: cannot COMMIT in a trigger
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.ja
va:91)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:1
33)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java
:206)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1034)
at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.
java:191)
at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableSta
tement.java:950)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStateme
nt.java:1223)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePrep
aredStatement.java:3386)
at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStat
ement.java:3487)
at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStat
ement.java:3858)
at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePrepa
redStatementWrapper.java:1374)
at oracle.jdbc.oracore.OracleTypeADT.initMetadata(OracleTypeADT.java:535
at oracle.jdbc.oracore.OracleTypeADT.init(OracleTypeADT.java:462)
at oracle.sql.ArrayDescriptor.initPickler(ArrayDescriptor.java:1678)
at oracle.sql.ArrayDescriptor.<init>(ArrayDescriptor.java:291)
at oracle.sql.ArrayDescriptor.createDescriptor(ArrayDescriptor.java:206)
at oracle.sql.ArrayDescriptor.createDescriptor(ArrayDescriptor.java:175)
at oracle.sql.ArrayDescriptor.createDescriptor(ArrayDescriptor.java:158)
at oracle.sql.ArrayDescriptor.createDescriptor(ArrayDescriptor.java:125)
at oracle.jdbc.driver.NamedTypeAccessor.otypeFromName(NamedTypeAccessor.
java:84)
at oracle.jdbc.driver.TypeAccessor.initMetadata(TypeAccessor.java:89)
at oracle.jdbc.driver.T4CCallableStatement.allocateAccessor(T4CCallableS
tatement.java:629)
at oracle.jdbc.driver.OracleCallableStatement.registerOutParameterIntern
al(OracleCallableStatement.java:167)
at oracle.jdbc.driver.OracleCallableStatement.registerOutParameter(Oracl
eCallableStatement.java:208)
at oracle.jdbc.driver.OracleCallableStatementWrapper.registerOutParamete
r(OracleCallableStatementWrapper.java:1584)
at weblogic.jdbc.wrapper.CallableStatement_oracle_jdbc_driver_OracleCall
ableStatementWrapper.registerOutParameter(Unknown Source)
at com.mslv.oms.handler.util.j.prepareStatement(Unknown Source)
at com.mslv.oms.dataaccesslayer.CallableProxy.prepareStatement(Unknown S
ource)
at com.mslv.oms.dataaccesslayer.a.execute(Unknown Source)
at com.mslv.oms.dataaccesslayer.CallableProxy.execute(Unknown Source)
at com.mslv.oms.handler.util.e.a(Unknown Source)
at com.mslv.oms.eventengine.EventDispatcherEJB.processTimeout(Unknown So
urce)
at com.mslv.oms.eventengine.EventDispatcher_86q3j1_EOImpl.processTimeout
(EventDispatcher_86q3j1_EOImpl.java:73)
at com.mslv.oms.poller.a.handleNotification(Unknown Source)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor$ListenerWrapper
.handleNotification(DefaultMBeanServerInterceptor.java:1732)
at javax.management.NotificationBroadcasterSupport.handleNotification(No
tificationBroadcasterSupport.java:257)
at javax.management.NotificationBroadcasterSupport$SendNotifJob.run(Noti
ficationBroadcasterSupport.java:322)
at javax.management.NotificationBroadcasterSupport$1.execute(Notificatio
nBroadcasterSupport.java:307)
at javax.management.NotificationBroadcasterSupport.sendNotification(Noti
ficationBroadcasterSupport.java:229)
at javax.management.timer.Timer.sendNotification(Timer.java:1237)
at javax.management.timer.Timer.notifyAlarmClock(Timer.java:1206)
at javax.management.timer.TimerAlarmClock.run(Timer.java:1289)
at java.util.TimerThread.mainLoop(Timer.java:512)
at java.util.TimerThread.run(Timer.java:462)
<Nov 22, 2011 3:26:33 PM GMT+05:30> <Error> <oms> <BEA-000000> <util.e: Failed t
o execute GetOrderTransitionProxy
com.mslv.oms.dataaccesslayer.ProxyException: ORA-04092: cannot COMMIT in a trigg
er
Nested Exception: ORA-04092: cannot COMMIT in a trigger
Can anybody pls help me to resolve this issue asap...
Thanks in advance
Bharathi

Bharathi;
The error indicates that a trigger is being executed. OSM DB schema does not make use of triggers at all. Has anyone added triggers to the OSM DB schema? If so this should not be done - modification or direct access of the OSM DB schema is not supported.
Brian.

Similar Messages

  • Bind custom object in weblogic server start

    I want to bind my custom object to jndi when weblogic server start. how can i do?

    Bonjour Yiwen,
    That could easily done by registering a startup class in weblogic server that will do the binding of the object in the JNDI tree (it can also create all the subcontexts you need).
    Below is some code that works fine on WLS 5.1:
    a.. a custom object
    package StartupJNDI;
    public class CustomObject extends Object
    protected String name;
    public CustomObject ( String aszName )
    name = aszName;
    public String getName()
    return name;
    public void setName(String newName)
    name = newName;
    a.. a startup class
    package StartupJNDI;
    import javax.naming.*;
    public class Registration
    public Registration()
    InitialContext initCtx = null;
    try
    initCtx = new InitialContext ();
    initCtx.bind ( "Startup Registered Object" , new CustomObject ( "This is a void object" ) );
    catch ( Exception ex )
    ex.printStackTrace ( System.err );
    public static void main(String[] args)
    new Registration();
    a.. a startup class in weblogic.properties:
    weblogic.system.startupClass.JNDIStartupRegistration=StartupJNDI.Registration
    Please, be sure that the path to these classes is also registered in the WEBLOGIC_CLASSPATH system property (e.g. : in your startweblogic.cmd file on Windows NT).
    You can check that the object is bound in the JNDI tree through the console.
    Hope this helps,
    Cordialement,
    Etienne
    Yiwen Tian <[email protected]> a écrit dans le message : [email protected]..
    >
    I want to bind my custom object to jndi when weblogic server start. how can i do?
    [att1.html]

  • Weblogic server start error: java.lang.OutOfMemoryError

    Hi:
              when i start weblogic server, i met following error !
              java.lang.OutOfMemoryError
              <<no stack trace available>>
              why?
              thanks!
              starting output as follow :
              C:\bea7\user_projects\zhudomain>startweblogic
              C:\bea7\user_projects\zhudomain>echo off
              CLASSPATH=C:\bea7\jdk131_03\lib\tools.jar;C:\bea7\weblogic700\integration\li
              b\wl
              pi-worklist.jar;C:\bea7\weblogic700\samples\server\eval\pointbase\lib\pbserv
              er42
              ECF172.jar;C:\bea7\weblogic700\server\lib\weblogic_sp.jar;C:\bea7\weblogic70
              0\se
              rver\lib\weblogic.jar;
              PATH=.;C:\bea7\weblogic700\server\bin;C:\bea7\jdk131_03\bin;C:\PROGRA~1\RATI
              ONAL
              \RATION~1\NUTCROOT\bin;C:\PROGRA~1\RATIONAL\RATION~1\NUTCROOT\bin\x11;C:\PRO
              GRA~
              1\RATIONAL\RATION~1\NUTCROOT\mksnt;c:\Oracle\Ora81\bin;C:\WINNT\system32;C:\
              WINN
              T;C:\WINNT\System32\Wbem;C:\PROGRA~1\ULTRAE~1;C:\CTEX\MiKTeX\TeXMF\miktex\bi
              n;C:
              \CTEX\MiKTeX\LocalT~1\cct\bin;C:\Program Files\Rational\common;C:\Program
              Files\
              Rational\ClearQuest;C:\Program Files\Rational\Rose\TopLink\;C:\Program
              Files\Rat
              ional\Rational Test;C:\bea7\jdk131_03\bin
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://[hostname]:[port]/console *
              C:\bea7\user_projects\zhudomain>"C:\bea7\jdk131_03\bin\java" -hotspot -Xms32
              m -X
              mx200m -Dweblogic.security.SSL.trustedCAKeyStore=C:\bea7\weblogic700\server\
              lib\
              cacerts -Dweblogic.Name=myserver -Dbea.home="C:\bea7" -Dweblogic.management.
              user
              name= -Dweblogic.management.password= -Dweblogic.ProductionModeEnabled= -Dja
              va.s
              ecurity.policy="C:\bea7\weblogic700\server\lib\weblogic.policy"
              weblogic.Server
              <2002-11-13 ÏÂÎç04ʱ21·Ö01Ãë> <Info> <Security> <090065> <Getting boot
              identity
              from user.>
              Enter username to boot WebLogic server:system
              Enter password to boot WebLogic server:
              Starting WebLogic Server...
              <2002-11-13 ÏÂÎç04ʱ21·Ö08Ãë> <Notice> <Management> <140005> <Loading
              configurat
              ion C:\bea7\user_projects\zhudomain\.\config.xml>
              java.lang.OutOfMemoryError
              <<no stack trace available>>
              

    Hi JLK,
    Now as you can see that you are getting "java.lang.OutOfMemoryError: PermGen space" during the activation on an application it means that you are application needs more space in the non-heap part of the JVM which is PermGen to create the Classes, Class Structures, Methods and Reflection Objects of this applications hence you are getting this issue.
    Now how to solve this issue you try the following check list which would help you resolve this issue and overcome same type of issue in future
    1). Make Sure that the PermGen Area is not set to a very less value.
    2). Usually if an Application has Many JSP Pages in that case every JSP will be converted to a *.class file before JSP Request Process. So a large number of JSPs causes generation of a Large number of *.class files all these classes gets loaded in the PermGen area.
    3). While allocating the -XX:MaxPermSize make sure that you follow a rough Formula… which works in most of the Application Servers.
    MaxPermSize = (Xmx/3) —- Very Special Cases (One Third of maximum Heap Size)
    MaxPermSize = (Xmx/4) —- Recommended (One Fourth Of maximum Heap Size
    To get more information on this I would suggest you to have look at the below link which would surely help you in this case
    Topic: OutOfMemory Causes and First Aid Steps?
    http://middlewaremagic.com/weblogic/?p=4464
    Regards,
    Ravish Mody

  • Permission error when WebLogic Server starts up

    Dear WebLogic gurus
    When I try to startup WebLogic server with 80 listening port in Solaris 2.6,
    it did not startup due to permission problem.
    The error log said that
    Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> **** Unable to create server
    socket. Perhaps another process is using port 80.
    Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> java.net.BindException:
    Permission denied
    To solve this problem, I just tried to startup WebLogic with root user
    because I was sure that another process did not run with port 80.
    It works now but with only super user. This kind of problems did not happen
    with 7001 port.
    What's the reason of this ?
    Thanks in advance

    Hi there.. Looking at your error, it appears that you there is a web server
    already running and bound to port 80. Check with your system admins to see if
    you have a web server installed on port 80. Another easy way to figure out
    would be a simple telnet to your server name at port 80. Try this:
    $ telnet localhost (or servername) 80
    GET / HTTP/1.0
    If that works any returns any data, you've got a webserver running at port 80.
    Work with your system admin's to turn off that running webserver and picking
    another port for WebLogic.
    Under UNIX, anything under port 1024 is considered a privileged port and root
    would have to start the server to be able to bind to port 80. You'll also want
    to enable the setUID program in weblogic.properties. Look for the following
    lines in your weblogic.properties and see if they apply.
    # UNIX only: If running on port 80 on UNIX, enable the setUID program
    #weblogic.system.enableSetUID=false
    # UNIX only: Unprivileged user to setUID to after starting up
    # WebLogic Server on port 80
    #weblogic.system.nonPrivUser=nobody
    Hope this helps.
    --Vinny
    Changyong wrote:
    Dear WebLogic gurus
    When I try to startup WebLogic server with 80 listening port in Solaris 2.6,
    it did not startup due to permission problem.
    The error log said that
    Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> **** Unable to create server
    socket. Perhaps another process is using port 80.
    Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> java.net.BindException:
    Permission denied
    To solve this problem, I just tried to startup WebLogic with root user
    because I was sure that another process did not run with port 80.
    It works now but with only super user. This kind of problems did not happen
    with 7001 port.
    What's the reason of this ?
    Thanks in advance

  • 10.3.6 weblogic server start error

    on windows 7 I installed oepe-juno-installer-12.1.1.1.0.201207241647-10.3.6-win32 (bundled installer) from http://www.oracle.com/technetwork/developer-tools/eclipse/downloads/oepe-bundle-1861326.html
    at completion of the installation, started the Quickstart app, then clicked on 'Start WebLogic Server 10.3.6 Samples Domain'
    get error message "\Java\jre1.6.0.23\lib\ext\QTJava.zip was unexpected at this time."
    thanks for any assistance you can provide.

    QTJava.zip was in the system CLASSPATH. removed it and that resolved the issue.

  • Chain warning exceptions on weblogic server console

    Hi,
    The below warnings are continuously observed on the weblogic server due to which OSM orders are not getting generated.
    We downloaded a patch available on Oracle Support [12319435] to eradicate this warning on the WLS 10.3.5, however, the issue still persists.
    Moreover, also changed the value of the 'Connection Creation Retry Frequency' to 60 seconds.
    Please help in troubleshooting this issue.
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 10.100.37.132:31,161 during the configured idle timeout of 5 secs>
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 10.100.37.132:31,160 during the configured idle timeout of 5 secs>
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000450> <Socket 44 internal data record unavailable (probable closure due idle timeout), event received -32>
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 10.100.37.132:31,162 during the configured idle timeout of 5 secs>
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000450> <Socket 50 internal data record unavailable (probable closure due idle timeout), event received 0>
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 10.100.37.132:31,163 during the configured idle timeout of 5 secs>
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000450> <Socket 45 internal data record unavailable (probable closure due idle timeout), event received 0>
    <Nov 6, 2012 11:39:55 AM GST> <Warning> <Socket> <BEA-000450> <Socket 46 internal data record unavailable (probable closure due idle timeout), event received 0>
    <Nov 6, 2012 11:40:40 AM GST> <Warning> <Socket> <BEA-000450> <Socket 47 internal data record unavailable (probable closure due idle timeout), event received 0>
    <Nov 6, 2012 11:40:50 AM GST> <Warning> <Socket> <BEA-000450> <Socket 49 internal data record unavailable (probable closure due idle timeout), event received 0>

    Thanks for the replay..
    1> Is there any way to start any managed server from admin console without configuring node manager.
    2> For my case i have started managed server from command line.
    3>So should i have to configure node manager for starting managed server from console.

  • Feature comparison bet. diff. versions of Weblogic Server starting 5.1 to 8

    I am looking for features comparison matrix between different versions of weblogic server from v5.1 to 8.1. Can anyone help?

    a matrix I have never seen, but release notes usually sums it up pretty well.

  • JAXB 1.0 Throws Exception and WebLogic Server Goes Mad !

    Hi,
    I've currently got JAXB Running within a standalone application running on Tomcat/Apache.
    When I try and Jar it up and run it on Weblogic 7.0 I get the following error being shown.
    The JAXB is being called from the onMessage event in a MessageDrivenBean which is sat on the application server. When it received the first message the server logs go mad repeatedly printing out the info below.
    <10-Jan-03 10:09:48 GMT> <Warning> <EJB> <010065> <MessageDrivenBean threw an Ex
    ception in onMessage(). The exception was:
    java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException
    java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException
    at uk.tester.deploy.messages.server.messageinbound.MessageHandlerBean.
    onMessage(MessageHandlerBean.java:46)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:356)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.
    java:290)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:271)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2303)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2226)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >
    The actual crash starts when the line
    JAXBContext jc = JAXBContext.newInstance("package structure........messageinbound.helpers.test");
    is called, I've attempted the fix found on this site using the
    public class JAXBClassLoader extends ClassLoader{
    public URL getResource(String name){
    if (name.endsWith("jaxb.properties")){
    name="jaxb.properties";
    return super.getResource(name);
    snippet of code and then changing the context to be
    JAXBContext jc = JAXBContext.newInstance("package structure.........messageinbound.helpers.test",new JAXBClassLoader());
    but this does not seem to help - any ideas please ???????

    Got Passed the first problem by correctly placing jaxb jars on the server and then sorting out the property file location but I still get the following problem.
    javax.xml.bind.JAXBException: Provider com.sun.xml.bind.ContextFactory not found
    I see a number of other postings are talking about this - has anyone got a solution yet ?

  • Weblogic Server Start Error

    Hi,
    I am using windows 7 ultimate 64 bit.
    when i start the server with "startWebLogic.cmd" then it raises following error:
    "Unrecognized option: -jrockit
    Error: Could not create the Java Virtual Machine.
    Error: A fatal exception has occurred. Program will exit."
    while i did not install any jrockit. I installed Java JDK 7.0.
    so how can i resolve this issue.
    regards,
    Waqas Hassan

    The below i could see at my setDomainEnv.sh file
    COMMON_COMPONENTS_HOME="/home/oiam/Oracle/Middleware/oracle_common"
    export COMMON_COMPONENTS_HOME
    OAM_ORACLE_HOME="/home/oiam/Oracle/Middleware/Oracle_IDM1/oam"
    export OAM_ORACLE_HOME
    APPLICATIONS_DIRECTORY="/home/oiam/Oracle/Middleware/user_projects/applications/
    OAM_domain"
    export APPLICATIONS_DIRECTORY
    WL_HOME="/home/oiam/Oracle/Middleware/wlserver_10.3"
    export WL_HOME
    BEA_JAVA_HOME="/home/oiam/Desktop/OIAM11.1.2.1.0/JDK/jdk-new/jdk1.7.0_25"
    export BEA_JAVA_HOME
    SUN_JAVA_HOME=""
    export SUN_JAVA_HOME
    if [ "${JAVA_VENDOR}" = "Oracle" ] ; then
            JAVA_HOME="${BEA_JAVA_HOME}"
            export JAVA_HOME

  • JDK6 And ClassNotFound Exception during RMI server start

    Hello,
    I have been write a simple Hello World RMI, but I'm unable to start the server always get this exeception:
    Server exception: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: rmi.Hello
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: rmi.Hello
         at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:396)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:250)
         at sun.rmi.transport.Transport$1.run(Transport.java:159)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
         at java.lang.Thread.run(Thread.java:619)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
         at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:359)
         at sun.rmi.registry.RegistryImpl_Stub.bind(Unknown Source)
         at rmi.HelloMain.main(HelloMain.java:21)
         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 com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)The sources are these:
    package rmi;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface Hello extends Remote {
        public void sayHello() throws RemoteException;
    package rmi;
    import java.rmi.RemoteException;
    public class HelloServer implements Hello{
        public HelloServer() {
            super();
        public void sayHello() throws RemoteException {
            System.out.println("Ciau!");
    package rmi;
    import java.rmi.registry.LocateRegistry;
    import java.rmi.registry.Registry;
    import java.rmi.server.UnicastRemoteObject;
    public class HelloMain {
        public static void main(String[] args) {
         try {
             Hello obj = new HelloServer();
             Hello stub = (Hello) UnicastRemoteObject.exportObject(obj, 0);
            // Bind the remote object's stub in the registry
            Registry registry = LocateRegistry.getRegistry();
            registry.bind("Hello", stub);
            System.err.println("Server ready");
        } catch (Exception e) {
            System.err.println("Server exception: " + e.toString());
            e.printStackTrace();
    }May be I'm wrong with start command, but I tried differents syntax without result.
    Can you help me?
    Thanks to all.
    PS:Sorry for my spaghetti-english :D

    I had similar issue and i got rid of it by doing the following:
    i. Start rmiregistry from the server code (so that the JVM remains the same) like this
    // Server.java
    Process pro = Runtime.getRuntime().exec("rmiregistry 1099 &");
    // ... ii. Use java.rmi.server.codebase property while starting the server
    D:\rmiEx\bin>java -Djava.rmi.server.codebase=file:/D:\rmiEx\bin example.hello.Server

  • Weblogic server starting pages.

    Hi! I have ADF app. I deployed it! All is ok when I had index.html page. When I entered address and app worked. But now I have indes.jspx page. And when I enter address then I have error:
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.4 403 Forbidden
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    Where to configure in weblogic or somewhere else? Can you say in details, I cant find it!
    Best regards!

    Hi! I created index.jspx page. In my app web.xml file I defined:
    <welcome-file-list>
    <welcome-file>index.jspx</welcome-file>
    <welcome-file>default.jspx</welcome-file>
    </welcome-file-list>
    And deployed app to WeblogicServer but then I had error:
    Error 500--Internal Server Error
    java.lang.RuntimeException: Cannot find FacesContext
    at javax.faces.webapp.UIComponentClassicTagBase.getFacesContext(UIComponentClassicTagBase.java:1851)
    at javax.faces.webapp.UIComponentClassicTagBase.setJspId(UIComponentClassicTagBase.java:1668)
    at jsp_servlet.__index_jspx._jspService(__index_jspx.java:109)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:408)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:318)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:149)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    When I used index.html there was no problems! Why and what to do?
    Best regards!

  • Socket Exception in Weblogic Server when invoking webservice via JPD

     

    We faced with the similar issue in WLS 7.X after below Assertion error after restoring services we were able to resolve this issue for time being as per the weblogic there is a patch provided by BEA and this sort of issue is resolved.
    This issue has been identified and updated under cars CR103525
    Regards,
    CSR
    BEA Analyst

  • Weblogic Server Starting Issue

    Hi
    I installed Hyperion 11.1.2.3 successfully in Windows 2008 R2.
    Now i am Reconfigure the Hyperion Products. I am trying to configure the Foundation Deploy Application Server is Failed.
    I Noticed Web logic Server is Force Shut Down.
    Can any one help me regarding this issue.
    For Web logic If any services are created?

    Hi again,
    I dont have the exact path for 11.1.2.3 but as far as I remember when configuring the service it should be: EPM_ORACLE_INSTANCE/diagnostics/logs/FoundationServices/
    If the services has been configured the log is at... MIDDLEWARE_HOME/user_projects/domains/EPMSystem/servers/FoundationService0/logs/FoundationServices0.log
    Regards,
    Thanos
    http://thanos-onetruth.blogspot.co.uk/

  • [EJB:015001]Unable to link class while server start up.

    I am getting the below exception during weblogic server start up.
    In the server under autodeploy folder there exist a class - AccountCacheLoaderMDB. I clue less, what is the cause for this exception. Can anyone help me out in solving this issue please,its urgent
    <Jun 2, 2011 10:23:01 AM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'gts' due to error weblogic.application.ModuleException: Exception preparing module: EJBModule(autodeploy)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    Error processing annotations: ..
    weblogic.application.ModuleException: Exception preparing module: EJBModule(autodeploy)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    Error processing annotations: .
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:454)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         Truncated. see log file for complete stacktrace
    weblogic.utils.ErrorCollectionException:
    There are 1 nested errors:
    weblogic.j2ee.dd.xml.AnnotationProcessException: [EJB:015001]Unable to link class sepact.sepact-app.com.citi.gts.alto.accountservice.service.AccountCacheLoaderMDB in Jar C:\Oracle\user_projects\domains\base_domain\autodeploy : java.lang.NoClassDefFoundError: sepact/sepact-app/com/citi/gts/alto/accountservice/service/AccountCacheLoaderMDB (wrong name: com/citi/gts/alto/accountservice/service/AccountCacheLoaderMDB)
         at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.addProcessingError(BaseJ2eeAnnotationProcessor.java:1272)
         at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.addFatalProcessingError(BaseJ2eeAnnotationProcessor.java:1277)
         at weblogic.ejb.container.dd.xml.EjbAnnotationProcessor.processAnnotations(EjbAnnotationProcessor.java:168)
         at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.processStandardAnnotations(EjbDescriptorReaderImpl.java:332)
         at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.createReadOnlyDescriptorFromJarFile(EjbDescriptorReaderImpl.java:192)
         at weblogic.ejb.spi.EjbDescriptorFactory.createReadOnlyDescriptorFromJarFile(EjbDescriptorFactory.java:93)
         at weblogic.ejb.container.deployer.EJBModule.loadEJBDescriptor(EJBModule.java:1210)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:382)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:42)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:609)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:185)
         at weblogic.application.internal.SingleModuleDeployment.prepare(SingleModuleDeployment.java:40)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:141)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:187)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
         at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.addProcessingError(BaseJ2eeAnnotationProcessor.java:1271)
         at weblogic.j2ee.dd.xml.BaseJ2eeAnnotationProcessor.addFatalProcessingError(BaseJ2eeAnnotationProcessor.java:1277)
         at weblogic.ejb.container.dd.xml.EjbAnnotationProcessor.processAnnotations(EjbAnnotationProcessor.java:168)
         at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.processStandardAnnotations(EjbDescriptorReaderImpl.java:332)
         at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.createReadOnlyDescriptorFromJarFile(EjbDescriptorReaderImpl.java:192)
         Truncated. see log file for complete stacktrace
    >
    ===============================================================
    Here is the message driven bean.
    package com.xxx.gts.alto.accountservice.service;
    import com.xxx.gts.alto.accountservice.adapter.AccountAdapter;
    import com.xxx.gts.alto.accountservice.util.AccBeanUtil;
    import com.xxx.gts.alto.accountservice.util.AccountConstants;
    import com.xxx.gts.alto.accountservice.util.AccountLoader;
    import org.apache.log4j.Logger;
    import org.springframework.beans.factory.BeanFactory;
    import javax.ejb.ActivationConfigProperty;
    import javax.ejb.EJB;
    import javax.ejb.MessageDriven;
    import javax.ejb.TransactionAttribute;
    import javax.ejb.TransactionAttributeType;
    import javax.ejb.TransactionManagement;
    import javax.ejb.TransactionManagementType;
    import javax.jms.Message;
    import javax.jms.MessageListener;
    import javax.jms.TextMessage;
    * MDB for the Account Cache Loader.
    @MessageDriven(mappedName = "AccountCacheLoaderQueue", activationConfig = {@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),@ActivationConfigProperty(propertyName = "destinationName", propertyValue = "AccountCacheLoaderQueue")})
    @TransactionManagement(value = TransactionManagementType.CONTAINER)
    @TransactionAttribute(value = TransactionAttributeType.NOT_SUPPORTED)
    public class AccountCacheLoaderMDB implements MessageListener {
    private static Logger logger = Logger.getLogger(AccountCacheLoaderMDB.class.getName());
    private static final String LOCAL_ADAPATER = AccBeanUtil.getProperty(AccountConstants.ADAPTER_ID);
    private static final String TOKEN_SEPARATOR = ","; // \\s
    @EJB
    private BeanFactory beanFactory;
    public void onMessage(Message message) {
    logger.debug("Entering onMessage of AccountCacheLoaderMDB");
    try {
    if (message instanceof TextMessage) {
    TextMessage tmsg = (TextMessage) message;
    String[] msgArr = tmsg.getText().split(TOKEN_SEPARATOR);
    logger.debug("Trying to get AccountAdapter");
    AccountAdapter acctAdapter = (AccountAdapter) beanFactory.getBean(LOCAL_ADAPATER);
    if (acctAdapter == null) {
    throw new RuntimeException("Account Adapter cannot be determined.");
    for (String msg : msgArr) {
    if (msg.equalsIgnoreCase(AccountConstants.ACC_RELOAD)) {
    logger.debug("Calling AccountLoader.load");
    AccountLoader.load(acctAdapter);
    } else if (msg.equalsIgnoreCase(AccountConstants.BIC_RELOAD)) {
    logger.debug("Calling AccountLoader.loadBicData");
    AccountLoader.loadBicData(acctAdapter);
    } catch (Exception e) {
    logger.error("Error while loading Account.", e);
    throw new RuntimeException(e);
    logger.debug("Exiting onMessage of AccountCacheLoaderMDB");
    can any one throw some light please...its urgent

    Your class seems to be in the wrong folder structure.
    instead of sepact/sepact-app/com/citi/gts/alto/accountservice/service/ it needs to be in com/citi/gts/alto/accountservice/service/ which matches the folder structure.

  • **** ASSERTION FAILED **** Error while starting WebLogic Server 7.0

    Hi,
    I am getting following error while starting WebLogic Server 7.0 for the first
    time. Can anybody help me it this?
    Error is:
    ==================================================
    Enter username to boot WebLogic server:system
    Enter password to boot WebLogic server:
    Starting WebLogic Server...
    <May 9, 2003 4:27:47 PM IST> <Notice> <Management> <140005> <Loading configurati
    on C:\bea\user_projects\mydomain\.\config.xml>
    <May 9, 2003 4:28:04 PM IST> <Notice> <Security> <090082> <Security initializing
    using realm myrealm.>
    <May 9, 2003 4:28:04 PM IST> <Notice> <WebLogicServer> <000327> <Starting WebLogic
    Admin Server "myserver" for domain "m
    ydomain">
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Cannot intialize
    Resource Manager Connection Factory resour
    ces because could not get JNDI context: javax.naming.ServiceUnavailableException
    [Root exception is java.net.UnknownHost
    Exception: Unknown protocol: 'JNP'] ]
    at weblogic.j2ee.RMCFactoryDeployer.<init>(RMCFactoryDeployer.java:50)
    at weblogic.j2ee.J2EEService.initialize(J2EEService.java:93)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    <May 9, 2003 4:28:14 PM IST> <Emergency> <WebLogicServer> <000342> <Unable to
    initialize the server: Fatal initializatio
    n exception
    Throwable: weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Cannot
    intialize Resource Manager Connection Fac
    tory resources because could not get JNDI context: javax.naming.ServiceUnavailableException
    [Root exception is java.net.
    UnknownHostException: Unknown protocol: 'JNP'] ]
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Cannot intialize
    Resource Manager Connection Factory resour
    ces because could not get JNDI context: javax.naming.ServiceUnavailableException
    [Root exception is java.net.UnknownHost
    Exception: Unknown protocol: 'JNP'] ]
    at weblogic.j2ee.RMCFactoryDeployer.<init>(RMCFactoryDeployer.java:50)
    at weblogic.j2ee.J2EEService.initialize(J2EEService.java:93)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    >
    ==================================================

    I don't know what could cause this error.
    I would suggest you take this upto [email protected]
    Kumar
    Ajay Jadhav wrote:
    Hi,
    I am getting following error while starting WebLogic Server 7.0 for the first
    time. Can anybody help me it this?
    Error is:
    ==================================================
    Enter username to boot WebLogic server:system
    Enter password to boot WebLogic server:
    Starting WebLogic Server...
    <May 9, 2003 4:27:47 PM IST> <Notice> <Management> <140005> <Loading configurati
    on C:\bea\user_projects\mydomain\.\config.xml>
    <May 9, 2003 4:28:04 PM IST> <Notice> <Security> <090082> <Security initializing
    using realm myrealm.>
    <May 9, 2003 4:28:04 PM IST> <Notice> <WebLogicServer> <000327> <Starting WebLogic
    Admin Server "myserver" for domain "m
    ydomain">
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Cannot intialize
    Resource Manager Connection Factory resour
    ces because could not get JNDI context: javax.naming.ServiceUnavailableException
    [Root exception is java.net.UnknownHost
    Exception: Unknown protocol: 'JNP'] ]
    at weblogic.j2ee.RMCFactoryDeployer.<init>(RMCFactoryDeployer.java:50)
    at weblogic.j2ee.J2EEService.initialize(J2EEService.java:93)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    <May 9, 2003 4:28:14 PM IST> <Emergency> <WebLogicServer> <000342> <Unable to
    initialize the server: Fatal initializatio
    n exception
    Throwable: weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Cannot
    intialize Resource Manager Connection Fac
    tory resources because could not get JNDI context: javax.naming.ServiceUnavailableException
    [Root exception is java.net.
    UnknownHostException: Unknown protocol: 'JNP'] ]
    weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ Cannot intialize
    Resource Manager Connection Factory resour
    ces because could not get JNDI context: javax.naming.ServiceUnavailableException
    [Root exception is java.net.UnknownHost
    Exception: Unknown protocol: 'JNP'] ]
    at weblogic.j2ee.RMCFactoryDeployer.<init>(RMCFactoryDeployer.java:50)
    at weblogic.j2ee.J2EEService.initialize(J2EEService.java:93)
    at weblogic.t3.srvr.ServerLifeCycleList.initialize(ServerLifeCycleList.java:54)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:782)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:594)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:282)
    at weblogic.Server.main(Server.java:32)
    ==================================================

Maybe you are looking for

  • Identity DB field in Data Dictionary Table

    Hi I am using NW04 SP9 I created a Data Dictionary DC and created a new TABLE. I need one of the fields to be an IDENTITY field (that generates an ID automatically whenever a new record is craeted). Q1. Is the Data Dictionary DC and Plug in (of NW04

  • Not able to install CS6 Design and Web upgrade

    I bought an upgrade from CS3 Master Collection (which qualifies for the upgrade) to CS6 Design and Web premium. Upon installation it asks me for the CS3 serial number. I put the CS3 serial number and it gives me an error. Do I need to deactivate it C

  • Transactional error when using JMS from stateless session bean

    I get a transaction exception when committing a bean method responsible for sending to a JMS topic. This happens only occasionally when two separate threads invoke this method "at the same time". The scenario: Two separate threads running two differe

  • About com.sun.xml.*

    When did I run a program the tomcat tell me can't find the com/sun/xml/tree/XmlDocument . Can't you tell me where jar file is this class in? TKS!

  • Approver changes in PPOM transaction

    Hi All, Please provide inputs on this. We are facing problem in which PPOM approver details are modified in produciton. Please let me know, how can I trace history of these approver changes. Is there any log maintained?