May the Same CD Be Imported to Multiple Accounts?

If a friend lends me a CD that he has already imported to his iTunes account on his computer, am I allowed to import it to my account on my computer?  I want to know if this is possible or if it violates the terms of service (or copyright law) somehow.

Confirming what The Fiend said, it would absolutely break the law. It would be just as if your friend made a copy of the CD and gave you the copy. If you want that CD, your friend will have to delete all the imported tracks and any other copies and then give you the original CD. Or you will need to buy your own copy.
Regards.

Similar Messages

  • Accessing the same stateful session bean from multiple clients in a clustered environment

    I am trying to access the same stateful session bean from multiple
              clients. I also want this bean to have failover support so we want to
              deploy it in a cluster. The following description is how we have tried
              to solve this problem, but it does not seem to be working. Any
              insight would be greatly appreciated!
              I have set up a cluster of three servers. I deployed a stateful
              session bean with in memory replication across the cluster. A client
              obtains a reference to an instance of one of these beans to handle a
              request. Subsequent requests will have to use the same bean and could
              come from various clients. So after using the bean the first client
              stores the handle to the bean (actually the replica aware stub) to be
              used by other clients to be able to obtain the bean. When another
              client retrieves the handle gets the replica aware stub and makes a
              call to the bean the request seems to unpredictably go to any of the
              three servers rather than the primary server hosting that bean. If the
              call goes to the primary server everything seems to work fine the
              session data is available and it gets backed up on the secondary
              server. If it happens to go to the secondary server a bean that has
              the correct session data services the request but gives the error
              <Failed to update the secondary copy of a stateful session bean from
              home:ejb20-statefulSession-TraderHome>. Then any subsequent requests
              to the primary server will not reflect changes made on the secondary
              and vice versa. If the request happens to go to the third server that
              is not hosting an instance of that bean then the client receives an
              error that the bean was not available. From my understanding I thought
              the replica aware stub would know which server is the primary host for
              that bean and send the request there.
              Thanks in advance,
              Justin
              

              If 'allow-concurrent-call' does exactly what you need, then you don't have a problem,
              do you?
              Except of course if you switch ejb containers. Oh well.
              Mike
              "FBenvadi" <[email protected]> wrote:
              >I've got the same problem.
              >I understand from you that concurrent access to a stateful session bean
              >is
              >not allowed but there is a
              >token is weblogic-ejb-jar.xml that is called 'allow-concurrent-call'
              >that
              >does exactly what I need.
              >What you mean 'you'll get a surprise when you go to production' ?
              >I need to understand becouse I can still change the design.
              >Thanks Francesco
              >[email protected]
              >
              >"Mike Reiche" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> Get the fix immediately from BEA and test it. It would be a shame to
              >wait
              >until
              >> December only to get a fix - that doesn't work.
              >>
              >> As for stateful session bean use - just remember that concurrent access
              >to
              >a stateful
              >> session bean is not allowed. Things will work fine until you go to
              >production
              >> and encounter some real load - then you will get a surprise.
              >>
              >> Mike
              >>
              >> [email protected] (Justin Meyer) wrote:
              >> >I just heard back from WebLogic Tech Support and they have confirmed
              >> >that this is a bug. Here is their reply:
              >> >
              >> >There is some problem in failover of stateful session beans when its
              >> >run from a java client.However, it is fixed now.
              >> >
              >> >The fix will be in SP2 which will be out by december.
              >> >
              >> >
              >> >Mike,
              >> >Thanks for your reply. I do infact believe we are correctly using
              >a
              >> >stateful session bean however it may have been misleading from my
              >> >description of the problem. We are not accessing the bean
              >> >concurrently from 2 different clients. The second client will only
              >> >come into play if the first client fails. In this case we want to
              >be
              >> >able to reacquire the handle to our stateful session bean and call
              >it
              >> >from the secondary client.
              >> >
              >> >
              >> >Justin
              >> >
              >> >"Mike Reiche" <[email protected]> wrote in message
              >news:<[email protected]>...
              >> >> You should be using an entity bean, not a stateful session bean
              >for
              >> >this application.
              >> >>
              >> >> A stateful session bean is intended to be keep state (stateful)
              >for
              >> >the duration
              >> >> of a client's session (session).
              >> >>
              >> >> It is not meant to be shared by different clients - in fact, if
              >you
              >> >attempt to
              >> >> access the same stateful session bean concurrently - it will throw
              >> >an exception.
              >> >>
              >> >> We did your little trick (storing/retrieving handle) with a stateful
              >> >session bean
              >> >> on WLS 5.1 - and it did work properly - not as you describe. Our
              >sfsb's
              >> >were not
              >> >> replicated as yours are.
              >> >>
              >> >> Mike
              >> >>
              >> >> [email protected] (Justin Meyer) wrote:
              >> >> >I am trying to access the same stateful session bean from multiple
              >> >> >clients. I also want this bean to have failover support so we want
              >> >to
              >> >> >deploy it in a cluster. The following description is how we have
              >tried
              >> >> >to solve this problem, but it does not seem to be working. Any
              >> >> >insight would be greatly appreciated!
              >> >> >
              >> >> >I have set up a cluster of three servers. I deployed a stateful
              >> >> >session bean with in memory replication across the cluster. A client
              >> >> >obtains a reference to an instance of one of these beans to handle
              >> >a
              >> >> >request. Subsequent requests will have to use the same bean and
              >could
              >> >> >come from various clients. So after using the bean the first client
              >> >> >stores the handle to the bean (actually the replica aware stub)
              >to
              >> >be
              >> >> >used by other clients to be able to obtain the bean. When another
              >> >> >client retrieves the handle gets the replica aware stub and makes
              >> >a
              >> >> >call to the bean the request seems to unpredictably go to any of
              >the
              >> >> >three servers rather than the primary server hosting that bean.
              >If
              >> >the
              >> >> >call goes to the primary server everything seems to work fine the
              >> >> >session data is available and it gets backed up on the secondary
              >> >> >server. If it happens to go to the secondary server a bean that
              >has
              >> >> >the correct session data services the request but gives the error
              >> >> ><Failed to update the secondary copy of a stateful session bean
              >from
              >> >> >home:ejb20-statefulSession-TraderHome>. Then any subsequent requests
              >> >> >to the primary server will not reflect changes made on the secondary
              >> >> >and vice versa. If the request happens to go to the third server
              >that
              >> >> >is not hosting an instance of that bean then the client receives
              >an
              >> >> >error that the bean was not available. From my understanding I
              >thought
              >> >> >the replica aware stub would know which server is the primary host
              >> >for
              >> >> >that bean and send the request there.
              >> >> >
              >> >> >Thanks in advance,
              >> >> >Justin
              >>
              >
              >
              

  • How can you use the same e-mail address for multiple ipads?

    I have two iPads.. an iPad and an ipad 2.  I registared my new ipad 2 and now my old ipad is will not let me log on and is telling me that my e-mail address is already in use.  how can you use the same e-mail address for multiple ipads?

    And by using the same Apple ID you can also share purchases.  If you have a different Apple ID for each iPhone then you can't share purchases.

  • Can i create additional apple id's using the same email address for using multiple products with iCloud?

    can i create additional apple id's using the same email address for using multiple products with iCloud?

    Hi Anne,
    I'm pretty sure different eMail addies are needed for different Apple IDs.

  • Particular sales order of the same line item hv created multiple production

    sir,
    I am having a problem in MD04. A particular sales order of the same line item hv created multiple production order.and continously planning is going on... I didn't get why it happens.
    Will u please suggest me what should i do in this case?
    Regards
    Meenu

    Hello sir,
    yes, ofcourse, for the finished material have the BOM with some semifinished productes which are to be produced .
    In co02 , we can go through the collective production order.
    One more thing is that, in the multiple production order date(scheduling date) shows in forward(future dates).
    For ex:09-05-2010.
    Regards
    Meenu

  • I need to Mirror the same content of iPad on multiple Apple TV simultaneously, can it be done

    I need to Mirror the same content of iPad on multiple Apple TV simultaneously.
    I have a iPad and three Apple TV in three different rooms, and I would like to play the same video or mirror simultaneously on all the Apple TV located in my three rooms. Is that possible?
    I would also like to know is it possible to have two iPad mirrored on to a single apple tv, so that I can view both my iPad screen on same apple TV simultaneously.
    Any suggestions?

    doubt it most local area networks would die having to stream such amount of data

  • I recieved a scam email from apple. then sent me the same email using my own email account. how do I report this to apple. can't find any contact details.

    hi over the past month have received maybe 5 scam emails from apple.
    I opened one the other day cause I thought well maybe it is from apple.
    went through the steps and it was  amazed at how well they did at copying apple website. you could even go to the apple shop page from their page!
    what set me off that it was fake was that I tried to open the other apple pages along the top and it wouldn't let me. so I opened my own apple page and logged in. and realised that they don't ask for your bank details in your Apple ID account.
    anyways so now what has happened is I got an email today " from myself" with this same scam email. it is as if they have hacked my email account and sending me these emails. I want to report this to apple but am unable to find any contact details apart from call back options. does any one have any advice on this.

    I've had that same exact issue, I received the first e-mail claiming to be from Apple last night (though over the past week I've received two other scam e-mails from different addresses claiming that my bank transactions have been aborted). It said it was from my own address, and I checked it closely to make sure it wasn't a spoof account but found it was indeed my own e-mail address. Five minutes ago I changed my password, and I have just now received a second e-mail exactly the same, still coming from my own account. My best guess at an explanation is that it may have been sent before I changed my password and there was just a delay in the message sending, resulting in it coming through after changing my password.
    I've now forwarded the e-mail on as an attachment to the [email protected] address, however this still doesn't help me with regards to stopping these e-mails. It concerns me that even though I changed my password they still possibly have access to my account. I tried checking my account activity but as opening the mail app on my iPhone is considered as a log in and I check it almost twice an hour, it's impossible to tell which could possible be an intruder logging in.

  • HT5114 can i have the same email address with different itunes accounts my kids are to young to have an email address but love apps

    can i have the same email address with different itunes accounts my kids are to young to have an email address but love apps

    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    And Here  >  Sharing Apps
    http://macmost.com/sharing-ios-apps-with-family.html

  • HT204150 Sharing the same iTunes, Apple ID and iCloud accounts.

    Hi
    My wife and I share the same Itunes , Apple Id and Icloud accounts.
    How do we keep our contacts seperate, when we open up or back up on I cloud?
    As we both have I phones, I would like to keep all my work contacts seperate from hers. Also I don't wish to have her contacts loaded on my phone and vice verser.
    Will it mean the I will have to get a seperate apple ID and seperate Icloud account.
    Problem is that all our music and photos are on the one Library, because we didn't have two Iphones before, it didn't matter.
    We would like to keep the same Itunes library to access music and photos, but like to keep everything else seperate.
    Can you please help.
    Regards
    shervhall

    You can continue to share the same ID for purchasing from the iTunes and App stores (your iTunes account/library), but you need to have separate iCloud accounts with separate IDs to prevent merged data such as contacts.  (You aren't required to use the same ID for purchasing as you do for other services such as iCloud, iMesage, FaceTime, etc.)  The only issue is that photo stream is tied to the iCloud account so when you separate your accounts, you will no longer be sharing the same photo stream.  You can still send each other shared photo streams in order to share each other's photos, but they wouldn't be part of the same photo stream.
    To separate your iCloud accounts, on the device that will be changing accounts, go to Settings>iCloud and turn all data that is syncing with iCloud (contacts, calendars, etc.) to Off.  When prompted choose to keep the data on the device.  (If you are syncing iWork documents with iCloud, also open your iWork apps and turn off iCloud syncing and choose to keep the documents on your device.)  After everything is turned off, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The device that will be keeping the existing account will not be effected by this.)  Next, set up a new iCloud account on this device using a different Apple ID and turn iCloud data syncing for contacts, etc. back to On.  When prompted, choose Merge.  This will upload the data to this new account.  At this point you will have two different iCloud accounts, one for each phone, with identical data on them.
    You will then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the unwanted data (such as deleting the other wife's contacts from your account, and vice versa).  These changes will be reflected on each phone.  When finished you will have individual iCloud accounts with just your own data on them.
    To avoid getting each other's text messages and FaceTime calls you also need to use separate IDs for iMessage and FaceTime.  To change the ID for iMessage on one of the devices, go to Settings>Messages>Send & Receive, tap the ID, sign out, then sign in with a separate ID (such as the new iCloud ID).  To change the ID for FaceTime on this device, do the same thing in Settings>FaceTime.

  • How do i backup my iphone 3 started on one itunes account and restore to the same phone with a different itunes account without losing all my information?

    how do i backup my iphone 3 started on one itunes account and restore to the same phone with a different itunes account without losing all my information?

    Please search the forums. This has been covered here extensively.

  • Can I use the same inport profile to load multiple dimemsions?

    Hi,
    I am trying to create an Import Profile that will allow me to load multiple ADS files, at seperate occasions, and thereby create or update different dimenssions. I have created multiple Import Profiles,
    1.I have ticked both the Options : Create dimensions for all non-mapped dimensions...and Select All - merge as shared.
    2. Only - Create dimensions for all non-mapped dimensions
    3 Only - Select All - merge as shared.
    Neither seem to work.
    Any advice would be greatly appreacited.
    Thanks,
    Charlie

    Since the laptops are the same model-yes, you can use your Recovery Discs on both.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • My source file does not stay in the same order when imported to Target

    Hi Gurus,
    I am importing a file using the LKM to SQL to a target datastore on Oracle. I am using the IKM SQL Control Append but my problem is in my target datastore the order that the flat file is in is not longer together. I added a ROWNUM column and triggered a sequence but the order from the flat file is still not the same as the table. I need the order to remain the same b/c during the load to Planning it holds the metadata order correctly.
    Could someone give me a suggestion.
    Thanks
    Mike

    Are you using the Planning Metadata load KM. If so there is an option on that KM Called Load by Input Order which repsects the order of your data in the source when loading to Planning

  • How can I share the same Firefox profiles / settings among multiple users on Windows XP?

    I am installing Firefox on Windows XP and have imported all settings, add-ons, etc, from a previous installation.
    I did the installation under the Admin account, but I would like to have the same settings and everything else available to some of the other users on the machine (but not all). How can I do this?
    Thanks.
    -Danny.

    I understand what is in and where the profiles are, but my issue is that I want Firefox to let me use the same profile whether, for example, I am logged onto the XP system as "Admin" or "User1" I do not want to share the same profile for all users of the machine, just specific users, and I do not want to have to duplicate all of the information that is in the profile in each of the specific user's Application Data settings folders under XP (C:\Documents and Settings\USER-NAME\Application Data\Mozilla\Firefox\Profiles\[profile-name]) for the user's in question.
    Am I making sense here?
    Thanks,
    -Danny

  • How to use the same mask, stencil, etc., for multiple layers? Photoshop equivalent of masked group?

    Hi I spent more than half an hour to search manual, forums, and Internet and still can't find the answer. Please help!
    For example, in a comp with 5 or more layers I want to use the same mask or stencil or what ever can hide areas of the layers 2,3, and 4 but layer 5 and any other eventual layers below should not be affected.

    Pre-compose the layers you want to mask and apply a track matte to the pre-comp using the mask. Think of pre-composing as an equivalent of creating a layer group.
    Use Set Matte effect on each of the layers you want to mask. This is easiest to do if you apply set matte once and then create an animation preset to apply to the other layers. Just get set matte to do what you want it to do on the first layer, Select Set matte in the ECW or in the Timeline, then go to Animation>Save animation preset. Then select all of the other layers you want to apply the set matte to and apply the preset.
    Put the mask at the bottom of the layers you want to mask and enable the preserve transparency switch, then nest this group in the composition with the other layers.
    Here's another tip. You could define a custom color for all of the layers you want to use the matt on, then use the custom color for a group selection. This may make things easier down the line.

  • How to stream the same VIDEO from iTunes to multiple Apple TVs simultaneously?

    I'm trying to stream the same video/movie from iTunes 10.5.2 under Mac OS X 10.7.2 to 2 Apple TVs simultaneously so that they are in sync. We have 2 TVs in our cafe and are trying to send the pre-service video announcements to both screen wirelessly.
    Audio is no problem as I just choose the Multiple Speakers option on the AirPlay icon at the bottom right of iTunes. However, when I choose a video, the Multiple option is not available. I know I can go into the Apple TV menu and choose the video from my Mac that has Home Sharing activated but it is virtually impossible to get the videos synced on both screens.
    Is there something I'm missing or is a 3rd party application available that will do this?
    Please read what I'm trying to do carefully before responding.
    Thanks in advance for your help.
    Derek

    I'm also struggling with this.  I have a Mac Mini and 5 ATV2's that I want to stream video content to simultaneously.

Maybe you are looking for

  • After importing from iPhoto, Originals are still in the iPhoto Library

    I have imported my iPhoto library in the Aperture but when I look to see where the originals actually reside I see that they are still saved in the iPhoto Library directory structure. How can I make sure that all the previous iPhoto pictures have the

  • Getting Tasks form IWorklistService

    Hi ALL As you know that using the Oracle BPEL worklist one can approve or reject tasks. What I am trying to do is create a custom web app using which the user can approve or reject tasks. For this I have written a custom Identity class which provides

  • Userexit for F-47

    hI, pLEASE any one tell me userexit or badi for f-47 (payment request) . I already find it by userexit program can any one have idea how put validation through spro. Regards, Gurprit

  • Resizing photos to file size.

    Hi all, I'm trying to resize a pic to 10 k file size for use as an online avatar. Ideally I'd like to keep it around 100 by 135 pixels. In Windows this is very easy but in the amazingly overhyped and under-featured iphoto it appears to be well nigh i

  • HELP!! Web reports and colour boxes

    I have a report that I run from the web. It has several boxes which have different coloured backgrounds. When printing from my Web Browser (IE5) none of the colours are printed. I am using a colour printer and HTMLCSS as the DESFORMAT, the borders/ou