RE:CORBA.NO_PERMISSION ERROR.

HI,
I get the following error when I try to run a servlet on my NT
box. If anyone has seen this error before please let me know how
to overcome this problem. Below is the error in the %.trc
file...by the way, I am running OAS 4.0.8, JDeveloper 2.0, Oracle
8.1.5 EE and have 512MB RAM. They are all running on the same
NT
box.
ORACLE V8.1.5.0.0 - Production vsnsta=0
Windows NT V4.0, OS V5.101, CPU type 586
Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
With the Partitioning and Java options
PL/SQL Release 8.1.5.0.0 - Production
Windows NT V4.0, OS V5.101, CPU type 586
Instance name: orcl
*** 1999.10.07.14.47.07.833
::: org.omg.CORBA.NO_PERMISSION
::: org.omg.CORBA.NO_PERMISSION
Thanks alot,
BGL II
null

Thank you very much. I know what I have to do now.
regards,
BGL II
mark tomlinson (guest) wrote:
: The user being connected as doesn't have the needed RDBMS
: permissions for whatever is being done.
: This typically happens when folks are trying to deploy an EJB
or
: COBA server object and they attempt to deploy into the '/'
: directory or a new directory off of the root (and they are NOT
: connecting as SYS). Only SYS has permissions in the root
: directory of the namespace.
: If you are seeing this running an EJB/CORBA server object, then
: the user connecting doesn't have the permission for whatever
the
: bean/ORB object is trying to do.
: Opening a socket from within java code in the RDBMS will
require
: JAVASYSPRIV (as will attempting to create an OS file).
: Need more details on what is actually going on to be able to
say
: for certain what is causing the problem.
null

