ManyToMany merge (or maybe not merge)

Hi all..
I have 2 entities with reference type manytomany. Code looks like this:
@Entity
@Table(name = "roles")
public class RoleEntity implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(name = "rls_id", nullable = false)
private Integer rlsId;
@Column(name = "rls_title")
private String rlsTitle;
@ManyToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER)
@JoinTable(name="rights_to_roles",
joinColumns=
@JoinColumn(name="rls_id", referencedColumnName="rls_id"),
inverseJoinColumns=
@JoinColumn(name="rht_id", referencedColumnName="rht_id"))
public Set<RightEntity> rights;
..and..
@Entity
@Table(name = "rights")
public class RightEntity implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(name = "rht_id", nullable = false)
private Integer rhtId;
@Column(name = "rht_title")
private String rhtTitle;
I have two objects: role and right (right object exist, but don't belong to role). I want to add right to role with follow code:
role.getRights().add(right);
but when I call entityManager.merge(role); the exception is thrown. Am I doing right?? The joing table "rights_to_roles" has no its own Entity representation, but in fact I want to do insert only to this table. When I changed "role" title or "right" properties (for "rights" which belong to "role"), and call "entityManager.merge(role);" everything work correctly.
All manipulations with entity manager are in stateless session bean.
Exception is follow:
javax.ejb.EJBException: nested exception is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
javax.transaction.RollbackException: Transaction marked for rollback.
java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
javax.transaction.RollbackException: Transaction marked for rollback.
at com.sun.corba.ee.impl.javax.rmi.CORBA.Util.mapSystemException(Util.java:243)
at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.privateInvoke(StubInvocationHandlerImpl.java:205)
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 Facades.__RoleEntityFacadeRemote_Remote_DynamicStub.edit(Facades/__RoleEntityFacadeRemote_Remote_DynamicStub.java)
at Facades._RoleEntityFacadeRemote_Wrapper.edit(Facades/_RoleEntityFacadeRemote_Wrapper.java)
at clientti059.Main.main(Main.java:57)
Caused by: java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
javax.transaction.RollbackException: Transaction marked for rollback.
at com.sun.enterprise.iiop.POAProtocolMgr.mapException(POAProtocolMgr.java:251)
at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1386)
at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1316)
at com.sun.ejb.containers.EJBObjectInvocationHandler.invoke(EJBObjectInvocationHandler.java:210)
at com.sun.ejb.containers.EJBObjectInvocationHandlerDelegate.invoke(EJBObjectInvocationHandlerDelegate.java:77)
at $Proxy115.edit(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(ReflectiveTie.java:154)
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.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:1706)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(CorbaMessageMediatorImpl.java:1088)
at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(RequestMessage_1_2.java:223)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:806)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.dispatch(CorbaMessageMediatorImpl.java:563)
at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.doWork(CorbaMessageMediatorImpl.java:2567)
at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:555)
Caused by: javax.transaction.RollbackException: Transaction marked for rollback.
at com.sun.enterprise.distributedtx.J2EETransaction.commit(J2EETransaction.java:440)
at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.commit(J2EETransactionManagerOpt.java:371)
at com.sun.ejb.containers.BaseContainer.completeNewTx(BaseContainer.java:3792)
at com.sun.ejb.containers.BaseContainer.postInvokeTx(BaseContainer.java:3571)
at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1354)
... 19 more
javax.ejb.EJBException: nested exception is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
javax.transaction.RollbackException: Transaction marked for rollback.
at Facades._RoleEntityFacadeRemote_Wrapper.edit(Facades/_RoleEntityFacadeRemote_Wrapper.java)
Thanks

It looks like some exception occur during your commit causing the rollback, unfortunately I do not see the exception causing the error in the stack.
Either look in your logs for the exception that causes the error, or call a flush() at the end of your session-bean method to trigger the error (around a try catch/log).
Why are you merging the role, was the object serialized, or read in a different transaction?
-- James : http://www.eclipselink.org

