How to share content across a whole family?

I know there are other threads related to this, but I'm really trying to understand how to manage iTunes DRM, Home Sharing, Match, etc., across my family's ecosystem of Macs, iPhones, iPods and iPads. I seem to think the following apply:
- up to 5 "computers" (does this mean OSX devices but not iOS devices?) can share DRM content
- up to 10 "devices" can share Match content (presume this means content I've uploaded, not Apple DRM content I've purchased in iTunes Store)
So here's what I am trying to figure out:
1. Let's say we have 5 "computers" that are running OSX (iMac and 4 Macbooks), can then all of our iOS devices -- iPads (2), iPhones (2) and iPod Touches (3) -- have the same DRM content on them? So if I purchased the movie "Monsters Inc" from the iTunes Store, can it be in iTunes on all 5 OSX devices plus any of the 7 iOS devices I wish to have it on?
2. If the answer is "NO" to #1, can I selectively apply where the content goes to stay within the maximums? For example, let's say I have "Monsters Inc" on some of the devices and the movie "Cars" on others such that, while I have more devices accessing my DRM content, no one DRM item (movie, song, etc.) is across more than is allowed?
3. Lastly, if we add a 6th OSX "computer" then I presume to add an DRM content it would have to be re-purchased under a separeate iTunes account? Or, said another way, there's really no way to have more than 5 computers on the same iTunes account?
I am hoping Apple is making this all easy to do as they ask all of us to buy more of their products, but without the ability to access DRM content on new devices like iPad Mini, there's really no reason to buy one.
Thanks for any help

iTunes Store: Associating a device or computer to your Apple ID - http://support.apple.com/kb/HT4627 -  "Your Apple ID can have up to 10 devices and computers (combined) associated with it. Each computer must also be authorized using the same Apple ID. Once a device or computer is associated with your Apple ID, you cannot associate that device or computer with another Apple ID for 90 days."
iTunes Store: About authorization and deauthorization - http://support.apple.com/kb/HT1420
Various paragraphs talking about restrictions:
http://www.apple.com/legal/itunes/us/terms.html > USAGE RULES

