Ear file deploys on oc4j standalone, not on ias using the ent.appl.manager

We added security constraints to our web.xml, and this works when we deploy it on a standalone OC4J. Deploying this ear on the ias with the Enterprise application Manager: after choosing the ear-file, giving it a name and pushing the next button we get a nullpointer-exception.
After removing the security constraints the deployment works. Any ideas????
Eelco

To be complete, here's the web.xml:
<?xml version="1.0"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<!-- This file contains the configuration for a web-application.-->
<web-app>
<distributable />
<display-name>Laris Application</display-name>
<description>Laris Application</description>
<env-entry>
     <description>Database connection string</description>
     <env-entry-name>dbconnect</env-entry-name>
     <env-entry-value>jdbc:oracle:thin:&lt;user&gt;&lt;pwd&gt;@&lt;host&gt;:&lt;port&gt;:&lt;sid&gt;</env-entry-value>
     <env-entry-type>java.lang.String</env-entry-type>
</env-entry>
<env-entry>
     <description>Dtd locatie string</description>
     <env-entry-name>dtd_url</env-entry-name>
     <env-entry-value>http://&lt;host&gt;:&lt;port&gt;/laris/dtd/</env-entry-value>
     <env-entry-type>java.lang.String</env-entry-type>
</env-entry>
<servlet>
<servlet-name>LarisController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>StartLarisService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>PortaalController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>PortaalService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>InvoerenAanspraakController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>InvoerenAanspraakService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>ControlerenAanspraakController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>ControlerenAanspraakService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>BeoordelenAanspraakController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>BeoordelenAanspraakService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>BeslissenAanspraakController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>BeslissenAanspraakService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>BehandelenAanspraakController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>BehandelenAanspraakService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>CommunicatieGeneratorController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>CommunicatieGeneratorService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>KruisjestabelController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>KruisjestabelService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>CitesController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>LarisService.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>BaBoSSController</servlet-name>
<servlet-class>oracle.clex.process.controller.HttpServletController</servlet-class>
<init-param>
<param-name>cle-service-descriptor</param-name>
<param-value>LarisService.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>LarisController</servlet-name>
<url-pattern>Default/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>PortaalController</servlet-name>
<url-pattern>Portaal/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>InvoerenAanspraakController</servlet-name>
<url-pattern>Portaal/InvoerenAanspraak/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>ControlerenAanspraakController</servlet-name>
<url-pattern>Portaal/ControlerenAanspraak/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>BeoordelenAanspraakController</servlet-name>
<url-pattern>BeoordelenAanspraak/Eenvoudig/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>BeslissenAanspraakController</servlet-name>
<url-pattern>Beslissen/VaststellenBeslissing/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>BehandelenAanspraakController</servlet-name>
<url-pattern>Behandelen/AdministratiefControleren/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>CommunicatieGeneratorController</servlet-name>
<url-pattern>Informeren/CommunicatieGenerator/StartIt</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>KruisjestabelController</servlet-name>
<url-pattern>Kruisjestabel/Kruisjestabel/StartIt</url-pattern>
</servlet-mapping>
<!-- security roles -->
<security-role>
     <role-name>sr_manager</role-name>
</security-role>
<security-role>
     <role-name>sr_developer</role-name>
