URGENT :class oracle.jbo.server.OAJboViewRowImpl has been depricated ...

hey ,
I'm currently wrkin on Oracle IDE 10.1.3.39.81 .. I get an error msg "class oracle.jbo.server.OAJboViewRowImpl has been depricated " ...
upon using getAttributeInternal() .. i could not find any solution using jdoc .. please suggest me a solution to remove the warning ..
Thanks ...

Shiva,
With Release of r12 and Jdeveloper10g, we are using BC4J layer of ADF, which has signifucant enhancement on the bc4j part.So continue using old methods of bc4j, until oracle comes with new javadoc for bc4j in oaf.
Ideally what u said is correct correct u should have
zero errors and zero warnings, but somehow some warnings u cannot avoid :).
--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Where is this class:  oracle.jbo.server.EntityImpl

    Does anyone know what jar file contains the following classes:
    oracle.jbo.server.EntityImpl
    oracle.jbo.server.AttributeDefImpl
    Thanks!
    -Teri Kemple
    [email protected]

    It's bc4jmt.jar in BC4J\lib. "mt" probably stands for "middle tier".

  • Error: cannot access class oracle.jbo.server.ViewObjectImpl;

    hi
    while compiling my project
    i m getting this error..
    Error: cannot access class oracle.jbo.server.ViewObjectImpl; file oracle\jbo\server\ViewObjectImpl.class not found
    please help.
    regards
    naveen

    Are the fwk class libraries included in jdev project ?
    Thanks
    Tapash

  • ADF error at 10.1.3.1 Invalid class: oracle.jbo.ApplicationModule

    Hi,
    I need some help. I'm a novice jdeveloper user, but I have managed to build a small appilcation for a client, with use of ADF. When I try to run it at the applications server, it can't find the page, and have this error in the application.log:
    07/01/23 09:15:58.698 rtvview: Servlet error
    oracle.classloader.util.AnnotatedLinkageError: Class oracle/jbo/ApplicationModule violates loader constraints
    Invalid class: oracle.jbo.ApplicationModule
    Loader: adf.oracle.domain:10.1.3.1
    Code-Source: /t02dat/iast_r3/midtier/BC4J/lib/adfm.jar
    Configuration: <code-source> in /t02dat/iast_r3/midtier/j2ee/home/config/server.xml
    Dependent class: oracle.jbo.uicli.mom.JUApplicationDefImpl
    Loader: adf.oracle.domain:10.1.3.1
    Code-Source: /t02dat/iast_r3/midtier/BC4J/lib/adfm.jar
    Configuration: <code-source> in /t02dat/iast_r3/midtier/j2ee/home/config/server.xml
    Does anyone have an idea?
    Versions:
    Jdeveloper 10.1.3.1
    Application Server 10.1.3.1.0
    Thanks
    Jorn
    It worked when I tried to deploy the application thru jdeveloper server connection. Does anyone know why it's working now?
    Message was edited by:
    user527535

    I've managed to eliminate the JBO-35007 errors through the use of the Refresh and RefreshCondition tags. The problem I have now is that I do most of my testing in Firefox (latest release) and it seems to be caching pages even though I have caching turned off. For instance we have different menu options based on a user's privileges. If I log out and log in as someone else who has different privileges the previous user's options are still displayed. If I click on them it then refreshes the page and the new user's options are displayed. This is also fixed by manually refreshing the page. I do not encounter this problem at all with IE, only firefox. Any thoughts here?

  • Cannot convert type class java.lang.String to class oracle.jbo.domain.Clob

    Cannot convert type class java.lang.String to class oracle.jbo.domain.ClobDomain.
    Using ADF Business Components I have a JSFF page fragment with an ADF form based on a table with has a column of type CLOB. The data is retrieved from the database and displayed correctly but when any field is changed and submitted the above error occurs. I have just used the drag and drop technique to create the ADF form with a submit button, am I missing a step?
    I am using the production release of Jdeveloper11G

    Reproduced and filed bug# 7487124
    The workaround is to add a custom converter class to your ViewController project like this
    package oow2008.view;
    import javax.faces.application.FacesMessage;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import javax.faces.convert.Converter;
    import javax.faces.convert.ConverterException;
    import oracle.jbo.domain.ClobDomain;
    import oracle.jbo.domain.DataCreationException;
    public class ClobConverter implements Converter {
         public Object getAsObject(FacesContext facesContext,
                                   UIComponent uIComponent,
                                   String string) {
           try {
             return string != null ? new ClobDomain(string) : null;
           } catch (DataCreationException dce) {
             dce.setAppendCodes(false);
             FacesMessage fm =
               new FacesMessage(FacesMessage.SEVERITY_ERROR,
                                "Invalid Clob Value",
                                dce.getMessage());
             throw new ConverterException(fm);
         public String getAsString(FacesContext facesContext,
                                   UIComponent uIComponent,
                                   Object object) {
           return object != null ?
                  object.toString() :
                  null;
    }then to register the converter in faces-config.xml like this
    <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee">
      <application>
        <default-render-kit-id>oracle.adf.rich</default-render-kit-id>
      </application>
      <converter>
        <converter-id>clobConverter</converter-id>
        <converter-class>oow2008.view.ClobConverter</converter-class>
      </converter>
    </faces-config>then reference this converter in the field for the ClobDomain value like this
              <af:inputText value="#{bindings.Description.inputValue}"
                            label="#{bindings.Description.hints.label}"
                            required="#{bindings.Description.hints.mandatory}"
                            columns="40"
                            maximumLength="#{bindings.Description.hints.precision}"
                            shortDesc="#{bindings.Description.hints.tooltip}"
                            wrap="soft" rows="10">
                <f:validator binding="#{bindings.Description.validator}"/>
                <f:converter converterId="clobConverter"/>
              </af:inputText>

  • Java.lang.NullPointerException at oracle.jbo.server.QueryCollection.findByKey(QueryCollection.java:5110)

    We have deployed our ADF application in production. We developed using JDeveloper Version 11.1.2.1.0. In a page fragment, there is a inputComboboxListOfValues which is binded to a list of values binding. This list of values binding is mapped to an attribute of a view object which has a lov from a view accessor (through view link).
    In this inputComboboxListOfValues component, we get this error sometimes in production and we are neither able to re-produce the error nor able to find the reason for the error.
    java.lang.NullPointerException
    at oracle.jbo.server.QueryCollection.findByKey(QueryCollection.java:5110)
    at oracle.jbo.server.ViewRowSetImpl.findByKey(ViewRowSetImpl.java:5488)
    at oracle.jbo.server.ViewRowSetImpl.findByAltKey(ViewRowSetImpl.java:5311)
    at oracle.jbo.server.ViewObjectImpl.findByAltKey(ViewObjectImpl.java:11566)
    at oracle.adf.model.binding.DCIteratorBinding.findRowsByKeyValues(DCIteratorBinding.java:5065)
    at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$ListOfValuesModelImpl.getValueFromSelection(FacesCtrlLOVBinding.java:1715)
    at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.decodeInternal(SimpleInputListOfValuesRendererBase.java:133)
    at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputComboboxListOfValuesRenderer.decodeInternal(SimpleInputComboboxListOfValuesRenderer.java:86)
    at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.decodeInternal(LabeledInputRenderer.java:56)
    at oracle.adf.view.rich.render.RichRenderer.decode(RichRenderer.java:342)
    at org.apache.myfaces.trinidad.render.CoreRenderer.decode(CoreRenderer.java:292)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1334)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:865)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.processDecodes(UIXComponentBase.java:965)
    at org.apache.myfaces.trinidad.component.UIXEditableValue.processDecodes(UIXEditableValue.java:287)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1548)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1735)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:222)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1750)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1627)
    Please help us to solve this issue.

    Timo,
    I noticed that in the application module, these are the settings for passsivation:
    jbo.dofailover=false
    jbo.passivationstore=null
    Do you recommend to change to above settings to
    jbo.dofailover=true
    jbo.passivationstore=file
    We are not using cluster for production environment...
    Please suggest..

  • NullPointerException in oracle.jbo.server.ViewRowStorage.getAttributeInternal()

    Hi,
    I am deploying A web module that uses BC4J on OC4J. This has gone ok for some time, but since a few days I am receiving
    500 Internal Server Error
    java.lang.NullPointerException     at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java(Compiled Code))     at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java(Compiled Code))     at com.centraalboekhuis.cbonline.model.VCboLookupArtFeViewRowImpl.getLevKd(VCboLookupArtFeViewRowImpl.java:77)     at com.centraalboekhuis.cbonline.bestellen.ModelInsertBestelling.perform(ModelInsertBestelling.java:93)     at com.cumquatit.j2ee.controller.web.HttpController.doAction(HttpController.java:139)     at com.centraalboekhuis.cbonline.CBOnline.doAction(CBOnline.java:125)     at com.cumquatit.j2ee.controller.web.HttpController.doPost(HttpController.java:163)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:211)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:309)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle9iAS (2.0.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    ... whenever I try to Insert or Update a row. Querying goes ok. Could it be that the bc4j configuration on my application server is somehow faulty?
    Has anybody gotten this nullpointer before?
    Thanks,
    Martijn
    We use:
    - oc4j 902
    - Ibm AIX 433
    - Jdev9i

    Sorry, already solved it. If you are interested at all, just email me and I will explain my mistake :-)

  • Oracle.jbo.server.EntityDefImpl error after EO extension

    Hi friends,
    I have extened EO for an Oracle seeded page.
    Step 1. Extened the EO
    Step 2. Added -Djbo.project=xxxx to the run property
    Step 3. Added the substitution (oracle EO: extended EO)
    After these steps, if I run the page it is throwing error message oracle.jbo.server.EntityDefImpl. If I take out the substitution the page is running properly.
    I did not add any piece of code after extending.
    This is urgent. Can some one hlep me what is the mistake I am doing here?
    Thanks,
    Vas

    Vas,
    Please more details listing all the steps you have taken. It will be easier to diagnose the issue.
    Also are you running the page from jdev or instance? What is the full error stack?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Glassfish and oracle.jbo.server.uniqueid.UniqueIdHelper

    Hello,
    I am using:
    JDev 11.1.2.3.0
    Glassfish 3.1.2.2 w/ ADF Essentials
    Oracle DB 11gR2
    Just started a simple ADF application to connect to a single database table. The app work fine, I can navigate through the entries, make changes, and CreateInsert works (when I manually insert a primary key). I am trying to generate the primary key automatically with oracle.jbo.server.uniqueid.UniqueIdHelper.nextId() as a default expression in the model for that primary key(with Refresh on Insert checked). When I click on CreateInsert I receive error: javax.naming.NameNotFoundException: javax.transaction.TransactionManager not found. The stack trace is below.
    I have tried the following datasource configurations:
    restype javax.sql.DataSource datasourceclassname oracle.jdbc.pool.OracleDataSource
    restype javax.sql.XADataSource datasourceclassname oracle.jdbc.xa.client.OracleXADataSource
    Should this work in Glassfish? (Fairly certain I had similar project working in Weblogic 10.3)
    TIA,
    Ernie
    [#|2013-03-06T01:43:19.148-0500|WARNING|glassfish3.1.2|oracle.adf.controller.faces.lifecycle.Utils|_ThreadID=29;_ThreadName=Thread-4;|ADF: Adding the following JSF error message: javax.transaction.TransactionManager not found
    javax.naming.NamingException: Lookup failed for 'javax.transaction.TransactionManager' in SerialContext[myEnv={java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming} [Root exception is javax.naming.NameNotFoundException: javax.transaction.TransactionManager not found]
         at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:518)
         at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:455)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at oracle.jbo.server.JTATxnHandlerImpl.lookupTransactionManager(JTATxnHandlerImpl.java:425)
         at oracle.jbo.server.JTATxnHandlerImpl.getTransactionManager(JTATxnHandlerImpl.java:477)
         at oracle.jbo.server.uniqueid.UniqueIdHelper.isInJTATransaction(UniqueIdHelper.java:175)
         at oracle.jbo.server.uniqueid.UniqueIdHelper.getNextId(UniqueIdHelper.java:92)
         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 org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:86)
         at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:234)
         at groovy.lang.MetaClassImpl.getProperty(MetaClassImpl.java:1594)
         at groovy.lang.MetaClassImpl.getProperty(MetaClassImpl.java:3281)
         at org.codehaus.groovy.runtime.callsite.ClassMetaClassGetPropertySite.getProperty(ClassMetaClassGetPropertySite.java:48)
         at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callGetProperty(AbstractCallSite.java:237)
         at bc4j_com_dipko_propertytracker_model_Properties_Propertyid_null_gs.run(bc4j_com_dipko_propertytracker_model_Properties_Propertyid_null_gs.groovy:1)
         at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1200)
         at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1253)
         at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:1075)
         at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2132)
         at oracle.jbo.server.EntityImpl.initDefaultExpressionAttributes(EntityImpl.java:1004)
         at oracle.jbo.server.EntityImpl.create(EntityImpl.java:957)
         at oracle.jbo.server.EntityImpl.callCreate(EntityImpl.java:1131)
         at oracle.jbo.server.ViewRowStorage.create(ViewRowStorage.java:1140)
         at oracle.jbo.server.ViewRowImpl.create(ViewRowImpl.java:461)
         at oracle.jbo.server.ViewRowImpl.callCreate(ViewRowImpl.java:478)
         at oracle.jbo.server.ViewObjectImpl.createInstance(ViewObjectImpl.java:5800)
         at oracle.jbo.server.QueryCollection.createRowWithEntities(QueryCollection.java:1941)
         at oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(ViewRowSetImpl.java:2504)
         at oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(ViewRowSetImpl.java:2545)
         at oracle.jbo.server.ViewRowSetImpl.createRow(ViewRowSetImpl.java:2526)
         at oracle.jbo.server.ViewObjectImpl.createRow(ViewObjectImpl.java:11170)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1355)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2169)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:731)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:402)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:185)
         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.sun.el.parser.AstValue.invoke(AstValue.java:254)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:302)
         at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
         at javax.faces.event.MethodExpressionActionListener.processAction(MethodExpressionActionListener.java:148)
         at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:824)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
         at oracle.adf.view.rich.component.UIXMenuBar.broadcast(UIXMenuBar.java:131)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:787)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1252)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:973)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:354)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:202)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
         at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1550)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:343)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:256)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:217)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:279)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:655)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:161)
         at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:331)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:231)
         at com.sun.enterprise.v3.services.impl.ContainerMapper$AdapterCallable.call(ContainerMapper.java:317)
         at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
         at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:860)
         at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:757)
         at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1056)
         at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:229)
         at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
         at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
         at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
         at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
         at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
         at java.lang.Thread.run(Thread.java:680)
    Caused by: javax.naming.NameNotFoundException: javax.transaction.TransactionManager not found
         at com.sun.enterprise.naming.impl.TransientContext.doLookup(TransientContext.java:248)
         at com.sun.enterprise.naming.impl.TransientContext.lookup(TransientContext.java:215)
         at com.sun.enterprise.naming.impl.SerialContextProviderImpl.lookup(SerialContextProviderImpl.java:77)
         at com.sun.enterprise.naming.impl.LocalSerialContextProviderImpl.lookup(LocalSerialContextProviderImpl.java:119)
         at com.sun.enterprise.naming.impl.SerialContext.lookup(SerialContext.java:505)
         ... 96 more

    Hi,
    this has nothing to do with Glassfish as it seems. Any reason you don't generate the sequence in the database (on-insert trigger) and set the PK attribute type to DBSequence? This is the most straight forward and declarative approach.
    Frank

  • Reference to Number is ambiguous; both class oracle.jbo.domai

    Hi,
    I'm trying to import the OAF BOPackage oracle.apps.icx.schema.server but I get 480 error messages when trying to make the files. (I have not made any changes yet)
    Most of the errors are like:
    Error(83,12): reference to Number is ambiguous; both class oracle.jbo.domain.Number in package oracle.jbo.domain and class java.lang.Number in package java.lang match
    Is there something wrong in my path Any ideas on how to fix this?
    My workaround is to compile the files I need on the server.
    /Karin

    Sumit,
    This is a common issue, and the cause of this is the decompiler.When decompiler decompiles a class file back to java file, it converts all the null refrences to "null", so, if the java file originally contained
    Number n in any method call where n is null, the decompiled java file will contain only null instead of Number n, so when you compile, the java compiler get ambigous refrence, and is not able to decide whether it is javan.lang.number or oracle.jbo.domain.Number.
    Karin,
    What you need to do is, identify the line where this error is coming, and put a null refrence of the data type. This should solve your problem.I hope i am clear.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • TS3276 ppl i fed up with my mac air while using my exchange email account, it takes ages to refresh and it doesn't send or receive instantly , no clue although that the same setting and server names has been set up on my iPhone and it is working fine

    ppl i fed up with my mac air while using my exchange email account, it takes ages to refresh and it doesn't send or receive instantly , no clue although that the same setting and server names has been set up on my iPhone and it is working totally fine

    Install ClamXav and run a scan with that. It should pick up any trojans.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • Method addTextUrlColumn (Class oracle.jbo.html.databeans)

    The method addTextUrlColumn (Class oracle.jbo.html.RowSetBrowser) adds an additional column to the View's RowSet. This column will be appended after all of the colummns that represent attributes belonging to the RowSet. How can I insert a additoinal column before all of the columns of the RowSet instead?
    Thanks
    Yoo

    The RowsetBrowser doesn't support this by default, you have source code to this control. You can extend it's features by adding this capability. Look at the source code in bc4jhtmlsrc.zip

  • Open Web Server code has been updated

    This is to announce that [Open Web Server|http://wikis.sun.com/display/wsFOSS/Open+Web+Server] code has been updated. It has all relevant bug fixes that went into Sun Java System Web Server 7.0 update 4 and 5 releases.

    Arvind_Srinivasan wrote:
    Merging the changes that rcrit and river tarnell contributed is in the plan.
    [For River Tarnell's changes|http://loreley.flyingparchment.org.uk/pages/ows], we do not have IPS repository for HP-UX. So how do I make defines*.mk? Where should I get components from and what should be the default location of those?
    The following diffs look ok.
    diff -cr webserver/src/server/plugins/fastcgi/Makefile webserver-old/src/server/plugins/fastcgi/Makefile
    *** webserver/src/server/plugins/fastcgi/Makefile     Tue Feb 17 08:10:44 2009
    --- webserver-old/src/server/plugins/fastcgi/Makefile     Mon Feb 16 13:19:21 2009
    *** 50,55 ****
    --- 50,63 ----
      LOCAL_LIBDIRS+=../../libserverxml/$(OBJDIR)
      LOCAL_LIBDIRS+=../../libsi18n/$(OBJDIR)
      LOCAL_LIBDIRS+=../../../support/support/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/filecache/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/time/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/NsprWrap/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/threadpool/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/xp/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libdbm/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/ares/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libxsd2cpp/$(OBJDIR)
      DLL_TARGET=fastcgi
      DLL_OBJS=errortypes util fastcgii18n serverconfig fcgirequest fcgiparser serverchannel
    diff -cr webserver/src/server/plugins/htaccess/Makefile webserver-old/src/server/plugins/htaccess/Makefile
    *** webserver/src/server/plugins/htaccess/Makefile     Tue Feb 17 08:10:45 2009
    --- webserver-old/src/server/plugins/htaccess/Makefile     Mon Feb 16 13:18:22 2009
    *** 43,48 ****
    --- 43,57 ----
      LOCAL_LIBDIRS+=../../libcrypt/$(OBJDIR)
      LOCAL_LIBDIRS+= ../../webservd/$(OBJDIR)
      LOCAL_LIBDIRS+= ../../../support/support/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/filecache/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/time/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/NsprWrap/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/threadpool/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/xp/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/libdbm/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/ares/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../../support/libxsd2cpp/$(OBJDIR)
    +  LOCAL_LIBDIRS+=../../libsi18n/$(OBJDIR)
      DLL_TARGET=htaccess
      DLL_OBJS=http_access http_auth http_config http_register util main list
    diff -cr webserver/src/server/plugins/shtml/Makefile webserver-old/src/server/plugins/shtml/Makefile
    *** webserver/src/server/plugins/shtml/Makefile     Tue Feb 17 08:10:46 2009
    --- webserver-old/src/server/plugins/shtml/Makefile     Mon Feb 16 13:17:29 2009
    *** 47,52 ****
    --- 47,62 ----
      DLL_LIBS+=$(DAEMON_DLL)
      LOCAL_LIBDIRS+=../../webservd/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/filecache/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/time/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/NsprWrap/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/support/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/threadpool/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/xp/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libdbm/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/ares/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../../support/libxsd2cpp/$(OBJDIR)
    + LOCAL_LIBDIRS+=../../libsi18n/$(OBJDIR)
      DLL_NONPARSED_OBJS=../../shtml/$(OBJDIR)/ShtmlPlugin.$(OBJ)
      SHIP_PUBLIC_DYNAMIC_LIBRARIES=$(DLL_TARGET)
    $diff -wr webserver/templates/Makefile webserver-old/templates/Makefile
    75,77d74
    < ifeq ($(OS_ARCH), HP-UX)
    < WS_SERVER_TEMPDIR=$(shell mktemp -d /tmp -p $(WS_INSTANCE_NAME)-)
    < else
    79d75
    < endif

  • ICM 8.0(2) - Number of supported agent mode connections [2000] by one CTI OS Server pair has been reached

    Hi,
    I have an environment with ICM 8.0(2) integrated with UCM 8.0.2.40000 and IPIVR 8.02.11005.
    The system are working properly but sometimes all the agents are forced to disconnect on the CTI OS Toolkit and all the functions are disabled then the agents just are able to log in again after restart and reset the extension mobility.
    After analyze the logfiles of the CTI OS Server, I found the following messages:
    16:55:04:171 unknown-ctios Trace: [agent.5000.5053] QUERY_AGENT_STATE_CONF ( eTalking ) : (PeripheralID:5000
    AgentState:eTalking NumSkillGroups:2 MRDID:1 ICMAgentID:5097 AgentMode:1
    MaxTaskLimit:1 NumTasks:1 AgentExtension:78112238 AgentID:5053
    AgentInstrument:78112238 UniqueObjectID:agent.5000.5053
    MessageID:eQueryAgentStateConf AgentAvailabilityStatus:0
    SkillGroup[1]:(SkillGroupNumber:1742 SkillGroupID:5000 SkillGroupPriority:0
    SkillGroupState:7) SkillGroup[2]:(SkillGroupNumber:37 SkillGroupID:5151
    SkillGroupPriority:0 SkillGroupState:4))[CtiosBaseAgentObject,
    T_BASE_AGENT_QUERY_AGENT_STATE_CONF, 29262]
    16:55:04:171 unknown-ctios Trace: CServiceBroker::ProcessEvent(): CLIENT_EVENT_REPORT_CONF
    16:55:04:187 unknown-ctios Trace: --> RCV CLIENT[15494] INFO MESSAGE, length: 86
    16:55:04:187 unknown-ctios Trace: ClientMgr[1]::IdentifyClientRequest, Client[15494]: Changing ClientID
    ["15494"->"MV8016-3056-dotNET_Sess(6925029)_EvtThd(71)"].
    16:55:04:187 unknown-ctios Trace: --> RCV CLIENT[MV8016-3056-dotNET_Sess(6925029)_EvtThd(71)] INFO MESSAGE,
    length: 277
    16:55:04:187 unknown-ctios Trace: CRequestBroker::OnRequest(), ClientConnectionID[15494]::WARNING!!! Number of
    supported agent mode connections [2000] by one CTI OS Server pair has been
    reached.
    16:55:04:187 unknown-ctios Trace: [agent.5000.5046] QUERY_AGENT_STATE_REQ : (PeripheralID:5000 PeripheralType:0
    AgentState:eUnknown AgentExtension:78112258 AgentID:5046
    AgentInstrument:78112258 AgentPassword:123456 SkillGroups:()
    UniqueObjectID:agent.5000.5046 MessageID:eSetSessionModeRequest
    ClientAgentTemporaryID:agent.1357919595 ClassIdentifier:1 IsSupervisor:0
    LastError:(dotNET_Sess(10041842)_EvtThd(164):0) ConnectionMode:1
    CILConnectionID:15494 AutoLogin:0 SavedAgentState:9 WaitingforRecovery:0
    SavedLoginInfo:() NonClientRequest:1 CurrentProfile:(null)
    IsAgentTeamMember:0 SavedAgentId:5046
    OriginatingClientID:MV8016-3056-dotNET_Sess(6925029)_EvtThd(71)
    SilentMonitorTargetAgentUID:(null)
    SilentMonitorCallUID:(null))[CtiosBaseAgentObject,
    T_BASE_AGENT_QUERY_AGENT_STATE_REQ, 29262]
    16:55:04:187 unknown-ctios Trace: [agent.5000.5046] QUERY_AGENT_STATE_CONF ( eAvailable ) : (PeripheralID:5000
    AgentState:eAvailable NumSkillGroups:2 MRDID:1 ICMAgentID:5080 AgentMode:1
    MaxTaskLimit:1 NumTasks:0 AgentExtension:78112258 AgentID:5046
    AgentInstrument:78112258 UniqueObjectID:agent.5000.5046
    MessageID:eQueryAgentStateConf AgentAvailabilityStatus:1
    SkillGroup[1]:(SkillGroupNumber:1742 SkillGroupID:5000 SkillGroupPriority:0
    SkillGroupState:3) SkillGroup[2]:(SkillGroupNumber:48 SkillGroupID:5362
    SkillGroupPriority:0 SkillGroupState:3))[CtiosBaseAgentObject,
    T_BASE_AGENT_QUERY_AGENT_STATE_CONF, 29263]
    16:55:04:187 unknown-ctios Trace: CServiceBroker::ProcessEvent(): CLIENT_EVENT_REPORT_CONF
    16:55:04:203 unknown-ctios Trace: --> RCV CLIENT[15484] INFO MESSAGE, length: 89
    16:55:04:203 unknown-ctios Trace: ClientMgr[1]::IdentifyClientRequest, Client[15484]: Changing ClientID
    ["15484"->"MV4702-4160-dotNET_Sess(48095888)_EvtThd(1062)"].
    16:55:04:250 unknown-ctios Trace: XXX CLIENT[MV6984-4620-dotNET_Sess(24727327)_EvtThd(529)], CLOSE
    16:55:04:250 unknown-ctios Trace: XXX CLIENT[MV11761-2720-dotNET_Sess(62684179)_EvtThd(475)], CLOSE
    16:55:04:250 unknown-ctios Trace: CClient::Close:
    CLIENT[MV11761-2720-dotNET_Sess(62684179)_EvtThd(475)][0x4dcdc08, CLOSE(),
    Calling OnConnectionClosed()
    16:55:04:250 unknown-ctios Trace: XXX CLIENT[MV6977-4236-dotNET_Sess(46292023)_EvtThd(158)], CLOSE
    16:55:04:250 unknown-ctios Trace: XXX CLIENT[MV8015-5444-dotNET_Sess(9926532)_EvtThd(81)], CLOSE
    16:55:04:250 unknown-ctios Trace: CClient::Close: CLIENT[MV8015-5444-dotNET_Sess(9926532)_EvtThd(81)][0x576e630,
    CLOSE(), Calling OnConnectionClosed()
    16:55:04:250 unknown-ctios Trace: CClient::Close:
    CLIENT[MV6984-4620-dotNET_Sess(24727327)_EvtThd(529)][0x4f98000, CLOSE(),
    Calling OnConnectionClosed()
    16:55:04:250 unknown-ctios Trace: XXX CLIENT[MV6973-5644-dotNET_Sess(31599171)_EvtThd(1119)], CLOSE
    16:55:04:250 unknown-ctios Trace: CClient::Close:
    CLIENT[MV6973-5644-dotNET_Sess(31599171)_EvtThd(1119)][0x66ba9f0, CLOSE(),
    Calling OnConnectionClosed()
    16:55:04:250 unknown-ctios Trace: CClient::Close:
    CLIENT[MV6977-4236-dotNET_Sess(46292023)_EvtThd(158)][0x7572c10, CLOSE(),
    Calling OnConnectionClosed()
    16:55:04:250 unknown-ctios Trace: XXX CLIENT[MV11761-2720-dotNET_Sess(2094081)_EvtThd(773)], CLOSE
    16:55:04:250 unknown-ctios Trace: CClient::Close:
    CLIENT[MV11761-2720-dotNET_Sess(2094081)_EvtThd(773)][0x5ecf2d8, CLOSE(),
    Calling OnConnectionClosed()
    16:55:04:250 unknown-ctios Trace: ClientMgr[1]::OnConnectionClosed,
    Client[0x0576E630][MV8015-5444-dotNET_Sess(9926532)_EvtThd(81)]
    16:55:04:250 unknown-ctios Trace: XXX CLIENT[MV6812-6004-dotNET_Sess(33915130)_EvtThd(140)], CLOSE
    16:55:04:250 unknown-ctios Trace: CClient::Close:
    CLIENT[MV6812-6004-dotNET_Sess(33915130)_EvtThd(140)][0x5508cc8, CLOSE(),
    Calling OnConnectionClosed()
    The message that caught my attention was the following: 16:55:04:187 unknown-ctios Trace: CRequestBroker::OnRequest(), ClientConnectionID[15494]::WARNING!!! Number of supported agent mode connections [2000] by one CTI OS Server pair has been reached.
    But in our environment has only 250 agents
    Anyone seen this before? Thanks very much

    Hi Gergely,
    I analyzed the following situation: when the agent logs in the CTI OS Toolkit the client opens a lot of sessions with differents ports.
    Like the following example:
      TCP    bbaproggerp1:42028     mv8011:4544  ESTABLISHED
      TCP    bbaproggerp1:42028     mv8011:4545  ESTABLISHED
      TCP    bbaproggerp1:42028     mv8011:4546  ESTABLISHED
      TCP    bbaproggerp1:42028     mv8011:4548  ESTABLISHED
    Where mv8011 is the hostname of the machine and 4544,4545,4546 and 4548 are the ports of CTI OS Client connected on port 42028.
    When the agent disconnect of the application just one connection is closed then  if it logs again another two connections will be open.

  • ERROR: CORBA Client Test Sample: import oracle.jbo.server.ApplicationModuleImpl;

    Hi, guys,
    I am deployed the CORBA in my system and it succeed. But when I created a new client to called my CORBA, and I used the code provided in the JDEV3.2 help: Topics: Testing a Business Components CORBA Server Object Deployed to Oracle8i with a Code Client
    and it did not work for the deptVo.first(). Since it need the oracle.jbo.server.ApplicationModuleImpl; then I add the import:
    import oracle.jbo.server.ApplicationModuleImpl;
    When I compiled it, I got the error:
    Error: (66) identifier oracle.jbo.server.ApplicationModuleImpl not found. Anybody please help for the import. The package is clearly there, Why NOT FOUND?
    Thanks in advance.
    Mike
    null

    Test you app with application module pooling turned off to find out if this is a general problem with passivation of your application. You may need to overwrite the activation/passivation methods of your programmatic VOs.
    Timo

Maybe you are looking for

  • Lync sharing data

    I have some problem when sharing desktop with MS Lync 2010 at my application side. My application use rfx for encoding sharing data, then send data to MS Lync 2010 side, but MS Lync only display a black rectangle and send mouse and keyboard event to

  • A beautiful thing.

    I'm encoding a 1080i AVCHD sequence to MPEG-2 DVD. All eight 3.2Ghz cores in my workstation running above 95%. Sweet.

  • EP Sneak Preview - Moving from Portal Authentication to LDAP

    Has anyone used the EP sneak preview, configuring first against portal authentication alone and then moving users to LDAP and leaving just the roles in the portal db, without having disaster strike and have to reinstall, etc.? Thanks in advance.

  • Webdynpro Test Service error RABAX_STATE

    Hello, We just migrated from 4.6c to ECC 6.0 (SAP_BASIS SP12) and as requested the ITS has been activated and configured. All active services are working fine includeing default_host/sap/bc/gui/sap/its/webgui but everything under /default_host/sap/bc

  • Error when connection to SQL2005 from MX7

    I am trying to connect to a Microsoft SQL2005 database from cfadmin on MX7. Seems pretty straightforward as it looks set up like the cf5. However, I keep getting the following error: "Connection verification failed for data source: ProfDev java.sql.S