Similar Messages

  • J2ee tutorial on Windows 98 - runclient error org.omg.CORBA:NO_PERMISSION

    I am using Win98...I have successfully run J2ee , deployement tool, and can run Web clients for the examples. However my runclient utility is giving errors.
    javax.naming.CommunicationException: org.omg.CORBA.NO_PERMISSION: minor code:
    0 completed: No
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:237)
    at com.sun.corba.ee.internal.iiop.messages.ReplyMessage_1_2.getSystemExc
    eption(ReplyMessage_1_2.java:93)
    I am enclosing the codes for my .bat files.
    J2EE.BAT FILE CONTENTS:
    @echo off
    rem
    rem Set JAVA_HOME and J2EE_HOME before running this script.
    rem
    rem set JAVA_HOME to the path where you have Java 2 (JDK1.2) installed.
    rem
    rem set J2EE_HOME to the path where you have installed this package (EJB server).
    rem
    if not "%J2EE_HOME%" == "" goto CONT0
    echo ERROR: Set J2EE_HOME before running this script.
    goto END
    :CONT0
    if EXIST "%J2EE_HOME%\bin\setenv.bat" goto CONT1
    echo ERROR: Set J2EE_HOME to the path of a valid j2sdkee.
    goto END
    :CONT1
    call %J2EE_HOME%\bin\setenv.bat
    if not "%JAVA_HOME%" == "" goto CONT2
    echo ERROR: Set JAVA_HOME before running this script.
    goto END
    :CONT2
    if EXIST "%JAVA_HOME%\bin\java.exe" goto CONT3
    echo ERROR: Set JAVA_HOME to the path of a valid jdk.
    goto END
    :CONT3
    rem @echo on
    rem for win98 %JAVACMD% %LISTEN_OPTIONS% -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter -Dorg.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl -Djms.home=%JMS_HOME% -Dcom.sun.jms.service.jdbc.dbpath=%JMS_DB_PATH% -Djms.properties=%J2EE_HOME%\config\jms_service.properties -Djava.security.policy==%J2EE_HOME%\lib\security\server.policy -Djava.security.auth.login.config=%J2EE_HOME%\lib\security\login.config -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH% com.sun.enterprise.server.J2EEServer %*
    @echo on
    %JAVACMD% -D%SSL_A%=%SSL_B% -D%JAAS_A%=%JAAS_B% -D%LISTEN_A%=%LISTEN_B% -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter -Dorg.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl -Djms.home=%JMS_HOME% -Dcom.sun.jms.service.jdbc.dbpath=%JMS_DB_PATH% -Djms.properties=%J2EE_HOME%\config\jms_service.properties -Djava.security.policy=%J2EE_HOME%\lib\security\server.policy -Djava.security.auth.login.config=%J2EE_HOME%\lib\security\login.config -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH% com.sun.enterprise.server.J2EEServer %
    cd c:\j2sdkee1.3\bin
    :END
    SETENV.BAT FILE CONTENTS:
    rem
    rem Set JAVA_HOME and J2EE_HOME before running this script.
    rem
    rem first include user-specified definitions.
    call %J2EE_HOME%\bin\userconfig.bat
    if "%JMS_HOME%" == "" set JMS_HOME=%J2EE_HOME%
    set LIBDIR=%J2EE_HOME%\lib
    set LOCALEDIR=%J2EE_HOME%\lib\locale
    set CLOUDSCAPE_INSTALL=%LIBDIR%\cloudscape
    set CLASSESDIR=%LIBDIR%\classes
    set JMS_CLASSESDIR=%JMS_HOME%\classes
    set J2EEJARS=%LIBDIR%\j2ee.jar
    set JAVATOOLS=%JAVA_HOME%\lib\tools.jar
    set JAVAHELPJARS=%LIBDIR%\jhall.jar
    rem JMS DB PATH must end in slash to specify a directory
    set JMS_DB_PATH=%J2EE_HOME%\repository\%COMPUTERNAME%\db\
    set SYSTEM_LIB_DIR=%LIBDIR%\system
    set JMS_RI_JDBC=%SYSTEM_LIB_DIR%\cloudscape.jar;%SYSTEM_LIB_DIR%\tools.jar
    set CLOUDJARS=%JMS_RI_JDBC%;%CLOUDSCAPE_INSTALL%\RmiJdbc.jar;%CLOUDSCAPE_INSTALL%\cloudclient.jar
    set CPATH=%CLOUDJARS%;%CLASSESDIR%;%JMS_CLASSESDIR%;%J2EEJARS%;%LOCALEDIR%;%J2EE_CLASSPATH%;%JAVATOOLS%;%JAVAHELPJARS%
    rem for win98 set JAAS_OPTIONS=-Djava.security.auth.policy=%J2EE_HOME%\lib\security\jaas.policy
    rem for win98 set SSL_OPTIONS=-Djavax.net.ssl.trustStore=%J2EE_HOME%\lib\security\cacerts.jks
    rem set LISTEN_OPTIONS=-Dcom.sun.CORBA.connection.ORBListenSocket=SSL:0,SSL_MUTUALAUTH:0,PERSISTENT_SSL:1060
    rem for win98 set JAVACMD=%JAVA_HOME%\bin\java -Xmx128m %SSL_OPTIONS% %JAAS_OPTIONS%
    set JAAS_A=java.security.auth.policy
    set JAAS_B=%J2EE_HOME%\lib\security\jaas.policy
    set SSL_A=javax.net.ssl.trustStore
    set SSL_B=%J2EE_HOME%\lib\security\cacerts.jks
    rem set LISTEN_A=-Dcom.sun.CORBA.connection.ORBListenSocket
    set LISTEN_A=com.sun.CORBA.connection.ORBSocketFactoryClass
    set LISTEN_B=SSL:0,SSL_MUTUALAUTH:0,PERSISTENT_SSL:1060
    @echo on
    set JAVACMD=%JAVA_HOME%\bin\java -Xmx128m
    RUNCLIENT.BAT FILE CONTENTS:
    @echo off
    rem
    rem Set JAVA_HOME and J2EE_HOME before running this script.
    rem
    rem set JAVA_HOME to the path where you have Java 2 (JDK1.2) installed.
    rem
    rem set J2EE_HOME to the path where you have installed this package (EJB server).
    rem
    if not "%J2EE_HOME%" == "" goto CONT0
    echo ERROR: Set J2EE_HOME before running this script.
    goto END
    :CONT0
    if EXIST "%J2EE_HOME%\bin\setenv.bat" goto CONT1
    echo ERROR: Set J2EE_HOME to the path of a valid j2sdkee.
    goto END
    :CONT1
    call %J2EE_HOME%\bin\setenv.bat
    if not "%JAVA_HOME%" == "" goto CONT2
    echo ERROR: Set JAVA_HOME before running this script.
    goto END
    :CONT2
    if EXIST "%JAVA_HOME%\bin\java.exe" goto CONT3
    echo ERROR: Set JAVA_HOME to the path of a valid jdk.
    goto END
    :CONT3
    @echo on
    %JAVACMD% -D%SSL_A%=%SSL_B% -D%JAAS_A%=%JAAS_B% -D%LISTEN_A%=%LISTEN_B% %VMARGS% -Djms.home=%JMS_HOME% -Djms.properties=%J2EE_HOME%\config\jms_client.properties -Djava.security.policy=%J2EE_HOME%\lib\security\client.policy -Djava.security.auth.login.config=%J2EE_HOME%\lib\security\login.config -Dcom.sun.enterprise.home=%J2EE_HOME% -classpath %CPATH%;%APPCPATH% com.sun.enterprise.appclient.Main %1 %2 %3 %4
    :END

    I am answering my own question, I have all the bat files to successfully run J2ee on windows 98. Mail me at [email protected]

  • Must redeploy app or get java.rmi.AccessException: CORBA NO_PERMISSION 9998

    Hello. I'm hoping someone can give me a clue to the source of this problem.
    I have a very simple test application which consists of one EJB which is just a stateless session bean that has a method which return the String "Hello". This method can only be run by a user in the "test" role.
    I have a simple commandline client packaged in the application. I use deploytool to extract the Client.jar and I can run it with appclient - client myClient.jar. This little class connects to the bean in the server (via jndi lookup as per all tutorial example) and calls the sayHello() method. A login dialog appears in order to authenticate the user as it should and everything works perfectly ... BUT ...
    If I stop the server and start it again and try to run the client exactly the same way (appclient - client myClient.jar), I get the error message below. The application is running and I confirm that its there using deploytool and asadmin to list components, etc. The only way I can get it work again is by redeploying the application.
    I've looked around and found nothing about this regarding Sun Java System Application Server Platform Edition 8 2004Q4 Beta (which is what I'm using). I found some vague references to a similar sounding problem from people using Application Server 7, but the work around in those posts references switches and settings in deploytool that dont seem to be there in my version.
    Can anyone suggest a fix? I'd like the application to work upon starting up the server each morning for example without having to redeploy it. I'm glad to provide my test application archives and sources to anyone who would find them useful for solving this problem.
    Thanks!
    Error:
    java.rmi.AccessException: CORBA NO_PERMISSION 9998 Maybe; nested exception is:
    org.omg.CORBA.NO_PERMISSION: ----------BEGIN server-side stack trace----------
    org.omg.CORBA.NO_PERMISSION: vmcid: 0x2000 minor code: 1806 completed: Maybe
    at com.sun.enterprise.iiop.POAProtocolMgr.mapException(POAProtocolMgr.java:179)
    at com.sun.ejb.containers.BaseContainer.authorizeRemoteMethod(BaseContainer.java:908)
    at com.sun.ejb.containers.StatelessSessionContainer.createEJBObjectImpl(StatelessSessionContainer.java:274)
    at com.sun.ejb.containers.EJBHomeImpl.createEJBObjectImpl(EJBHomeImpl.java:89)
    at com.sun.ejb.containers.EJBHomeInvocationHandler.invoke(EJBHomeInvocationHandler.java:140)
    at $Proxy15.create(Unknown Source)
    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:324)
    at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(ReflectiveTie.java:123)
    at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:648)
    at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:192)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1683)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:1543)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(CorbaMessageMediatorImpl.java:925)
    at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(RequestMessage_1_2.java:181)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:697)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.dispatch(SocketOrChannelConnectionImpl.java:454)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.doWork(SocketOrChannelConnectionImpl.java:1188)
    at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:398)
    Caused by: java.rmi.AccessException: Client is not authorized for this invocation.
    at com.sun.ejb.containers.BaseContainer.authorizeRemoteMethod(BaseContainer.java:906)
    ... 19 more
    ----------END server-side stack trace---------- vmcid: 0x2000 minor code: 1806 completed: Maybe
    at com.sun.corba.ee.impl.javax.rmi.CORBA.Util.mapSystemException(Util.java:195)
    at javax.rmi.CORBA.Util.mapSystemException(Util.java:65)
    at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:142)
    at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(Unknown Source)
    at com.dcit.bmj.bmo.interfaces._HelloWorldHome_DynamicStub.create(_HelloWorldHome_DynamicStub.java)
    at com.dcit.bmj.client.WasUpClient.main(WasUpClient.java:35)
    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:324)
    at com.sun.enterprise.util.Utility.invokeApplicationMain(Utility.java:237)
    at com.sun.enterprise.appclient.Main.<init>(Main.java:423)
    at com.sun.enterprise.appclient.Main.main(Main.java:96)
    Caused by: org.omg.CORBA.NO_PERMISSION: ----------BEGIN server-side stack trace----------
    org.omg.CORBA.NO_PERMISSION: vmcid: 0x2000 minor code: 1806 completed: Maybe
    at com.sun.enterprise.iiop.POAProtocolMgr.mapException(POAProtocolMgr.java:179)
    at com.sun.ejb.containers.BaseContainer.authorizeRemoteMethod(BaseContainer.java:908)
    at com.sun.ejb.containers.StatelessSessionContainer.createEJBObjectImpl(StatelessSessionContainer.java:274)
    at com.sun.ejb.containers.EJBHomeImpl.createEJBObjectImpl(EJBHomeImpl.java:89)
    at com.sun.ejb.containers.EJBHomeInvocationHandler.invoke(EJBHomeInvocationHandler.java:140)
    at $Proxy15.create(Unknown Source)
    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:324)
    at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(ReflectiveTie.java:123)
    at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:648)
    at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:192)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1683)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:1543)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(CorbaMessageMediatorImpl.java:925)
    at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(RequestMessage_1_2.java:181)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:697)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.dispatch(SocketOrChannelConnectionImpl.java:454)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.doWork(SocketOrChannelConnectionImpl.java:1188)
    at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:398)
    Caused by: java.rmi.AccessException: Client is not authorized for this invocation.
    at com.sun.ejb.containers.BaseContainer.authorizeRemoteMethod(BaseContainer.java:906)
    ... 19 more
    ----------END server-side stack trace---------- vmcid: 0x2000 minor code: 1806 completed: Maybe
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at com.sun.corba.ee.impl.protocol.giopmsgheaders.MessageBase.getSystemException(MessageBase.java:902)
    at com.sun.corba.ee.impl.protocol.giopmsgheaders.ReplyMessage_1_2.getSystemException(ReplyMessage_1_2.java:99)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.getSystemExceptionReply(CorbaMessageMediatorImpl.java:575)
    at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.processResponse(CorbaClientRequestDispatcherImpl.java:430)
    at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete(CorbaClientRequestDispatcherImpl.java:326)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:132)
    at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:129)
    ... 10 more

    Hi Raja.
    So Sorry for the delay. Anyway, I've come back to try to do this now and just cant make the problem happen! I'm tearing my hair out to figure out what has changed. In the meantime, I'm going to just move past this. If it shows up again, I'll be sure to post all related files back in this forum.
    Thanks!

  • [ J2EE RI Server ] CORBA NO_PERMISSION 0

    Hi,
    I was trying to deploy one simple session bean into J2EE RI Server. It works fine. And I wrote one client to access this session bean, it show me
    java.rmi.AccessException: CORBA NO_PERMISSION 0 No; nested exception is:
    org.omg.CORBA.NO_PERMISSION: minor code: 0 completed: No
    Context ic = null;
    try
    ic = new InitialContext();
    catch(Exception e)
    System.out.println("1: "+e.toString());
    This exception is happend when I try to lookup the jndi name
    This error message is happend only on J2EE 1.3 (1.3_01) . If I downgrade to J2EE 1.3Beta or even 1.2, everything would be okay. Any one know how to solve such problem ??

    Da:Frederik Hansen ([email protected])
    Message 2 in thread
    Soggetto:Re: J2EE - NO_PERMISSION
    Newsgroups:dk.edb.programmering.java
    View this article only
    Data:2001-11-10 03:32:12 PST
    For at svare p� mit eget sp�rgsm�l: Access and Security Issues Q1: Some applications that ran under J2EE SDK 1.3
    beta 2 stop running under the 1.3 FCS release with the
    following message: java.rmi.AccessException: CORBA
    NO_PERMISSION 0 No. Why does this happen and what
    can be done about it? When your application ran under the 1.3 beta 2
    version of the reference implementation (RI), security permissions may
    not have
    been checked. For example, the beta 2 RI allowed
    calls to enterprise beans that required username-password permission,
    even
    when the client provided no username-password
    information. With 1.3 FCS release, the J2EE SDK became strict
    about checking adherence to the security policies of J2EE components. How can you make your application run under the
    FCS release? 1.If you don't want security checks, do the
    following: Use the deploytool to build a deployment
    descriptor that does not require a strict security policy: Under the Security screen of the EJB wizard
    or the Security tab of the EJB inspector in deploytool, click
    "Deployment
    Settings..". Under the box "Client
    Authentication", make sure "Support Client Choice" is checked instead of
    "Certificate"
    or "Password". 2.To require the application pass security
    checks to run, do the following: When an enterprise bean specifies
    "Certificate" or "Password" as the method of Client Authentication, use
    a J2EE
    application client, instead of a stand-alone
    Java application, to access the bean. You will need to login as a valid
    J2EE
    user.

  • Java.rmi.AccessException: CORBA NO_PERMISSION 0 No

    i m new to j2ee...deployed "AdviceApp" application successfully given in Head First EJB book to sun RI server...when i run the client which is a simple java application on the same m/c as RI server, i get following error
    D:\technical\java\projects\advice>java -cp c:\j2sdkee1.3\lib\j2ee.jar;AdviceAppC
    lient.jar;d:\technical\java\projects\advice\ AdviceClient
    java.rmi.AccessException: CORBA NO_PERMISSION 0 No; nested exception is:
            org.omg.CORBA.NO_PERMISSION:   minor code: 0  completed: No
    org.omg.CORBA.NO_PERMISSION:   minor code: 0  completed: No
            at java.lang.Class.newInstance0(Native Method)
            at java.lang.Class.newInstance(Unknown Source)
            at com.sun.corba.ee.internal.iiop.messages.ReplyMessage_1_2.getSystemExc
    eption(ReplyMessage_1_2.java:93)
            at com.sun.corba.ee.internal.iiop.ClientResponseImpl.getSystemException(
    ClientResponseImpl.java:108)
            at com.sun.corba.ee.internal.POA.GenericPOAClientSC.invoke(GenericPOACli
    entSC.java:136)
            at org.omg.CORBA.portable.ObjectImpl._invoke(Unknown Source)
            at headfirst._AdviceHome_Stub.create(Unknown Source)
            at AdviceClient.go(AdviceClient.java:23)
            at AdviceClient.main(AdviceClient.java:11)ne leads will be appreciated.
    thnks in advance

    Never mind...found the solution
    http://java.sun.com/j2ee/sdk_1.3/faq.html#access
    had to redeploy the application after security changes.

  • CORBA NO_PERMISSION 0 Maybe...

    hello community,
    while trying to connect to the successfully deployed application as a client, the following exception is thrown:
    CORBA NO_PERMISSION 0 Maybe; nested exception is: org.omg.CORBA.NO_PERMISSION:
    vmcid: 0x0 minor code: 0 completed: Maybe
    Keine Verbindung zum MyApp® DataStore:
    currently i do not know how to handle this and/or what do perform.
    can anybody help me once more?
    thanks,
    maik

    hello,
    i have read another post handling this topic. in this post there is ment an error with the wlclient.jar. and they commend to use the weblogic.jar instead of the wlclient.jar or wljmsclient.jar.
    but there are some negative aspects therefor. the first is the size of the weblogic.jar (about 50mb).
    the next is as i tested it with the weblogic.jar there comes a error message dealing with authentication.
    something like 'annonymous user not defined' or sth else.
    regards,
    maik
    #edit 1:
    wondering i guess this is the wrong forum, because the deployment task works perfect...
    Edited by sqlworktask at 11/09/2007 1:39 AM

  • Java.rmi.AccessException: CORBA NO_PERMISSION 9998

    Hi, Friends,
    I am using SUN RI and getting:
    java.rmi.AccessException: CORBA NO_PERMISSION 9998
    The bean was successfully deployed and the look up for the reference
    was successful too and returned an instance:
    Object objref = ctx.lookup("ejb/TestConnection");
    home =(TestConnectionHome)PortableRemoteObject.narrow(objref,
    TestConnectionHome.class);
    But when I try to create a bean:
    bean = home.create();
    I am getting an exception:
    Can't create new bean for TestConnection .
    java.rmi.AccessException: CORBA NO_PERMISSION 9998 Maybe; nested
    exception is:
    org.omg.CORBA.NO_PERMISSION: minor code: 9998 completed:
    Maybe
    java.rmi.AccessException: CORBA NO_PERMISSION 9998 Maybe; nested
    exception is:
    org.omg.CORBA.NO_PERMISSION: minor code: 9998 completed:
    Maybe
    org.omg.CORBA.NO_PERMISSION: minor code: 9998 completed: Maybe
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:237)
    at com.sun.corba.ee.internal.iiop.messages.ReplyMessage_1_2.getSystemExc
    eption(ReplyMessage_1_2.java:93)
    at com.sun.corba.ee.internal.iiop.ClientResponseImpl.getSystemException(
    ClientResponseImpl.java:108)
    at com.sun.corba.ee.internal.POA.GenericPOAClientSC.invoke(GenericPOACli
    entSC.java:136)
    at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:297)
    at com.sap.mw.jco.jra.test._TestConnectionHome_Stub.create(Unknown
    Sourc
    e)
    Does somebody know what is the cause of it?
    (All the bean methods like create() are public, so it should not be
    the problem.)
    I very appreciate any tips,
    Regards,
    Eugen
    PS: I already set Security on "Support Client Choice".

    I got it finally.
    In the Security, I needed to add to the Role Name "Guest" the User Name "guest"

  • Java.rmi.AccessExeption: CORBA NO_PERMISSION

    When I try to connect to my ejb using iiop I have an exception: java.rmi.AccessException: CORBA NO_PERMISSION 0 No; nested exception is:
    org.omg.CORBA.NO_PERMISSION: vmcid: 0x0 minor code: 0 completed: No at com.sun.corba.ee.internal.iiop.ShutdownUtilDelegate.mapSystemException(ShutdownUtilDelegate.java:93)........
    Please help!

    is you client application a swing app

  • Exception:java.rmi.AccessException: CORBA NO_PERMISSION 0 No

    I was trying to run the Cart example with the J2EE but got the above exception. I was successful with the Converter example but not work with this one.
    Please help
    Tom

    Here is the exact message:
    D:\OnlineBooks\j2eetutorial\examples\ears>runclient -client CartApp.ear -name Ca
    rtClient -textauth
    Initiating login ...
    Enter Username:guest
    Enter Password:guest123
    Binding name:`java:comp/env/ejb/SimpleCart`
    Caught an unexpected exception!
    java.rmi.AccessException: CORBA NO_PERMISSION 0 No; nested exception is:
    org.omg.CORBA.NO_PERMISSION: minor code: 0 completed: No
    org.omg.CORBA.NO_PERMISSION: minor code: 0 completed: No
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:237)
    at com.sun.corba.ee.internal.iiop.messages.ReplyMessage_1_2.getSystemExc
    eption(ReplyMessage_1_2.java:93)
    at com.sun.corba.ee.internal.iiop.ClientResponseImpl.getSystemException(
    ClientResponseImpl.java:108)
    at com.sun.corba.ee.internal.POA.GenericPOAClientSC.invoke(GenericPOACli
    entSC.java:132)
    at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:459)
    at CartHomeStub.create(Unknown Source)
    at CartClient.main(CartClient.java:26)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.sun.enterprise.util.Utility.invokeApplicationMain(Utility.java:22
    9)
    at com.sun.enterprise.appclient.Main.main(Main.java:155)

  • Reports not Running. RAS is erroring CORBA communication error

    Hi, One of the boxi XI R2 SP3 server in cluster is not working correctly. WHen I stopped all other servers and ran report on this server and I got the below error message.
    Can someone help on this issue. Our Crystal reports are taking forever to run.
    The error message in crystalras_2009211_132028_1872_ras.log is given below.
    Thanks,
    Kalpesh
    =========================================================================
    ErrorLog 2009  2 11  8:31:00.396 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:31:01.396 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:31:22.490 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:31:23.490 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:31:44.585 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:31:45.585 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:32:06.789 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:32:07.789 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:32:28.774 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:32:29.774 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:32:50.853 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:32:51.853 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:33:12.838 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:33:13.838 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:33:34.948 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:33:35.948 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:33:57.152 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:33:58.152 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:34:19.246 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:34:20.246 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:34:41.434 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:34:42.434 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:35:03.544 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:35:04.544 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:35:25.514 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:35:26.514 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:35:47.499 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:35:48.499 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:36:09.609 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:36:10.609 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:36:31.578 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:36:32.578 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:36:53.563 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:36:54.563 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:15.658 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:37:16.658 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:37.643 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:37:38.643 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:55.581 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:37:56.581 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:59.628 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:00.628 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:38:17.582 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:18.582 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:38:21.738 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:39.567 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:40.567 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:39:01.755 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:39:02.755 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:39:23.865 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:39:24.865 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:39:45.944 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:39:46.944 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:40:08.054 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:40:09.054 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:40:30.023 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:40:31.023 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ====================================================

    Hello Pandeyji,
    We have a similar problem. Can you please let us know, on which server the ports are opened. We appreciate your immediate response.
    Thanks.
    Madhu Allani

  • CORBA.MARSHAL error in BI 4.0 SP2 Patch 4 while creating report

    Hi,
    we are encountering an error message while trying to create a report in BI Launch Pad (BI 4.0 SP2 Patch 4). It contains the following:
    The MDAS service encountered an error.
    com.crystaldecisions.thirdparty.org.omg.CORBA.MARSHAL minor code: 0x0 completed: No
    Workflow:
    Logon to BI LaunchPad
    Launch Analysis for OLAP from Applications
    New Report
    Search for Data Source
    Select a known working query
    Click  OK - receive error
    Click OK to error
    Try to add a dimension  - receive error
    Any ideas? It is a showstopper. Thanks.
    Erik.

    Hi Prasanth,
    so then perhaps that Patch 6 will not solve it:(
    I am running BI 4.0 on NW 7.3 WAS. The problem is that somehow I do not see the Build version updated (for Patch6) in CMC Settings after redeployment. What build version do you have under CMC on Patch 6?
    Erik.

  • Simple CORBA app. error

    Hi,
    I'm using JDev. 3.1.1.2 and Oracle 8.1.6. I tried the HelloWorld Corba sample and it works fine. However, when I modified it to include a new method that return a user defined class, I got the following error:
    Creating an initial context
    Looking for the CORBA server object published as 'test/helloCORBA'
    Calling helloPkg.helloCORBAInterface methods...
    ::: org.omg.CORBA.MARSHAL
    org.omg.CORBA.MARSHAL: minor code: 0 completed: No
    org.omg.CORBA.portable.InputStream com.visigenic.vbroker.orb.GiopStubDelegate.invoke(org.omg.CORBA.Object, org.omg.CORBA.portable.OutputStream, org.omg.CORBA.StringHolder, org.omg.CORBA.Context, org.omg.CORBA.ContextList)
    org.omg.CORBA.portable.InputStream com.visigenic.vbroker.orb.GiopStubDelegate.invoke(org.omg.CORBA.Object, org.omg.CORBA.portable.OutputStream, org.omg.CORBA.StringHolder)
    org.omg.CORBA.portable.InputStream com.inprise.vbroker.CORBA.portable.ObjectImpl._invoke(org.omg.CORBA.portable.OutputStream, org.omg.CORBA.StringHolder)
    helloPkg.EmpInfo helloPkg._st_helloCORBAInterface.emp()
    void helloPkg.helloCORBAClient.main(java.lang.String[])
    Here is my code:
    =================================
    helloCORBAInterface .java
    package helloPkg;
    import java.util.*;
    public interface helloCORBAInterface extends org.omg.CORBA.Object {
    String helloWorld();
    EmpInfo emp();
    Vector vec();
    =================================
    helloCORBAServer.java
    public helloPkg.EmpInfo emp() {
    EmpInfo emp = new EmpInfo();
    return emp;
    ================================
    EmpInfo.java
    public class EmpInfo extends Object {
    public int ID;
    * Constructor
    public EmpInfo() {
    ID = 8;
    ================
    Main program
    corbaInterface = (helloPkg.helloCORBAInterface) ic.lookup(corbaUrl);
    EmpInfo info = corbaInterface.emp();
    ===============
    Does anyone know what is wrong with the code? As you can see from the interface, I created another method "vec()" that return a Vector and it works fine. Therefore, I guess it is the user defined class that causes the problem.
    Thanks,
    Andy

    Try to implement Serializable interface in your custom class.

  • MINOR CODE: jms corba marshalling error

    I have a JMS queue connection factory and queue deployed on Sun Application Server 8.2 that I am trying to access through jndi. I am able to look up the queues using JNDI when I run a command line test program. It sets the context using my jndi.properties file.
    java.naming.factory.initial=com.sun.appserv.naming.S1ASCtxFactory
    java.naming.provider.url=iiop://smosi-1:3360
    b2bconnection.queueConnectionFactory=jms/B2BintegrationMDBDestinationFactory
    b2bconnection.queueName=jms/B2BintegrationMDBBeanWhen I run the code from within another application server called pramati, I get the stack trace printed out below. Pramati is the application server from where I'm trying to access the JMS qeueus located on sun application server. It looks like a marshalling error. I did some digging around, and found out that I am able to read all of the objects from JNDI ( i.e. jms, jdbc, ejb, etc ) except for a mysterious context called __SYSTEM that is being used by the java libraries to load the jmsra resource adapter. This context can be loaded from the command line, but not within the pramati application server. Any attempt to load it gives the error below... If I can solve this, I'll be the star of the development team for sure. PLEASE help me if you can. Thanks.
    Other things to note are that both servers have been configured to use the same JDK version, which is 1.4.2_12.
    Aug 16, 2006 4:42:32 PM com.sun.corba.ee.impl.encoding.CDRInputStream_1_0 read_v
    alue
    WARNING: "IOP00810210: (MARSHAL) Error from readValue on ValueHandler in CDRInpu
    tStream"
    org.omg.CORBA.MARSHAL: vmcid: SUN minor code: 210 completed: Maybe
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.valuehandlerRead
    Error(ORBUtilSystemException.java:6646)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:1048)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:879)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_inter
    face(CDRInputStream_1_0.java:873)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_inter
    face(CDRInputStream_1_0.java:863)
    at com.sun.corba.ee.impl.encoding.CDRInputStream.read_abstract_interface
    (CDRInputStream.java:275)
    at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectDelegate(IIOPInput
    Stream.java:363)
    at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectOverride(IIOPInput
    Stream.java:526)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
    at java.util.Hashtable.readObject(Hashtable.java:848)
    at sun.reflect.GeneratedMethodAccessor36.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.corba.ee.impl.io.IIOPInputStream.invokeObjectReader(IIOPInput
    Stream.java:1694)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputObject(IIOPInputStream.
    java:1212)
    at com.sun.corba.ee.impl.io.IIOPInputStream.simpleReadObject(IIOPInputSt
    ream.java:400)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValueInternal(ValueHand
    lerImpl.java:330)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValue(ValueHandlerImpl.
    java:296)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:1034)
    at com.sun.corba.ee.impl.encoding.CDRInputStream.read_value(CDRInputStre
    am.java:259)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputObjectField(IIOPInputSt
    ream.java:1989)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputClassFields(IIOPInputSt
    ream.java:2213)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputObject(IIOPInputStream.
    java:1221)
    at com.sun.corba.ee.impl.io.IIOPInputStream.simpleReadObject(IIOPInputSt
    ream.java:400)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValueInternal(ValueHand
    lerImpl.java:330)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValue(ValueHandlerImpl.
    java:296)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:1034)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:879)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_inter
    face(CDRInputStream_1_0.java:873)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_inter
    face(CDRInputStream_1_0.java:863)
    at com.sun.corba.ee.impl.encoding.CDRInputStream.read_abstract_interface
    (CDRInputStream.java:275)
    at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectDelegate(IIOPInput
    Stream.java:363)
    at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectOverride(IIOPInput
    Stream.java:526)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
    at java.util.Hashtable.readObject(Hashtable.java:848)
    at sun.reflect.GeneratedMethodAccessor36.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.corba.ee.impl.io.IIOPInputStream.invokeObjectReader(IIOPInput
    Stream.java:1694)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputObject(IIOPInputStream.
    java:1212)
    at com.sun.corba.ee.impl.io.IIOPInputStream.simpleReadObject(IIOPInputSt
    ream.java:400)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValueInternal(ValueHand
    lerImpl.java:330)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValue(ValueHandlerImpl.
    java:296)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:1034)
    at com.sun.corba.ee.impl.encoding.CDRInputStream.read_value(CDRInputStre
    am.java:259)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputObjectField(IIOPInputSt
    ream.java:1989)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputClassFields(IIOPInputSt
    ream.java:2213)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputObject(IIOPInputStream.
    java:1221)
    at com.sun.corba.ee.impl.io.IIOPInputStream.simpleReadObject(IIOPInputSt
    ream.java:400)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValueInternal(ValueHand
    lerImpl.java:330)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValue(ValueHandlerImpl.
    java:296)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:1034)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:879)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_inter
    face(CDRInputStream_1_0.java:873)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_inter
    face(CDRInputStream_1_0.java:863)
    at com.sun.corba.ee.impl.encoding.CDRInputStream.read_abstract_interface
    (CDRInputStream.java:275)
    at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectDelegate(IIOPInput
    Stream.java:363)
    at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectOverride(IIOPInput
    Stream.java:526)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:333)
    at java.util.Hashtable.readObject(Hashtable.java:848)
    at sun.reflect.GeneratedMethodAccessor36.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.corba.ee.impl.io.IIOPInputStream.invokeObjectReader(IIOPInput
    Stream.java:1694)
    at com.sun.corba.ee.impl.io.IIOPInputStream.inputObject(IIOPInputStream.
    java:1212)
    at com.sun.corba.ee.impl.io.IIOPInputStream.simpleReadObject(IIOPInputSt
    ream.java:400)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValueInternal(ValueHand
    lerImpl.java:330)
    at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValue(ValueHandlerImpl.
    java:296)
    at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInput
    Stream_1_0.java:1034)
    at com.sun.corba.ee.impl.encoding.CDRInputStream.read_value(CDRInputStre
    am.java:259)
    at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl$14
    .read(DynamicMethodMarshallerImpl.java:333)
    at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl.re
    adResult(DynamicMethodMarshallerImpl.java:424)
    at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invo
    ke(StubInvocationHandlerImpl.java:133)
    at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(Unkno
    wn Source)
    at com.sun.enterprise.naming._SerialContextProvider_DynamicStub.list(_Se
    rialContextProvider_DynamicStub.java)
    at com.sun.enterprise.naming.SerialContext.list(SerialContext.java:478)
    at javax.naming.InitialContext.list(InitialContext.java:395)
    at com.sun.b2b.connection.B2BConnector.printContext(B2BConnector.java:72
    Message was edited by:
    queperknuckle

    Tried with following error,
    String orbArgs[] = new String[] { "-ORBInitRef", nameService };
    java.util.Properties props = System.getProperties();
    props.put("org.omg.CORBA.ORBClass", "com.iona.corba.art.artimpl.ORBImpl");
    props.put("org.omg.CORBA.ORBSingletonClass", "com.iona.corba.art.artimpl.ORBSingleton");
    // create and initialize the ORB
    orb = ORB.init(orbArgs, props);
    But now received,
    org.omg.CORBA.INITIALIZE: can't instantiate default ORB implementation com.iona.corba.art.artimpl.ORBImpl  vmcid: 0x0 minor code: 0  completed: No
            at org.omg.CORBA.ORB.create_impl(ORB.java:297)
              at org.omg.CORBA.ORB.init(ORB.java:336)
    Please help.

  • CORBA.NO_IMPLEMENT error

    I get the following error when trying to connect EJB:
    Lookup error: [Root exception is org.omg.CORBA.NO_IMPLEMENT:
    minor code: 0 completed: No]
    javax.naming.ServiceUnavailableException
    I successfully get Initial contects:
    Context site = (Context) ((new InitialContext(env)).lookup
    ("oas://yasha:8889"));
    and then fail on:
    ServerEJBHome serverEJBHome = (ServerEJBHome)
    PortableRemoteObject.narrow (
    site.lookup ("EJBServerApp/EJBServer"), ServerEJBHome.class);
    Please help!
    null

    It took me about three days to find the answer to this one. I found the solution below by searching the discussion groups for all OAS messages. I cut the test below from one of those messages. To some it up, the problem is that you installed jdk 1.2.2 prior to installing OAS. Read on.
    gerry
    If your OAS EJB client hangs, and then throws an exception similar to the one below during the JNDI home
    interface lookup, this is
    probably due to the fact that the java process in which your application is supposed to run cannot be
    started.
    [Root exception is org.omg.CORBA.NO_RESOURCES:
    ]javax.naming.InsufficientResourcesException
    at oracle.oas.jndi.oas.SecCosNamingContext.resolve(Compiled Code)
    at oracle.oas.jndi.oas.BeanContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.BeanInitialContext.resolve(Compiled Code)
    at oracle.oas.jndi.oas.BeanContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.BeanInitialContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.WrapperContext.lookup(Compiled Code)
    at oracle.oas.jndi.oas.BeanContext.lookup(Compiled Code)
    at javax.naming.InitialContext.lookup(Compiled Code)
    at appPackage.BeanClient.main(Compiled Code)
    You can verify that by looking at the wrb.log file (located in ows/admin/website40/log). It should
    report that it failed to get the cartridge for your
    application (yourAppName__) by a message similar to the one below:
    12-01-1999 09:43:10 0 plemouel-pc `RM Proxy` 301 0 0x1200fff `OWS-25010:
    Failed to get cartridge 'appPackage/__' for '360' times.
    If your EJB is deployed in OAS on NT, and you have installed the JDK 1.2, or JRE1.2 on your machine
    don't look further. Even if your path and
    classpath are set to use the correct 1.x JDK, OAS EJBs runtime uses the createProcess system command,
    which will cause the JDK1.2 JVM
    to be loaded. This version of the JVM is not supported at the moment by OAS.
    The reason behind this unfortunate behavior is twofold:
    When you install JDK 1.2, the java.exe executable is also copied in the Windows system32 directory.
    The system command we are using (createProcess) to start the JVM looks there first (MS design) before
    looking in the PATH
    environment variable.
    Therefore OAS tries to start your EJB application in JDK1.2 JVM, which is not supported at the moment.
    We will fix this problem, but in the meantime, if you need to have the JDK1.2 on the same machine as
    your OAS installation. You will need to
    edit the wrb.app (this file is located in directory ows\admin\website40\wrb) file after deploying your
    EJB.
    In the wrb.app file look for:
    [APPLICATION.myAppName]
    where myAppName is the name of your EJB application. Below this tag, you should have the following line:
    ExecString = javaw -mx64M oracle.oas.container.Main
    Edit this line to add the javaw path. This should look something like this:
    ExecString = c:\orant\ows\4.0\jdk\bin\javaw -mx64M oracle.oas.container.Main
    Save the wrb.app file and then reload OAS.
    If you have not installed the JDK1.2 or JRE1.2, your EJB has probably been deployed incorrectly. Check
    in directory
    ows/apps/ejb/yourAppName to make sure that the following three files are present: _application.jar;
    client.jar; and server.jar."

  • Upgrade causing CORBA.BAD_PARAM error

    Hello, we are currently upgrading to 8.1 and have encountered the following problem:
    When our reportServlet is running, we get this error:
    org.omg.CORBA.BAD_PARAM: Couldn't connect Object to the ORB vmcid: OMG minor code: 10 compl
    This servlet is using the parallel crystal API as well to generate our reports.
    Any ideas?
    Thanks,
    Dan

    Having same problem here.
    Upgradeing report server, from 3.7 to Harmoni 1.0 - from Dynalivery.com
    Previously we ran Jacorb as ORB.
    Now Jacorb gives error, and when i revert to no specific ORB at all, i get this error;
    org.omg.CORBA.BAD_PARAM: Couldn't connect Object to the ORB vmcid: OMG minor code: 10 completed: No
    at weblogic.corba.orb.ORB.connect(ORB.java:299)
    at com.dynalivery.harmoni.HarmoniGateway.RequestServer(Unknown Source)
    at com.dynalivery.harmoni.HarmoniGateway.RequestServer(Unknown Source)
    at com.dynalivery.harmoni.HarmoniApplicationClient.Connect(Unknown Source)
    at com.dynalivery.harmoni.HarmoniApplicationClient.ConnectToHost(Unknown Source)
    at se.rgk.sibsys.report.impl.AbstractReportObject.getPCREEngine(AbstractReportObject.java:653)

Maybe you are looking for

  • How to count occurences of a certain string in incoming real-time data? Also displaying RTC data. Current VI included

    I use LabView student Express 7 on a Windows XP system. Time-frame: we are doing final integrations for our balloon experiment today. We just got told that the press wants to view real-time data, which we haven't programmed for. I need help to get a

  • Acrobat 11.01.10 Mac OS 10.8.5 Crashes when opening preferences or making annotations

    I noticed my MacBook Air (2 GHz Intel Core i7 8 GB Memory) was opening Acrobat Pro 8 rather than Acrobat Pro 11 -- I had installed the latter but at some point had starting defaulting to the former. So I deleted Acrobat Pro 8 and began using just XI.

  • Issues with MacBook Pro mid 2012 and SSD data 3

    I installed a Samsung SSD in my macbook pro model A1278, it work very well since yesterday; maverick 10.9.2 run very very slow and it have a lot of lag. And so ai provide to reinstall the native HDD and it run very well. I decided to buy another SSD

  • Font smoothing issues

    Hi all. I noticed some others were complaining about font smoothing not seeming to work in Carbon applications (e.g. Camino, Firefox, MS Word and even iTunes). It seems the subpixel font-aliasing system preference (e.g. light) is ignored and, instead

  • Wrong output by pgrep -f command

    Hello! I have created a monitor, that check the running instances of a process under Linux (SLES11SP3) with SCOM 2012 SP1 CU4. As monitor type I chose the "Microsoft.Unix.ShellCommand.TwoState.MonitorType" (which I have used successfully many times)