Deployment problem sdk 1.4 with entity bean

hallo!
i have a big problem with the j2ee sdk 1.4. when i want to add an entity bean to my ear-file, everything goes good, but when i put the sql-ql for the finder-method and save the file i got an error like this
xxxxxxx.ear is corrupt or cannot be read
when i dont save and will show the descriptor it generates an empty descriptor for this entity bean.
the problem is, that the deployment tool cannot generate the deployment desciptor for entity beans. with session bean there was no problems.
hope somebody can help me.
thanks

There's bug in non-U.S. locales. The workaround is described in this thread:
http://forum.java.sun.com/thread.jsp?forum=136&thread=472692&tstart=15&trange=15
-Ian Evans
Sun Microsystems
J2EE Tutorial team

Similar Messages

  • Caching data with Entity Bean

    Hello,
    I am performing some tests concerning the benefit of caching data with Entity Bean.
    Here is the case :
    I have an Entity Bean with a business method getName() to retrieve a name field in the EJB.
    I understand that in order to cach data, I have to set the NOT_SUPPORTED transaction attr for this method. In this way, when this method is called, the ejbReload() is not called and the data is retreived from the EJB ready instance (and not from the database).
    Is it true and is it the good way to use the cach mechanism ?
    Now if we consider that this instance is the only one in the ready stage, and it is never pooled (it seems so !), what about a modification of the database from a tier (or from an other EB instance)? The Entity Bean is not able to see this modification seence it does not call the ejbLoad method.
    Is there a way to force an Entity Bean to be periodically polled in order to recover data from the data store when activated ?
    Thanks in advance,
    Thierry

    No, This is wrong way of doing what you want. Most of the application servers provide various configuration settings for this. Eg. caching mechanism, interval on when to call ejbLoad and ejbStore, read only beans. You have to check the documentation for this.
    --Ashwani

  • Problem woking with entity beans on WL 8.1

    Hi,
    I'm evaluating WL8.1.I'm able to deploy session beans & MDBs & test successfully.Similarly
    , I' m able to deploy entity beans but, not able to test it successfully.It says
    there was a problem in identifying the bean using the specified JNDI name.The
    underlying table name contains '_'(underscorre).Does this create problem.Is there
    any patch for this from bea?
    It 'll be greate if some one respond with the details.
    Thanks
    Raja

    Thanks for ur info.Is this 'CR122524_81sp1.jar' available from bea site?
    Regards
    Raja
    "Deepak Vohra" <[email protected]> wrote:
    >
    >
    CR122524_81sp1.jar
    is required if a table has a underscore(_).
    "raja" <[email protected]> wrote:
    Hi,
    I'm evaluating WL8.1.I'm able to deploy session beans & MDBs & testsuccessfully.Similarly
    , I' m able to deploy entity beans but, not able to test it successfully.It
    says
    there was a problem in identifying the bean using the specified JNDI
    name.The
    underlying table name contains '_'(underscorre).Does this create problem.Is
    there
    any patch for this from bea?
    It 'll be greate if some one respond with the details.
    Thanks
    Raja

  • Report with entity beans - BIG performance problem

    I have several EJBs (CMP entity beans).
    I need to build a report using linked EJBs and show this report
    to a user (so, updates are not needed - report is only for web page demonstration).
    the problem is: such report is generated too slow.
    I have ~100 records in table 'TestResult' and ~500 records in table 'TestObject'.
    these tables are linked like this:
    one testobject <--> many testresults
    for each testresult I need to show a line with some info which should be retrieved
    from bound EJBs (e.g. testresult-testobject-assigneduser-prioritylevel)
    how to optimize such report generation?
    I have heard something about session beans with Value Objects.
    do I need to use such session beans here?
    what is a general solution for generating reports using linked EJBs?
    I tried to solve the problem by using DB View, but it didn't help.
    I have used 'TestResultView' - info is retrieved fast enough from this view
    (several msecs), but displaying this info is still very costly.
    please, help!
    Oracle 8.1.7,
    WebLogic 6.1

    Hi,
    because I have checked the time required to
    1) retrieve EJBS (several msec)Let me share some of my views with you.Once you retrieve the EJBS ie ie the collection of remote interface from the finder method the container is firing single "select " query and gets all the primary keys back.
    2) cycle through it - get fields and display them
    (~4000 msec)Now the cycle of getting the value you are getting the bean from the PooledState to ready state which will get the fields by firing the "select" query (ejbload()). Now in the instance you are invoking the multiple methods and at the end it will remain there in ready till you call the remove which u are not doing so the time out will bring it back to the pooledstate.
    And if you are calling the bean very frequently then all the instances will go to the ready state and the activation & passivation will start developing ......
    So at the end when the bean moves back to the pooled state after timeout the ejbStore() fires the "update " query!!!!
    Let us consider the activation/passivation not appearing for simple understanding !!!!!!!!
    So for each iteration you are firing 2 queries to the database.So if you have 500 records then the queries generatted will be 1(select from finder)+2(1 by select(ejbload)+1 by update(ejbStore))*500. So the flow is calling 1001 queries ...Thus quering about 1000 queries will definetly take some time...
    So what is the solution????
    Any way you dont require to fire the update query as you are just viewing the data...So u can stop calling the ejbStore().
    Hence you queries will drop to half.Now how we can do this is by using the BMP.....
    The other solution is using the Sessionbean and store the data all 500 records in the Object which can be called across the n/w. This object should implements the Serializable interface and this tech is the Transfer Object feature.....
    Hope you find this useful..
    regards
    Vicky

  • Problem with transaction with Entity Beans in R2

    I had a transaction (initiated by a session bean (requires new)) that takes two entity beans (two bank accounts) and trasfer funds from one to another. It looks like the container is waiting for the transaction, i don't know, here comes the exception I get (this code used to work with a lot of simultaneous clients with R1) :
    com.evermind.server.ejb.TimeoutExpiredException: timeout expired waiting for an instance
    at com.evermind.server.ejb.DBEntityWrapperPool.getWrapperInstance(DBEntityWrapperPool.java:189)
    at com.evermind.server.ejb.DBEntityEJBHome.getWrapperInstance(DBEntityEJBHome.java:135)
    error: Remote: Database error, IO failure: com.evermind.server.rmi.OrionRemoteException: Error enlisting connection resource: javax.transaction.RollbackException: The transaction has been marked for rollback (timed out); nested exception is:
    javax.transaction.RollbackException: The transaction has been marked for rollback (timed out); nested exception is:
    com.evermind.server.rmi.OrionRemoteException: Error enlisting connection resource: javax.transaction.RollbackException: The transaction has been marked for rollback (timed out); nested exception is:
    javax.transaction.RollbackException: The transaction has been marked for rollback (timed out)
    above goes the ejb-jar.xml
    <?xml version="1.0"?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.2//EN" "http://java.sun.com/j2ee/dtds/ejb-jar_1_2.dtd">
    <ejb-jar>
    <description>
    </description>
    <enterprise-beans>
    <session>
    <description>
    </description>
    <ejb-name>ContaFacadeEJB</ejb-name>
    <home>contacorrente.ContaFacadeHome</home>
    <remote>contacorrente.ContaFacade</remote>
    <ejb-class>contacorrente.ContaFacadeBean</ejb-class>
    <ejb-ref>
    <ejb-ref-name>ContaCorrenteEJB</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>contacorrente.ContaCorrenteHome</home>
    <remote>contacorrente.ContaCorrente</remote>
    </ejb-ref>
    </session>
    <entity>
    <description>
    </description>
    <ejb-name>ContaCorrenteEJB</ejb-name>
    <home>contacorrente.ContaCorrenteHome</home>
    <remote>contacorrente.ContaCorrente</remote>
    <ejb-class>contacorrente.ContaCorrenteBean</ejb-class>
    <primkey-class>java.lang.String</primkey-class>
    <reentrant>True</reentrant>
    <persistence-type>Container</persistence-type>
    <cmp-field><field-name>id_conta</field-name></cmp-field>
    <cmp-field><field-name>saldo</field-name></cmp-field>
    <cmp-field><field-name>senha</field-name></cmp-field>
    <primkey-field>id_conta</primkey-field>
    </entity>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>ContaFacadeEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>RequiresNew</trans-attribute>
    </container-transaction>
    <container-transaction>
    <method>
    <ejb-name>ContaCorrenteEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Mandatory</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>
    and the code of the beans (just the method used)
    Entity (account)
    public void debita(double valor) throws ContaCorrenteException
    double saldoOld=saldo;
    saldo=saldo-valor;
    if (saldo<0)
    throw new ContaCorrenteException("Saldo insuficiente:"+saldoOld);
    Session :
    public void transfere(String idConta1, String idConta2, double valor, String senha) throws ContaCorrenteException
         try
    Context cx=new InitialContext();
    Object homeObject=cx.lookup("java:comp/env/ContaCorrenteEJB");
    ContaCorrenteHome home=(ContaCorrenteHome) PortableRemoteObject.narrow(homeObject,ContaCorrenteHome.class);
    ContaCorrente c1=null;
    ContaCorrente c2=null;
    try
    c1=home.findByPrimaryKey(idConta1);
    c2=home.findByPrimaryKey(idConta2);
    if (!c1.getSenha().equals(senha)) { throw new ContaCorrenteException("Senha incorreta");}
    catch(FinderException e)
    System.out.println("erro ao localizar conta :"+e.getMessage());
    context.setRollbackOnly();
    throw new ContaCorrenteException("Conta inexistente");
    catch(java.rmi.RemoteException e)
    System.out.println("erro Remote: "+e.getMessage());
    context.setRollbackOnly();
    throw new ContaCorrenteException("Erro ao conectar objeto remoto");
    try
    c1.debita(valor);
    c2.credita(valor);
    catch(ContaCorrenteException e)
    context.setRollbackOnly();
    throw new ContaCorrenteException(e.getMessage());
    catch(java.rmi.RemoteException e)
    throw new ContaCorrenteException("Erro de conexco");
         catch (NamingException e)
    System.out.println("erro de localizagco:"+e.getMessage());
    throw new ContaCorrenteException("Erro de acesso remoto na localizacao da conta");
    please, someone help me...
    Thanks in advance

    I forgot : when i try to shut the server down i get the message :
    Shutting down...
    Error serializing bean: Deadlock detected, timing out call after 15 seconds wait for transaction [Transaction d9:fa:4f:b6:ff:ff:ff:ff:4a:0:0:0:0:0:0:0:0:4b:0:ec:6d:ce:c0:16]
    Error serializing bean: Deadlock detected, timing out call after 15 seconds wait for transaction [Transaction d9:fa:4f:b6:ff:ff:ff:ff:4c:0:0:0:0:0:0:0:0:4d:0:ec:6d:d2:d9:d2]
    Error serializing bean: Deadlock detected, timing out call after 15 seconds wait for transaction [Transaction d9:fa:4f:b6:ff:ff:ff:ff:4e:0:0:0:0:0:0:0:0:4f:0:ec:6d:d4:21:a3]
    and it doesn't shutdown.

  • Problem with entity bean

    Hi friends, i am using cmp entity bean to access my relational data base. In my table i am using a sequence (oracle) to generate a sequentiel number as a unique identifier so in my entity bean i am not inserting a primery key. The problem is that i need to get the primary key of the bean after creating and storing it to use the key for other treatment. Any idea, thank a lot

    Hi,
    It seems you just need to move all "after creation" stuff (including getId()) into ejbPostCreate method.
    If I don't miss anything, think that's all.
    Good luck

  • Strange behavior with entity beans and servlets in a cluster

    We have 2 WebLogic 4.5.1 servers in a cluster with none of the Service
              Packs installed. When a client uses the deployed entity beans or
              servlets they work every other time. The times they do not work nothing
              happens. No exceptions, no responses to the client ( i.e. HTTP 404s ),
              nothing. I suspect something in the cluster setup since we do not have
              these same problems on non-clustered entity beans or servlets. We have
              made sure all the entity beans have the Shared Database flag set on and
              added the delayUpdatesUntilEndOfTx false to the enviroment of the DD.
              That didn't fix the problem. Any ideas?
              Thanks in advance,
              Dallas Dempsey
              DEM - Houston, TX
              

    Do you have log files?
              - Prasad
              Chris Dempsey wrote:
              > We have 2 WebLogic 4.5.1 servers in a cluster with none of the Service
              > Packs installed. When a client uses the deployed entity beans or
              > servlets they work every other time. The times they do not work nothing
              > happens. No exceptions, no responses to the client ( i.e. HTTP 404s ),
              > nothing. I suspect something in the cluster setup since we do not have
              > these same problems on non-clustered entity beans or servlets. We have
              > made sure all the entity beans have the Shared Database flag set on and
              > added the delayUpdatesUntilEndOfTx false to the enviroment of the DD.
              > That didn't fix the problem. Any ideas?
              >
              > Thanks in advance,
              > Dallas Dempsey
              > DEM - Houston, TX
              

  • Problem creating EJB 3.0 Entity bean in JDeveloper

    Hello all,
    I trying to create my first entity bean in JDeveloper.
    JDevelper create the entity bean with the code below:
    package model;
    import java.io.Serializable;
    import javax.persistence.Entity;
    @Entity
    public class BatchSettlementT implements Serializable {
    public BatchSettlementT() {
    The problem is that JDeveloper don't find the import command import javax.persistence.Entity;
    What am I doing wrong?
    I'm using JDeveloper Studio Edition Version 10.1.3.1.0.3914.
    My libraries are:
    - TopLink
    - Oracle XML Parser 2
    - EJB 3.0
    - Toplink Essentials JPA
    - J2EE
    Thanks in advance.

    It's very strange, when I type import.javax. in my class there is no persistence package available, do you have any idea what's wrong.
    I did set the technology scope to EJB either.
    Thanks!

  • Jprobe Memory Debugger with Entity Bean

    hi,
    I m testing an EJB application(Bean Managed) using Jprobe Memory debugger.
    While testing it gives me that objects referred by entity bean are loitering . for eg if somewhere in my code i created an integer using new Integer and if I m letting it passed to ejbCreate .then that object is pointed as loitering while debugging. further it happens with srtring and data access Objects and otheres as well.
    so is there a memory Leak or The debugger is handling the entity bean in such a way.
    version of jprobe used is 5.2.3 on windows
    Please provide me help regarding the same

    Actually, what one or the developers in my group found out is two things:
    1) The clone is a shallow copy.They copy the references but not objects themselves. This has been causing problems for us.
    2) It seems that you don't work on a copy and you work on the original and they keep a copy. Now, this is fine IF you don't have multiple threads working on the same Entity bean and we moved our application from Weblogic where it throws an exception if that Entity bean is in use to OC4J which is suppose to copy the bean and doesn't so you have multiple threads possibly modifying the same object.

  • Performance with entity bean... What am i doing wrong??

    hello,
    My configuration:
    Development = OC4J 10g 9.0.4.0.0 standalone
    Production = Oracle IAS 10g 9.0.4
    JBoss version = 4.0.3 SP1
    I have an application using CMP Entity beans. My architecture uses Stateless session bean to access to the entities and values objects to transfer the data.
    One of this entity beans has the following parameters:
    id : NUMBER(20)
    name : VARCHAR(255)
    data : BLOB
    2 values objects are used to access the entity bean:
    MyLightValueObject with parameters: id and name
    MyValueObject with parameters: id, name and data
    The method findAll of my stateless session bean takes about 255 ms when there are 50 objects in the database under JBoss, but takes more than 10 seconds when deployed on OC4J.
    <pre>
         public java.util.Collection findAll() throws javax.ejb.FinderException,
                   javax.naming.NamingException {
              // This statement takes about 200 millisonds on either server.
              java.util.Collection selected = getLocalHome().findAll();
    // The access to light value object took 10 seconds under OC4J !
              ArrayList retval = new ArrayList(selected.size());
              for (Iterator i = selected.iterator(); i.hasNext();) {
                   retval.add(((ClauseLocal) i.next()).getClauseLightValue());
              return retval;
    </pre>
    I tried the following link already :
    http://download-west.oracle.com/docs/cd/B10464_02/core.904/b10379/optj2ee.htm#sthref529
    However, when I redeploy my ear on the server, whatever the options specified on the entity-deployement tag, the server reset his default options. Moreover, the locking_mode attribute is not specified in the DTD.
    Could you please help me.... Thanks for your comprehension.

    To install Firefox from the Android Market web site, you must be logged in to the web site and your phone using the same Google account. If that doesn't work, you can follow the instructions here for other ways to install Firefox for Android: https://wiki.mozilla.org/Mobile/Platforms/Android

  • Problems accessing ejb 3.0 entity bean from project

    I have written some code using ejb 3.0 and was previously accessing the entity bean without problem when both ejbs and the accessing code were in the same project. However I have moved the accessing code into a different project within the same application and now when the code tries to accessing the entity bean I get the following error:
    com.colwilson.web.ingestion.IdentifiedException: java.lang.ClassCastException: __Proxy3
         at com.colwilson.web.ingestion.IngestionHandler.recordArrived(IngestionHandler.java:140)
         at com.colwilson.web.ingestion.IngestionHandler.main(IngestionHandler.java:52)
    Caused by: java.lang.ClassCastException: __Proxy3
         at com.evermind.server.ejb.StatelessSessionRemoteInvocationHandler.getFreshObject(StatelessSessionRemoteInvocationHandler.java:21)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.getReplacementObject(RecoverableRemoteInvocationHandler.java:64)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.handleRecovery(RecoverableRemoteInvocationHandler.java:41)
         at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:30)
         at com.evermind.server.ejb.StatelessSessionRemoteInvocationHandler.invoke(StatelessSessionRemoteInvocationHandler.java:43)
         at __Proxy1.mergeEntity(Unknown Source)
         at com.colwilson.web.ingestion.IngestionHandler.recordArrived(IngestionHandler.java:137)
         ... 1 more
    Now, of course I could move the code back into the same project, but as I understand it that is just the point of ejbs. I'm looking up the entity bean thus:
    final Context context = InitialContext();
    ingestionSessionEJB =
    (IngestionSessionEJB)context.lookup("IngestionSessionEJB");
    It may be true that I don't understand the way lookup works, but to be honest I can't find the docs that explain what I've got wrong.
    Please help.

    hi
    Double Click on the project which is goin to use the project which contains bean from the Application Navigator window. The project properties window will open. Choose the "Dependencies" item from left panel. click on the radio "User Project Settings" and select another project which contain ejb which you're goin to access...
    Best Of Luck
    Ravi A. Trivedi

  • Creating Webservice with entity bean

    I am trying to create a webservice(using entity bean). Using ANT i am building
    up the .ear file. My source files are placed in a directory (c:\test) . I have
    set the path and invoked ANT .In the build.xml file , when it is trying to compile
    the ejb classes , it gives me the following error:
    ERROR: Error from ejbc: Could not locate bean with ejb-name 'EBankEJBean'
    in weblogic-ejb-jar.xml
    Can anybody pls help me out !
    thanx
    arthi

    WLS 7.0 only supports stateless session bean or a plain java
    class as web service.
    From your post it seems you have trouble doing ejbc.
    You will get better answer if you post this in the ejb
    newsgroup.
    regards,
    -manoj
    "arthi" <[email protected]> wrote in message
    news:[email protected]..
    I am trying to create a webservice(using entity bean). Using ANT i am building
    up the .ear file. My source files are placed in a directory (c:\test) . I have
    set the path and invoked ANT .In the build.xml file , when it is trying to
    compile
    the ejb classes , it gives me the following error:
    ERROR: Error from ejbc: Could not locate bean with ejb-name 'EBankEJBean'
    in weblogic-ejb-jar.xml
    Can anybody pls help me out !
    thanx
    arthi
    [att1.html]

  • Confused with Entity Beans

    Hello:
    I ve been trying to learn EJBs using Wrox's Professional EJB.
    At page number 145 sequence diagram, it shows that ( for a bean
    managed persistance Entity bean ) every find<METHOD>(args) invoked on
    an EJBHome object will be delegated to a corresponding
    ejbFind<METHOD>(args) method on the bean implementation object. I m a
    bit confused here.
    1. Since from the OO point of view, "find" is about finding, shouldn t
    this have been a method on some kind of broker object, that should
    have created/found the corresponding implementation objects and
    returned the corresponding handles ( object references ). In the case
    of findInRange() that returns multiple objects this becomes more
    apparent, wherein one need to have an ejb implementation object to
    start with in order to get the collection of objects he has been
    looking for. Where did I 'didn t get it'
    2. One of my friends says Container managed persistence ( CMP ) is not
    at all popular due to the inefficiency compared to BMP, and that only
    very few projects will be actually using it. Is there any truth in
    this.
    3. Is there a vendor neutral newsgroup ( and more specific that
    comp.java.lang.help ) for posting ejb related discussions.
    Thanks
    --sony

    Hi Sony,
    "Sony Antony" <[email protected]> wrote in message
    news:[email protected]..
    Hello:
    I ve been trying to learn EJBs using Wrox's Professional EJB.
    At page number 145 sequence diagram, it shows that ( for a bean
    managed persistance Entity bean ) every find<METHOD>(args) invoked on
    an EJBHome object will be delegated to a corresponding
    ejbFind<METHOD>(args) method on the bean implementation object. I m a
    bit confused here.
    1. Since from the OO point of view, "find" is about finding, shouldn t
    this have been a method on some kind of broker object, that should
    have created/found the corresponding implementation objects and
    returned the corresponding handles ( object references ). In the case
    of findInRange() that returns multiple objects this becomes more
    apparent, wherein one need to have an ejb implementation object to
    start with in order to get the collection of objects he has been
    looking for. Where did I 'didn t get it'In fact, a bean serves as the "broker" object, though I don't like
    the name that much. Finally, this is the Spec, and you have to
    live with it.
    2. One of my friends says Container managed persistence ( CMP ) is not
    at all popular due to the inefficiency compared to BMP, and that only
    very few projects will be actually using it. Is there any truth in
    this.It depends on application requirements. CMP are perfect for writing
    simple persistance objects with "one object per one DB table" pattern.
    From efficiency point of view weblogic does it's best to optimize
    bean's behaiviour. You shouldn't be concerned about it.
    BMPs are good when you need to deal with coarse-grained persistance.
    I'd recomend you to get hands on experience with CMPs and
    BMPs. Practice is invaluable source of knowlege.
    3. Is there a vendor neutral newsgroup ( and more specific that
    comp.java.lang.help ) for posting ejb related discussions.weblogic.developer.interest.ejb is a perfect place for this type of
    discussions.
    Regards,
    Slava Imeshev

  • Force read with entity beans

    Hi,
    is there a way to force the container to reload an Entity EJB (not read-only), something like read-timeout-seconds?
    Thx,
    A.

    So you mean you're changing the data in the database and the entity bean isn't picking up these changes?
    If you call ejbLoad() the container will instruct the instance to synchronize its state by loading its state from the underlying database (so reload the ejb basically)
    Depending on what app server you're using - you can tell the container to call ejbLoad(), even if the data is already in cache, by default. This will probably be a setting in some .xml file.

  • How can I control the EJB's Transaction with entity bean

    If I use entity bean, the Transaction is managed by container.and I want to create JDBC Connection by myselft ,not the Datasource,how is the transaction is controlled by the container,if transaction is not controlled ,how can I control it??

    Hi,
    If you want to control the transaction your self then you need to use javax.transaction.UserTransaction interface and methods defined by it.
    Hope this helps
    Vishal

Maybe you are looking for

  • Line objects not showing in pdf output in xmlp 5.6.1

    Hello, Is there a bug or just a version issue when trying to produce pdf output using xmlp 5.6.1 Enterprise Edition from a template built in xmlp 5.6.2 stand alone? Different versions of pdf too. The xmlp 5.6.1 EE uses Adobe 7.0.7 and I use 7.0.0 for

  • EL : How do I insert a dynamic value in an expression ?

    Hi, Here's my code - <c:forEach items="languageCodes" var="aCode"> <c:if test="${myMap.aCode} != null" > doSomething </c:if> </c:forEach> I need ${myMap.aCode} to work as if it was ${myMap.${aCode}}, invoking myMap's getter with the current value of

  • How do I turn off warning

    I have a machine with a Sun Blade 2500 mohterboard in it. When I boot the machine, I receive a warning: Warning: Failed to open device(/pci@1e,600000/isa@7/i2c@0,320/gpio@0,30:pca9556_0), rv(6) I believe the problem is caused because I have no sound

  • Open Hub For BPC Cubes

    Hi Gurus, I have an issue about the open hubs for BPC cubes. I have a need to take my transactional data from my BPC cube to a table.So  I want to create an open hub on my BPC planning cube. But when i create the open hub on BPC cube, it doesn't read

  • Another IOS6 blunder or a Virus?

    I am having a weird experience since yesterday, i have to double click on icon on ipad to open it (even to slide to open i have to double click on the slide button on the screen), it looks like i am using a keyboard to operate ipad. is it a virus or