Cross Forrest Resources Permission Issue

Hi, I am facing an odd issue before I describe the issue here is the structure:
we have two forests with two domains. Domain A is in forest A and domain B is forest B. two way trust is established between both forests. we recently upgraded forest A to 2008R2 functional level forest B we have added 2008R2 domain controller but its still
on 2003R2 functional level. after the upgrade the recourses some of the resources on some servers of domain A was not accessable by domain B as it would give 'you might not have permission, there is no logon server available' error. but this was only to some
server shares while some other were just being accessed fine. sometimes if you restart the server the issue is being resolved  for maybe another 24 hours the shares are accessible just fine but then after a day or two the issue appears again. 
Can anyone please assist in resolving this issue and finding what is causing this ??? 

Here are the hotfixes.
DNS Server service does not use root hints to resolve external names in Windows Server 2008 R2
Post Windows 2008 R2 SP1 HOTFIX available.
APPLIES TO •Windows 2008 R2 Datacenter •Windows 2008 R2 Ent •Windows 2008 R2 Std.
Requires a restart.
http://support.microsoft.com/kb/2616776
DNS Server service does not resolve some external DNS names after it works for a while in Windows Server 2008 R2
Hotfix release - (released 4/15/2011)
http://support.microsoft.com/kb/2508835
Windows 2008 -
DNS queries for external domains are not resolved when you use Conditional Forwarding in Windows Server 2008
Post Windows 2008 SP2 Hotfix available
Requires a restart.
http://support.microsoft.com/kb/2625735/
DNS server stops responding to DNS queries from client computers in in Windows Server 2003, in Windows Server 2008 or in Windows Server 2008 R2 - Post Service Pack Hotfix available.
Does not require a restart.
http://support.microsoft.com/kb/2655960
As for your link, cguan provided your answer. I added some info, too.
Ace Fekay
MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
Microsoft Certified Trainer
Microsoft MVP - Directory Services
Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
This posting is provided AS-IS with no warranties or guarantees and confers no rights.

