Updating security on personal folder

I am getting an error when trying to update the security on a personal folder using the Web Services SDK.  In my code I query for the personal folder specifying that the security info be returned.  If the SecurityInfo2 object has any roles in it I remove them.  I then add my new role to the SecurityInfo2 object.  Finally I commit the change.  When the changes is commited I receive the following error (again, I am using the Web Services SDK): org.apache.axis2.AxisFault: An XSD Exception occurred. Import file parsing exception occurred : 'Attempting to update an object of type 'FavoritesFolder', which was marked as preventUpdate, and the IMPORT_PREVENT_UPDATE option was specified.' (FWM 04009) (WBP 42029).  Any thoughts/suggestions on what is causing this is appreciated.  Thanks.

This is most likely a bug in Web Services. As a work around you can use Enterprise SDK to  chage the rights or do it in CMC.

Similar Messages

  • Error updating security for DropBox folder

    Hi,
    I'm attempting to share a DropBox folder from my server. I've updated the sharing permissions without issue, but when updating the security settings I get an "access denied" error with the text "failed to enumerate objects in the container".
    I have managed to share and permission other folders without issue, so don't believe I'm doing anything particularly wrong. I've tried killing the DropBox processes before making the update without effect. I've also made sure there are no locks on the files.
    Would anyone happen to know of a solution?
    Many thanks,
    Charlie

    Hello,
    Since you are using a third party solution which is DropBox, I would recommend to ask them here: https://forums.dropbox.com/
    This
    posting is provided "AS IS" with no warranties or guarantees , and confers no rights.   
    Microsoft Student Partner 2010 / 2011
    Microsoft Certified Professional
    Microsoft Certified Systems Administrator: Security
    Microsoft Certified Systems Engineer: Security
    Microsoft Certified Technology Specialist: Windows Server 2008 Active
    Directory, Configuration
    Microsoft Certified Technology Specialist: Windows Server 2008 Network
    Infrastructure, Configuration
    Microsoft Certified Technology Specialist: Windows Server 2008 Applications
    Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows 7, Configuring
    Microsoft
    Certified Technology Specialist: Designing and Providing Volume Licensing Solutions to Large Organizations
    Microsoft Certified IT Professional: Enterprise Administrator
    Microsoft Certified IT Professional: Server Administrator
    Microsoft Certified Trainer

  • Firefox will updage. I get this message: Something is preventing firefox from updating securely. Please make sure that you have the latest version

    I get this error message: Something is preventing Firefox from updating securely. Please make sure that you have the latest version of Firefox. I have uninstalled and re-installed. It did not work. Support tells me to click on Firefox at the top. I have no word at the top which says Firefox. I have the Firefox icon.

    This issue can be caused by the presence of leftover files in the Firefox program folder (defaults\pref) like a file firefox.js that overrides the update URL with a wrong link.
    Do a clean reinstall and be sure to remove the Firefox program folder.
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * [/questions/826858]

  • Update failed something is preventing firefox from updating securely how do I fix this ?

    Please can someone help me I have been getting from time to time an update box pop up that reads "Update Failed Something is preventing Firefox from updating securely. Please make sure that you have the latest version of Firefox from http://www.firefox.com", however my Firefox is up to date (I think). I have uninstalled then reinstalled but I'm still getting this error. I have been having this issue on and off for a couple of months and although I have posted before about this I'm still without a solution. I have looked into my programs folder as it tells me to in the help information to look for the active-update.xml, updates.xml and the updates folder and it's contents so I can delete them but I can't seem to find them. I'm definately not a computer whizz so any help anyone wants to offer needs to be in step by step form. Thanks

    See also [[/questions/919214]]
    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 20.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will lose all personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) C:\Program Files\Mozilla Firefox\
    *(64 bit Windows) C:\Program Files (x86)\Mozilla Firefox\
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Change Custom Access Level on a personal folder

    Hi All,
    This is about Business Objects XI 3.x
    I'm looking for a solution to change the security settings on a personal folder.
    Within 3.x it isn't possible to "overide"  the user settings on a personal folder with the use of an usergroup.
    So what I'm looking for is a way to overide the user settings Access level (by default this is Full Controll) with a custom Access level so I can take away some privilige on the personal folder.
    Is there a Java script allready be developed by some one that I can use?
    Thanks in advance.
    Cheers,
    Jan

    Hi Jan,
    You can use the following code snippet:
    // folders is IInfoObjexts collection that contains the personal folders.
    folders = oInfoStore.query(query);
              if (folders.size() > 0)
    // query for the user for whom you want to set custom access role over the personal folder.
    query = "select * from ci_systemobjects where si_name ='" + testUser + "' and si_kind ='user'";
    users = oInfoStore.query(query);
    // set the custom role.
    folder = (IInfoObject) folders.get(0);
    user = (IInfoObject) users.get(0);
    IExplicitPrincipals explicitPrincipals = folder.getSecurityInfo2().newExplicitPrincipals();
    IExplicitPrincipal explicitPrincipal = explicitPrincipals.add(user.getID());
    // customRoleID is SI_ID of te custom role. You can retrieve custom role just as you retrieve any other
    //info objet. You can use the query like : select * from ci_systemobjects where si_name='custom role
    //name' and si_kind='customrole'
    IExplicitRole explicitRole = explicitPrincipal.getRoles().add(customRoleID);
    oInfoStore.commit(folders);                         
    I hope this helps.
    Thanks
    Aasavari               }

  • HR Work Center Persons folder

    Hi,
      I would like to sychronize the PERSON's From 1 HR Work Center(A- HR) associated to a Work Center (A) to another HR Workcenter(B-HR) associated to Work Center (B).  I would like to do this because I maintain to differenent Work Centers different plants but the share the same PERSONS.
    I would like to be able to mass upload the contents of the original  HR work center Persons into the new HR work center.
    I have approx. 90 Work centers to convert and would likd to automate the process.  Does anyone know of a Bapi I could use to achieve the upload.
      Of course, after the initial upload we would not want the user to update the same info in both work centers so we would use the Bapi to update the contents of the new Persons follder in the HR work center(B-HR) with the changes occurring the original work centers Persons folder(A-HR) .
      Of course, if anyone has a simpler way of maintaining the synchronization I would love to hear it.
    Antonio

    Hi Fernando,
    For HR work center assignment, the icon in the assignment area is a yellow-colored folder.
    For org unit, on the other hand, it is the gray-colored rectangle.
    Moreover, if you select "change layout" button at the top of "assignment" area and add key to displayed columns, that key is A for work center and O for org unit.
    Is this what you're asking or are you looking for some other answer?
    Regards,
    Dilek

  • Personal Folder Backup add-in does not work

    When I installed Office 2010, it migrated my Outlook 2003 setup successfully and the Backup add-in appears on the Add-Ins tab.  It is also shows up as being active in the Manage Add-Ins page.  The add-in is set up to run every day, but when I close Outlook 2010, it does not run.  If I trigger the add-in from within Outlook, the normal dialogue box comes up, and lets me select "Save Backup".  But it still does not run.
    I have tried disabling the add-in, removing it, and then re-installing it.  But it makes no difference.  Does it depend on any other add-in?  Has anyone else managed to get it to work?

    If you want to correct the issues you are having go to the following link and you will fix all you issues and be happy.  What you will want is at the bottom of this page that I write. It will do it all for you and you will see the fimialure backup once
    you do.
    http://www.msoutlook.info/question/421
    Due to changes in the graphical design of Outlook 2010 and technical changes in its shutdown behavior, the Personal Folders Backup Add-in works a bit different than expected when compared to previous versions of Outlook.
    Backup command
    The options menu for the Personal Folder Backup Add-in is now shown on the Add-in tabs in the Ribbon;
    The Backup Add-in “hides” itself on the Add-Ins tab in Outlook 2010.
    Shutdown changes
    Due to shutdown changes in Outlook 2010, the add-in will indeed no longer prompt you to backup when closing Outlook.
    You can either
    backup the pst-files manually, wait until an updated version will be released or apply the registry fix mentioned below.
    When adding the following key to your
    Registry, you’ll change the shutdown behavior of Outlook 2010 back to the shutdown behavior of Outlook 2007 SP2.
    Key: HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\Microsoft.OutlookBackup.1
    Value name: RequireShutdownNotification
    Value type: REG_DWORD
    Value: 1
    Note: If you do not want to edit your registry manually, you can also apply the reg-file in this
    zip-download.

  • Updated security

    Updated Security for Snow Leopard 10.6.8 now IPhoto app gone.  System says install IPhoto 5.  Really?  Please tell me where that is located?

    You can custom install iPhoto directly from the discs that came with your computer.  iPhoto is either inside the Bundled Software folder or the Application folder.
    Sherridnall wrote:
    Updated Security for Snow Leopard 10.6.8 now IPhoto app gone.  System says install IPhoto 5.  Really?  Please tell me where that is located?
    The version I have is 9.2.3. 

  • HT1918 When I try to download a free app after log in the iTunes gets cut off with a msg update security question where do I do this?? I can't download anything

    When I try to download a free app after log in the iTunes gets cut off with a msg update security question where do I do this?? I can't download anything

    If you have a credit card on file on top of your gift card then it is asking you to confirm the security code for the card, which for a Visa or MasterCard is 3 digits located on the back, or AMEX has 4 digits on the front.  This happens just to ensure that you are the account holder, and would happen from time to time whether it was a free or paid app, even if you have a credit through your gift card.  This doesn't mean that your credit card will be charged.

  • IPOD Updater - Error 1324 - The Folder path contains an invalid character

    I tried to install ITUNES on an external HD (I didn't want to slow down my computer by putting all of my music on my internal HD). ITunes installed and then crashed. I removed all traces of ITUNES and IPOD that I could find and went to install ITUNES again on my regular internal drive. Now it goes through the installation and REMEMBERS my IPOD serial number (so obviously I can't find all of the files to remove) but doesn't give me a choice of where to install (it still must be trying to install to my external HD) the ITUNES. All I get is the following Error message:
    IPOD Updater - Error 1324 - The Folder path "Program Files" contains an invalid character
    Does anyone have a solution out there?
    Thanks in advance!
    MonsterProb

    IPOD Updater - Error 1324 - The Folder path "Program Files" contains an invalid character
    Interesting. It's choking on the old iPod updater application. (iPod software updates are no longer handled by a standalone application ... that function was folded into iTunes beginning with iTunes 7.0.0.70.)
    Let's try the following procedure.
    Download and install the Windows Installer CleanUp utility:
    Description of the Windows Installer CleanUp Utility
    Now launch Windows Installer CleanUp ("Start > All Programs > Windows Install Clean Up"), find any entries called "ipod for windows \[date]" or "ipod updater \[date]" or just "ipod for windows" in the list of programs in CleanUp, select those entries, and click “remove”.
    Quit out of CleanUp, and restart the PC.
    Does an itunes install go through properly after that?

  • The iPod "name of my iPod" cannot be updated". The required folder cannot..

    When I try to my playlists in iTunes I get the message "The iPod "my iPod" cannot be updated". The required folder cannot be found."
    plz help none of my new music is getting onto my iPod.

    natasha_is_a_lefty_girl wrote:
    I should know how much i'm syncing!!! anyone know how to help?
    Maybe you do, but iTunes obviously has different ideas - you can see that for yourself. And since iTunes is making the decisions...
    So - you need to work out which part of your Library has all this extra content that it's trying to Sync.
    According to the graphic we can see, your iPod currently has 8.1GB of Music on it. If you look in your iTunes/Library/Music, at the bottom of the screen it shows how much music is in your Library. Is it the same?
    Have you by any chance, added another sub-folder into the photos folder that you're using to Sync with your iPod?
    If neither of those things, what about the books?
    If not - perhaps there is a clue in the number of Apps that appear to have outstanding updates. I can't think why that should be the cause of the problem, but 152 Apps requiring an update does seem rather a lot. Perhaps that's upsetting the applecart.

  • The Ipod "name" cannot be updated. The required folder cannot be found.

    Back ground Information: I’m having multiple problem and are finding a few temporary fixes online. For example, my Ipods were not being recognized in Itunes. I referenced this () for a fix but only was able to get a temporary fix. With this said, I would like to describe more problems. I just purchased an 80gig ipod video and a 2 gig nano. Currently I have 2.8 gig of music in my library.
    Case 1. On the initial set up, itunes recommended to create a play list because all 2.8 gigs of music exceeded my nano’s storage space. Once the play list was created, I have not been able to updated this play list, or change it out for a different one. I get this message when I try to change the synch characteristics. (The ipod “littleballs” cannot be updated. The required folder cannot be found. )
    I tried to restore the nano, but it seems to disconnect itself from itunes. A dialog box would appear “restoring little balls”, but the nano would not appear in the side menu and the top of itunes status box would be empty.
    I tried to disable the auto sync function, so that my nano doesn’t disconnect itself, but I get the same message when doing so. It seems when I try to make changes to my nano this message pops up. hummmm
    Can someone please tell me what required folder is missing? And how do I located it to fix this issue?
    Case 2. My 80gig Ipod seems to synch just find. However, when I attempted to add pictures to it by synch it to a photo folder located on my c drive the same message pops up.à (The ipod “bigdaddyballs” cannot be updated. The required folder cannot be found.) Again, the same message.
    Someone please help me before I jump out of my window. I just purchased these products and my life have consisted of continuous problem solving. I’m starting to think I made a big $700 mistake. Thanks….. HELP!!!!!!!
    Desktop/Sony   Windows XP   Brand New

    You can put the ipod into "Disk Mode" http://docs.info.apple.com/article.html?artnum=93651 THen restore it see if that helps

  • What happened is that my internet connection was not good so i downloaded .ipsw file from a torrent but now i cannot get it to update my ipad because ios 5.0.1 is out i tried copying files to ipad updates in the itunes folder but no help

    what happened is that my internet connection was not good so i downloaded .ipsw file from a torrent but now i cannot get it to update my ipad because ios 5.0.1 is out i tried copying files to ipad updates in the itunes folder but it still asked me to download a 700mb software update
    plz help

    If you downloaded the correct version for your iPad model (and the different models have different ipsw files), then you should be able to navigate to it in iTunes by pressing and holding the shift key on Windows (command key on Mac) when clicking the Check For Updates button.
    Message was edited by: King_Penguin

  • How can I copy iCloud calendar and contact back to Outlook personal folder?

    After I install iCloud control panel for Windows 7 and turn on, it copied everything calendar and contact into iCloud and delete everything from Outlook Personal Folder.   I DONT WANT THIS!!!     How can I copy iCloud calendar and contact back to Outlook personal folder?

    Hi
    If you go to the web site of iCloud and then to contacts there is a button left bottom where you can export your contacts as cvs files and reimport them in outlook

  • Can't print a word document after updating security

    I updated security software and now can't print any document that has been created by my word application

    This forum is for troubleshooting Apple Software Update for Windows, a software package for Windows designed to update Apple products that run on Windows, and not related to Microsoft Office in any way. Therefore please post Office related questions on Microsoft's own forums for their Mac products.
    http://www.officeformac.com/productforums