Similar Messages

  • The sound quality of my speaker suddenly got really poor when playing music or videos.  Sounds like an old AM radio or Sputnik.  Pretty sure it's hardware related but maybe not.  Thoughts on what the problem might be and if it can be repaired?

    The sound quality of my speaker suddenly got really poor when playing music or videos.  Sounds like an old AM radio or Sputnik.  Pretty sure it's hardware related but maybe not.  Thoughts on what the problem might be and if it can be repaired?

    The batterys the ipods come with are very sensetive somtimes they dont react right to the first couple of charges. Try fully charging it and then leaving it on until its completely drained a few times. If that doesnt work it might be a lemon.

  • Arch Manga Babe Wallpaper (maybe Not Safe For Work)

    Hi All,
    Some time ago I found the picture of a lovely manga babe somewhere in the net (can't remember where).
    I did not like the ugly background, so I cut out the girl's silhouette with my primitive Gimp skills and put her in a more elegant and boring black background with the Arch logo.
    Thumb link:
    http://www.tastyrabbit.net/gfx/archMangaBabe-thumb.jpg
    Full Resolution link:
    http://www.tastyrabbit.net/gfx/archMangaBabe.jpg
    I also tatooed the girl with the Arch logo!!
    The image is 1920x1200, feel free to crop it to suit your resolution.
    Hope you like it.
    Enjoy.
    Fnord.

    moljac024 wrote:
    molom wrote:
    'Arch Manga Babe Wallpaper (maybe Not Safe For Work)'
    Thanks to you I just got FIRED!!!
    PS. Totally worth it though
    Omg are you for real ?
    EDIT: Off-topic, but what is the best way to cut out a silhouette in GIMP ?
    I think so, not sure whether it was me being fired, or I got retrenched or got a redundancy, but it was worth it and that's all that matters. Who needs jobs? Wait... Aren't we facing a recession soon... CRAP!!!
    BTW is this what you're looking for? - http://acedar.blogspot.com/2007/08/gimp … o-cut.html
    Last edited by molom (2008-10-17 11:52:46)

  • 3+yr old PBook no boot, now booting -but Slloooowwwllly and maybe not fully

    O helpful souls of .mac-BBSland:
    I have a just-past-AppleCare PB that has been perfectly reliable for 3 years. It's running up-to-latest-rev Panther 10.3.9 with several apps -- Eudora, FireFox, iTunes, iPodderX, notepad were running when the problem appeared. HD was only ~85% full.
    Tonite Eudora claimed some strange errormsg, NotePad was unable to write to disk. Force Quit behaved erratically, so I thought the only thing for it was to force power-down. Twice after that time, the PB was able to power-up (from a black screen, give the "startup-chord" sound, go to a light-gray screen, then to the darker apple superimposed on that, then the spinning spoke under that). No further. After about 20 minutes in that state I decided that Further Action was necessary (and natch, AppleCare was closed)
    I reset the PRAM per http://docs.info.apple.com/article.html?artnum=2238 -- no joy. Following instructions, I held down the CTRL-APPLE-P-R keys just after pressing the PWR key, waited until I heard the startup-chord twice and then released the 4 keys. The second startup-ding was perceptibly softer.
    From what I could glean from http://docs.info.apple.com/article.html?artnum=14449 , resetting the PMU might be the wrong next step, so I didn't do that. The computer did in fact start up its HD, give the chord-beep indicating that the HW is somewhat OK...
    Next when I started up, there was a long period where the spoke spins. Then, after many minutes, the screen went blue and the touch-pad actually became capable of moving a default-shape cursor around the screen. (I use "Mighty Mouse" to change cursor shape in my normal setup, as I recall, but things don't get that far)...
    After MANY (~15?) minutes of blue-screen-with-movable-cursor, things began to move forward... buttt verrrryyyy slowly... I saw some of the normal startup screens (including a new one, "Waiting for crash reporter"). At the moment, there's a white rectangle in the center of the screen, a progress bar that's about 95% to the right, with the legend "Waiting for Printing Services"... when the cursor was outside that rectangle, it's an arrow; when it was inside, it was a spinning multicolored beachball.
    I just rechecked. The screen is now black, in character-mode. White chars on black screen, atop left:
    Darwin/BSD (DrDans-Computer.local)(console)
    Login:
    for awhile there I saw the occasional errormsg
    IOATAController device blocking bus.
    After a few of these, I thought I should maybe blow out any dust around the kbd, so I detached it and did so. Those errormsgs disappeared.
    Since I have no idea what login and pwd I should have used, I entered FOO to login, and BAR to password. I thought I was cooked.
    But to my utter surprise, the screen reverted to the small cursor ATOP MY NORMAL BACKGROUND PATTERN -- snow drifts, as I recall its name.
    Upon rechecking, I see the cursor has shifted to BUSY mode (one of the MightyMouse shapes specific to my login) and the top bar is beginning to SLLLOOOOWWWWWLLLYY reappear, claiming that it's DrDan's, (I have DrDan set as the auto-boot on this laptop) the time, the battery status... but as yet it hadn't turned into the expected white bar with that info in it.
    Rechecking again: White bar, all normal contents (except for Airport signal status), BUSY cursor, nothing of desktop showing... Whatta cliffhanger!
    And now I gots to turn in... busy workday tmw... so this is where I need to ask you folks...
    As they say in the trade, *** do I do now?
    If the system appears close to OK by morning, will it reboot smoothly and as quickly as before all this crap? Yeh, I understand I better back things up ASAP...
    I hear normal HD sounds, and possibly a CPU fan (if there is one in this CPU). The CPU has been physically undisturbed; I use it on a cookie-sheet on my lap, so the only stresses it has been subjected to are small torsional ones.
    I have my original bought Panther disks, DiskWarrior and such. No other actual MEDIA backup (natch, I was on the point of ordering a new 17" PB or at least an external backup HD, but that never happens in time, does it.)...
    I'd appreciate any Words of wisdom or pointers to where such WoWs can be found... TIA folks.
    PowerBook G4   Mac OS X (10.3.9)  

    Welll... here's something from the Good News / Very Bad News department:
    When I got home about 1:30 PM, DW reported to my delight that after 400,000-odd comparisons, it had come up with a replacement directory structure, and did I want to inspect it? I said yes, it looked file-for-file identical with the old stuff. I asked for details of the discrepancies and I could see there was a list of about 100 files, deep in the guts of obscure stuff, and media stuff,that were detected as damaged and repaired. Yayy, I said, deliverance is at hand...
    So I told DW to start replacing the old with the repaired dir. About 30 minutes thereafter, the replacement process stopped. A red stop-sign alert was displayed, with this legend: "DW encountered an unexpected error while writing the replacement dir of the disk "Macintosh HD". Rebuild this disk again, preview the disk, and back up all files from the previewed disk (2164, 2659)."
    I returned to the main DW display, and saw a green-checkmarked line containing the text "Rebuilding was stopped because of an error (2164)."
    I looked under "ADVANCED" and read:
    DEVICE id disk0S5
    SECTORS 117,208,826
    sector size 512 BYTES
    Filesystem type: HFS (extended, jounalled)
    Model: Toshiba mk6021gas
    Looked to see what the GRAPH display might be... but after about 10 min, graphing stopped; errormsg "the disk named Macintosh HD could not be graphed, an unexpected error occurred (2403, 2658)" so I hit OK.
    I came back and began the disk rebuild process once more. I figure that will be another long slog that will take another day while it starts from scratch.
    Can anyone shed any light on those DW errormsg codes? Are they reliably bad enough such that after the next rebuilt dir is proposed, that I shouldn't even bother attempting to replace the old with the new dir? In other words, is this HD/PB hardware hosed as far as repairable until bootability is concerned? I fear so.
    Sooo... said he, hope for this HD flagging (and the entire PB, therefore) ...
    The rest of this msg is just speculation. Feel free to comment or correct!
    Do you think it'd be worth it to ship the PB back to Apple for a HD transfer/fix? Probably expensive,since I just dropped out of AppleCare's 3-year max...
    Foo. I'm wondering whether it's worth the candle to back up 60-ish gigabytes of data to CD, or even to DVD's. Many of the files are larger, I bet, than even a single DVD... And would some one of you gurus tell me how it's supposed to be possible, given no Airport/WiFi connection between this Mac (booted via DW CD) and my LAN, to backup stuff to CD or DVD? Is it possible to eject the DW disk that I'm currently booted off of (how?) and then insert a CD or DVD and then somehow burn media? I wonder where I can find out such info, if not from you kind folks (pointers more than welcome of course!)
    Perhaps it'd be better to simply suck the data outta my dead PB wholesale...
    Given that I was soon gonna buy a new PB with a larger HD than 60, and hopefully an external HD for backup use... Perhaps, since DW was able to see the disk and since I got a listing of my desktop contents during the slow-boot process, my files are in there, but the thing just won't boot (and there is probably a bad sector where there must not be one, to make the system bootable?).
    I've heard of "Target Mode" where another Mac (that is undamaged and able to do boot) comes up, and then (somehow using target mode) makes a connection via a FW or USB connection between it and an old, bad Mac like mine with an unbootable internal HD but with data that need saving. Would it work if I just bought a new PB and then via target mode sucked all my data files (iTunes, email etc. going back years) onto the new PB's HD? If my understanding of Target Mode is correct, it would be useless with an external HD that was not bootable on its own.
    Where do I learn more about Target Mode? If I were to use Target Mode between two FW 400 PB's (or a PB with an HD?), do I need a cable with standard FW-400 male plugs on both ends?
    Speaking of new PB's, has anyone heard anything good about the new Intel-based "core duo" PB? I hear it's got a brighter screen, runs real fast, but has only FireWire 400 (which is what my current PB has, so perhaps that's not an issue). How compatible is it, in other words how good is "Rosetta?" I imagine I could pay a lot less for a 17" PB G4 in aluminum, with nice fast FW. But the screen's the older technology. Any thoughts?
    And what's a good source of big cheap external HD's?
    Tnx for your patience with all this info.

  • Maybe not a Proper Fix for X-Fi sounds b

    Well after this I'm applying to Creative to find a well payed job
    ***EDIT : I forgot to say that it was if you actually have already tried everything out (I mean all the fixes on the forum, the new drivers, change PCI slots, reinstalled windows+X-Fi etc... and nothing helps to solve your problem. This solution is obviously not a "first thing to do" )***
    Fisrt, this topic is just some experience of mine (thanx to a german guy), nothing to do with a "real fix". And I wanted to say that I was pretty decei'ved by Creative, posted here no answers, asked for custumer help, got a ticket twice and no anwsers what so ever ...
    Here was my problem :
    -Crackle.
    -No sound at all at windows start.
    -Some sound but just shot down during a game session or watching some video/music etc...
    -Nice blue critical errors involving some ha20x2k.sys file.
    -sound freezs (same sequence of sound comming back during a few secounds).
    -Sound card wouldn't install properly, 27% then 87% of the install and blue screen.
    Guess I had nearly all the bugs existing hum :/
    I've been dealing with this for ages now ( week which is ages for a computer problem, especially that I know some things about computers and never spent one freaking week to solve a problem).
    So I read a thread on that topic relating to a german one about electromagnetic issues. Well some motherboards, graphics cards or power supply well whatever is working with electricity generates electromagnetic waves. And it seems that the Creatives audio cards are pretty sensible to these kinds of waves, like all electronic material not well protected !
    Here's the original topic :
    http://www.media-addicted.de/blog/asus-p5b-deluxe-probleme-mit-soundblaster-x-fi-und-onboard-sound-soundmax/276/
    The guys wants to put foil in his system, using cardboard to separate from graphic card. Well this is the solution, though maybe a bit hazardous regarding the foil in some electronic sysmtem though it's not the best conductor ever you may damage your computer.
    I've wrapped up the sound blaster x-fi fatality with an anti-electrostatic blaster (every card is normally protected with some when you buy it, mother boards, graphic cards etc...) and just fixed it in my tower. And as if nothing ever happened I got my sound back. I'm now listenning to music and it's all fine.
    Obviously I got the sound card to work half an hour ago, so I think we nead to try it at least for a few hours but regarding aal the problems I had before I really think I fixed it.
    So, I appologize for the English if it's not quite that good, hope it's understandable, I'm French and I need to practice so if some moderator would come across some big mistakes feel free correcting them
    And I trully hope this will come in help to many of you having the same problems and not able to fix them with creatives help Message Edited by -Smurf- on 0-24-20070:20 PM
    Message Edited by -Smurf- on 0-24-200702:43 PM
    Message Edited by -Smurf- on 0-25-20070:49 PM

    Well I bought a new PSU, a Seasonic S2II-430 because I just asked everywhere and though the Corsair one was good, this one was quoted as very good. So well, anyway it's the same thing, cost me 73. and it's very nice.
    But still, the problem remains ...
    Well, plz isn't there someone out there who could tell what's wrong ? I get sound (sometimes) at windows start. And I can hopefully listen to some music for 5 to 0 minutes and the sounds just cuts off. I got a few sound bugs activating CMSS.
    I used all the drivers, always the same thing. What am I suppose to do now ?
    My motherboard is a 965P-DS3 form Gigabyte and it supposed to work correctly with X Fi I read somewhere where they tested X Fi with different hardware.
    The sound card isn't working properly ? Or is it the motherboard or something else ?
    I already tried everything written in this forum, all drivers are up to date (MB, Xp etc...), changed PCI slots, onboard sound disabled, what is the next step ?Message Edited by -Smurf- on 0-25-20070:22 PM

  • Was going to LR2, but maybe not?!

    So I have been running LR1.4 for quite some time with no issues at all since
    it's inception from 1.0. Maybe one of the lucky ones. I am running a fairly
    fast machine with XP Pro and 4gigs of ram. Anyhow, when I had seen that LR2
    came up, I was really eager to try it out, but alas, I am usually not one to
    be one of the first to update because hardly any major software is perfect
    on a new release. Therefore I kept an eye on the web and specifically this
    forum to see what was roosting people with LR2. At this point I am thinking
    that it is better safe than sorry and while there may be some neat stuff to
    use in LR2, I have been doing great with 1.4 and therefore maybe it is best
    to hold out for a bit until a major update for version 2 comes out. Who else
    is along with this thinking and why? For me, I am dealing with well over
    75,000 images which may be chump change for some people db, but I still
    don't want to invite issues. Anyone see any sense in my logic or is my
    thinking off? LOL.

    is there a way to install it separate from my 1.4 install and slowly add or <br />move things over to it from my database and such?<br /><br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />>I have also been very happy with 1.4 both on PC and Mac but to me switching <br />>to 2.0 was not a good idea. I experience a very very slow program, close to <br />>useless even on a superfast machine. But reading the forums it seems that <br />>the experience with 2.0 vary a lot and some people find it as quick and <br />>respondnig as 1.4. So given the good new features I would have given 2.0 a <br />>try if I was you, but don't be surprised if it turns out to be slow.<br />><br />> I'm really looking forward to 2.1

  • IBook Dual USB (16 VRAM) not recognizing internal HDD, maybe not entire ATA

    I've got a VERY old iBook (2001 dual USB I think, 'machine model' is 'PoweBook4.3'), which seemingly isn't recognizing it's own ATA bus.. Just this afternoon, I managed to connect it via Firewire target and back up the HDD (nothing important really), but now it won't even see it's own HDD, I can't boot from the internal CD/DVD drive (using the Tiger install DVD) using the 'C' key, but I can boot from an external Firewire DVD drive. But then the installer won't see the internal HDD, nor will Disk Utility see it. If I do 'ls /dev/d*', I get the following devices:
    disk0 disk0s1 disk0s2 disk0s3
    disk1
    disk2
    disk3
    disk0 is the install DVD (on /Volumes). disk1 is on /private/var/tmp, which contains a bunch of Mount[0-9]{0-2] entries, a mds and a zBooterMnt directory. disk3 is on /private/var/run, which has a bunch of 'UNIX-looking' stuff 9syslog,syslog.pid,lookup.pid,installer.
    I'm suspecting that either the battery that maintains the PRAM and/or NVRAM (shouldn't that not NEED a battery, being NV?) is hosed, or the NVRAM itself is, or something else entirely like the ATA bus, Power Manager chip, etc. The other day, sometimes it would recognize the HDD as a boot volume, sometimes not. If I reset the NVRAM (using openfirmware: reset-nvram), and then reset the Power Manager, that seemed to correct things..
    BTW, this is my notorious 'machine from ****' - it has been repaired on AppleCare 7 or 8 times I think (logic board replaced multiple times, including that flaw in the video circuitry, replaced some other boards, etc, etc) - Apple has spent more than the combined cost of the machine and the Applecare on it. I'd like to use it as an MP3 server (and Newton development platform, which really does do better under OS9..), but if it won't even recognize it's own HDD..
    Any ideas, or anybody want to buy it for parts (what parts still work that is - mind you, the display cable is a bit flaky TOO!)?
    Jim

    Yeah, it is indeed a DVD ROM drive.
    I did manage to get it to recognize the disk (don't know how though) - by opening the **** thing up (completely), disconnection the ATAPI cable from the TravelStar drive and motherboard, and then reseating everything and closing the book back up (without the EMI shield (the one that is over the main board that the Airport card sits on (there is no Airport Card there) - I hope that doesn't double as a heat sink..
    I also recoved the "U bar" around the screen hinges, and cut a bit away from the bottom housing plastic, so the two sets of video cables (and backlight/LCD power) are just exposed now, and not crimped through that piece of metal, which was causing problems - blacklight blinking out) That doesns't seem to cause any problems, UNLESS that bar is a heat sink. (didn't ever feel particularly hot, but I know there's a heat pipe (I think it's a heat pipe) that runs up to that grill below the screen hinge opening).
    The one thing I do notice is that the metal area right under where the Airport card would go, and just to the left of the RAM SODIMM is VERY hot (almost burns skin on 10s contact. Is that normal? Since it's normally right below the card, I'd think heat should be piped away somehow, and I'm wondering if the EMI shield usually conducts the heat somewhere else. I still have the shield so I can reinstall it if necessary. The fan is not running continuously either. I'm thinking maybe the shield conducts heat from where it's source over to the heat piipe that runs up to the hinge-grill and the fan?
    I also managed to break the audio connector on the main board in the process (opps!), but what the **** if it has no internal audio - it was crappy anyway!

  • HT5567 My iPhone 4S has never had a screen enlarge from vertical to horizontal  I'm a new owner and want to know if there is a button to turn this feature in or it's my phone that's maybe not working correctly

    I can't turn my screen from small to large vertical vs horizontal  does not switch   I'm a new user less than a month
    How can I get my phone to do this feature ? I have to tap to enlarge but only one way won't go sideways

    double tap the home button> slide your finger in tell you come across a lock and press it

  • Macbook Pro Hardware Warranty = 1 Year.  Maybe not?

    The Macbook Pro that I'm currently using is my third Mac. I purchased it in March of 2006 - and I was planning to purchase the AppleCare plan before my 1 year hardware warranty is up. To be sure of the purchase date, I just went to apple.com/support and entered by serial number.
    To my surprise, this is what I see:
    "Our records indicate that your estimated date of purchase was 26-Mar-06.
    Based on this data, your product is not covered for service. However, depending on when or whether you registered your product, if you purchased it from an Apple authorized reseller, or purchased an iPod shuffle from the online Apple Store, the estimated purchase date may be incorrect."
    Uh - am I missing something here? Today is 07-Feb-07. I still have over a month before my one year warranty is up -- but that message says that my product isn't covered for service?
    What's going on here? I double checked the serial number ... and even tried it a second time, but received the same answer.
    What gives?

    Call Apple's Apple Care telephone number. They will be able to straighten this out. It appears there may be a records glitch.
    If you have a receipt that indicates that you are within your first year, that is irrefutable.
    Apple won't action this from this forum, so it's best to speak to them via telephone.

  • "Free" X! upgrade offer, well maybe not so free - Caveat Emptor

    Last week I and at least one of my neighbors received a promotional email offering free upgrade and installation to Xfinity X1. Sounded great, so I bit the hook. I used the web interface to complete the upgrade. All Comcast wanted was an authorization that I was the account holder. After a short period, I got an email indicating they got my order. Today, I get a confirmation email of the upgrade, along with a readout of changes that will occur to my account. No installation or upgrade fee showed up, but there was a $10 X! DVR service charge added to my account. We do not have DVR service on our present plan, and have no interest in DVR service. I view this as an unauthorized bait and switch tactic. I immediately called Comcast and canceled the order.What most upsets me is that there was no indication anywhere on the sign up site that there would be additional service charges automatically tacked on to my account. Free upgrade to me means that my account charges stay the same. Apparently, Comcast has a much narrow definition.This fiasco is in direct contrast to a really nice upgrade plan that they offered me a few months ago, which I took, and the ease in which our plan was upgraded, without any surprise charges showing up. 

    You definition is way more limited than that of Comcast's description of the service. From the web info on X1:X1: Overview and User Guide "IntroductionXFINITY on the X1 Entertainment Operating System is simply extraordinary!What is X1?X1 delivers the simplest, fastest and most complete way to access all your entertainment on all your screens.
    With X1, you experience TV and Internet together like never before with advanced search, personalized recommendations, apps at home and on the go and the fastest in-home Wi-Fi for all rooms, all devices, all the time." Some of that extra power sounded nice, and clearly is beyond your narrow statement regarding DVR. Because I would receive a unit with a DVR does not mean that I want the DVR service. At one point in the past, I did have a cable box with a DVR,  but we did not subscribe to the service, nor were we charged for it. Thus, because a unit has a feature, in my estimation, it does not mean I must subscribe to the service. However, if having the X1 box means I must subscribe is Comcast's attitude, then that should have been made clear right up front in the promotional email, even if in small print. As I said, there were no such indications at any time before the confirmation email appeared.  Criticizing me for not calling about  promo to really check it out, is valid. To some extent, I was thrown off guard by the great previous experience I had on a Comcast upgrade; I will not make that mistake again.  

  • Frame in frame with graphics problem-or maybe not

    Hi from Croatia.
    Well I have and extremely demanding costumer that wants to control every single bit of the project.
    The problem is as follows.
    I have a book that every once in a wile has annotation which above and bellow has a graphic line (not simple line but complex graphic imported from illustrator.)
    I tried to anchor one object above and another bellow this text which lets say stands in the middle of text frame and for me everything works ok.
    But this demanding customer wants that those annotations are in separate frame so that he can have full control over them(?).
    So I made frame in frame-put wrapping around this smaller frame.
    The problem is- is it possible to put those graphics in this smaller frame, create text object and add it to library so that i can use it multiple times. I have more than hundred of those annotations.
    And is it possible when i cut the text from this main frame to paste it in this smaller one and that this small frame automatically fills with text so that frame expands vertically according with amount of text. I am not placing text but pasting. I hope you have understood but in every case here is an example.
    Main text frame(text fills full width of page)
    sadbhjasdsdab
    sagsafgsfgafsd
    agsfgfasg
    (Now smaller frame with graphic fills full width of main frame)
    ewfewtf
    agasg
    sdagasdga
    (text fom main frame continues)
    fasdfs
    dsgasgasg
    dfgdfsg
    dfsgsd
    Uf this was exhausting even for me.
    THX for any help.

    I tried to use 3 row table with header and footer, but the problem is that indesign does not allow tables to break when the part of table goes to another page.
    And THX for in for on those plugins.

  • Maybe not the right place

    I have updated from CS3 to CS6 - and working with InDesign, Im surpirsed to see that the same fonts are not available.
    Could you please direct me to a link that updates my Indesign to my earlier version, CS3. Otherwise, when I open files, it forst pops up with the Font errors, then the text isn't where it supposed to be either.
    BR,
    Frans

    CS3 - http://helpx.adobe.com/creative-suite/kb/cs3-product-downloads.html

  • Preview closes when opening, but maybe not entirely

    Usually when I download a PDF from Firefox, or open one for the first time since my computer has been on, Preview bounces, stops bouncing and the light underneath is on. After about 10 seconds it then appears to close itself (with no error message). However, when I reopen Preview (or double-click the file again) it instantly reopens with the document I originally opened...
    I take it this is not supposed to happen?
    MacBook Pro 13'', early 2011
    OSX 10.7.2 (but this has happened before)
    Thanks.

    Hello,
    Moved your post to CR Designer forum.
    Try SP 1: https://smpdl.sap-ag.de/~sapidp/012002523100007683092011E/cr2011sp1.exe
    And see if that helps.
    Also, you can go to service.sap.com/support and log a case, all valid purchases include access to Service Market Place where you can create a support case. You should have info with an "S" user account to log in. If not then you contact CIC ( customer services and they should be able to provide one for you )
    There have been noted install issues, SP 1 has resolved a few of them....
    If you create new reports do any of those crash the designer?
    Thank you
    Don

  • Problem with Time Machine Backup or Maybe Not Time Machine

    The problem manifests after a Time Machine backup.
    I have an iMac 24-inch, Early 2008. iMac 8,1
    Intel Core 2 Duo, 4GB RAM.
    Last week I purchased two  4-Terabyte G-technology G-Drives. Each drive is equip with FireWire 800 and USB 3.0/2.0. In general use they seem to work fine on the iMac.
    I designated one drive as a Time Machine Volume. This is where the problem happens.
    Time Machine will do the initial backup just fine. Then it runs once per hour with no problem. Intermittently however, Time Machine will fail and report :
    “Time Machine couldn’t complete the backup to “hard disk name”.
    Unable to complete backup. An error occurred while creating the backup folder.”
    Interestingly enough if I try to open a folder on the Time Machine volume using the Finder I get:
    “The operation can’t be completed. An unexpected error occurred (error code -50).
    If I try to eject the volume I get the irksome “Cannot eject volume because it’s currently in use by one or more programs.”
    To resolve this I’ve tried everything, from the banal verifying permissions, to swapping the two G-Drives around, swapping out all the cables, etc.. When the error occurs I go into the shell and check with lsof and always find no software apparently holding or using that volume.
    Very frustrating
    I can force eject the volume, then remount the volume and things are back to normal. Same with restarting.
    This happened under OS X Mountain Lion and is now happening under a clean install of Mavericks.
    I thought that even though I don’t see any MDS  related processes using the drive, it might be spotlight, so I told spotlight not to index the volume. Problem still happens.
    I’ve found that one person had almost this exact same problem at:
    https://discussions.apple.com/thread/4756742
    His solution turned out to be replacing the G-Drive with another brand new G-Drive.
    Unfortunately, I cannot return the drives to the Apple store because the boxes were tossed out. I also don’t relish trying to explain that the drives work just fine until some glitch that occurs either just before or just after a Time Machine backup.
    Does anyone have any suggestions?

    You can also contact G-Drive while the drives are under warranty (one year I believe).
    I have the same problem using Time Machine with the 2T G-Drive and my MacBook Pro. G-Tech emailed me a Firmware Update Utility app and, when that didn't solve the error message problem, they sent me a replacement drive and new cables, twice. The problem persisted; I get one or two backups each day and then the error message. I also can't copy anything to the drive and have to force eject it, so G-Tech suggested I see how well it worked with the USB cable.
    Time Machine works flawlessly with the USB cable and the G-Drive, so G-Tech suggested it is a problem with my Firewire 800 port. I worked with Apple Care over the phone, doing all the tests suggested in Eric's post - testing with Disk Utility, Time Machines interface with my User Accounts, the Operating System, then resetting Time Machine, etc. and then I took it to the Genius Bar so they could run the tests themselves. All looked like it should be fine (but they were using a 1T G-Drive and all testing was done within 30 minutes)...when I got home, after two good backups, I got the error message again.
    Apple Care finally suggested I make a Genius Bar appointment and sit at the store working with my MacBook, the G-Drive and Time Machine running until I got the error message, to prove the only thing left that could possibly be the cause of the problem, is the port.  I did this last Wednesday.
    It is 9 days later and I got my computer back this afternoon...the logic board was replaced because the Firewire 800 port is attached to it...I got my first Time Machine back up at 5:34pm...and the error message again at 7:34pm.
    The only solution, it seems, is to use the USB cable instead of Firewire. USB and Thunderbolt seem to be the direction Apple is taking, which is why so many people have been posting about this problem, here and elsewhere, with no real solutions from Apple. See this article:  http://www.infoworld.com/t/mac-laptop/how-cope-the-end-of-firewire-205957
    I hope the USB works for you too.

  • Thumbnails/icons missing...partially resolved...maybe not fw related....

    Ok so it appears this issue only occurs if I access the ix4 300d using the Storage Manager program. If I access the ix4 300d using the Storage Connector client all icons/thumbnails are visible. Anyone else able to confirm the issue is then related to the Storage Manager software and probably not the new firmware?
    Anyway I'll just use the 'Connector' software from now on....

    Sorry, I normally had 'Press T' for toolbar, when talking about it, but had the impression you were already seeing it, just not everything associated with it.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.10 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

Maybe you are looking for

  • How to download iphoto into an external hard drive

    I have a MacBook Air - PowerBook G4 - 15" 1)  What is the easiest way to download iphotp "PHOTOS" to an external hard drive? 2)  After it has downloaded, I want to leave the photos still in my computer. Can I do that?     will it just happen to be st

  • Error with data source creation

    Error during Data Source creation: weblogic.common.ResourceException: DataSource (jdbc.GangsterDB) can't be created with non-existent Pool (connection or multi) (oraclePool) I have already created oraclePool with the following properties: Name : orac

  • Photocast no longer works

    This is very depressing, Photocasting has stopped working. Whenever I try to add pictures iPhoto crashes. The only way to make it work is un publish, make a new album, drag the pictures in the new album and then republish.

  • Error when trying to download the free trial of cs6

    When I try to download the free trial of photoshop cs6 extended it says there is an error.." This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance." why does this hap

  • Reader store payment problem:(

    Hi, I am from Turkey and I bought my reader from USA but unfortunately I cannot buy any books from reader store because my credit card address and number belongs to Turkey and in order to be able to buy I should use an American card and address. It i