Similar Messages

  • Cross team resource allocation issue

    The group I am working with has 4 developers who work on 9 team projects in VSO. The teams working against these Team Project generally own more than one application and we are running into issues with resource allocations.
    Does anyone have any feedback or recommendation how to resolve this?

    The group I am working with has 4 developers who work on 9 team projects in VSO. The teams working against these Team Project generally own more than one application and we are running into issues with resource allocations.
    Does anyone have any feedback or recommendation how to resolve this?

  • Cross-origin resource sharing (CORS) does not work in Firefox 13.0.1 or 6.0.2

    I have a simple Java HttpServlet and a simple JSP page. They are both served by a WebSphere Application Server at port 80 on my local host. I have created a TCP/IP Monitor at port 8081 in
    Eclipse IDE so as to create a second origin. The protocol output further down comes from this monitor. This should work equally well on a simple Tomcat server.
    When I perform the cross-origin resource sharing test, I see that all of the correct TCP data is exchanged between Firefox and the web server (i.e. HTTP OPTIONS and its response followed by an HTTP POST and its response) but the data in the body of the POST response is never passed to the XMLHttpRequest javascript object's responseText or responseXML variables and I get a status equal to 0. If I click the button while pressing the keyboard control key then the test will work as it will not be performed as a cross-origin request.
    Here are all of the files used in this test:
    Servlet Cors.java
    <pre><nowiki>--------------------------------------------------------------------------------------
    package example.cors;
    import java.io.IOException;
    import java.util.Enumeration;
    import javax.servlet.Servlet;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Servlet implementation class Cors
    public class Cors extends HttpServlet {
    private static final long serialVersionUID = 1L;
    private static final String APPLICATION_XML_VALUE = "application/xml";
    * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response); // do the same as on the post
    * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setBufferSize(1024);
    response.setContentType(APPLICATION_XML_VALUE);
    response.setStatus(HttpServletResponse.SC_OK);
    String xml="<?xml version=\"1.0\"?>\n<hello>This is a wrapped message</hello>";
    response.setContentLength(xml.length());
    response.getWriter().append(xml);
    response.getWriter().close();
    * @see HttpServlet#doOptions(HttpServletRequest, HttpServletResponse)
    @SuppressWarnings("unchecked")
    protected void doOptions(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    Enumeration<String> headers=request.getHeaders("Origin");
    StringBuffer sb=new StringBuffer();
    while (headers.hasMoreElements()) {
    String o=headers.nextElement();
    if (sb.length()!=0) sb.append(", ");
    System.err.println("Origin= "+o);
    sb.append(o);
    response.addHeader("Access-Control-Allow-Origin", sb.toString());
    response.addHeader("Access-Control-Allow-Methods","POST, GET, OPTIONS");
    sb=new StringBuffer();
    headers=request.getHeaders("Access-Control-Request-Headers");
    while (headers.hasMoreElements()) {
    String o=headers.nextElement();
    if (sb.length()!=0) sb.append(", ");
    System.err.println("Access-Control-Request-Headers= "+o);
    sb.append(o);
    response.addHeader("Access-Control-Allow-Headers", sb.toString().toUpperCase());
    response.addHeader("Access-Control-Max-Age", Integer.toString(60*60)); // 1 hour
    response.addHeader("Content-Type","text/plain");
    response.addHeader("Allow", "GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS");
    response.getWriter().print("");
    And a simple JSP page test.jsp:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <%
    String url ="http://localhost:8081/cors/ping";
    String url_ctrl="http://localhost/cors/ping";
    %>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Test CORS</title>
    <script type="text/javascript">
    var invocation;
    var method='POST';
    var body = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><hello>Today</hello>";
    var buttontest2_label="Direct AJAX call";
    function callOtherDomain(event){
    invocation = new XMLHttpRequest();
    if(invocation) {
    var resultNode = document.getElementById("buttonResultNode");
    var resultMessage = document.getElementById("buttonMessageNode");
    resultNode.innerHTML = "";
    document.getElementById("buttontest2").value="Waiting response...";
    var url
    if (event.ctrlKey) url="<%=url_ctrl%>";
    else url="<%=url%>";
    resultMessage.innerHTML = "Sending "+method+" to URL: "+url;
    invocation.open(method, url, true);
    // invocation.withCredentials = "true";
    invocation.setRequestHeader('X-PINGOTHER', 'pingpong');
    invocation.setRequestHeader('Content-Type', 'application/xml');
    invocation.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
    invocation.onerror = function(errorObject) {
    display_progress(resultMessage, "***** error occured=" +errorObject);
    invocation.onreadystatechange = function() {
    display_progress(resultMessage, "onreadystatechange="+invocation.readyState+", status="+invocation.status+", statusText="+invocation.statusText);
    if(invocation.readyState == 4){
    document.getElementById("buttontest2").value=buttontest2_label;
    display_progress(resultMessage, "responseText="+invocation.responseText);
    resultNode.innerHTML = "Response from web service='"+invocation.responseText+"'";
    invocation.send(body);
    function display_progress(node, message) {
    node.innerHTML = node.innerHTML + "<br>" + message;
    </script>
    </head>
    <body>
    <p>The button will create a cross site request (Use the control key to disable this, i.e. no cross site request)</p>
    <p><input type="button" id="buttontest2" onclick="callOtherDomain(event)" name="buttontest2" value="Waiting for page load..."></p>
    <p id="buttonMessageNode"></p>
    <p id="buttonResultNode"></p>
    <script type="text/javascript">
    document.getElementById("buttontest2").value=buttontest2_label;
    </script>
    </body>
    </html>
    When I click on the Direct AJAX call button, I get the following output on my page:
    The button will create a cross site request (Use the control key to disable this, i.e. no cross site request)
    Sending POST to URL: http://localhost:8081/cors/ping
    onreadystatechange=2, status=0, statusText=
    onreadystatechange=4, status=0, statusText=
    responseText=
    ***** error occured=[object ProgressEvent]
    Response from web service=''
    Here is the HTTP traffic produced:
    HTTP REQUEST
    OPTIONS /cors/ping HTTP/1.1
    Host: localhost:8081
    User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip, deflate
    Connection: keep-alive
    Origin: http://localhost
    Access-Control-Request-Method: POST
    Access-Control-Request-Headers: content-type,x-pingother,x-requested-with
    Pragma: no-cache
    Cache-Control: no-cache
    POST /cors/ping HTTP/1.1
    Host: localhost:8081
    User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip, deflate
    Connection: keep-alive
    X-PINGOTHER: pingpong
    Content-Type: application/xml; charset=UTF-8
    X-Requested-With: XMLHttpRequest
    Referer: http://localhost/cors/client/test.jsp
    Content-Length: 75
    Origin: http://localhost
    Pragma: no-cache
    Cache-Control: no-cache
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><hello>Today</hello>
    HTTP RESPONSE
    HTTP/1.1 200 OK
    Access-Control-Allow-Origin: http://localhost
    Access-Control-Allow-Methods: POST, GET, OPTIONS
    Access-Control-Allow-Headers: CONTENT-TYPE,X-PINGOTHER,X-REQUESTED-WITH
    Access-Control-Max-Age: 3600
    Content-Type: text/plain;charset=ISO-8859-1
    Allow: GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS
    Content-Language: en-CA
    Content-Length: 0
    Date: Wed, 11 Jul 2012 17:50:10 GMT
    Server: WebSphere Application Server/7.0
    HTTP/1.1 200 OK
    Content-Type: application/xml
    Content-Length: 62
    Content-Language: en-CA
    Date: Wed, 11 Jul 2012 17:50:10 GMT
    Server: WebSphere Application Server/7.0
    <?xml version="1.0"?>
    <hello>This is a wrapped message</hello>
    --------------------------------------------------------------------------------------</nowiki></pre>

    No errors in error console. No effect using *. I tried using the dns name of my localhost both in the Firefox URL and in the javascript and I get exactly the same. I have spent a huge amount of time looking into this issue.
    One thing I noticed is that if I use the examples on the internet (http://arunranga.com/examples/access-control/preflightInvocation.html or http://saltybeagle.com/cors/) they work in the same browser. These examples however, are accessed through HTTP proxies.
    I am wondering if the issue has to do with using the same hostname just with different ports.

  • Permission Issues. Slow Computer. Disk Utility Not working.

    Hey. So my Macbook (Mac OS X v10.6.8. Snow) is running slow. It also freezes from time to time & the internet is slower than it used to be. Ive been on other laptops in my house and they all have fast internet as usual so its not my provider. And my computer is having a hard time with apps it never used to stuggle with. Now Im sure this is somehow all my fault as I do change my icons and such but I don't really go hopping around the system files screwing with stuff too much. I have changed a few things in System/Library/CoreServices/ to satisfy my customizing needs but other than that I don't muck up stuff that much I hope. Also I recently changed my user name ( im the admin) but it doesnt match my home name anymore... idk what that is
         Everytime I open Disky Utility and click verify Permissions.. around 54 "Permissions differ on 'such and such', should be blah blah, they are blah blah" pop up. And about 5 of Users or Group differs on "such and such" Should be 0, is 501 pop up. Someone mentioned I might have issues with ACLs. I have very little knowledge about them so..... anyway. So I hit Repair Permissions and it says it repairs all fifty some. Then I either hit verify again or after a restart or a few days later and the same silly Permission issues pop up. Same. Exact. Ones. Even if these permission issues have nothing to do with what I have said is wrong Id still like to try and fix them. Anyone know what is going on or what I can do?? Please and thank you in advance
    I won't paste them all because it would be very long Here are a few examples.
    Repairing permissions for “Kenna”
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/AWTCocoaComponen t.h", should be -rw-r--r-- , they are lrw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/AWTCocoaComponen t.h".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/JDWP.h", should be -rw-r--r-- , they are lrw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/JDWP.h".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/JDWPCommands.h", should be -rw-r--r-- , they are lrw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/JDWPCommands.h".
    User differs on "Applications/Safari.app/Contents/Resources/compass.icns", should be 0, user is 501.
    Group differs on "Applications/Safari.app/Contents/Resources/compass.icns", should be 0, group is 20.
    Permissions differ on "Applications/Safari.app/Contents/Resources/compass.icns", should be -rw-r--r-- , they are -r--r--r-- .
    Repaired "Applications/Safari.app/Contents/Resources/compass.icns".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Italian.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Italian.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Now these CoreService files i did edit
    User differs on "System/Library/CoreServices/loginwindow.app/Contents/Resources/MacOSXServer.ti f", should be 0, user is 501.
    Group differs on "System/Library/CoreServices/loginwindow.app/Contents/Resources/MacOSXServer.ti f", should be 0, group is 20.
    Repaired "System/Library/CoreServices/loginwindow.app/Contents/Resources/MacOSXServer.ti f".
    User differs on "System/Library/CoreServices/DefaultDesktop.jpg", should be 0, user is 501.
    Group differs on "System/Library/CoreServices/DefaultDesktop.jpg", should be 0, group is 20.
    Repaired "System/Library/CoreServices/DefaultDesktop.jpg".

    I am not going to Lion. Ive been told I cant customize as much with it so thats not an issue
    This what you mean?
    Capacity : 249.72 GB
    Available : 117.65 GB (117,652,971,520 Bytes)
    Used : 132.06 GB (132,062,404,608 Bytes)
    Sorry lol i feel silly idk what ram is...
    this?
    Processor   2.4 GHz Intel Core 2 Duo
    Memory      2 Gb 667 MHz DDR2 SDRAM
    I know how to backup .. but format and install? New at all this Sry

  • ACL Permission Issues after Time Machine Restore

    I am encountering an issue with permissions after installing Mavericks and then restoring my data with a Time Machine Backup (Mountain Lion). I have attempted repairs these permissions after verifying them with disk utility. However, the same files I thought were repaired reappear. All the files are ACL permission issues and almost everyone is in regards an iTunes file. This is what appear after verifying my permissions:
    Verifying permissions for “MacBook Pro”ACL found but not expected on “Applications/iTunes.app/Contents”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/Resou rces”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/Resou rces/Info.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/Resou rces/version.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/_Code Signature”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/_Code Signature/CodeResources”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A”A CL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/R esources”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/R esources/Customization.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/R esources/Info.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/R esources/PodBootHeader”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/R esources/UpdaterBackEnd”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/R esources/version.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/_ CodeSignature”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/_ CodeSignature/CodeResources”ACL found but not expected on “Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater”ACL found but not expected on “Applications/iTunes.app/Contents/Info.plist”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunes”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesASUHelper”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/Info.plist”AC L found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS/iTunesH elper”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/PkgInfo”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/Resources”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/Resources/iTu nesHelper.icns”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/_CodeSignatur e”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/_CodeSignatur e/CodeResources”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/version.plist ”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib”ACL found but not expected on “Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib”ACL found but not expected on “Applications/iTunes.app/Contents/PkgInfo”ACL found but not expected on “Applications/iTunes.app/Contents/Resources”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/DeviceIcons.rsrc”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/DeviceImages.rsrc”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AACEncoderConfig.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AboutBox.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AppConfig.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AppleTVSetup.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AppleTVStream.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AppleTVSync.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AppsIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AskUser.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AskUserWide.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AudiobooksIntro.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AudiobooksIntro.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/AutofillSettings.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/BooksHaveMovedIntro.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/BooksHaveMovedIntro.nib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/BooksIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/BurnSettings.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/CDInfo.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/CleanLyrics.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ColumnWidths.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ConvertID3.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DefaultTags.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DeviceCapacityBox.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsAdvanced.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsAppleTVMedia .itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsApps.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsAudiobooks.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsBackup.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsBookmarks.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsBooks.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsCalendars.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsClassicCalen dars.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsClassicConta cts.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsContacts.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsFileSharing. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsGames.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsGeneralApple TV.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsGeneralApple TVStreaming.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsMail.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsMovies.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsMusic.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsOptionsIPod. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsOptionsShuff le.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsPhotos.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsPodcasts.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsRentalItem.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsRentedMovies .itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsRingtones.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsSummaryVersi on.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsTVShows.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsVolumeLimitP anel.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsWorkouts.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsiTunesMatch. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DevicePrefsiTunesU.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DeviceSettingsIntro.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DeviceSetup.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DeviceSetupEULA.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/DeviceSetupRestore.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/EQPresets.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/EQWindow.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ErrorReportDialog.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/FormatPopup.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/GeniusIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/HomeSharing.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/HomeSharingOn.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/HomeSharingServerSettin gs.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ImportSettings.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogArtworkView.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogInfoView.nib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogLyricsView.ni b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleInfoV iew.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleItem. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleOptio nsView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleSorti ngView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogMultipleVideo View.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogOptionsView.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogSingleItem.ni b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogSortingView.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogSummaryView.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoDialogVideoView.nib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/InfoPlist.strings”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/LoadingDeviceText.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/Localizable.strings”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/MP3EncoderConfig.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/MainMenu.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/MasteredForiTunes.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/MoviesIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/MusicIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/OrganizeLibraryOptions. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PCMEncoderConfig.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ParentalAdvisory.png”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PlaylistDragIntro.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PlaylistIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PodcastSettings.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PodcastViewButton.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PodcastsIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialog.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogAdvancedView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogAppleTVView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogDevicesView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogGeneralView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogMessageView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogParentalView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogPlaybackView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogSharingView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrefsDialogStoreView.ni b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/Printing.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/01.Pl aylist.Songs.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/02.Pl aylist.UserRatings.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/03.Pl aylist.DatesPlayed.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/04.Pl aylist.Custom.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/05.Al bumList.SongsByAlbum.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/06.Al bumList.ListOfAlbums.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/07.In sert.TextOnly.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/08.In sert.Mosaic.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/09.In sert.WhiteMosaic.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/10.In sert.SingleCover.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/11.In sert.TextOnlyBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/12.In sert.MosaicBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/13.In sert.SingleSideBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/14.In sert.LargePlaylistBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/15.Me dia.PlainPaper.SS.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PrintingTemplates/16.Me dia.PlainPaper.DS.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ProgressDialog.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PromptForLongString.nib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PromptForPassword.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/PromptForShortString.ni b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/RatingCaution.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/RatingClean.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/RatingCleanMask.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/RatingE.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/RatingExplicit.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/RatingExplicitMask.png” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/Report.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SelectString.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SelectStringWide.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SmartPlaylistEditor.nib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SmartPlaylistEditor.str ings”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/SortPrefixes.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StoreAuthDialog.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StoreBuyButton.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StoreGetButton.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StoreGiftButton.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StorePreOrderButton.png ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StorePreOrderButton@2x. png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StoreRentButton.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/StoreViewButton.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/TVShowsIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/TextStyles.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/TouchRemoteConfirm.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/TouchRemoteSetup.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/UniversalAccess.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewLineItemExtra.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewLineItemLP.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected]”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewLineItemSubscribe.p ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewLineItemSubscribe@2 x.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewLineItemUnsubscribe .png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewLineItemUnsubscribe @2x.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewOptionsWindowFeedVi ew.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewOptionsWindowFeedVi ew.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewOptionsWindowGridVi ew.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewOptionsWindowSplitV iew1.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/ViewOptionsWindowTrackL ist.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/WatchFolderName.strings ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/Welcome.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/genresLoc.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iPad License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iPhone License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iPod License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iPod touch License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iTunesExtrasDownload.pn g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iTunesExtrasDownload@2x .png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iTunesLPDownload.png”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/[email protected] ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/Dutch.lproj/iTunesUIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AACEncoderConfig.nib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AboutBox.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AppConfig.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AppleTVSetup.itxib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AppleTVStream.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AppleTVSync.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AppsIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AskUser.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AskUserWide.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AudiobooksIntro.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AudiobooksIntro.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/AutofillSettings.nib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/BooksHaveMovedIntro.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/BooksHaveMovedIntro.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/BooksIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/BurnSettings.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/CDInfo.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/CleanLyrics.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected]”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ColumnWidths.plist”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ConvertID3.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DefaultTags.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DeviceCapacityBox.png ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DeviceCapacityBox@2x. png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsAdvanced.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsAppleTVMed ia.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsApps.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsAudiobooks .itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsBackup.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsBookmarks. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsBooks.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsCalendars. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsClassicCal endars.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsClassicCon tacts.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsContacts.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsFileSharin g.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsGames.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsGeneralApp leTV.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsGeneralApp leTVStreaming.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsMail.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsMovies.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsMusic.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsOptionsIPo d.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsOptionsShu ffle.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsPhotos.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsPodcasts.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsRentalItem .itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsRentedMovi es.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsRingtones. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsSummaryVer sion.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsTVShows.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsVolumeLimi tPanel.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsWorkouts.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsiTunesMatc h.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DevicePrefsiTunesU.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DeviceSettingsIntro.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DeviceSetup.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DeviceSetupEULA.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/DeviceSetupRestore.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/EQPresets.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/EQWindow.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ErrorReportDialog.nib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/FormatPopup.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/GeniusIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/HomeSharing.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/HomeSharingOn.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/HomeSharingServerSett ings.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ImportSettings.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogArtworkView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogInfoView.ni b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogLyricsView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleInf oView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleIte m.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleOpt ionsView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleSor tingView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogMultipleVid eoView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogOptionsView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogSingleItem. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogSortingView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogSummaryView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoDialogVideoView.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/InfoPlist.strings”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/LoadingDeviceText.png ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/LoadingDeviceText@2x. png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/Localizable.strings”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/MP3EncoderConfig.nib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/MainMenu.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/MasteredForiTunes.png ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/MasteredForiTunes@2x. png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/MoviesIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/MusicIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/OrganizeLibraryOption s.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PCMEncoderConfig.nib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ParentalAdvisory.png” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PlaylistDragIntro.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PlaylistIntro.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PodcastSettings.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PodcastViewButton.png ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PodcastViewButton@2x. png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PodcastsIntro.itxib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialog.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogAdvancedVi ew.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogAppleTVVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogDevicesVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogGeneralVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogMessageVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogParentalVi ew.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogPlaybackVi ew.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogSharingVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrefsDialogStoreView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/Printing.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/01. Playlist.Songs.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/02. Playlist.UserRatings.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/03. Playlist.DatesPlayed.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/04. Playlist.Custom.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/05. AlbumList.SongsByAlbum.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/06. AlbumList.ListOfAlbums.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/07. Insert.TextOnly.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/08. Insert.Mosaic.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/09. Insert.WhiteMosaic.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/10. Insert.SingleCover.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/11. Insert.TextOnlyBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/12. Insert.MosaicBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/13. Insert.SingleSideBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/14. Insert.LargePlaylistBW.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/15. Media.PlainPaper.SS.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PrintingTemplates/16. Media.PlainPaper.DS.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ProgressDialog.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PromptForLongString.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PromptForPassword.nib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/PromptForShortString. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/RatingCaution.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected]” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/RatingClean.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected]”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/RatingCleanMask.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/RatingE.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected]”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/RatingExplicit.png”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/RatingExplicitMask.pn g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/RatingExplicitMask@2x .png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/Report.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/SelectString.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/SelectStringWide.nib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/SmartPlaylistEditor.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/SmartPlaylistEditor.s trings”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/SortPrefixes.plist”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StoreAuthDialog.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StoreBuyButton.png”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StoreGetButton.png”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StoreGiftButton.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StorePreOrderButton.p ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StorePreOrderButton@2 x.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StoreRentButton.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/StoreViewButton.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/TVShowsIntro.itxib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/TextStyles.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/TouchRemoteConfirm.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/TouchRemoteSetup.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/UniversalAccess.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewLineItemExtra.png ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewLineItemExtra@2x. png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewLineItemLP.png”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewLineItemSubscribe .png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewLineItemSubscribe @2x.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewLineItemUnsubscri be.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewLineItemUnsubscri [email protected]”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewOptionsWindowFeed View.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewOptionsWindowFeed View.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewOptionsWindowGrid View.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewOptionsWindowSpli tView1.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/ViewOptionsWindowTrac kList.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/WatchFolderName.strin gs”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/Welcome.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/genresLoc.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iPad License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iPhone License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iPod License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iPod touch License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iTunesExtrasDownload. png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iTunesExtrasDownload@ 2x.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iTunesLPDownload.png” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/[email protected] ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/English.lproj/iTunesUIntro.itxib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AACEncoderConfig.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AboutBox.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AppConfig.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AppleTVSetup.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AppleTVStream.itxib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AppleTVSync.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AppsIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AskUser.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AskUserWide.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AudiobooksIntro.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AudiobooksIntro.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/AutofillSettings.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/BooksHaveMovedIntro.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/BooksHaveMovedIntro.ni b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/BooksIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/BurnSettings.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/CDInfo.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/CleanLyrics.png”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/[email protected]”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/ColumnWidths.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/ConvertID3.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DefaultTags.plist”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DeviceCapacityBox.png” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/[email protected] ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsAdvanced.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsAppleTVMedi a.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsApps.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsAudiobooks. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsBackup.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsBookmarks.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsBooks.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsCalendars.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsClassicCale ndars.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsClassicCont acts.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsContacts.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsFileSharing .itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsGames.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsGeneralAppl eTV.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsGeneralAppl eTVStreaming.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsMail.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsMovies.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsMusic.itxib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsOptionsIPod .itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsOptionsShuf fle.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsPhotos.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsPodcasts.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsRentalItem. itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsRentedMovie s.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsRingtones.i txib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsSummaryVers ion.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsTVShows.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsVolumeLimit Panel.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsWorkouts.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsiTunesMatch .itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DevicePrefsiTunesU.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DeviceSettingsIntro.it xib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DeviceSetup.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DeviceSetupEULA.itxib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/DeviceSetupRestore.itx ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/EQPresets.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/EQWindow.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/ErrorReportDialog.nib” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/FormatPopup.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/GeniusIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/HomeSharing.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/HomeSharingOn.itxib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/HomeSharingServerSetti ngs.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/ImportSettings.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogArtworkView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogInfoView.nib ”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogLyricsView.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleInfo View.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleItem .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleOpti onsView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleSort ingView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogMultipleVide oView.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogOptionsView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogSingleItem.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogSortingView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogSummaryView. nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoDialogVideoView.ni b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/InfoPlist.strings”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/License.rtf”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/LoadingDeviceText.png” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/[email protected] ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/Localizable.strings”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/MP3EncoderConfig.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/MainMenu.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/MasteredForiTunes.png” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/[email protected] ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/MoviesIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/MusicIntro.itxib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/OrganizeLibraryOptions .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PCMEncoderConfig.nib”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/ParentalAdvisory.png”A CL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/[email protected] g”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PlaylistDragIntro.itxi b”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PlaylistIntro.itxib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PodcastSettings.nib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PodcastViewButton.png” ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/[email protected] ng”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PodcastsIntro.itxib”AC L found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialog.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogAdvancedVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogAppleTVView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogDevicesView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogGeneralView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogMessageView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogParentalVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogPlaybackVie w.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogSharingView .nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrefsDialogStoreView.n ib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/Printing.nib”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/01.P laylist.Songs.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/02.P laylist.UserRatings.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/03.P laylist.DatesPlayed.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/04.P laylist.Custom.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/05.A lbumList.SongsByAlbum.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/06.A lbumList.ListOfAlbums.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/07.I nsert.TextOnly.xml”ACL found but not expected on “Applications/iTunes.app/Contents/Resources/French.lproj/PrintingTemplates/08.

    Similar issues. My iMac had one of the Seagate 1TB drives that was part of the recall program. After I loaded Maverick, I started having issues that seemed to be disk related and I started getting some Time Machine errors...never had any errors until installing Maverick.
    Since I was outside my 3 Yr warranty...Apple would only cover 1/2 the costs of replacing my "faulty" drive. Can't believe this was their policy to make me pay 1/2 for a drive they've known to have enough problems to announce a recall? They told me the problem was Seagate...I refuted by telling them...no...it's Apple. Can you believe they would try to pass the buck on Seagate...Apple has their label on my machine and they are the ones that negotiated the recall with Seagate? Whew!
    So I took in my Time Machine backup via a 1TB External Seagate drive...and now the fun begins. I've had my system in to the Genius bar for several weeks...many trips. I've learned to not take my machine home without test driving myself as they tend to only fix 1 of the permissions issues at a time. It doesn't seem they really know what's going on...which is pretty scarey.
    Anyway...the fix they seemed to use in the store was to rename my user directory and then create a new user directory with my original name...then copy everything in the renamed directory into the new directory. That fixed issues with Mail...but now my mail is totally screwed. Can't believe the work I had to do to get my mail folders all back to somewhat normal. iMovie couldn't find my movies folder. iCloud preview pane wasn't opening. I couldn't save/write to my internal disk on most of my apps. The one app I didn't test before leaving the store was iTunes. It's still screwed up and I'm not sure the chmod command will fix it...I think they tried this as an initial fix at the store. What a nitemare...
    Open to any suggestions. Thanks!

  • Lightroom 4 crashes when trying to open the slideshow module. I spent over three hours with both Adobe and Apple tech support and we know it is a permission issue but have not been able to get it solved.  It started with the last upgrade to 10.8

    Lightroom 4 crashes when trying to open the slideshow module. I spent over three hours with both Adobe and Apple tech support and we know it is a permission issue but have not been able to get it solved.  It started with the last upgrade to 10.8

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    The first step should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    resetpassword
    That's one word, all lower case, with no spaces. Then press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • Error when reading a RCDC (permission issue)

    Hello,
    I have created a MPR to grant right for a specific set (set 1) of user to read somes attributes (DisplayName) of a specific set of objects (set 2).
    For you information this set contains in fact all objects of a custom type.
    I have created a RCDC for viewing this object.
    In a first time the XML template of this RCDC contains only a control for the DisplayName attribute.
    <my:Control my:Name="DisplayName" my:TypeName="UocLabel" my:Caption="{Binding Source=schema, Path=DisplayName.DisplayName}" my:Description="{Binding Source=schema, Path=DisplayName.Description}" my:RightsLevel="{Binding Source=rights, Path=DisplayName}">
    <my:Properties>
    <my:Property my:Name="Text" my:Value="{Binding Source=object, Path=DisplayName, Mode=OneWay}" />
    </my:Properties>
    </my:Control>
    When I try to read the object with a user belonging to the set 1, I meet the error below. However if I modify my MPR to grant right on all attributes, I am able to read the RCDC. This is why I think the error is related to a permission issue.
    Error page on the FIM web portal:
    Unable to process your request.  
    Please contact your help desk or system administrator. 
    > Go to Forefront Identity Manager home page 
    More information on the error in the Windows Event Viewer:
    Requestor: urn:uuid:2dabeb0a-e780-447c-9f2b-6f715997f716
    Microsoft.ResourceManagement.Service: Microsoft.ResourceManagement.WebServices.Exceptions.PermissionDeniedException: Exception of type 'Microsoft.ResourceManagement.WebServices.Exceptions.PermissionDeniedException' was thrown.
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.ExecuteGetAction(RequestType request)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.ExecuteAction(RequestType request)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.ExecuteAction[ResponseBodyType](RequestType request)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.DispatchRequest[ResponseBodyType](RequestType request, Guid requestIdentifier, Object redispatchSingleInstanceKey, Boolean isRedispatch)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.DispatchRequest[ResponseBodyType](RequestType request)
       at Microsoft.ResourceManagement.WebServices.ResourceManagementService.Get(Message request)
    Does anyone have an idea of a way to solve this issue? Thank you ;)
    Regards,
    Serge

    Finally, I found the solution. I had to add ObjectID in the list of attributes in the MPR.
    If the user can't read the object id, he will not able to read the RCDC.

  • Resource Permission stored in DB

    Hi Everyone
    My customer is using a forms application that he needs to migrate to ADF.
    The new application should reuse the existing tables, PL/SQL APIs to such an extent that the old forms application should be available at the same time with the new ADF application as the existing forms will be gradually migrated to ADF over a longer period of time.
    In this application there is one menu which is unique. Customer has a table AUTHORISATION to store the permissions on some menu entries (submenu or executable) . Each executable menu entry has a form (fmb) and some columns (with possible values 0 or 1) for the actions allowed on that form:
    VIEW - 1 if view action is allowed, 0 if not
    CREATE - the same
    UPDATE - the same
    DELETE - the same
    Although he is aware that this is not a very strong security model as users can connect to sqlplus and update the table manually, customer would like to keep this table and to continue using that even in ADF, and not to use Weblogic security provider to manage roles (using SQLAuthenticator for example) in the application as this would be too tedious for him. To make the problem more complicated users can login to the application and then choose the DB they wish to connect to, so this AUTHORISATION table is specific to each DB instance. So there are multiple AUTHORISATION tables (one table in each DB instance), but the user_id/username is the same in all of these tables.
    In the ADF application, each form will be equivalent to a taskflow where the same operations would be allowed in page fragments. For example in the taskflow there will be a page fragment to display a list of records, another to display a detail of a record, another that allows to create a new record and so on. The access to the taskflow and within the taskflow needs to be driven by the same table. One taskflow will appear in the menu only once, that is for sure.
    I have considered using a resource permission to define a logical entity on a menu entry, and then using expressions such as
    #{securityContext.userGrantedResource
    ['resourceName=myPanel1;
    resourceType=myLayoutPanel;
    action=myAction']}
    to control the access/navigation in the application. However I find it quite hard to adapt is to the current situation. I have build the necessary components so I can extract all the contents of this table and wrap it inside a sessionScope managed bean so that the access to these permissions to be available from anywhere within the user session.I can code the hard way in the application to control access and navigation(by example creating a generic pageFlow managed bean for each taskflow that will have boolean properties for each operation and this managed bean will be initialized at the beginning of the taskflow, then use this managed bean in EL expressions to control the permissions to the actions). There will be a team of developers that willl build each taskflow and there are many taskflows which follows exactly the same pattern (list of records->details/create/delete).I need to make sure there is a easy way to encapsulate all this using security EL if possible so that each developer should work in a consistent manner based on a taskflow template for example that they need to follow/implement.
    I am using JDev version 11.1.2.2
    Not sure if my approach is the right one, or anyone has better ideas. Please advise.
    Thank you in advance
    Edited by: Dan Cretu on 31 oct. 2012 23:46

    Hi
    Thanks Peter for the helpful hints. I am also using one page, main.jsf (in fact there is a taskflow with several method calls to perform some initialization after login and at the end user end up in the same page). I am also using dynamic tabs pattern to show all the taskflows in regions. I have not yet begun the design of the templates ( this is next on my list once I finish designing the security/permission layer), but your experience is really helpful as it very much ressembles what I have. This should help me a lot to design these CRUD taskflows in the same manner as forms.
    For view permission and navigation I plan to implement this in the custom NavigationHandler class specified in faces-config.xml. As for the CRUD operations within the taskflow or I plan on using a router activity or a method call activity that would act like a router in order to encapsulate more complex logic if necessary (Haven't decided yet). The real challenge is when the CRUD operations are called from another taskflow opened in another tab. For example, from Departments taskflow to try and add a new employee which is in another taskflow. I guess the employee taskflow will need to have a parameter in order to define the operations to be performed in this taskflow (and use this parameter in a router activity for example) and if the operation is allowed the proper page/fragment for the creation would be shown in the new tab. Still a lot of ideas to put in practice and I need to think ahead of some potential problems in order to make everyone's life easier afterwards :-)
    Kind regards

  • Permission Issue with Adobe Bridge

    Hello Support,
    We are an all mac environment, and we are trying to import and export templates of metadata from Adobe Bridge. The files we are accessing are on a file server on our network. When making changes to metadata using Adobe Bridge we are getting permission denied. The permissions are fine, as we can add, delete, and modify files in the same server directories using finder or other applications. This has happened in the past and the resolution was to create a a whole new profile on the local mac.The new profile then had no issues with importing and exporting metadata. However, this is now the third time we have had to create a new profile on the local mac to resolve this permission issue within Adboe Bridge. We are running Adobe Bridge CS5 version 4.0.0.5.2.9. We are wondering if there is a permanent solution to this, seeing as we do not want to have to re-create a new profile every 3-4 months. Could there be a setting in Adobe that we need to edit or anything else that would avoid us having to re-create the profile? Thanks in advance for all advice to this issue.

    any help at all would be gladly appreciated. Also, is there a phone number or chat support with Adobe support that anyone can provide?

  • Can't open appleworks file / resource fork issue

    Hi,
    I've just readt the post "Can't open old appleworks/clarisworks files".
    My problem was that I got a "I/O error" when trying to open some appleworks files with appleworks 6.2.9.
    I realize that I copy those file from my previous disk to a PC formated CD. Hence, some resource fork files should miss.
    BUT, I don't have anymore the original files since I re-install my Mac...
    If there a way to recover my files despite of this resource fork issue ? Is it possible to create again the resource fork file ?
    Christophe

    It's not a resource fork problem. If it were, adding the .cwk extension to the file name would likely fix it. AppleWorks 6.2.9 (the current version) can't open all ClarisWorks 4 or earlier files. It gives an I/O error. There doesn't appear to be a way to predict which files will cause problems. I've had it happen & not happen with all AppleWorks file types. These files can be opened by any other version of AppleWorks 6, including the OS 8/9 component 6.2.8. If you have the retail version of AppleWorks 6.2.9 or your “consumer” Mac came with an earlier version of AppleWorks 6 that you have updated to 6.2.9 & have Classic installed, you can "Force" AppleWorks 6 to open in Classic to open the files, save them as AW 6 files & then open them in the OS X version. Also, if you have Classic installed & have AppleWorks 5, this can be used to open the ClarisWorks files & save them as AppleWorks 5 which AppleWorks 6.2.9 can open.

  • Weird file renaming permission issues

    Hi!
    We have a file rename permission issue. Here is the background:
    We created a 2008 R2 DFS namespace called UserData with Read/write share permissions for Administrators, Everyone and System. UserData has been granted NTFS permissions as follows:
    Everyone (This folder only): Traverse folder / Execute files, List folder / Read data, Read attributes, Create folders / Append data
    CREATOR OWNER (Subfolders and files only): Full control
    SYSTEM (This folder, subfolders and files): Full control
    Domain Admins (This folder, subfolders and files)
    We then enabled folder redirection for users My documents folder through GPO, setting the following:
    Setting: Basic - Redirect everyones folder to the same location
    Target folder: Create a folder for each user under the root path
    \\domain\UserData
    We also unchecked Grant the user exlusive rights to documents.
    So, now to the really weird behaviour. We logged on to a Windows 7 (x64) client computer with a user who gets this GPO settings and that is not local administrator on the client. The folder is redirected as expected and we can create, delete and write to
    files in anyway we want. We can also rename files if we choose an entirely different name and if we choose a longer or a shorter file name,
    but we cannot rename the file to something with the same letters but different casing.
    Examples of what will work:
    "test" to "testing"
    "test" to "cool"
    "test" to "COOL"
    Examples of what will NOT work:
    "test" to "Test"
    "test" to "tesT"
    "test" to "TEST"
    We the get this error: "File Access Denied. You need permission to perform this action. You require permission from S-1-5-21-220..... to make changes to this file."
    Eventhough I'm pretty sure the share and NTFS permissions of the share are correctly set we have of course checked all the permissions when logged in and the user has Full NTFS control and Read/Write Share permissions.
    We have encountered the same problem on a customer company as well, with a different domain with no links to our domain what so ever. I have also seen similar problems from other people when trying to find the answer on internet. Here is an example:
    http://social.technet.microsoft.com/Forums/en/w7itprosecurity/thread/35ced5bb-ab13-4e28-8c48-7c68ce0b775c
    Anyone have any thoughts?
    /Leyan

    Resent discoveries:
    If I log onto a Windows 7 (x86) Enterprise I face the same Issues.
    If the same user logs on to one of the DFS servers holding the namespace and accesses his folder we experience
    no problems renaming files.
    Customer company states that all is working fine when user logs on to a Windows XP with SP3.
    /Leyan

  • Mavericks permission issues with Windows Server deduplicated shares.

    We have a number of 10.9-10.9.3 - Mavericks - machines installed throughout our facility. Much of the user content is pulled from shares stored on our Windows Server 2012 fileservers with deduplication enabled. I have found that files newly written or unoptimized are able to be accessed without issue - read, written, modified, etc. Once the file gets optomized/deduplicated and Windows adds the P & L attributes - sparse and symlink - the Macs running Mavericks begin to have access issues.
    Once the files get deduplicated, users begin receiving read access errors when copying files (see error1 below). This happens when copying to folders within the current folder tree or copying somewhere to the local system. If you 'stop' the copy operation and retry a few more times, it may eventually work for the specific instance but fail again later. I am however, able to copy these files without issue via the terminal.
    Other systems running 10.7 do not experience the same issues and are able to access file server resources without issue. Many of the systems having issues are newer and thus not able to be downgraded to 10.8 or 10.7.
    I have tried finder replacements such as Pathfinder but the results are the same. I know this is at least similar to the issues many Mac users are already experiencing and posting about but I haven't seen it directly linked to deduplication and the attributes written by Windows server. Has anyone seen this issue? Have any solutions been found? 
    Error 1:
    When copying files after the PL attributes have been set by deduplication.
    "One or more items can't be copied to "Foler" because you don't have permissions to read them.
    Via the system.log, I am also seeing the following error when accessing these deduplicated file shares. The reparse point tag listed below is "IO_REPARSE_TAG_DEDUP"
    Reported error:
    "smbfs_nget: filename.ext - unknown reparse point tag 0x80000013"

    This is a 'known problem' as discussed on the MacWindows site, see http://www.macwindows.com/More-on-OS-X-conflicts-with-Windows-Server-Deduplicati on.html
    It appears to still affect Mavericks 10.9.5 at least from the lack of any positive reports to the contrary. It is perhaps a bit late but it would have been worth signing up for the public beta of Yosemite and testing that and if needed reporting it as an issue for Yosemite as this will be getting more bug fix attention than Mavericks now.
    I would agree turning off de-duplication is not a desirable solution, however other possibilities to consider are installing the standard Samba software on a Mac and using that instead of Apple's SMBx software. This is done by using the SMBup installer See http://eduo.info/2013/07/13/smbup-faq it does not officially list Mavericks but I did see at least one report that it still worked. A second possibility is to install ExtremeZ-IP which installs an AFP server on to your Windows Server and also gives the bonus of supporting Spotlight searches.
    Note: You should only try SMBup on a test setup first.

  • Permission issues with CRM Business packages

    Hello
    I have imported CRM business packages 5.0 to EP7 Portal.
    created System object SAP_CRM.connection is fine.
    Assigned predefined CRM roles(Content provided by SAP)to new users.but when I click on the CRM iview,
    getting following error.
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.pct/specialist/com.sap.pct.crm/com.sap.pct.crm.roles/com.sap.pct.crm.accountmanager/com.sap.pct.crm.am.acc.accountmgmt/com.sap.pct.crm.am.acc.accounts/com.sap.pct.crm.acc.accounts_s
    Component Name : com.sap.portal.appintegrator.sap.BSP
    Exception in SAP Application Integrator occured: Cannot retrieve system object for this alias. System Alias: 'SAP_CRM', System ID: 'pcd:portal_content/com.icicipru.systems.SFA_Systems/com.icicipru.systems.SAP_CRM'. User: 'crm_user', Reason: Access denied (Object(s): portal_content/com.icicipru.systems.SFA_Systems/com.icicipru.systems.SAP_CRM).
    Exception id: 06:14_10/05/07_0071_303671250
    See the details for the exception ID in the log file
    but when I add Super admin role to the users.it works fine.
    I have addeed end user permission to EVERYONE group and theser CRM users are part of the group.Everyone group is also part of Portal Content folder and System Folder.
    please help.
    regards
    John

    Hello John,
    It seems to be a permission issue. Just open the permission editor of the system and assign the everyone group to it. Select the checkbox corresponding to end-user. save it.
    It will solve ur problem.
    Regards
    Deb
    [Reward Points for helpful answers]

  • Permission issues accross schemas to load XMLTYPE column - structured storage

    Hi,
    We have a table in BIUSER schema this table is object-realtionally stored with XMLs. When we are trying to load receords from ETLUSER schema we are getting the error as
    Record 1: Rejected - Error on table "BIUSER"."PWAYWORKFILE_TABLE".
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01031: insufficient privileges
    Heres the oracle installation details
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    "CORE 11.2.0.3.0 Production"
    All the records are moving to the bad file, whereas the same load happens normally in its own schema i.e. BIUSER
    Suspecting this as permission issues we have already given the permission to the table sysnonym as given below in the registration script.
    We googled and found few things about ACLs that we are not sure of , its that is the issue please let us know if this table can be created and loaded from different schema
    Heres the table creation and registration script
    set echo on
    spool regschema.log
    set define on
    set timing on
    set long 100000 pages 0 lines 256 trimspool on timing on
    drop table PWAYWORKFILE_TABLE;
    drop sequence PWAYWORKFILE_TABLE_SEQ;
    begin
    dbms_xmlschema.deleteschema('workfile.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('TotalLoss.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('Salvage.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('rate.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('notes.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('Image.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('Event.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('estimate.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('CoTotals.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('corr.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('Admin.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('Vins.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('commonType.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'commonType.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'commonType.xsd';
    BEGIN
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'Admin.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'Admin.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'CoTotals.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'CoTotals.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'Event.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'Event.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'Image.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'Image.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'Salvage.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'Salvage.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'TotalLoss.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'TotalLoss.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME        VARCHAR2(700) := 'Vins.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'Vins.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      -- DOM Fidelity enabled due to presence of mixed text, substitution group heads, or repeating choice structures in complex type defintion :-
      DBMS_XMLSCHEMA_ANNOTATE.enableMaintainDOM(V_XML_SCHEMA,'RefurbMgr',TRUE);
      select /*+ NO_XML_QUERY_REWRITE */
             XMLQuery(
               'declare namespace xdb = "http://xmlns.oracle.com/xdb"; (:
                copy $NEWSCH := $SCHEMA modify (
                                          let $MODEL := $NEWSCH/xs:schema/xs:complexType[11]/xs:all
                                          return (
                                            replace value of node $MODEL/xs:element[2]/xs:complexType/@xdb:maintainDOM with "false",
                                            replace value of node $MODEL/xs:element[3]/xs:complexType/@xdb:maintainDOM with "false",
                                            replace value of node $MODEL/xs:element[4]/xs:complexType/@xdb:maintainDOM with "false"
                 return $NEWSCH'
               passing V_XML_SCHEMA as "SCHEMA"
               returning content
        into V_XML_SCHEMA
        from dual;
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'corr.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'corr.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'estimate.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'estimate.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'notes.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'notes.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'rate.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'rate.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'workfile.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'workfile.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
      -- Out-of-Line mappings for 1000 Column optimization :-
      DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'WorkfileType', 'AdminComp','ADMINCOMP_XML');
      DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'WorkfileType', 'NotesComp','NOTESCOMP_XML');
      DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'WorkfileType', 'SalvageComp','SALVGCOMP_XML');
      DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'WorkfileType', 'CorrComp','CORRCOMP_XML');
      DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'WorkfileType', 'ImageComp','IMAGECOMP_XML');
      DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'WorkfileType', 'EventInterfaceManagerComp','EVIFCMGRCOMP_XML');
      DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'WorkfileType', 'TotalLossComp','TOTALLOSSCOMP_XML');
      DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => TRUE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    -- Table creation for namespace "http://www.cccis.com/Pathways/Workfile"
    set lines 80
    CREATE TABLE "PWAYWORKFILE_TABLE"
          SequenceID NUMBER,
          DL_CLM_FOLDER_ID   VARCHAR2(30),
          CUST_CLM_REF_ID VARCHAR(25),
          ems_file_nm               varchar2(256),
          EST_IND         VARCHAR2(3),
          rec_dt date default sysdate,
          filesent_datetime date,
          CLM_TYP_CD               VARCHAR2(2 CHAR),
          WORKFILE  XMLTYPE
    XMLTYPE COLUMN WORKFILE
    STORE AS OBJECT RELATIONAL
    XMLSCHEMA "workfile.xsd" ELEMENT "PwayWorkfile"
    create sequence PWAYWORKFILE_TABLE_SEQ
    start with 1
    increment by 1
    nomaxvalue
    create trigger PWAYWORKFILE_TABLE_TRIGGER
    before insert on PWAYWORKFILE_TABLE
    for each row
    begin
    select PWAYWORKFILE_TABLE_SEQ.nextval into :new.SequenceID from dual;
    end;
    desc PWAYWORKFILE_TABLE
    /* create synonym */
    create or replace public synonym PWAYWORKFILE_TABLE for PWAYWORKFILE_TABLE;
    grant select on PWAYWORKFILE_TABLE to BIUSER_RO;
    grant select, insert, update,delete on PWAYWORKFILE_TABLE to biuser_full;
    exit;
    Regards,
    Arghyadip

    Hi MarcoGralike,
    I have finally acquired a sample schema and xmls to reproduce the errors that i am getting even after acquiring XDBADMIN privilege and registering my schema as GLOBAL.
    Here's the problem i am facing, whenever i intend to store the PublisherList (publisher.xsd) out of line while registration i am running into insufficient privilege issues even if i have the schema registered using (LOCAL => FALSE), whereas it runs smooth in BIUSER and if i dont set it out of line it works in ETLUSER as well.
    Here are the 2 XSD files
    books.xsd   --- this is the root element
    <xs:schema  xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb"  version="1.0" xdb:storeVarrayAsTable="true">
      <xs:include schemaLocation="publisher.xsd"/>
      <xs:element name="books" type="bookType"/>
      <xs:complexType name="bookType" abstract="true">
        <xs:sequence>
        <xs:element name="author" type="xs:string" minOccurs="0"/>
        <xs:element name="title" type="xs:string" minOccurs="0"/>
        <xs:element name="genre" type="xs:string" minOccurs="0"/>
        <xs:element ref="PublisherList" minOccurs="0"/>
       </xs:sequence>
       </xs:complexType>
    </xs:schema>
    publisher.xsd -- this is a child elelment which in my actual scenario is so big that i must keep it out of line during registration
    <xs:schema  xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb"  version="1.0" xdb:storeVarrayAsTable="true">
      <xs:element name="PublisherList" type="PublisherListType"/>
      <xs:complexType name="PublisherListType">
        <xs:sequence>
        <xs:element name="Name" type="xs:string" minOccurs="0"/>
        <xs:element name="Office" type="xs:string" minOccurs="0"/>
       </xs:sequence>
       </xs:complexType>
    </xs:schema>
    Here's the sample XML
    <?xml version="1.0"?>
    <books xmlns:xs="http://www.w3.org/2001/XMLSchema">
          <author>Writer</author>
          <title>The First Book</title>
          <genre>Fiction</genre>
          <PublisherList>
           <Name>Penguin</Name>
           <Office>London</Office>
          </PublisherList>
    </books>
    Here's how i am registering the Schemas in BIUSER which has XDBADMIN privilege
    DROP TABLE BOOKS_TABLE;
    begin
    dbms_xmlschema.deleteschema('books.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    begin
    dbms_xmlschema.deleteschema('publisher.xsd',dbms_xmlschema.DELETE_CASCADE);
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'publisher.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'publisher.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
        DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => FALSE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    declare
      V_XML_SCHEMA_NAME       VARCHAR2(700) := 'books.xsd';
      V_XML_SCHEMA             XMLType       := xmlType(BfileName('XSD_DIR',V_XML_SCHEMA_NAME),nls_charset_id('AL32UTF8'));
      V_SCHEMA_LOCATION_HINT   VARCHAR2(700) := 'books.xsd';
    begin
      DBMS_XMLSCHEMA_ANNOTATE.printWarnings(FALSE);
      DBMS_XMLSCHEMA_ANNOTATE.disableDefaultTableCreation(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.SETTIMESTAMPWITHTIMEZONE(V_XML_SCHEMA);
      DBMS_XMLSCHEMA_ANNOTATE.disableMaintainDom(V_XML_SCHEMA,FALSE);
    DBMS_XMLSCHEMA_ANNOTATE.setOutOfLine(V_XML_SCHEMA,DBMS_XDB_CONSTANTS.XSD_COMPLEX_TYPE,'bookType', 'PublisherList','PUBLISHERLIST_XML');
        DBMS_XMLSCHEMA.registerSchema(
        SCHEMAURL       => V_SCHEMA_LOCATION_HINT
       ,SCHEMADOC       => V_XML_SCHEMA
       ,LOCAL           => FALSE
       ,GENTYPES        => TRUE
       ,GENTABLES       => TRUE
       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    end;
    CREATE TABLE BOOKS_TABLE
          BOOKS  XMLTYPE
    XMLTYPE COLUMN BOOKS
    STORE AS OBJECT RELATIONAL
    XMLSCHEMA "books.xsd" ELEMENT "books"
    DROP PUBLIC SYNONYM BOOKS_TABLE;
    create or replace public synonym BOOKS_TABLE for BOOKS_TABLE;
    grant select, insert, update,delete on BOOKS_TABLE to ETLUSER;
    Heres the ctl file that i am using
    Load_Books.ctl
    OPTIONS (ERRORS=100000, SILENT=(HEADER,FEEDBACK),ROWS=500, BINDSIZE=3072000 , READSIZE=3072000)
    load data
    infile '/apps/dev/PWXML-10/ctl/load_xml.txt'
    BADFILE '/apps/dev/PWXML-10/ctl/load_xml.txt.bad'
    DISCARDFILE '/apps/dev/PWXML-10/ctl/load_xml.txt.dsc'
    append
    into table BOOKS_TABLE
    filename filler char(120),
    BOOKS lobfile(filename) terminated by eof)
    '/apps/dev/PWXML-10/ctl/load_xml.txt' would contain the XML file path that i gave
    Heres how i am loading the XML through sqlldr in ETLUSER
    sqlldr etluser/etluserpassword@MYXMLDBNAME control=Load_Books.ctl log=Load_Books.ctl.log
    Here's the error i am getting
    Record 1: Rejected - Error on table "BIUSER"."BOOKS_TABLE".
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01031: insufficient privileges
    Hopefully i have given you all the set up required to pin point the evil error.
    Please let me know if i have missed something.

  • File permission issues

    I cannot access any printer plug-ins by going the HD>Library>Printer>Epson>Inkjet route. All the plug-ins are grayed out so I cannot load them. I am attempting to add a printer attached to a windows machine. I followed all the instructions, I can see the correct plug-in, but I cannot load the plug-in.
    The second permission issue is moving jpeg files to the DVD or to a windows machine on the network. I am the owner of the files and all the folders are marked read and write. I also have checked windows file sharing.
    I have also done the repair permission route.
    I am new to Macs, so this is probably a simple ix, it just does not show up in the searches I have made in the Help menu or support topics. Any help is greatly appreciated. Thank you.

    Thanks for the tip, but I have tried every known fix listed anywhere and still am missing something somewhere. I can access the correct drivers when I connect the epson directly to the laptop and it will work. I can almost access the print drivers if I use IP Print when connecting to the printer across the workgroup. Almost, in that the drivers are no longer grayed-out, but if I select them, I still get generic print driver and it ignores the Epson driver. For some reason, if I try to install the driver for the printer while it is attached to a PC on the windows nworkgroup, using windows print, the print utility will not allow me to use the print driver. It has got to be something silly that I am missing.

Maybe you are looking for

  • Drill down on new window

    Hi I want to run the drill down report(child) on a new window.I am using srw.set_hyperlink_attrs('target="NEWWINDOW"');. But it was not of any use. Could anyone help me in this. Thanks in advance Regards Murali

  • How to delete blank space from value of Infoobject in the transfer rule

    does anyboady know how to write a routine in the transfer rule in order to delete ending blank spaces from value of Infoobject 'ORDTEXT'. E.g. value: 'ABM    '?  After routine, the result should be 'ABM'. Thanks for any input.

  • Need to customize the variable info sent to a query string

    Hello, I have run into a small issue while trying to send user data selected from 1 DateField and 3 ComboBoxes in a form. Everything is sending correctly except for the DateField, when sent is places much un-needed info in the query string. For examp

  • How digitally signing the eletroninc payment document?

    Hi. I generate an eletronic payment file via F110 transaction and sent to bank. I want sign this document with digital signature before of send to bank. This process is similar to sending invoices to the government from the GRC, because it also signs

  • How to use the JE database with other data types than byte arrays?

    Hi! I searched the javadoc of Berkley DB JE, for a way to introduce entry (but I need also retrieve) data with other type than byte arrays, e.g. String, or anything else, as int may be, etc. Still, I didn't find any such way, because the main (only?!