Maybe you are looking for

  • DNS in DHCP Pool (Internal DNS issue)

    I know that we can setup multiple DNS server under DHCP pool. But I like to make sure the order. I have multiple branch offices. Let us say that Branch 1 office has a router with 10.30.1.1 as default gateway. Our internal DNS is 10.0.0.1 and 10.0.0.2

  • ABAP Programm for calling Proxies

    Hi Experts, I was writing a ABAP programm für starting a ABAP proxy. *& Report  Z_XI_MAPPING REPORT  Z_XI_MAPPING. parameters: PA_WAIT type decimals default 0,             PA_LOOP type decimals default 1,             PA_EOIO type char1 default 'X',  

  • Chat Server and Client Design

    Ola, I just want to make a simple Chat Program for intranet (LAN). I'm planning to use socket connection. What would be a good design for Chat Program? Both the Client and the Server are Java Application. Here is the diagram that I have in mind: ----

  • What are most important preferences to set in LR 5

    Now that I have finally got LR5 loaded and my previous catalog imported with the great help of Briian and Victoria the question remains.....what preferences do I surely need to set? I could just look at my LR 4.4, but are there others that might appl

  • Table PBED - Change in Period indicator

    We have a few materials where the master data was wrongly maintained : the period indicator was set to M instead of P. Due to this setting, the data is stored in PBED using Date type 2 instead of 4. We have corrected the material master but we are no