ManyToMany persist entity problem

Hi, I'm beginning with EJB 3.0 and I've wrote this code to persist data from two tables, whitch have ManyToMany relationship.
When I want to persist objects I gives me a error... How to reduce this problem?
Thanks!!!
Entity #1:
@Entity
@Table(name = "kategorie")
@NamedQueries({@NamedQuery(name = "Kategorie.findById", query = "SELECT k FROM Kategorie k WHERE k.id = :id"), @NamedQuery(name = "Kategorie.findByNazev", query = "SELECT k FROM Kategorie k WHERE k.nazev = :nazev")})
public class Kategorie implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue
    @Column(name = "id", nullable = false)
    private Integer id;
    @Column(name = "nazev")
    private String nazev;
    @JoinTable(name = "kategorieprodukty",
               joinColumns = {@JoinColumn(name = "kategorie", referencedColumnName = "id")},
               inverseJoinColumns = {@JoinColumn(name = "produkt", referencedColumnName = "id")})
    @ManyToMany
    private Collection<Produkty> produktCollection;
    public Kategorie() {
    public Kategorie(Integer id) {
        this.id = id;
    public Integer getId() {
        return id;
    public void setId(Integer id) {
        this.id = id;
    public String getNazev() {
        return nazev;
    public void setNazev(String nazev) {
        this.nazev = nazev;
    public Collection<Produkty> getProduktCollection() {
        return produktCollection;
    public void setProduktCollection(Collection<Produkty> produktCollection) {
        this.produktCollection = produktCollection;
    public void addProdukt(Produkty produkt) {
        this.getProduktCollection().add(produkt);
    }Entity #2:
@Entity
@Table(name = "produkty")
@NamedQueries({@NamedQuery(name = "Produkty.findById", query = "SELECT p FROM Produkty p WHERE p.id = :id"), @NamedQuery(name = "Produkty.findByNazev", query = "SELECT p FROM Produkty p WHERE p.nazev = :nazev")})
public class Produkty implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name = "id", nullable = false)
    private Integer id;
    @Column(name = "nazev")
    private String nazev;
    @Lob
    @Column(name = "popis")
    private String popis;
    @ManyToMany(mappedBy = "produktCollection")
    private Collection<Kategorie> kategorieCollection;
    public Produkty() {
    public Produkty(Integer id) {
        this.id = id;
    public Integer getId() {
        return id;
    public void setId(Integer id) {
        this.id = id;
    public String getNazev() {
        return nazev;
    public void setNazev(String nazev) {
        this.nazev = nazev;
    public String getPopis() {
        return popis;
    public void setPopis(String popis) {
        this.popis = popis;
    public Collection<Kategorie> getKategorieCollection() {
        return kategorieCollection;
    public void setKategorieCollection(Collection<Kategorie> kategorieCollection) {
        this.kategorieCollection = kategorieCollection;
    }Session Bean:
@Stateless
public class ProduktyFacade implements ProduktyFacadeRemote {
    @PersistenceContext
    private EntityManager em;
    public void create(Produkty produkt, Collection<Kategorie> kategorie)
        em.persist(produkt);
        em.refresh(produkt);
        for (Kategorie kat : kategorie) {
            kat.addProdukt(produkt);
    public void edit(Produkty produkty) {
        em.merge(produkty);
    public void remove(Produkty produkty) {
        em.remove(em.merge(produkty));
    public Produkty find(Object id) {
        return em.find(domain.Produkty.class, id);
    public List<Produkty> findAll() {
        return em.createQuery("select object(o) from Produkty as o").getResultList();
}When I call:
@EJB
    private ProduktyFacadeRemote produktyFacade;
produkt = new Produkty();
Collection<Kategorie> kategorie = new ArrayList<Kategorie>();
kategorie.add(...
produktyFacade.create(produkt, kategorie);
...It gives me this error (I'm using Netbeans 6.0.1 with GlassFish V2):
"IOP00810257: (MARSHAL) Could not load class domain.Kategorie"
org.omg.CORBA.MARSHAL:   vmcid: SUN  minor code: 257 completed: Maybe
        at com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9684)
        at com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9699)
        at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1042)
        at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:896)
        at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_interface(CDRInputStream_1_0.java:890)
        at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_interface(CDRInputStream_1_0.java:880)
        at com.sun.corba.ee.impl.encoding.CDRInputStream.read_abstract_interface(CDRInputStream.java:511)
        at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectDelegate(IIOPInputStream.java:386)
        at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectOverride(IIOPInputStream.java:547)
        at java.io.ObjectInputStream.readObject(ObjectInputStream.java:345)
        at java.util.ArrayList.readObject(ArrayList.java:593)
        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.corba.ee.impl.io.IIOPInputStream.invokeObjectReader(IIOPInputStream.java:1679)
        at com.sun.corba.ee.impl.io.IIOPInputStream.inputObject(IIOPInputStream.java:1202)
        at com.sun.corba.ee.impl.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:422)
        at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:362)
        at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:328)
        at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.readRMIIIOPValueType(CDRInputStream_1_0.java:966)
        at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1052)
        at com.sun.corba.ee.impl.encoding.CDRInputStream.read_value(CDRInputStream.java:475)
        at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl$14.read(DynamicMethodMarshallerImpl.java:368)
        at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl.readArguments(DynamicMethodMarshallerImpl.java:435)
        at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(ReflectiveTie.java:152)
        at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:687)
        at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:227)
        at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1846)
        at com.sun.corba.ee.impl.protocol.SharedCDRClientRequestDispatcherImpl.marshalingComplete(SharedCDRClientRequestDispatcherImpl.java:183)
        at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:219)
        at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.privateInvoke(StubInvocationHandlerImpl.java:192)
        at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:152)
        at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(BCELStubBase.java:225)
        at session.__ProduktyFacadeRemote_Remote_DynamicStub.create(session/__ProduktyFacadeRemote_Remote_DynamicStub.java)
        at session._ProduktyFacadeRemote_Wrapper.create(session/_ProduktyFacadeRemote_Wrapper.java)
        at jsf.ProduktyController.create(ProduktyController.java:62)
        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:187)
        at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)
        at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:77)
        at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:91)
        at javax.faces.component.UICommand.broadcast(UICommand.java:383)
        at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:447)
        at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:752)
        at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:97)
        at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
        at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117)
        at javax.faces.webapp.FacesServlet.service(FacesServlet.java:244)
        at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
        at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
        at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
        at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
        at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
        at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
        at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
        at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
        at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
        at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
        at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
        at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
        at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
        at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
        at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
        at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
nested exception is: java.rmi.MarshalException: CORBA MARSHAL 1398079745 Maybe; nested exception is: org.omg.CORBA.MARSHAL: ----------BEGIN server-side stack trace---------- org.omg.CORBA.MARSHAL: vmcid: SUN minor code: 257 completed: Maybe at com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9684) at com.sun.corba.ee.impl.logging.ORBUtilSystemException.couldNotFindClass(ORBUtilSystemException.java:9699) at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1042) at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:896) at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_interface(CDRInputStream_1_0.java:890) at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_abstract_interface(CDRInputStream_1_0.java:880) at com.sun.corba.ee.impl.encoding.CDRInputStream.read_abstract_interface(CDRInputStream.java:511) at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectDelegate(IIOPInputStream.java:386) at com.sun.corba.ee.impl.io.IIOPInputStream.readObjectOverride(IIOPInputStream.java:547) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:345) at java.util.ArrayList.readObject(ArrayList.java:593) 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.corba.ee.impl.io.IIOPInputStream.invokeObjectReader(IIOPInputStream.java:1679) at com.sun.corba.ee.impl.io.IIOPInputStream.inputObject(IIOPInputStream.java:1202) at com.sun.corba.ee.impl.io.IIOPInputStream.simpleReadObject(IIOPInputStream.java:422) at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValueInternal(ValueHandlerImpl.java:362) at com.sun.corba.ee.impl.io.ValueHandlerImpl.readValue(ValueHandlerImpl.java:328) at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.readRMIIIOPValueType(CDRInputStream_1_0.java:966) at com.sun.corba.ee.impl.encoding.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:1052) at com.sun.corba.ee.impl.encoding.CDRInputStream.read_value(CDRInputStream.java:475) at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl$14.read(DynamicMethodMarshallerImpl.java:368) at com.sun.corba.ee.impl.presentation.rmi.DynamicMethodMarshallerImpl.readArguments(DynamicMethodMarshallerImpl.java:435) at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(ReflectiveTie.java:152) at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:687) at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:227) at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1846) at com.sun.corba.ee.impl.protocol.SharedCDRClientRequestDispatcherImpl.marshalingComplete(SharedCDRClientRequestDispatcherImpl.java:183) at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:219) at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.privateInvoke(StubInvocationHandlerImpl.java:192) at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:152) at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(BCELStubBase.java:225) at session.__ProduktyFacadeRemote_Remote_DynamicStub.create(session/__ProduktyFacadeRemote_Remote_DynamicStub.java) at session._ProduktyFacadeRemote_Wrapper.create(session/_ProduktyFacadeRemote_Wrapper.java) at jsf.ProduktyController.create(ProduktyController.java:62) 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:187) at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297) at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:77) at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:91) at javax.faces.component.UICommand.broadcast(UICommand.java:383) at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:447) at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:752) at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:97) at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251) at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:244) at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198) at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288) at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577) at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080) at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272) at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637) at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568) at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813) at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341) at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263) at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214) at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265) at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106) ----------END server-side stack trace---------- vmcid: SUN minor code: 257 completed: Maybe

