Unable to update Policies in Policy Manager

After I make some modification to a policy and click submit/save, it keeps loading. If I click on some link and come back to that policy, I see the changes have been done. But the changes does not takes effect without restarting the Policy Manager and Access server. I am seeing the following logs in the Policy Manager logs - "Exception during DB runtime code".
Thanks.

I saw the following logs repeating again and again every second in the directory server:
MODRDN dn="obSeqNo=2429,obapp=PSC,o=Oblix,o=oblixroot" newrdn="obSeqNo=2429" newsuperior="(null)"
RESULT err=68 tag=109 nentries=0 etime=0 csn=4a410c0e004800010000
Deleting the entry obSeqNo=2429 in DS solved the issue.
Here is what I think happened. Please correct me if my reasoning is wrong and. Also, please let me know if you know why it happened.
The Policy manager was trying to update the record with the assigned seqno. but was unable to due to existing record. This was causing the problem.
Thanks.
Vinay

Similar Messages

  • Updating policies and Policy Database or Policy Updates without server restart

    Hi again,
    I have implemented the flash access reference implementation server including setting up all example database tables (so we have a central database server).  I have started updating policies for the application "whitelist" features and have run into some questions below.
    The Protecting Content documentation states:
              "If your license server has access to a database for storing policies, you can retrieve the updated policy from the database and call LicenseRequestMessage.setSelectedPolicy()"
    This leads to two questions:
    1)  The reference implementation doesn't store any Policies in the database (it stores them on the filesystem in the Resources Directory).     I can not find any documentation or examples of how to "retrieve the updated policy from the database".     Can somebody please point me to an example or documentation on how to store policies in the database so I can simply LicenseRequestMessage.setSelectedPolicy()?
    2)  As the reference implementation stores policies on the disk I had to use policy update lists when I whitelisted an AIR app.     However, the reference server did not honor the policy update list till I restarted the flash access reference server.      How can I notify the flash access server of the change to the update policy list without restarting the server?
    Thank you,
    -R

    Hello,
    Please see my answers below.
    Answer 1>
    If you want to store the binary representation of the policy in the database, you can invoke Policy.getBytes() and store the returned byte[] as a blob in the database. For details on how to store such binary data in a database, you should consult the documentation for you database. Then, to rebuild a policy that had been stored in a database, you can obtain the byte[] stored in the database, and invoke new Policy(byte[]) with it to reconstruct that policy instance.
    See the following javadocs:
          * Retrieves an encoded byte array representation of the policy.
          * <p>If this <code>Policy</code> was created from an empty constructor, the revision number
          * will be <code>1</code>.  If this was an existing policy and changes were made to the policy,
           * the revision number will be incremented by one. Otherwise, the revision number will not change.</p>
          * <p>The validity of the policy is first checked before encoding into a byte array.  Encoding will fail
          * if {@link #checkValidity()} throws an exception.</p>
           * @return A serialized representation of the policy.
          * @throws PolicyModificationException The <code>Policy</code> cannot be serialized because it was created with a newer version and was modified.
          * @throws PolicyException The <code>Policy</code> is missing required fields or contains conflicting entries.
          * @throws EncodingException Unable to encode the <code>Policy</code> to a byte array.
          public byte[] getBytes() throws PolicyException, EncodingException;
          * This constructor parses an existing policy from the given byte array.
           * @param policy The policy from which to construct this <code>Policy</code>.
          * @throws EncodingException Unable to parse the byte array into a <code>Policy</code>.
          * @throws PolicyException The <code>Policy</code> is missing required fields or contains conflicting entries.
          public Policy( byte[] policy ) throws PolicyException, EncodingException;
    Answer 2>
    In order to implement automatic configuration updates of policy update lists on the flash access server, you will need to tweak the Reference Implementation code, to monitor the file update state and re-load the PolicyUpdateList if it changes. The code snippet below, taken from the com.adobe.flashaccess.refimpl.util.ParamsReader.buildHandlerConfiguration() method, should serve as an example of how the PolicyUpdateList is loaded and then set on the HandlerConfiguration instance for it to take effect for a particular license acquisition request. In the case of the reference implementation, this code (below) is only invoked once, during server initialization. That is why a server restart is necessary for subsequent changes to take effect. However, nothing prevents this code form being invoked elsewhere, and that implementation is entirely upto the customer, to achieve the desired outcome.
          PolicyUpdateList pul = PolicyUpdateListFactory.loadPolicyUpdateList(pulInputStream);
          if (pul != null)
                X509Certificate issuerCert = null;
                if (hsmEnabled)
                      issuerCert = getHSMCertificate(props, hsmUtils, "RevocationList.verifySignature.X509Certificate");
                else
                      String pulSignatureCertFile = props.getProperty("RevocationList.verifySignature.X509Certificate");
                      if (pulSignatureCertFile != null)
                            InputStream pulSignerInputStream = new FileInputStream(resourcesDir + pulSignatureCertFile);
                            issuerCert = CertificateFactory.loadCert(pulSignerInputStream);
                if (issuerCert != null)
                      pul.verifySignature(issuerCert);
                      context.setPolicyUpdateList(pul);
    Regards,
    Safdar

  • Unable to establish connection to policy manager while starting weblogic

    Hi,
    While i try starting weblogic, i get an error stating "The policy referenced by URI "oracle/no_authentication_service_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://indl144178:7101" due to invalid configuration or inactive state." and because of this error, im not able to retrieve any data from the bc layer on to the ui using a webservice datacontrol. I had earlier defined an oracle/no_authentication_service_policy in the <serviceinterface>.impl class and while defining webservice security in the datacontrols.dcx file of the web-service but have removed those now. This is a fragment of the error that i get on the server :
    <PolicySetBuilder> <resolveReference> The policy referenced by URI "oracle/no_authentication_service_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://indl144178:7101" due to invalid configuration or inactive state.
    oracle.wsm.policymanager.PolicyManagerException: WSM-02054 : Failure in looking up EJB component DocumentManager#oracle.wsm.policymanager.bean.ejb.IRemoteDocumentManager.
         at oracle.wsm.policymanager.BeanFactory.getJndiObj(BeanFactory.java:684)
         at oracle.wsm.policymanager.BeanFactory.lookupJndiObj(BeanFactory.java:910)
         at oracle.wsm.policymanager.BeanFactory.getDocumentManagerBeanEJB(BeanFactory.java:567)
         at oracle.wsm.policymanager.BeanFactory.getBeanEJB(BeanFactory.java:461)
         at oracle.wsm.policymanager.BeanFactory.getBean(BeanFactory.java:381)
         at oracle.wsm.policymanager.BeanFactory.getBean(BeanFactory.java:327)
         at oracle.wsm.policyaccess.ConfigurationFramework.getBean(ConfigurationFramework.java:1635)
         at oracle.wsm.policyaccess.ConfigurationFramework.access$500(ConfigurationFramework.java:133)
         at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.configure(ConfigurationFramework.java:452)
         at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.access$1400(ConfigurationFramework.java:299)
         at oracle.wsm.policyaccess.ConfigurationFramework.initializeAccessors(ConfigurationFramework.java:1915)
         at oracle.wsm.policyaccess.ConfigurationFramework.access$200(ConfigurationFramework.java:133)
         at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.isValid(ConfigurationFramework.java:607)
         at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.access$800(ConfigurationFramework.java:299)
         at oracle.wsm.policyaccess.ConfigurationFramework$VirtualAccessor.validateAccessor(ConfigurationFramework.java:1075)
         at oracle.wsm.policyaccess.ConfigurationFramework$VirtualAccessor.retrieveDocuments(ConfigurationFramework.java:1044)
         at oracle.wsm.policymanager.bean.util.PolicySetBuilder.generateReferences(PolicySetBuilder.java:421)
         at oracle.wsm.policymanager.bean.util.PolicySetBuilder.<init>(PolicySetBuilder.java:248)
         at oracle.wsm.policyaccess.PolicyAccessPoint.registerListener(PolicyAccessPoint.java:366)
         at oracle.wsm.policyaccess.impl.PolicyAccessorImpl$1.run(PolicyAccessorImpl.java:238)
         at oracle.wsm.policyaccess.impl.PolicyAccessorImpl$1.run(PolicyAccessorImpl.java:234)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.wsm.policyaccess.impl.PolicyAccessorImpl.getPolicySetMap(PolicyAccessorImpl.java:233)
         at oracle.wsm.policyaccess.impl.PolicyAccessorImpl.getPolicySet(PolicyAccessorImpl.java:193)
         at oracle.integration.platform.common.mgmt.PolicyCacheImpl$CacheNode.refreshIfStale(PolicyCacheImpl.java:175)
         at oracle.integration.platform.common.mgmt.PolicyCacheImpl.getPolicySet(PolicyCacheImpl.java:281)
         at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.forcePolicyLoad(SuperServerInterceptorPipeline.java:194)
         at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.<init>(SuperServerInterceptorPipeline.java:70)
         at oracle.j2ee.ws.server.provider.GenericProviderInterceptorPipeline.createServerPipeline(GenericProviderInterceptorPipeline.java:133)
         at oracle.j2ee.ws.server.provider.management.AbstractProviderInterceptorPipeline.<init>(AbstractProviderInterceptorPipeline.java:121)
         at oracle.j2ee.ws.server.provider.GenericProviderInterceptorPipeline.<init>(GenericProviderInterceptorPipeline.java:103)
         at oracle.j2ee.ws.server.provider.GenericProviderPlatform.createProviderInterceptorPipeline(GenericProviderPlatform.java:194)
         at oracle.j2ee.ws.server.provider.management.ProviderInterceptorPipelineManager.createProviderInterceptorPipeline(ProviderInterceptorPipelineManager.java:101)
         at oracle.j2ee.ws.server.provider.management.ProviderInterceptorPipelineManager.createProviderInterceptorPipeline(ProviderInterceptorPipelineManager.java:80)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.configureProviderManagement(ProviderProcessor.java:353)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.init(ProviderProcessor.java:198)
         at oracle.j2ee.ws.server.provider.ProviderServlet.initializeProcessor(ProviderServlet.java:532)
         at oracle.j2ee.ws.server.provider.ProviderServlet.init(ProviderServlet.java:267)
         at oracle.j2ee.ws.server.provider.ProviderServlet.init(ProviderServlet.java:199)
         at javax.servlet.GenericServlet.init(GenericServlet.java:241)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1985)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1959)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1878)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: javax.naming.NameNotFoundException: While trying to lookup 'DocumentManager#oracle.wsm.policymanager.bean.ejb.IRemoteDocumentManager' didn't find subcontext 'DocumentManager#oracle'. Resolved ''; remaining name 'DocumentManager#oracle/wsm/policymanager/bean/ejb/IRemoteDocumentManager'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
         at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:247)
         at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:182)
         at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at oracle.wsm.policymanager.BeanFactory$2.run(BeanFactory.java:660)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:47)
         at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:79)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
         at weblogic.security.Security.runAs(Security.java:61)
         at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:48)
         at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:52)
         at oracle.wsm.policymanager.BeanFactory.getJndiObj(BeanFactory.java:652)
         ... 80 more
    thanks

    err message:
    The policy referenced by URI "oracle/no_authentication_service_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://indl144178:7101" due to invalid configuration or inactive state.
    --> Is your WLS Clusters ?!
    --> Is SSL enabled on all managed servers ...

  • Cannot locate policy manager query/update service

    Hi,
    I installed soa_server 11.1.1.4.0 on windows server 2003 machine, I got a weird issue while accessing the weblogic policy manager through em. I logged into em console, weblogic domain, domain, webservvice, policy throw this erro below
    "*Cannot locate policy manager query/update service. Policy manager service look up did not find a valid service, due to: Unable to connect to WS Policy Manager. <- oracle.wsm.policymanager.PolicyManagerException: WSM-02118 : The query service cannot be created. <- javax.naming.NameNotFoundException: While trying to lookup 'QueryService#oracle.wsm.policymanager.ejb.IStringQueryServiceRemote' didn't find subcontext 'QueryService#oracle'. Resolved ''; remaining name 'QueryService#oracle/wsm/policymanager/ejb/IStringQueryServiceRemote'*"
    even my wls-m is running , I can access the http://host/wls-pm.
    Last three days I have spend for this issue but no clue.I disabled SSL, enable with SSL host validation false but also get this error.Please sort out this issue.
    Thanks
    Govindan

    Problem solved.
    Soln:
    Given ip address in the Listen Address field of weblogic Admin and SOA server. :)
    Thanks
    Govindan P

  • What is the differents between Policies and Preferences in Group policy Management Editor

    What is the differents between Policies and Preferences in Group policy Management Editor?

    Policies: If you delete a policy in GPO it deletes its registry files form the clients. Policies don't tattoo the registry. Policies Settings are permanent as long policy is in effect i.e. Desktop Backgrond. Policies are applied at Computer
    Startup, User logon and Manual and automatic refresh. Takes Precedence over Preferences.
    Preferences: Even if you delete a policy form Preferences tab the registry files will still available on the systems. Preferences tattooed the registry if you want to remove the registry entries you have to do it manually. Preferences exampl
    is i.e. mapped drive. Settings applied with preferences are not grayed out. Not available in Local GPO.
    Usefull for
    Desktop Icons/Shortcuts
    Url
    Drive Map
    File Copy, Update, delete
    Thanks

  • HT201210 I am unable to update my IPhone 4 to the IOS 6.  I managed to back up and transfer  and then when it asked to update I said yes and the sync process starte, left it overnight and it came up with an error if continue you will loose all your data. 

    I am unable to update my IPhone 4 to the IOS 6.  I managed to back up and transfer  and then when it asked to update I said yes and the sync process started, left it overnight and it came up with an error if continue you will loose all your data.  So stopped! Help!

    Are you currently on ios 4?  If so that's where the backup comes in.  You'll need to restore your backup once the software is updated.

  • Unable to see Remote App and Desktop Connection in Group Policy Management Editor

    I am unable to see the Remote App and Desktop Connection in Group Policy Management Editor on my 2012 R2 DC. I am therefore not able configure the connection URL in Access RemoteApp and desktops in our Windows 8.1 client environment.
    Within the Group Policy Under User Configuration, Administrative Templates, Windows Components all I see is:-
    RD Gateway
    Remote Desktop Connection Client
    Remote Desktop Session Host
    But NOT
    Remote App and Desktop Connection
    Which I need. Is there anyway of adding this?

    > I am unable to see the Remote App and Desktop Connection in Group Policy
    > Management Editor on my 2012 R2 DC. I am therefore not able configure
    > the connection URL in Access RemoteApp and desktops in our Windows 8.1
    > client environment.
    http://gpsearch.azurewebsites.net/#8113
    Do you use a central store for ADMX? Is this central store out of date?
    (Means "still contains ADMX from W7/2008R2")
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Firefox 3.6.12 unable to update, status bar appears as usual then says unable to due to suspected firefox app being open, only solution for me using firefox is exiting pwdbank from task manager

    i have firefox 3.6.12
    when cold start opening firefox browser
    message appears with that update is required before proceeding
    click yes
    an update bar appears and reaches a 100%
    then a message says it is unable to update due to another firefox being open (this shouldn't occur since firefox is closed during update)
    and that i should reupdate when this is closed
    keep on pressing retry to no avail
    then decided to go to task manager and exit pwdbank
    this is my current solution for using firefox
    only problem is that when i reopen firefox from a cold start is that
    it would ask me to re-update
    problem is not fixed
    need help
    would i need to uninstall reinstall to get it to work again

    I am using IE to post this message on Firefox.
    It has happened again. At 23:05 (UK time) I openedFirefox on the firefox site not IE. I opened my btinternet.com email account but at 23:41 the tab had not opened fully and still trying to load. I closed firefox and tried to open it again and here are the correct details of the dialogue box which appeared.
    ' (?) Firefox is already running. To open a new window, you must first close the existing Firefox proces, or restart your system'.
    I cannon do a restart at present as the tv part of my pc is recording a movie so I will try again later.
    Anyone out there that can help us please? Thank you.

  • Unable to update extension manager 6.0.5 of CS6

    unable to update extension manager 6.0.5 of cs6

    Do you receive any error messages?  Which operating system are you using?

  • Policy Manager API - The AccessGate is unable to contact any Access Servers

    Hello all,
    I am trying some samples to connect to OAM using policy manager api.
    I have the below mentioned code
    ObAccessManager am = new ObAccessManager();
    ObConfig.initialize();
    am.setAdmin("orcladmin", "welcome1");
    But when I run this code, I get an exception saying
    com.oblix.access.ObAccessException: The AccessGate is unable to contact any Access Servers.
    I have included AccessServerSDK paths in PATH,CLASSPATH and OBACCESS_INSTALL_DIR variables.
    and my ObAccessClient.xml file access server entry is as below
    <ValNameList
    xmlns="http://www.oblix.com"
    ListName="server1">
    <NameValPair
    ParamName="host"
    Value="son1891"></NameValPair>
    <NameValPair
    ParamName="port"
    Value="6035"></NameValPair>
    <NameValPair
    ParamName="numOfConnections"
    Value="1"></NameValPair>
    </ValNameList>
    I have spent a complete day on this, but still do not have a clue what is wrong.
    Please help me to solve this.
    Thanks
    Roopa.

    Ensure you have the following Env Var's set:
    CLASSPATH to \AccessServerSDK\oblix\lib\jobaccess.jar
    LD_LIBRARY_PATH to \AccessServerSDK\oblix\lib
    OBACCESS_INSTALL_DIR to \AccessServerSDK
    PATH to \AccessServerSDK\oblix\lib; \AccessServerSDK\oblix\tools
    POST_CLASSPATH to \AccessServerSDK\oblix\lib\jobaccess.jar
    In your AccessGate Definition, did you set the Access Management Service to On? The Communication Modes should be same for all the components. Also mind the time difference between all the systems. Anyway - May I know the objective behind the work with Policy Manager API ? Are you building a custom UI ?

  • I am unable to update Application Manager crushes

    On a iMac Intel running Maverick I am unable to update via my Cloud subscription due to the crashing of the Adobe Application Manager. Anny ideas?

    Thanks Neil. I guess would have to buy the app to do that. I bought the computer from a neighbor who is now deceased. Pages was already on it. When I try to update from the app store, even though I'm signed in, the update wants the neighbor's password. Any other ideas?

  • Unable to update OS 7.0 to 7.1 using desktop manager

    Hi...
    I have bb 9380 curve which has 7.0 OS, i want to update it to 7.1.  I have downloaded 7.1 device software and installed it in PC but when i try to update this through Desktop Manager it shows me " There is no update available for your divice" ...how can i update??
    thanks
    KDATE
    Solved!
    Go to Solution.

    1. You noted in your profile here you have "none" as a mobile provider or carrier, is this correct?
    2. Did you delete the Vendor.xml file from the PC?
    Go to c:\program files\common files\research in motion\apploader and delete the file named "vendor.xml." (You might have another Vendor.xml file hiding on your computer. Open Windows Explorer and under the Organize button (on Windows 7, there are similar tools for Vista and XP) click on "Folder and search options." Under the View tab, make sure that your computer is set to show hidden folders and files. Once you've done this, search your C:\ drive for "Vendor.xml".)
    **Starting with the later OS6 releases, there are now three copies of VENDOR.XML
    C:\Program Files\Common Files\Research In Motion\AppLoader (for 32-bit Windows XP/Vista/7)
    ==========OR============
    C:\Program Files (x86)\Common Files\Research In Motion\AppLoader (for 64-bit Windows Vista/7)
    C:\Documents and Settings\*name*\AppData\Roaming\Research In Motion\BlackBerry\Loader XML
    C:\Documents and Settings\*name*\Application Data\Research In Motion\BlackBerry\Loader XML
    You can also just search for VENDOR.XML. Make sure that you choose ADVANCED SEARCH and include hidden files. It should show the file in at three locations. Delete every copy that it finds.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • "Unable to update local resource group" error

    Hello,
    I'm having a problem updating one of my local resource groups in RD Gateway Manager.
    We're on 2008 R2 SP1, and have a gateway in between us and another company. When a user needs to access their computer in the other company, we add the machine to the local group, and the account the AD RAP group, it works fine.
    However, every couple of weeks, it will not allow me to update the local resource group for computers. I receive the error "WMI Failure: Unable to update local resource group" ..and apparently google cannot find another instance of this error happening -
    no results at all - very odd. So the normal fix is to just recreate the RAP.xml file, then add the machines in again, but this is not a good enough fix long term, plus it misses the machines that are switch off when i recreate.
    Also - this will be logged in eventvwr TerminalServices-Gateway  
    "The resource group "MY GROUP NAME" could not be updated. The following error occurred: "23106". To resolve this issue, ensure that you have configured resource group settings correctly and set the correct value and permissions for the RAP.xml file and the
    RAPStore registry key."
    Google also cannot find anything for that error, OR that 23106 error code - I cannot get results no matter what I do. It cannot be permissions as I've checked them, and it works for a bit. I've ran the WMI diagnostics, and they're fine, no different to any
    other server in the environment. 
    I've also checked these forums and there is nothing on there. Does anyone know the relevance of that error code, or where I can check it out?
    Cheers,
    Jon

    I can confirm ..MPIN..'s solution fixes it.
    I had the exact same problem; I'd recently added a new server, and stopped the old server before decomissioning.  Adding the new serer to the TS RAP policy server didn't work and generated the OP's error.
    I removed the old server name (which was not pingable) and the group COULD be updated.
    Really crappy error handling - this is a defect and should be fixed.  A proper error would say "Not all machines in this group are valid, please remove the invalid entries" OR simply allow 'ok' without double checking (after all, the names are checked
    when adding).
    So often we accept shoddy software by proposing work arounds as 'the fix'.  The actual fix is to fix the software to be more descriptive and/or handle errors more gracefully.
    == John ==

  • Uninstall a windows update usign group policy

    Hi !
    Recently I installed Service Pack 1 for windows server 2008 R2 and after that i lost RDP to it.
    Investigated it and found a security update is the cause.
    I connected using iLo and uninstalled it and all went ok
    so here is what i want
    is there anyway to uninstall a windows update from different clients using group policy or WSUS ?

    Hi,
    On Group Policy Management Console, Go to GPO that will contain the script and go to Computer Configuration > Policies > Windows Settings > Scripts (Start up/Shutdown)
    Click Add and then Browse. This will open the GPO in the Sysvol share for you to create the batch file.Add Shutdown
    script
     use Shutdown scripts when you need to remove an update which creates issue.
    Note: updates may require a reboot after removal. By using a Shutdown script, the script can run at the next system shutdown/reboot event and the update removal process gets the reboot it needs.
    By using a Startup script, you may end up needing two reboots to remove the update: one reboot so that the script runs at the next system start and a possible second reboot if the update removal process requires it.
    Use the below script by replacing the you own KB that needs to be kicked from servers.
    Make below .bat
    C:\Windows\System32\wusa.exe/uninstall/kb:example12345555/quiet/norestart/log
    By adding the optional, /log, you can go into the Setup Event Log and check that your update was removed.
    Event Log- Windows update was successfully uninstalled
    Regards
    Raj
    ADS/DNS/DHCP/RIS/GROUP POLICY/PowerShell/VMware/Esxi/Storage.

  • Server 2012 R2 Group policy management with older Domain servers

    Hi Guys,
    I need your expert assistance with a issue I'm facing.
    We have a client that has 3 domain controllers. The Primary DC is running Server 2003 R2, another one is running Server 2008, and the last DC is running Server 2008 R2. The forest functional level is Server 2000 & the domain functional level is Server
    2003.
    Currently Group policy is processing using a central store across the 3 domain controllers.
    We have installed a new Server 2012 R2 Terminal server and need to apply group policies to the Server to lock it down.
    We have a separate Server 2012 R2 server (say SERVER1) that is also joined to the domain that I have added the group policy management feature to so it can remotely manage group policy.
    It seems to be pulling the all the group policy details from the central store so I can't see any of the server 2012 related settings on
    SERVER1.
    Are we going about this the correct way? how would we best manage the Server 2012 policies? I was thinking either somehow making the specific TS group policy only load in a local policy or templates somehow..

    If you are using a central policy store, this is the expected (intended) behaviour.
    You willl need to update the central store with the latest versions of the adm(x/l) files.
    http://www.microsoft.com/en-us/download/details.aspx?id=36991
    or grab them from a 2012(r2) instalaltion c:\Windows\PolicyDefinitions
    MCP/MCSA/MCTS/MCITP

Maybe you are looking for

  • Session variable using :GROUP variable in init block

    I'd like to filter using session variable. This session variaible should be build using :GROUP special session variable I'd like do something like this (init block): select  case when instr(upper(':GROUP'), 'ADMINISTRATOR')>0 then 'Yes' else 'No' end

  • Forms Server on Developer 6i

    This is an old bit of software I know, but I am trying unsuccessfully to get forms 6i to run as a web form on a local forms server. I have installed the following : "This release of Forms and Reports 6i Release 2 (6.0.8.11) is certified for installat

  • Is it only me?

    Is anyone in Ireland having problems downloading ANNA???

  • Outlook 2010 View settings keep changing/resetting

    View keeps restting to defaults. I change it to 'Single' rows, colums, and preview to 12pt, no grouping ascending date sort. I also change the calendar to month view. All keeps resetting. I tried Outlook /cleanviews and all that does is reset everyth

  • Can u examine me before my teacher

    i have an exam on thursday.this exam will include (loops only)and the main idea in application and applet. so plz help me to be ready for this exam.and that's by giving me some questions and tricks. now i'll go to my university so plz i wish finding