Similar Messages

  • How  to  save  content of a  whole  swing  page

    Hi everyone ..
    can any of u tell me ,how to save contents of a java swing page in a single file with all components viz . textfield,textarea,JTable,JPanel etc .. with their respective formatting ie.e Font,Color etc ..
    Plz let me know it soon .. its very urgent ..
    Can I save it as Screenshot or Jpeg Image .. or how to go about it .
    Mohit

    Sure: see below!
    WARNING: this code will not compile as is because it uses some other classes from my personal code library (FileUtil & StringUtil). The particular methods of those classes which are used below are trivial methods that anyone can write, which is is why I have not posted them as well. So, to get the code below to compile, you can
    a) write your own versions of these classes or
    b) simply add the necessary methods to this class or
    c) simply comment out their usage (in the case of StringUtil, which is just used for arg checking)
    But if you still want me to post them, then I can post the relevant fragments of those classes.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    import javax.swing.*;
    import bb.io.FileUtil;
    import bb.util.StringUtil;
    * Class which supports taking screen shots of the entire desktop, AWT Components, or Swing JComponents.
    * This functionality is implemented in a series of <code>take</code> methods, each of which returns a BufferedImage.
    * This class also offers convenience <code>write</code> methods for storing BufferedImages to files.
    * <p>
    * The images taken by this class should be the precise images seen on the screen.
    * <b>However, the images written to files may deviate from the originals.</b>
    * One obvious cause is limitations of the chosen file format (especially with lossy formats like jpeg).
    * A subtle issue can occur, however, even when using lossless formats like png:
    * if the file is subsequently opened by another application,
    * that application may rescale the image, which can often cause visible artifacts.
    * <blockquote>
    *     To see this last problem on Windows XP,
    *     call {@link #take()} which returns an image of the entire desktop and write it to a file,
    *     and then open the file with XP's default graphics file viewer ("Windows Picture And Fax Viewer").
    *     This program shrinks the desktop image in order to fit it inside the program's window,
    *     and rescaling artifacts are readily seen, especially if the desktop image has any kind of text in it.
    *     If "Windows Picture And Fax Viewer" instead cropped the image or had a scroll pane, then this should not happen.
    * </blockquote>
    * <p>
    * Acknowledgement: this class was inspired by the program
    * <a href="http://www.discoverteenergy.com/files/ScreenImage.java">ScreenImage</a>.
    * Differences from the above program:
    * <ol>
    *  <li>this class uses {@link BufferedImage#TYPE_INT_ARGB} instead of {@link BufferedImage#TYPE_INT_RGB} in order to preserve alpha</li>
    *  <li>this class's {@link #formatNameDefault default image file format} is PNG instead of JPEG</li>
    *  <li>this class's <code>take</code> methods simply take snapshots and never have the side effect of writing image files</li>
    *  <li>this class added a version of <code>take</code> which can get a snapshot of a region of a Component</li>
    *  <li>
    *          when taking a snapshot of a region of a Component or JComponent,
    *          the Rectangle that specifies the region always has coordinates relative to the origin of the item
    *  </li>
    * </ol>
    * See also:
    * <a href="http://forum.java.sun.com/thread.jspa?forumID=57&threadID=597936">forum discussion #1 on screen shots</a>
    * <a href="http://forum.java.sun.com/thread.jspa?forumID=256&threadID=529933">forum discussion #2 on screen shots</a>
    * <a href="http://forum.java.sun.com/thread.jspa?forumID=57&threadID=622393">forum discussion #3 on screen shots</a>.
    * <p>
    * It might appear that this class is multithread safe
    * because it is immutable (both its immediate state, as well as the deep state of its fields).
    * However, typical Java gui code is not multithread safe, in particular, once a component has been realized
    * it should only be accessed by the event dispatch thread
    * (see <a href="http://java.sun.com/developer/JDCTechTips/2003/tt1208.html#1">Multithreading In Swing</a>
    * and <a href="http://java.sun.com/developer/JDCTechTips/2004/tt0611.html#1">More Multithreading In Swing</a>).
    * So, in order to enforce that requirement, all methods of this class which deal with components
    * require the calling thread to be the event dispatch thread.
    * See the javadocs of each method for its thread requirements.
    * <p>
    * @author bbatman
    public class ScreenShot {
         // -------------------- constants --------------------
         * Defines the image type for the BufferedImages that will create when taking snapshots.
         * The current value is {@link BufferedImage#TYPE_INT_ARGB}, which was chosen because
         * <ol>
         *  <li>the 'A' in its name means that it preserves any alpha in the image (cannot use the "non-A" types)</li>
         *  <li>the "_INT" types are the fastest types (the "BYTE" types are slower)
         * </ol>
         * @see <a href="http://forum.java.sun.com/thread.jspa?threadID=709109&tstart=0">this forum posting</a>
         private static final int imageType = BufferedImage.TYPE_INT_ARGB;
         * Default value for the graphics file format that will be written by this class.
         * The current value is "png" because the PNG format is by far the best lossless format currently available.
         * Furthermore, java cannot write to GIF anyways (only read).
         * <p>
         * @see <a href="http://www.w3.org/TR/PNG/">Portable Network Graphics (PNG) Specification (Second Edition)</a>
         * @see <a href="http://www.w3.org/QA/Tips/png-gif">GIF or PNG</a>
         * @see <a href="http://www.libpng.org/pub/png/">PNG Home Site</a>
         public static final String formatNameDefault = "png";
         // -------------------- take --------------------
         // desktop versions:
         * Takes a screen shot of the entire desktop.
         * <p>
         * Any thread may call this method.
         * <p>
         * @return a BufferedImage representing the entire screen
         * @throws AWTException if the platform configuration does not allow low-level input control. This exception is always thrown when GraphicsEnvironment.isHeadless() returns true
         * @throws SecurityException if createRobot permission is not granted
         public static BufferedImage take() throws AWTException, SecurityException {
              Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
              Rectangle region = new Rectangle(0, 0, d.width, d.height);
              return take(region);
         * Takes a screen shot of the specified region of the desktop.
         * <p>
         * Any thread may call this method.
         * <p>
         * @param region the Rectangle within the screen that will be captured
         * @return a BufferedImage representing the specified region within the screen
         * @throws IllegalArgumentException if region == null; region's width and height are not greater than zero
         * @throws AWTException if the platform configuration does not allow low-level input control. This exception is always thrown when GraphicsEnvironment.isHeadless() returns true
         * @throws SecurityException if createRobot permission is not granted
         public static BufferedImage take(Rectangle region) throws IllegalArgumentException, AWTException, SecurityException {
              if (region == null) throw new IllegalArgumentException("region == null");
              return new Robot().createScreenCapture( region );     // altho not currently mentioned in its javadocs, if you look at its source code, the Robot class is synchronized so it must be multithread safe, which is why any thread should be able to call this method
         // AWT Component versions:
         * Takes a screen shot of that part of the desktop whose area is where component lies.
         * Any other gui elements in this area, including ones which may lie on top of component,
         * will be included, since the result always reflects the current desktop view.
         * <p>
         * Only {@link EventQueue}'s {@link EventQueue#isDispatchThread dispatch thread} may call this method.
         * <p>
         * @param component AWT Component to take a screen shot of
         * @return a BufferedImage representing component
         * @throws IllegalArgumentException if component == null; component's width and height are not greater than zero
         * @throws IllegalStateException if calling thread is not EventQueue's dispatch thread
         * @throws AWTException if the platform configuration does not allow low-level input control. This exception is always thrown when GraphicsEnvironment.isHeadless() returns true
         * @throws SecurityException if createRobot permission is not granted
         public static BufferedImage take(Component component) throws IllegalArgumentException, IllegalStateException, AWTException, SecurityException {
              if (component == null) throw new IllegalArgumentException("component == null");
              if (!EventQueue.isDispatchThread()) throw new IllegalStateException("calling thread (" + Thread.currentThread().toString() + ") is not EventQueue's dispatch thread");
              Rectangle region = component.getBounds();
              region.x = 0;     // CRITICAL: this and the next line are what make region relative to component
              region.y = 0;
              return take(component, region);
         * Takes a screen shot of that part of the desktop whose area is the region relative to where component lies.
         * Any other gui elements in this area, including ones which may lie on top of component,
         * will be included, since the result always reflects the current desktop view.
         * <p>
         * Only {@link EventQueue}'s {@link EventQueue#isDispatchThread dispatch thread} may call this method.
         * <p>
         * @param component AWT Component to take a screen shot of
         * @param region the Rectangle <i>relative to</i> component that will be captured
         * @return a BufferedImage representing component
         * @throws IllegalArgumentException if component == null; component's width and height are not greater than zero; region == null
         * @throws IllegalStateException if calling thread is not EventQueue's dispatch thread
         * @throws AWTException if the platform configuration does not allow low-level input control. This exception is always thrown when GraphicsEnvironment.isHeadless() returns true
         * @throws SecurityException if createRobot permission is not granted
         public static BufferedImage take(Component component, Rectangle region) throws IllegalArgumentException, IllegalStateException, AWTException, SecurityException {
              if (component == null) throw new IllegalArgumentException("component == null");
              if (region == null) throw new IllegalArgumentException("region == null");
              if (!EventQueue.isDispatchThread()) throw new IllegalStateException("calling thread (" + Thread.currentThread().toString() + ") is not EventQueue's dispatch thread");
              Point p = new Point(0, 0);
              SwingUtilities.convertPointToScreen(p, component);
              region.x += p.x;
              region.y += p.y;
              return take(region);
         // Swing JComponent versions:
         * Takes a screen shot of <i>just</i> jcomponent
         * (no other gui elements will be present in the result).
         * <p>
         * Only {@link EventQueue}'s {@link EventQueue#isDispatchThread dispatch thread} may call this method.
         * <p>
         * @param jcomponent Swing JComponent to take a screen shot of
         * @return a BufferedImage representing jcomponent
         * @throws IllegalArgumentException if jcomponent == null
         * @throws IllegalStateException if calling thread is not EventQueue's dispatch thread
         public static BufferedImage take(JComponent jcomponent) throws IllegalArgumentException, IllegalStateException {
              if (jcomponent == null) throw new IllegalArgumentException("jcomponent == null");
              if (!EventQueue.isDispatchThread()) throw new IllegalStateException("calling thread (" + Thread.currentThread().toString() + ") is not EventQueue's dispatch thread");
              Dimension d = jcomponent.getSize();
              Rectangle region = new Rectangle(0, 0, d.width, d.height);
              return take(jcomponent, region);
         * Takes a screen shot of <i>just</i> the specified region of jcomponent
         * (no other gui elements will be present in the result).
         * <p>
         * Only {@link EventQueue}'s {@link EventQueue#isDispatchThread dispatch thread} may call this method.
         * <p>
         * @param jcomponent Swing JComponent to take a screen shot of
         * @param region the Rectangle <i>relative to</i> jcomponent that will be captured
         * @return a BufferedImage representing the region within jcomponent
         * @throws IllegalArgumentException if jcomponent == null; region == null
         * @throws IllegalStateException if calling thread is not EventQueue's dispatch thread
         public static BufferedImage take(JComponent jcomponent, Rectangle region) throws IllegalArgumentException, IllegalStateException {
              if (jcomponent == null) throw new IllegalArgumentException("jcomponent == null");
              if (region == null) throw new IllegalArgumentException("region == null");
              if (!EventQueue.isDispatchThread()) throw new IllegalStateException("calling thread (" + Thread.currentThread().toString() + ") is not EventQueue's dispatch thread");
              boolean opaquenessOriginal = jcomponent.isOpaque();
              Graphics2D g2d = null;
              try {
                   jcomponent.setOpaque( true );
                   BufferedImage image = new BufferedImage(region.width, region.height, imageType);
                   g2d = image.createGraphics();
                   g2d.translate(-region.x, -region.y) ;     // CRITICAL: this and the next line are what make region relative to component
                   g2d.setClip( region );
                   jcomponent.paint( g2d );
                   return image;
              finally {
                   jcomponent.setOpaque( opaquenessOriginal );
                   if (g2d != null) g2d.dispose();
         // -------------------- write --------------------
         * Writes image to a newly created File named fileName.
         * The graphics format will either be the extension found in fileName
         * or else {@link #formatNameDefault} if no extension exists.
         * <p>
         * Any thread may call this method.
         * <p>
         * @param image the BufferedImage to be written
         * @param fileName name of the File that will write image to
         * @throws IllegalArgumentException if image == null; fileName is blank
         * @throws IOException if an I/O problem occurs
         public static void write(BufferedImage image, String fileName) throws IllegalArgumentException, IOException {
              if (image == null) throw new IllegalArgumentException("image == null");
              if (StringUtil.isBlank(fileName)) throw new IllegalArgumentException("fileName is blank");
              File file = new File(fileName);
              String formatName = FileUtil.getExtension(file);
              if (formatName.length() == 0) formatName = formatNameDefault;
              write(image, formatName, file);
         * Writes image to file in the format specified by formatName.
         * <p>
         * Any thread may call this method.
         * <p>
         * @param image the BufferedImage to be written
         * @param formatName the graphics file format (e.g. "pnj", "jpeg", etc);
         * must be in the same set of values supported by the formatName arg of {@link ImageIO#write(RenderedImage, String, File)}
         * @param file the File that will write image to
         * @throws IllegalArgumentException if image == null; type is blank; file == null
         * @throws IOException if an I/O problem occurs
         public static void write(BufferedImage image, String formatName, File file) throws IllegalArgumentException, IOException {
              if (image == null) throw new IllegalArgumentException("image == null");
              if (StringUtil.isBlank(formatName)) throw new IllegalArgumentException("formatName is blank");
              if (file == null) throw new IllegalArgumentException("file == null");
              ImageIO.write(image, formatName, file);
         // -------------------- Test (inner class) --------------------
         * An inner class that consists solely of test code for the parent class.
         * <p>
         * Putting all the test code in this inner class (rather than a <code>main</code> method of the parent class) has the following benefits:
         * <ol>
         *  <li>test code is cleanly separated from working code</li>
         *  <li>any <code>main</code> method in the parent class is now reserved for a true program entry point</li>
         *  <li>test code may be easily excluded from the shipping product by removing all the Test class files (e.g. on Windoze, delete all files that end with <code>$Test.class</code>)</li>
         * </ol>
         * Putting all the test code in this inner class (rather than a shadow external class) has the following benefits:
         * <ol>
         *  <li>non-public members may be accessed</li>
         *  <li>the test code lives very close to (so is easy to find) yet is distinct from the working code</li>
         *  <li>there is no need to set up a test package structure</li>
         * </ol>
         public static class Test {
              public static void main(String[] args) throws Exception {
                   Gui gui = new Gui();
                   EventQueue.invokeLater( gui.getBuilder() );
                   new Timer(1000, gui.getTimerActionListener()).start();
              private static class Gui {
                   private Frame frame;
                   private TextField textField;
                   private JFrame jframe;
                   private JLabel jlabel;
                   private JPanel jpanel;
                   private int count = 0;
                   private Runnable getBuilder() {
                        return new Runnable() {
                             public void run() {
                                  System.out.println("Creating a Frame with AWT widgets inside...");
                                  frame = new Frame("ScreenShot.Test.main Frame");
                                  textField = new TextField();
                                  textField.setText( "Waiting for the screen shot process to automatically start..." );
                                  frame.add(textField);                              
                                  frame.pack();
                                  frame.setLocationRelativeTo(null);     // null will center it in the middle of the screen
                                  frame.setVisible(true);
                                  System.out.println("Creating a JFrame with Swing widgets inside...");
                                  jframe = new JFrame("ScreenShot.Test.main JFrame");
                                  jlabel = new JLabel(
                                       "<html>" +
                                            "To be, or not to be: that is the question:" + "<br>" +
                                            "Whether 'tis nobler in the mind to suffer" + "<br>" +
                                            "The slings and arrows of outrageous fortune," + "<br>" +
                                            "Or to take arms against a sea of troubles," + "<br>" +
                                            "And by opposing end them?" + "<br>" +
                                            "To die: to sleep; No more;" + "<br>" +
                                            "and by a sleep to say we end" + "<br>" +
                                            "The heart-ache and the thousand natural shocks" + "<br>" +
                                            "That flesh is heir to," + "<br>" +
                                            "'tis a consummation Devoutly to be wish'd." + "<br>" +
                                       "</html>"
                                  jpanel = new JPanel();
                                  jpanel.setBorder( BorderFactory.createEmptyBorder(20, 20, 20, 20) );
                                  jpanel.add(jlabel);
                                  jframe.getContentPane().add(jpanel);
                                  jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                                  jframe.pack();
                                  Point p = frame.getLocation();
                                  p.translate(0, frame.getSize().height  + 10);
                                  jframe.setLocation(p);
                                  jframe.setVisible(true);
                   private ActionListener getTimerActionListener() {
                        return new ActionListener() {
                             public void actionPerformed(ActionEvent evt) {
                                  try {
                                       switch (count++) {
                                            case 0:
                                                 displayMessage("Taking a screen shot of the entire desktop...");
                                                 ScreenShot.write( ScreenShot.take(), "desktop.png" );
                                                 break;
                                            case 1:
                                                 displayMessage("Taking a screen shot of the central rectangle of the desktop...");
                                                 Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
                                                 Rectangle region = getCenteredRectangle(d);
                                                 ScreenShot.write( ScreenShot.take(region), "desktopCenteredRectangle.png" );
                                                 break;
                                            case 2:
                                                 displayMessage("Taking a screen shot of the TextField...");
                                                 ScreenShot.write( ScreenShot.take(textField), "textField.png" );
                                                 break;
                                            case 3:
                                                 displayMessage("Taking a screen shot of the central rectangle of the TextField...");
                                                 d = textField.getSize();
                                                 region = getCenteredRectangle(d);
                                                 ScreenShot.write( ScreenShot.take(textField, region), "textFieldCenteredRectangle.png" );
                                                 break;
                                            case 4:
                                                 displayMessage("Taking a screen shot of the JLabel...");
                                                 ScreenShot.write( ScreenShot.take(jlabel), "jlabel.png" );
                                                 break;
                                            case 5:
                                                 displayMessage("Taking a screen shot of the central rectangle of the JLabel...");
                                                 d = jpanel.getSize();
                                                 region = getCenteredRectangle(d);
                                                 ScreenShot.write( ScreenShot.take(jpanel, region), "jpanelCenteredRectangle.png" );
                                                 break;
                                            default:
                                                 System.exit(0);
                                                 break;
                                  catch (Throwable t) {
                                       t.printStackTrace(System.err);
                             private void displayMessage(String text) {
                                  System.out.println(text);
                                  textField.setText(text);
                                  frame.pack();
                                  frame.invalidate();
                             private Rectangle getCenteredRectangle(Dimension d) {
                                  int x = d.width / 4;
                                  int y = d.height / 4;
                                  int width = d.width / 2;
                                  int height = d.height / 2;
                                  return new Rectangle(x, y, width, height);
    }

  • How to share files across my network from Belkin N

    I have a belkin N+ router that you cant plug a USB hard drive or a flash drive into to share the files across the network. It shows my router as a device on the network but gives me the same error message every time I try to acess them. How can I set this up from my Mac, what do I need to to do?

    I had the same problem. I was first getting an error on my PC about the library being created with a newer version of iTunes. I upgraded my PC to 8.1 and am now receiving the following error when trying to open up the shared library:
    "The iTunes application could not be opened. An unknown error occurred (13005)."

  • How to share a photo stream w/ family account

    I have searched for two days for a solution, but could not find one.
    Our setup is as follows:
    One iMac at home, where iPhoto and Yosemite is running on.
    My wife has an iPhone 5S with iOS8 and I have one, too.
    We have an iCloud Family Account, and she has her own Apple-ID, but is part of the family account.
    Prob:
    Photos she is taking are not added automatically to the iMac - iPhoto Photostream. It only works with MY Photostream. It seems that one could only have a photo stream for one Apple-ID, regardless of a Family Account setup.
    I have created a shared Family iCloud - Album, but I find this too cumbersome, since she needs to add photos manually to it all the time and secondly I don't know if these are added automatically to the iPhoto Media Lib on the iMac.
    Desired solution: Without sharing the same Apple ID both iPhones should have a Photostream (not a shared iCloud album), and this photo stream should automatically add photos to the Media Lib on the iMac. Sort of a "shared photo stream".
    Many thanks in advance - hopefully somebody has cracked this nut before me :-)
    Best, Georg

    Where are you looking?
    There are a few ways to do it. You can select a photo in the Photo app then tap the Share button, there should be a Photo Stream button where you can add a new Photo Stream. Or from the Photo Stream section of the Photo app tap the (plus) button in the top left corner.
    If these options are not available check Settings/iCloud/Photo Stream to ensure both My Photo Stream and Shared Photo Stream are turned on.

  • How to share objects across ears ?

    We need to define a set of classes and/or jar's that will be used across various
    .ear file deployments. We can make these classes visible by putting them in BEA's
    classpath, but that would mean restarting the server everytime there are changes
    to such global classes:
    1. What is the correct way to do this ? Can classes be redefined in (i.e. defined
    in individual) various ear files ?
    2. We have value classes that are passed between various session beans that reside
    in DIFFERENT ear files (i.e. they are part of separate enterprise apps). How does
    one define and reference such value classes ?
    Thanks for your help in advance!

    DP wrote:
    Rob:
    Thanks for your response(s). This actually leads to other related questions. What
    is the recommendation for deployment in the following scenario: We have a requirement
    of being able to hot deploy objects frequently in production. I understand that
    the best way to accomplish this is to do an "exploded ear deployment".
    (a) How can we deploy one or more ejbs in an exploded ear ? Can the EJBs be either
    a set of .class files or a set of .jar files? In this context, what exactly is
    the definition of an exploded ear ? Does it mean that all objects are packaged
    only as .class files (i.e. no jar, wars whatsoever in the ear, correct ?) within
    the directory ?You can either deploy the sub-components (eg EJBs, webapps etc)
    archived, exploded or a mix.
    Personally I prefer to just explode everything like this:
    ear/META-INF/application.xml
    ear/ejb/META-INF/ejb-jar.xml
    ear/ejb/com/foo/MyEJB.class
    >
    (b) How can we deploy java objects ? Say we need to update a value class or a
    non-J2EE class on the server. If we have an exploded ear, do we simply overwrite
    the existing class file ? Will WL8.1 automatically read this newer class ? Similarly,
    if we need to add a non-j2ee .class file, can it be just dropped into the exploded
    ear directory without a server restart ?You should never need to restart the server to make an application change.
    If you want to change an arbitrary class file in the app, then you can
    just change the .class file and then use wldeploy or weblogic.Deployer
    to redeploy the application.
    You can do better if you know the class is only used in a particular web
    application. In that case, you could redeploy just a particular webapp
    without bouncing the rest of the app.
    -- Rob
    >
    Thanks, again, for helping.
    Rob Woollen <[email protected]> wrote:
    Do you have any singletons? If so, then your best bet is to have the
    classes in the CLASSPATH (at least the singletons).
    If not, then you can have a separate copy of the classes in each EAR.
    You'll need to ensure the classes that are passed between the EARs are
    exactly the same in both EARS (same serial version uid.) WLS uses
    serialization between applications, so the class will be serialized in
    app-1's classloader and deserialized in app-2's classloader.
    FWIW, we're well aware of this problem and are looking at building
    better support for this into the next major version of WLS.
    -- Rob
    DP wrote:
    We need to define a set of classes and/or jar's that will be used acrossvarious
    ear file deployments. We can make these classes visible by puttingthem in BEA's
    classpath, but that would mean restarting the server everytime thereare changes
    to such global classes:
    1. What is the correct way to do this ? Can classes be redefined in(i.e. defined
    in individual) various ear files ?
    2. We have value classes that are passed between various session beansthat reside
    in DIFFERENT ear files (i.e. they are part of separate enterprise apps).How does
    one define and reference such value classes ?
    Thanks for your help in advance!

  • How to Share content between Tiger & Leopard

    Hi Everyone
    I didn't know where to post that question so I placed it in both Tiger & Leopard Discussion.
    Here it is :
    My wife just got an Iphone 4 although she was aware of the non compatibility with Tiger.
    She Intended to get the 3GS, but she was offered the same deal for the 4 so she went for it.
    Now she has an Iphone 4 AND wants to stick to Tiger for her work.
    How can we fix that?
    I was thinking of installing Leopard on another partition so she could switch to it whenever she needs to sync her Iphone.
    Since she's going to use that partition for only 5% of the time, Is there a way she can to associate her adress book entries, photos, music ,from these 2 partitions . In other words, Is there a way she can update an AdressBook entry in Tiger and have it be replicated/updated on Leopard's partition.
    The Idea is , so whenever Itunes is syncing the iphone, it goes and look into these folders where the content is shared by both system.
    Does that make any sense?
    Thanks for your inputs

    I'll probably stick with the initial idea and Install 10.6 on her G5's second disk
    If it is a G5, 10.6 won't work, 10.5.x is the latest they'll ever run.
    wonder what are the other Tiger/Iphone4 users doing ...
    Most are trying to go 10.5.x at least...
    Mac system requirements for iPhone 4...
    http://www.apple.com/iphone/specs.html
    * Mac computer with USB 2.0 port
    * Mac OS X v10.5.8 or later
    * iTunes 9.2 or later (free download from www.itunes.com/download)
    * iTunes Store account
    * Internet access
    Leopard requirements/10.5.x...
    * Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    minimum system requirements
    * 512MB of memory (I say 2GB at least)
    * DVD drive for installation
    * 9GB of available disk space (I say 30GB at least)
    You have to call Apple & likely ask for a Product Specialist to get it, if they still have it!
    Snow Leopard/10.6.x Requirements...
    General requirements
    * Mac computer with an Intel processor
    * 1GB of memory (I say 2GB at least)
    * 5GB of available disk space (I say 30GB at least)
    * DVD drive for installation
    * Some features require a compatible Internet service provider; fees may apply.
    * Some features require Apple’s MobileMe service; fees and terms apply.
    Which apps work with Mac OS X 10.6?...
    http://snowleopard.wikidot.com/

  • Authorized versus Associated.....trying to share content

    What is the difference between a computer being AUTHORIZED to play content from an iTunes account versus a computer being ASSOCIATED with a device so it can be synced and play the content? It seems multiple computers can be AUTHORIZED to play content from multiple iTunes account but each device can only be ASSOCIATED with one iTunes account (or is it one computer) at a time. Is that correct?
    If so, can all the AUTHORIZED content on a computer (even if from multiple iTunes accounts) be synced to one ASSOCIATED iPad?
    I have a Work Computer (PC), Associated Work iPad and Work iTunes Account and a separate Home Computer (iMac), Associated Home iPad and Home iTunes account. I am trying to figure out how to share content? Currently all my content is in my Home iTunes Account / Computer. My Work iPad, Work iTunes Account are both new and I want to share some of my Home iTunes content on my Work iPad.
    I am concerned when I read that once a device is ASSOCIATED with an iTunes account it can not be ASSOCIATED with a different account for 90 days. I can't risk ASSOCIATING my Work iPad with my Personal iTunes Account and being locked out from syncing my Work iTunes account on my Work iPad for 90 days.

    Okay, I figured it out myself and will document it here so others may benefit.
    A computer can be AUTHORIZED to play/use content purchsed from multiple iTunes Accounts. There is a limit to the number of computers that can be AUTHORIZED per account (5 total) but no limit as to how many accounts a computer can be AUTHORIZED to play. Once you have AUTHORIZED all the accounts AND downloaded all the purchased content from each account to a computer, this content can be also be played on any device ASSOCIATED with the computer. A device can only be ASSOCIATED to one computer but one computer can have many devices ASSOCIATED to it. As an example, you can use apps purchased on from multiple iTunes accounts on an iPad as long as the computer the iPad is ASSOCIATED with is AUTHORIZED to use/play the content for each of the accounts. Another example: if you also purchased music from all the iTunes accounts, you could listen to it on an iPad, iPhone and iPod as long as all three were ASSOCIATED with the computer where all the accounts were AUTHORIZED.
    Hope this helps.

  • How do i share content with my family without becoming responsible for payment of everybody's purchases? with familysharing i mean, not home sharing

    how do i share content with my family without becoming responsible for payment of everybody's purchases?
    with familysharing i mean, not home sharing
    i have set up a familyshare for my parents and 3 siblings, all mid twenties. everybody is used to paying their own way. how do i make that continue to be the case and still keep the sharing facility open?
    e.g I don't want to pay for my sisters' music purchases - half of it i don't like - but would like access to it now and then.

    -> Home Sharing is different than logging into the iTunes store.
    You enable Home Sharing using one AppleID. Doesn't matter which you use but all devices must use the same AppleID for Home Sharing.

  • HT4859 Help!  My whole family shares one apple id and my daughter deleted all of our contacts from her phone, unknowingly deleting them from ours too!  I need to find out how to restore an archived copy.

    Help!  My whole family shares one apple ID and one of us deleted a large amount of contacts from our phone, not realizing that they would be deleted from all of our devices.  Is it at all possible to restore an archive of our contacts?  Is there such a thing? 

    icloud is designed so that only one user uses it to keep his/her devices in sync.  Problems such as yours occur when multiple users use the same account - icloud is not designed for that.
    If a user is using your account, they should get their own account and disconnect from your account.
    To create a new icloud account, go to
    http://www.apple.com/icloud/setup/
    Once they have a new account, they should go to Settings>icloud, scroll to bottom of screen and tap Delete Account.  This only disconnects the device from that account, no data is lost on icloud.  Then enter the account ID that you want to use.
    Note that an ID used for iCloud does not have to be the same ID used for iTunes.  You can all keep the same iTunes store Apple ID to share purchases, but for iCloud, use different IDs.

  • Is it possible to have your whole family on one apple id or is it better to have each person have there own? If each has their own does each id have to buy their own music and apps? How does find my iphone work with one apple id or two?

    Is it possible to have your whole family on one apple id or is it better to have each person have there own? If each has their own does each id have to buy their own music and apps? How does find my iphone work with one apple id or two? also I am going to be going off to college soon should I make an itunes id for my self and how will I get all the music from the old id?

    Is it possible to have your whole family on one apple id or is it better to have each person have there own?
    Yes, it is possible. 1 apple ID can be associated with up to 10 devices.
    If each has their own does each id have to buy their own music and apps?
    Yes, all purchases are non-transferable.
    How does find my iphone work with one apple id or two?
    Every device associated with one apple ID through Find my iPhone is tied to that Apple ID; Find my iPhone will work in the same way with up to ten devices associated with one apple ID. You cannot enable Find my iPhone for one device across two apple IDs
    I am going to be going off to college soon should I make an itunes id for my self and how will I get all the music from the old id?
    If you have authorized a computer with the old apple ID, you can transfer old media purchased through the old to other devices via iTunes. This doesn't mean the media purchases through the old apple ID it transferred to the new account. If you plan to make future purchases and don't wish to share them with others, make your own apple ID.

  • Can iTunes share purchased content across Apple IDs within one household, OR

    QUESTION ONE
    Will iTunes share purchased content using TWOApple IDs, across different devices within one household?
    QUESTION TWO
    Should each device with a separate user have its own iCloud ID? CONCURRENTLY, should each device belonging to the SAME user use the SAME cloud ID?
    QUESTION THREE
    I think I "can" use one Apple ID, and just usedifferent iCloud IDs for EACH device. Am I fundamentally wrong? Am I legallywrong?
    UNDERSTOOD FACTS:
    1)  Apple states, each person should have their own AppleID:  http://support.apple.com/kb/HE37 
    2)  iCloud servicesare: mail, contacts,calendar etc...
    3)  iTunes servicesare: music, videos, Apps, etc...
    You can sync iTunes across up to5 different computers using your Apple ID: http://support.apple.com/kb/ht1420, however there does not seem to be alimit of how many Apple devices youcan sync within using a single iTunes account (Apple ID). *NOTE: beware automaticsynchronization of new apps..
    4)  iTunesin the Cloud is a different animal altogether! This should allow sharing of all iTunes content across all “your” devices, aslong as it was purchased thru iTunes (If not, you need to shell out an additional $25/yr for iTunes Match)
    SCENARIO:  I got a new iPhone, and am giving theold iPhone to my spouse. ALL iTunes content has been managed and purchased using oneApple ID that matches one iCloud ID. Ideally, just like anyother family using multiple Apple products and usingiCloud; we would like to SHARE songs & Apps, but NOT share calendars, mail etc...(sharing contacts would be nice).
    QUESTION FOUR
    Under the above scenario, must I have a “.me email” account?
    I have been reading threadsabout managing content across multiple devices, using different IDs, both AppleIDs and Cloud IDs, and there is a LOT of confusion. I'm visual, so I've attached the graphic illustrating how I "think" I should proceed.  **I have not set up the new iPhone yet.
    We do not have a Mac or a".me email" account, and we use Gmail.
    Any help is appreciated!

    I have the computer authorized to use the Apple ID content (been using iTunes since 2007).
    My issue is I cannot create sperate iCloud IDs for each device. I get prompted/directed to create a new Apple ID, which is what I want to avoid. I want to use one "FAMILY" AppleID as it is, and use iCloud IDs for each device.
    My logic is: ALL my purchases are tied to an AppleID, and I just want to share on devices that leave the house, like another iPhone.
    So- what to do? How to get a seperate iCloud ID without a seperate AppleID? I have an iPhone &amp; iPad, husband has an iTouch &amp; iPhone. How to share selectively? All devices were originally setup using one Cloud ID and one Apple ID. Now I need new IDs to represent the new user on the iTouch &amp; iPhone.

  • How do I add pictures of my family on our family share plan?i jus

    I Would like to know how to add pics of my family on our family shardd plan can someone please help me I'm new to this

    Hi Laura720,
    With Family Sharing enabled, you get a Family album that all members can add pictures to.
    Family Sharing
    The whole family can contribute to the family photo album.
    Now collecting and sharing family memories is easier and more fun. When Family Sharing is turned on, a shared album is set up automatically in the Photos app on all family members’ devices. Then everyone can add photos, videos, and comments to the album and be notified when something new is added.
    Just have them add the pictures to the Family album.
    Thank you for visiting Apple Support Communities.
    Nubz

  • How to share the Photos library on iCloud Drive with other family members?

    I have uploaded our family photo-library to iCloud drive (136GB+). It works great!
    But how can my wife (with her own iCloud-account, but within the family) see and use our library?

    Tnx for the reply, though I already feared this was the answer.
    Family sharing works well for keeping contact lists separated and we do not need to see all the crap the other half shoots with their iPhone.
    But as family-members, we DO want to use our communal photo-library.
    It would be great if you could share your entire library with family-members or at least select which albums to share with who.
    Also it is silly that you can share a photo only to one other iCloud-album. If I shoot a nice pic of the kids I would want to share it with my wife AND with others.
    The same would work for contacts. The family-head should be able to assign which contacts are shared and which are separate.
    I hope Apple will update the family-possibilities so that this is fixed.

  • I share my iTunes with my family's iPods.  We all buy music on our iPod's and would like to transfer the purchases to the iTunes library.  How would we do this?

    I share my iTunes with my family's iPod's.  We all buy music seperately on our own iPod and would like to transfer the music to our iTunes library, how would we do this?

    Oh jeez, that was simple. Thanks!

  • I got a new iPod my whole family has the same Apple ID I set it up and instead of using my old Game Center account it went to my sisters how do I set it to my old one?

    I got a new iPod my whole family uses the same Apple ID we both have different game centers I was setting the new iPod up and I got her Game Center instead of mine how do I get my old one back on my new ipod

    Each person should have his/her own unique Apple ID.  Period.

Maybe you are looking for

  • Sap-SD

    hii everyone, when i want to send materials to customers free of cost or samples then whats the process. i mean i want the detailed steps included in it..i mean should we create any order or should we make GR. can anyone tell me the process. Regards,

  • Printing problem in reports 6i

    hi, i dont know where to post this quastion, but please please i need help i have created an application using forms & reports 6i and database 9i,in this application i run a report which prints an id card i use card printer ( fargo cardpro printer) t

  • Inbox won't rotate with iPad

    My inbox has stopped rotating as I turn my iPad.  All other apps rotate as expected just the inbox that has stopped. Other than this it seems to be working perfectly. Can anyone help me fix it?

  • HT201250 How can you back up os 10.5.8?

    I'm wanting to back up my iMac before I add 10.6 on it. All the external back ups require 10.6 & up. So, how can you back it up? My computer already has Time Machine on it. Thanks!

  • How do you change the colour of the "colour boxes" in themes?

    Creating a book in Aperture the various "Themes" offer you different layouts.  When you are in a Theme - is there a way to change the colours of the background boxes (Not page colour) - I have searched everywhere to see how to do this and a simple th