Steve Edens wrote:
I'm also trying to get a grip on the best way to handle some static application properties in a clustered environment. My need mostly relates to
a need to read in some flat file type properties and then store them someplace
where business logic can call them as needed.. Like a static hashmap or
something. But someone mentioned Entity beans, BMP, etc..
Now.. here's the strange part of the message.
Back in 1999 I traveled over to our west coast office in San Francisco. I was meeting and greeting the staff there and along the way I had a short
meeting with someone named Bisera Ferrero. I mention this event because I
was really impressed with the beauty and charm of Bisera. Therefore, I guess
I'm a fan. I rememered the name.. a little. Really, I had sort of forgotten
about it until reading this forum this morning. So.. who knows. I guess
there could be a lot of Bisera Ferrero names on our planet.
Good luck in your quests..

Similar Messages

  • Persist Entity Bean in flat file?

    Is it possible to persist entity bean in a flat file? I need to persist a single value (sequence number) and I can not use database to do so.
    I would need to run this in a clustered environment and need to recover the value if something goes wrong. The statefull bean would almost do except when one server fails before it replicates value onto another box.
    thx.

    Steve Edens wrote:
    I'm also trying to get a grip on the best way to handle some static application properties in a clustered environment. My need mostly relates to
    a need to read in some flat file type properties and then store them someplace
    where business logic can call them as needed.. Like a static hashmap or
    something. But someone mentioned Entity beans, BMP, etc..
    Now.. here's the strange part of the message.
    Back in 1999 I traveled over to our west coast office in San Francisco. I was meeting and greeting the staff there and along the way I had a short
    meeting with someone named Bisera Ferrero. I mention this event because I
    was really impressed with the beauty and charm of Bisera. Therefore, I guess
    I'm a fan. I rememered the name.. a little. Really, I had sort of forgotten
    about it until reading this forum this morning. So.. who knows. I guess
    there could be a lot of Bisera Ferrero names on our planet.
    Good luck in your quests..

  • Persistent Image problem

    Okay, I just had the screen on this iMac replaced because of this problem with a dark line at the top of the screen. The screen has been replaced, and the dark line isn't there anymore. However, I am now having persistent image problems. This is noticeable when I use the Aurora desktop. If I have a window open (e.g. Safari) for a long enough time, and then I X out of it, I will see a shadow/ghost of it. It's most noticeable with a dark background. However, I DID change some of the settings in "Appearance," so I wonder if that might have done it. But I can't see a way to change everything back to default. Do you know if there's a way?

    Hi again - a couple of ideas:
    If you haven't printed the images or a while, it could be that you prepared them under a previous version of the Aperture raw and they've since been reprocessed, resulting in a slightly different look
    I had an occasion about 12 months ago when an update to the Epson printer drivers caused me to have to go back and change my print setups in Aperture, due to new colour interpretations.  Don't know why, but it happened... maybe your settings have changed since last printing?
    Could be that you did or didn't have the appropriate soft-proofing turned on - are you using this feature?

  • Strange short-term persistent image problem

    Hello,
    I'm well aware of the typical image persistence problem, where an image can stay "burned in" after the monitor displays the same thing for hours on end.
    I have a much shorter-term persistent image problem. Let's say I open a web-page, leave it open for 10 seconds and then open a new window in Safari (thus getting a pure white page). Well when that happens, the previous web-page is still shadowed on the new white.
    30 seconds later it has faded, but then the same thing will happen again with anything else that's displayed.
    Any ideas?
    thanks
    Loa

    Huh, now I'm really stumped. The cyan border is also present in FCE once I render, but it doesn't seem to happen for each instance when the paper image is used. Did you import the paper image as a .gif or something else? And did you add any filters to it? Did you also add any effects? The only I'm using with the paper image is the page peel and I have not tried any other effects to see if the cyan effect comes up.
    I've put a screen capture of my FCE project showing the cyan border present in the canvas as my movie is playing. Its on my idisk as FCE movie problem.tiff
    http://idisk.mac.com/gindacu-Public?view=web
    Thanks again for the help.

  • Touch persistently crashing - problems with USB/iTunes/Windows 7?

    Hi!
    I received a 64gb Touch for Christmas and have a persistent crashing problem. The Touch appears to be randomly crashing across any app or even just playing music - there seems to be no common link. This could be once in a few hours or repeatedly 4/5 times in succession.
    It's possible I have a faulty unit but wonder also if I may have an issue with updating/syncing as any sync that takes a reasonable amount of time disconnects and reconnects several times. I had this on my 1st gen Shuffle also - it's almost as though something is disconnecting the USB port and then reconnecting it. I'll mention at this point that I have no other USB related issues - I can run a backup of several hours to a USB harddisk and have no issues and no other USB device has had any sort of problem. If there is a USB issue, it's only happening with iTunes and my iPod(s).
    My theory then is that the initial upgrade of the Touch to 3.1.2 on first sync is being corrupted in some way because of the disconnecting issue and that then is causing the crashing as the os is unstable. The Touch has been reinstalled 3 times since purchase and each time having the disconnection issue appear and the resulting persistent crashing.
    Hopefully someone can tell me I'm wrong/right in my theory and maybe suggest a way I can fix the disconnection problem so I can at least try a clean reinstall of the Touch and see if that solves the crashing problem before I send the unit back.
    Cheers!

    I bought my iPod Touch 32gb last week and as soon as I plugged it in iTunes told me to update to v3.1.2 (came with v3.1.1 installed.) I accepted to install v3.1.2 and it finished installing then restarted. It flashed up in iTunes then disconnected and the ipod went blank, then came up with the apple log for about 1 or 2 minutes, then flashed up again in itunes. It then kept restarting and dissapearing. I left it doing this for about 15 minutes then unplugged the usb lead. It then restarted and all seemed fine.
    I had put a couple of albums on. Then I sorted out some more music and done another sync & the **** thing got stuck in the restart loop again.
    This was on my laptop which has Windows vista.
    I then thought maybe the update to v3.1.2 had gone wrong so i reinstalled it on my main pc. It didn't get stuck in the restarting loop so I thought I had solved the problem. I put my music on my main pc (Windows 7) and done a resync and the blasted thing got stuck in restart loop again.
    My son bought his 8GB touch this week and his came with v3.1.2 allready installed and he hasn't had a single problem with it. I hadn't downloaded any apps for mine but he has loads of them and it hasn't crashed once.
    I am taking mine back to the shop tomorrow as i have had it less than 10 days.
    Am not sure what it is but it is very annoying. I hope the replacement i get works properly.

  • Persist entity in ApplicationLifecycleListener

    hi,
    i would like to persist some entities at deployment time in a postStart method of a class which extends ApplicationLifecycleListener.
    the problem is that the entites are not in the db although i dont get any exceptions and the entities even get their id after persist.
    it looks like the transaction is not committed. i tried to commit manually but i got an exception that i cannot do this with a JTA entity manager.
    is there a way to 'force' the commit?
    or how could i use application managed entity manager? i tried to jndi lookup, but did not succeed:( i found only my datasource which is an instance of RmiDataSource.
    thanks a lot for the help,
    cheers,
    gg

    Database access inside events is allowed, whether JPA events or descriptor events, but you need to be careful. Basically you need to understand what you are doing and its affects and are on your own if you screw something up. You must keep in mind that the persistence context is in the process of a commit. So calling persist() or changing objects can have issues, the objects may not get inserted or changes applied depending on the event. Performing direct database access such as native SQL queries is probably safer, but you need to be careful of locks and violating database constraints. You can use insertObject within a UnitOfWork during write events, but you need to be careful.
    Normally you would use the same transaction, if you created a new transaction/EntityManager/UnitOfWork, then you need to be careful or performance, and of deadlocking with yourself.

  • "Load Files into Photoshop Layers" persistent misalignment problem

    I'm having a persistent problem which technical support was unable to resolve after being on the phone with them for 1.5 hrs.
    I'm working in Bridge CC in ACR, synchronizing all parameters incl. crop, transform, exposure, etc. of a bracketed group of images shot from a solid tripod. When using the Tools / Photoshop / Load files into Photoshop layers command, the images open in photoshop in a layered file, BUT some are knocked out of alignment. Actually they have been cropped slightly smaller than the original file, always by the same number of pixels. Sometimes all layers are affected, sometimes not. Photoshop and Bridge are both up to date, as is the camera raw plugin. I’m on a new iMac i7 4-core, OSX 10.9.4. All software was newly downloaded from Adobe less than two weeks ago. I have reset preferences, even uninstalled and reinstalled Bridge CC 6.1.0.115 to no avail. Any suggestions?

    Hi JJMack - I just re-read your post. For some reason I thought you were suggesting to make sure "Open documents in Tabs" was selected, it was. Now I realize you were suggesting to turn it off! As another attemp to solve this problem I did de-select it today. Seemed to work for a good while. I was getting very excited, then, on the last set of images I had to do it displayed the same problem. But, it did go for quite a while without failing, and when it did I was thrashing about trying to make another app active. When loading documents like this - with "Open documents in Tabs" de-selected, Photoshop wants to put the loading images as the front-most window, no matter what other apps (Bridge, email, web etc) I click on in the dock. I think it is related to the bug you described effecting the "load files to stack" command.
    Hopefully Adobe is looking at this - mind you, I have read reports of people having this problem in CS5! Looks like that was never resolved sadly.
    I'll keep testing and post back.
    I am looking to upgrade my video card to see if it's a video memory thing.
    What is very weird though is the fact that this problem didn't present itself until after several weeks of working with this command with no problem. No additional apps installed, nothing changed. Why would it start happening only after a while?
    Thanks again for your suggestion.

  • Persistent hang problem still unsanswered

    SOMEBODY here must have a clue on this one. I've spent weeks on it myself, tried the local Apple Store, had a tune-up from a Mac repair shop and still ...
    Periodically I will try to eject a CD from iTunes and the application will hang. When I Force Quit it's still there but won't do anything. Try to eject using Toast Titanium, which only causes IT to hang. Can't eject the disc from the finder; have to restart the computer.
    Looking at the Console.log I find only this error:
    Spamfire Agent: There was a Unknown error in QueueSynchronous.onAdvanceSMTPReportingItem.Process%%o<SMTPReportingItem> < SMTPReportingItem.#OnProcessInQueue%%o<SMTPReportingItem> < ProcessingMessage.processInQueue%%o<ProcessingMessage> < QueueS
    [Spamfire Agent is part of my anti-spam app.]
    At first I thought this was a RAM or USB bus problem. Had RAM and CPU checked out at Apple Store and they are A-OK. Removed my IOGear PCI USB card. No help.
    For some reason the problem seems centered around audio-related apps: iTunes, Toast Titanium, and (sometimes) Peak Pro.

    Honestly, when a system has lots of add-ons as your appears to have, you can get funky interaction which sometimes doesn't even seem logical.
    What I do on my Macs is to create a test account, and when I install software that has the option, I only install for the main user account.
    That makes troubleshooting much easier.
    Another thing you can try is to boot into safe mode (shift key until login) and see if this persists.
    BTW, Toast is up to version 8.0.1, do you have that update?
    Scott

  • HELLO! How do I fix this? When I click on imovie "add titles" it closes. I uninstalled the application, to date I have reinstalled, the problem persists, the problem

    HELLO! How do I fix this? When I click on imovie "add titles" it closes.
    I uninstalled the application, to date I have reinstalled, the problem persists, the problem

    Thank you for having responded to me!
    Unfortunately I did already the case "delete preferences" but nothing!
    Also, when crashes do not give me any reports!
    Started in safe mode, with another administrator, the problem becomes even: your video card is not compatible with Quartz Extreme!
    My card is a g-force framework 4000 FOR MAC!!
    STRANGE TRUE!
    If you know something more to this riquardo please answer!
    Thanks Comunity!!

  • User variables on Entity problem

    Hi,
    I need to set up 2 user variables for entity dimension. When i used to have one a user could simply choose his value for the variable.
    When i added another variable for entity and user want to open a form which uses this variable he must first choose the value from preferences.
    This is where the problem comes in. He selects the values for both of them and when click on save then an error: 'Error on the page' (in the explorer) appears and it does not save the values.
    I thought it is because of IE. I tried it in IE7, IE8 and IE6 as well as with Mozilla. The same over and over again. But when trying this as admin I get not problem and setting the values is without any problem.
    Please help
    thank you very much

    Hi John,
    Thank you very much for your advice. The log does not say anything special. Just that user logs in but no other action (my changing values for user variables) because i suppose the save button is not working.
    But yes, if i go through workspace everything is working fine. But when going directly to planning (issue above always appears). Can you tell me why?
    thanks again

  • Contacting Apple Tech support about persistent fan problem

    I have had a persistent fan noise problem for nearly a year now. My MacPro is 16 months old and the video card fan constantly runs at high or near high all the time. My MacPro is never silent and often very noisy. This, I understand, is very abnormal for the MacPros. I have listened to other MacPros in shops and they are nearly silent. Mine buzzes always.
    I have taken my computer in three times since purchasing it. The video card has been replaced twice (ie, I'm on my third video card) and the motherboard has been replaced once as well. I've taken the machine to two different repair shops and I still have this fan noise problem. All the repair guys can say is "yeah its noisy but I don't know why"
    I would like to contact Apples main tech support about this but cannot find any info on how to on the support site. Does anyone know how to contact Apple's main tech support (e.g., who do the technicians contact when they run into trouble)?
    Thanks for your help

    The numbers on the page I linked to are all, to the best of my knowledge, Apple tech support, not independent support providers, with the possible exception of Hong Kong and perhaps some of the smaller areas; I'm not sure, not having called them all. What country are you in?
    BTW, there is no email for Apple tech support. Apple provides tech support via telephone only.
    Message was edited by: Dave Sawyer

  • Persistent connection problem [solved]

    I updated my system this morning, and now my owl intranet database cannot connect.  OWL connects over http and uses mysql and php; it was working fine before this morning's system update.
    Now I'm getting an error:
    Fatal error:  Call to undefined function mysql_pconnect in [PATH]/db_mysql.inc on line 74
    php.ini has persistent connections on
    the mysql.so extension is uncommented
    Any idea what is causing this?

    I can confirm this, it started when I ran pacman -Syu this afternoon though I cannot fix it the same way that you did. I had to revert back to php-5.1.6-4 to get it to work with my database, otherwise I would get the mysql_connect() is an undefined function error (tried reinstalling the lib like you said, didnt work). I would like to have this fixed cause I've heard that php-5.1.6-4 has a security problem. If you need any more information please say so.

  • Lenovo G780 persistent WiFi problems

    Hi all.
    Apparently this is common issue, but I've spent days on Internet, no solution helped.
    I have my laptop less than two years. After a year from purchase suddenly WiFi signal started dropping, leading to eventual no-go. Nothing, literally NOTHING helped (reinstalling drivers, swapping antennae on WiFi card, as suggested on some tutorials, replacing the card - which didn't work as it wasn't whitelisted). System reinstal helped. For three weeks. Now it stopped working again (after THREE WEEKS!), disappeared from Device Manager completely (does not reapper after system restart). It drives me nuts as (as I say) no hints are working.
    Any suggestions? Give me a shout if more details are needed.
    Windows 7 Home 64bit, WiFi card: Atheros AR9285.
    Thanks. 
    ed.: Surprisingly, after forced restart (and Windows fixing some problem at the strart) it's back again and working. But I know the problem will persist, so I'm searching for some kind of solid fix for it.

    What network management tools are you using?  You refer to the networks not being ones "it knew and could connect to." What is it?
    If a rescan with iwlist solves the problem, then this is not a hardware problem, nor should that systemd service file be needed - you just need to either properly configure your network management tool, or get a better one.

  • Persistent WiFi Problems

    I have read the support forum posts and followed the Apple guides for resolving the persistent WiFi issues. After two weeks of trying to resolve this problem I'm listing my use case in the hopes that it is fixed.
    A majority of the time I use my iPad on the UW-Whitewater campus. I work for ResNET and am live-in staff. Most of my day is spent somewhere with WiFi access. Each building has WPA access that uses a campus username login and password. I can be standing right next to one of our APs and have no connection. If I reset my iPad and enter the credentials manually it only works temporarily. Error messages will pop up stating that there is no connection using Safari. The NPR app will stream audio, but the stream will freeze as it looks for a connection. Watching a full movie on Netflix? Out of the question.
    When I am in my apartment I have a wireless router that uses WEP. The same issues I stated above are applicable here. I have restarted the router, updated the firmware, left access open, assigned a static IP.
    Sharing the wireless connection from my iMac? Nope. Access is still inconsistent.
    Just to reiterate: I have tried turning WiFi on/off, resetting my iPad, and restoring it from scratch. Using it has been an exercise in frustration when it does not work.
    Thanks,
    Ken

    Ken Fager wrote:
    I have read the support forum posts and followed the Apple guides for resolving the persistent WiFi issues. After two weeks of trying to resolve this problem I'm listing my use case in the hopes that it is fixed.
    A majority of the time I use my iPad on the UW-Whitewater campus. I work for ResNET and am live-in staff. Most of my day is spent somewhere with WiFi access. Each building has WPA access that uses a campus username login and password. I can be standing right next to one of our APs and have no connection. If I reset my iPad and enter the credentials manually it only works temporarily. Error messages will pop up stating that there is no connection using Safari. The NPR app will stream audio, but the stream will freeze as it looks for a connection. Watching a full movie on Netflix? Out of the question.
    When I am in my apartment I have a wireless router that uses WEP. The same issues I stated above are applicable here. I have restarted the router, updated the firmware, left access open, assigned a static IP.
    Sharing the wireless connection from my iMac? Nope. Access is still inconsistent.
    Just to reiterate: I have tried turning WiFi on/off, resetting my iPad, and restoring it from scratch. Using it has been an exercise in frustration when it does not work.
    Thanks,
    Ken
    If you are having so many problems you might have a defective iPad. Rather than waiting for a S/W fix from Apple you could ask for a replacement iPad. At least if you went to an Apple store you could check your iPad against their WiFi network. Have you spoken to the Apple support group about this?

  • Persistent connection problems

    I am having persistent and infuriating problems connecting with iChat. When attempting to connect with a buddy the connection fails with the message "(my name) did not respond". If I try connecting with the apple test site the message is "insufficient bandwidth" although sometimes I have been able to connect. I have a G4 iBook connected to a cable modem through a DLink 524 wireless router.
    I have tested my connection speed and the download tests at 1354 and the up load at 481. This seems more than sufficient for a video conference.
    Quicktime streaming is set at 1.5 mbps
    The router has the proper ports open
    DHCP is disabled when trying to connect
    All firewalls are down
    I am running OS 10.4.8 and iChat 3.1.6
    The buddy I am trying to connect with is using a .MAC account and AIM as am I. While trying to connect, we are able to use the text messaging with no problem.
    What is going on? It already seems that even using iChat is a challenge but this is ridiculous. I would appreciate any help. Thanks

    Hi Geoff,
    This is a recent quote from a post by a user who had, not identical but maybe noteworthy for your set up, problems and found a way to get up and running again. I wonder if his fix might apply to your connection problems as well:
    "I have been using a D-Link DI-614+ wireless router for several years in tandem with my iBook with no problems. When I switched to a new MacBook Intel Core 2 Duo 2 Ghz the problems started. The connection became extremely slow. I tried numerous things such as turning off DHCP, turning off WEP, changing the DTIM and Beacon Interval and all those things corrected the problem -- that is, until I put my MacBook to sleep then when wake-up time came the problem came back. I concluded that the speed up resulted from the re-setting of the router and not the changes in the setup. I returned the router back to their original settings and now every time I connect I automatically login to the router and restart it and the problem if fixed -- until the next time."
    (D-link DI-624, DI-524, 54g This router was mentioned by several users as exhibiting the dropped-connection issue. This is unfortunate as the DI-624 is one of the third-party wireless routers that supports AppleTalk connectivity. The DI-524 was also mentioned by a few readers as occasionally having the problem.)
    Maybe it is something worh giving a try,
    JP

Maybe you are looking for