</security-role>
<!-- security constraints -->
<security-constraint>
<web-resource-collection>
<url-pattern>cabo/*</url-pattern>
<url-pattern>jheadstart/*</url-pattern>
<url-pattern>help/*</url-pattern>
<url-pattern>laris/*</url-pattern>
<url-pattern>images/*</url-pattern>
<url-pattern>uix/*</url-pattern>
</web-resource-collection>
<!-- authorization -->
<!-- <auth-constraint>
<role-name>sr_developer</role-name>
</auth-constraint> -->
</security-constraint>
<security-constraint>
<web-resource-collection>
<url-pattern>Default/*</url-pattern>
<url-pattern>Portaal/*</url-pattern>
<url-pattern>Informeren/*</url-pattern>
<url-pattern>Behandelen/*</url-pattern>
<url-pattern>Beslissen/*</url-pattern>
<url-pattern>BeoordelenAanspraak/*</url-pattern>
<!-- volgende is wel gewenst (in 1 keer alles beveiligen), maar werkt niet
<url-pattern>*</url-pattern> geeft error bij createmarlinbeanpag
<url-pattern>*/*</url-pattern> beveiligt gewoon niet
<url-pattern>./*</url-pattern> beveiligt niet alles
<url-pattern>./*/*</url-pattern> beveiligt niet(s)
<url-pattern>../*</url-pattern> beveiligt niets
-->
</web-resource-collection>
<!-- authorization -->
<auth-constraint>
<role-name>sr_developer</role-name>
</auth-constraint>
</security-constraint>
<!-- de volgende security constraint is niet zozeer voor de administrator
maar om er voor te zorgen dat bovenstaande constraint de toegang
beperkt tot alleen het gedefinieerde -->
<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
     <role-name>sr_administrator</role-name>
</auth-constraint>
</security-constraint>
<!-- authentication -->
<login-config>
     <auth-method>BASIC</auth-method>
</login-config>
</web-app>

Similar Messages

  • How do I convert an war file to ear file, deploying weblogic apps

    Problem Description: I have a war file from a legacy application that needs to be migrated to weblogic. To migrate this application to weblogic, we need a ear file. Reading weblogic doc. it says we needs to use ant utility on an exploded web content application folder/ directory to create the ear file. I need to covert the existing war file to ear file , if it is doable or create one from the scratch. I need to know how to do that in weblogic. Please let me know if you have any hints .
    Thanks

    HI,
    Please try the following to convert your WAR file into an EAR exploded archieve:
    *1).* Create a Directory in your file system.
    Example:
    /home/apps/MyFirstEAR
    *2).* Place the WAR file inside the above Directory. (Suppose your WAR file name is test.war)
    Example:
    /home/apps/MyFirstEAR/test.war
    *3).* Now create a "META-INF" directory inside "/home/apps/MyFirstEAR" directory
    *4).* Now create an "application.xml" file like following inside "/home/apps/MyFirstEAR/META-INF" directory:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.4">
    <description>Test EAR Example</description>
    <display-name>TestEAR Example</display-name>
    <module>
    <web>
    <web-uri>test.war</web-uri>
    <context-root>test</context-root>
    </web>
    </module>
    </application>
    *5).* Your EAR is ready now you can deploy the "MyFirstEAR" directory in the WebLogic Server.
    NOTE: if you want to place the "test.war" file also as an exploaded format content inside the EAR then you need to extract the test.war file and then in place of the test.war you can have "test" directory at the same place.
    You need to change the "application.xml" file like below in that case:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.4">
    <description>Test EAR Example</description>
    <display-name>TestEAR Example</display-name>
    <module>
    <web>
    <font color=red> <web-uri>test</web-uri> </font><br>
    <context-root>test</context-root>
    </web>
    </module>
    </application>
    For more information on an EAR application structure you can refer to : http://middlewaremagic.com/weblogic/?p=1952
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware Magic Is Here)

  • HT1473 Help I just moved my music files to a external hard drive and am using the new crappy version ( i know my opinion) of itunes and cant add the files to my libray it gives me the add file to library option but not the add folder to library option wha

    Help I just moved my music files to a external hard drive and am using the new crappy version ( i know my opinion) of itunes and cant add the files to my libray it gives me the add file to library option but not the add folder to library option what am i doing wrong?

    In iTunes 11 uncheck the preferences setting in in the iTunes Preferences panel "Advanced > Copy Files to iTunes Media folder when adding to Library"

  • HT201070 Since my last update RAW - Files from Nikon D800 are not shown correctly in the Finder as small prewiev. Can anybody help ?

    Since my last update  to 10.8.4 RAW - Files from Nikon D800 are not shown correctly in the Finder as small prewiev. Can anybody help ?

    update 10.8.5 solved this problem. Thankyou anyway.

  • Adobe Bridge does not accept the NEF files from my new Nikon D800. I use the latest version, there a

    Adobe Bridge does not accept the NEF files from my new Nikon D800. I use the latest version, there are no updates

    Hi,
    CS6
    Van: R_Kelly [email protected]
    Verzonden: maandag 16 september 2013 18:42
    Aan: Hans van Sloten
    Onderwerp: Adobe Bridge does not accept the NEF files from my new Nikon D800. I use the latest version, there a
    Re: Adobe Bridge does not accept the NEF files from my new Nikon D800. I use the latest version, there a
    created by R_Kelly <http://forums.adobe.com/people/R_Kelly>  in Photoshop for Beginners - View the full discussion <http://forums.adobe.com/message/5686078#5686078

  • HT3678 If I download a .mov file from gmail, I am not able to open the file. I reinstalled QuickTime 7.6.6, still unable to open the file. If I download the same file from another mail server I have no trouble. What is gmail doing to my file?

    If I download a .mov file from gmail, I am not able to open the file. I reinstalled QuickTime 7.6.6, still unable to open the file. If I download the same file from another mail server I have no trouble. What is gmail doing to my file?

    Also i have reinstalled the reader9 two  times and tried with reader8 also but in both the cases same problem.
    it would be gr8 help if someone can help.

  • SOMETHING IS WRONG, I SEND A FILE TO TRASH AND DOES NOT APPEAR IN TRASH, THE TRASH IS EMPTY

    SOMETHING IS WRONG, I SEND A FILE TO TRASH AND DOES NOT APPEAR IN TRASH, THE TRASH IS EMPTY

    I had the same problem. It was solved see the discussion at  https://discussions.apple.com/message/19433909#19433909

  • I can´t initialise photoshop because of this Could not load actions because an unexpected end-of-file was encontered. "Could not initialise Photoshop because the preferences file was invalid (it has been deleted)" how can i fix it?

    I can´t initialise photoshop because of this Could not load actions because an unexpected end-of-file was encontered. "Could not initialise Photoshop because the preferences file was invalid (it has been deleted)" how can i fix it?

    I have a MacBook Pro.
    App - Adobe Creative suite 5.5
    The only app that does´t initialize is the photoshop
    Problem solve
    FAQ: How do I reset my preferences?
    Thank you Jeffrey Tranberry

  • How do I let lightroom show the actrual number of files in a map and not a number including the total of all submaps?

    How do I let lightroom show the actrual number of files in a map and not a number including the total of all submaps?

    If by "map" you mean directory or folder, in the Library menu there is a toggle for "show photos in subfolders".

  • My 2011 IMac will not boot up past the White apple logo screen with the whirly circle

    My 2011 IMac will not boot up past the White apple logo screen with the whirly circle. I have tried various commands but to no avail. does anybody have any advice?

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    Step 1
    The first step in dealing with a startup failure is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.
    There are several ways to back up a Mac that is unable to start. You need an external hard drive to hold the backup data.
    a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    If the startup process stops at a blank gray screen with no Apple logo or spinning "daisy wheel," then the startup volume may be full. If you had previously seen warnings of low disk space, this is almost certainly the case. You might be able to start up in safe mode even though you can't start up normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.
    Step 3
    Sometimes a startup failure can be resolved by resetting the NVRAM.
    Step 4
    If you use a wireless keyboard, trackpad, or mouse, replace or recharge the batteries. The battery level shown in the Bluetooth menu item may not be accurate.
    Step 5
    If there's a built-in optical drive, a disc may be stuck in it. Follow these instructions to eject it.
    Step 6
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to start up, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can start up now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    Step 7
    If you've started from an external storage device, make sure that the internal startup volume is selected in the Startup Disk pane of System Preferences.
    Start up in safe mode. Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to start and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know the login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you start up in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, the startup volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 11. If you ever have another problem with the drive, replace it immediately.
    If you can start and log in in safe mode, empty the Trash, and then open the Finder Info window on the startup volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then restart as usual (i.e., not in safe mode.)
    If the startup process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 8
    Launch Disk Utility in Recovery mode (see Step 1.) Select the startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then restart as usual.
    Step 9
    If the startup device is an aftermarket SSD, it may need a firmware update and/or a forced "garbage collection." Instructions for doing this with a Crucial-branded SSD were posted here. Some of those instructions may apply to other brands of SSD, but you should check with the vendor's tech support.   
    Step 10
    Reinstall the OS. If the Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 11
    Do as in Step 9, but this time erase the startup volume in Disk Utility before installing. The system should automatically restart into the Setup Assistant. Follow the prompts to transfer the data from a Time Machine or other backup.
    Step 12
    This step applies only to models that have a logic-board ("PRAM") battery: all Mac Pro's and some others (not current models.) Both desktop and portable Macs used to have such a battery. The logic-board battery, if there is one, is separate from the main battery of a portable. A dead logic-board battery can cause a startup failure. Typically the failure will be preceded by loss of the settings for the startup disk and system clock. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 13
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.

  • Adobe Bridge shuts down when I try to access files on my external drive. Have been using the drive for months with no problems.

    Adobe Bridge shuts down when I try to access files on my external drive. Have been using the drive for several months with no problems.

    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I am not able to open iPhoto, when I have used the iPhoto Library Manager, I get the message that "the iPhoto Library folder could not be found" Help!

    Help!  I can't open the iPhoto!  I have os x 10.5.8 and I have tried using the iPhoto Library Manager only to find out that the folder for the iPhoto Library could not be found.
    I have also tried the Fix #1 from the user Old Toad who said to delete the preference file :com.appleiPhoto.plist - I could do that, but I couldn't figure out how to delete iPhoto's cache fie, Cache.db because I couldn't find it?  I'm not sure how to find the file by it's directory path name of HD/User/Home/Library/Caches/com.apple.iPhoto .
    Help is very much appreciated! 
    vernawithav

    Download and use  Find Any File  to search for "Library6.iPhoto".  It's a file that is present in every iPhoto library.  If you don't find one on your hard drive then your library has gone missing entirely. 
    Another thing you can try is to use the Search For - All Images feature in the Finder window to see if you can see any of your photos.
    That will tell you if they are on your hard drive but somewhere other than the library.
    What do you see when you insert the DVD into the optical drive?  Can you open it and any folders on the disk?  If the disk is titled iPhoto Library  then open the disk, the the iPhoto Library folder and finally the Originals folder.  Check the subfolders to see if your photos are there.
    Your original photo files will be in the Originals subfolders.

  • For some reason yesterday and today I can not send mail using the icloud website and help?

    From some reason I can not send emails using the icloud website.  Not sure why any help

    Hi there tamarafromdarien,
    You may find the troubleshooting steps for iCloud Mail in the article below helpful.
    iCloud: Troubleshooting iCloud Mail
    If you can't send mail in OS X Mail
    If you receive this alert or a similar alert when sending a message from your iCloud email address in OS X Mail:
    “This message could not be delivered and will remain in your Outbox until it can be delivered. The reason for the failure is: An error occurred while delivering this message via the smtp server: server name.”
    In OS X Mail, choose Preferences from the Mail menu.
    Click Accounts in the Preferences window.
    Select your iCloud account from the list of accounts.
    Click the Account Information tab.
    Choose your iCloud account from the Outgoing Mail Server (SMTP) pop-up menu. Example: “Derrick Parker (iCloud)”.
    Note: The Outgoing Mail Server (SMTP) menu also includes an Edit SMTP Server List command. If you choose this command, be aware that the iCloud SMTP server won't be among the servers that can be edited. This is normal.
    If you're attaching a large file
    Message attachments can't exceed the maximum size allowed by your email service provider or the recipient's email service provider. The maximum size varies by service provider. Try compressing the filebefore sending it, or send your message without the attachment to verify that there are no issues with sending.
    -Griff W.  

  • HT1539 What happens when you attempt to download a digital copy, but it doesn't upload in iTunes, and you're not allowed to use the code again?

    What happens when you attempt to download a digital copy, but it doesn't upload in iTunes, and you're not allowed to use the code again?

    Thanks for your reply, but you might have misunderstood it a bit. I'm NOT trying to buy a movie. ****, I'm not even in the actual Apple Store, when this happens I'm in the library not the Store part of iTunes.
    To clarify - I have purchased a physical copy of a movie which came with another physical copy which contains the digital copy. The digital copy is on the DVD, all I need is just to transfer this file to my iPod Touch, for example, I'm not trying to download it from the store or repurchase it and it's not any gift code that I've received, the digital copy is on the disc. This is the first time ever that I've purchased something on a disc and I'm not allowed to access it because the disc hasn't been purchased within my country.
    So again - I'm not attempting any purchase or download any purchased digital copy - it's on a DVD I own physically so... why is even the region of my Store relevant, the code I enter is (as I assume) just supposed to check if it's a legal genuine copy (which it is, as I've said - there are 6 discs in the pack: 3 movies on 3 Blu-rays and 3 DVD containing these digital copies of them). If I own it, I think that's proof enough that I have the right to use it. I just don't get it. I fully agree with you and understand your point if there was any purchase going on here, but it's not, it's just - I put a disc into my computer and I can't access it

  • Have $25 I-Tunes card credit. Will not let me use the credits, tries to charge my credit card?

    Have $25 I-Tunes card credit.  Will not let ome use the credits, keeps trying to charge it to my credit card on file.  How do you fix this on the new update?

    For some reason this worked for me. I went into my account and changed my first name, maybe it causes itunes to reset. What ever it does my itunes works now.

Maybe you are looking for

  • J2EE Java Beans and JSP

    I need a little help. I would like to learn jsp programming. Ive been browsing lots of tutorials on net but i didnt find any way how to use your own classes in jsp. I suppose it could do something with Java Beans but im new them so i dont know. Lets

  • 2.2 PODCAST BUG : Wont play when standby

    I have downloaded 2.2 and then grabbed a podcast from the store. I downloaded the enhanced Chris Moyles one. However I then hit the off button to turn the screen off and it stops playing!!!! You have to leave the screen on for it to play Anyone else

  • IPhoto update help

    Hi, I recently installed Leopard on my PowerBook G4 that previously had Panther running. I have been trying to download the most recent iPhoto updates but I keep getting the message that "An eligible iPhoto application was not found in the location /

  • Outlook 2007 calendar

    Has anyone else noticed that Saint Patrick's day is showing as Monday March 16, instead of the correct Tuesday, March 17th in Outlook 2007 Calendar?

  • Focusing a window and removing from app bar

    I am using snoozesoft systray4j to have my application have a systemtray icon. I want that when I minimize the application it goes away from the application bar and when I click on a button on the systemtray it focus the entire window. So I would lik