Fault Management Framework is not working....

Hi all,
i have installed soa 10.1.3.3.0, and i am done with post installations stpes too.
i have created a simple bple, which invokes a PL(java webservice). i stopped the webservice and intiated the bpel process so that it shud get the remoteFault.
i am binding the defaultpolicy (given by orcle) in bple.xml . But it is not working.
still catch block is firing. invoke is showing in red color only. which means , obusly policy file is not registered. is it? so, how can i know wheter policy file is registered or not? how to make use of plicy file? am i missing any steps???
can anyone please help me out......
thans in advance

hi this my fault-binding.xml file <?xml version="1.0" encoding="UTF-8"?>
<faultPolicyBindings version="2.0.1"
xmlns="http://schemas.oracle.com/bpel/faultpolicy"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- Enabling this will cause all processes in this domain to use this
fault policy
     <process faultPolicy="DefaultPolicy"/>
     -->
<!-- DefaultPolicy is defined in ./fault-policies/DefaultPolicy.xml -->
     <partnerLink faultPolicy="DefaultPolicy">
     <!-- Enabling this will cause all invoke faults at partner link
     name of "creditRatingService" to use fault policy with
     id id = DefaultPolicy
     <name>creditRatingService</name>
     <name>SampleService</name>     
     -->
<!-- all invoke faults at partner link below port type use fault policy
with id = DefaultPolicy
The following entry covers the samples/tutorials/122.DBAdapter/InsertWithCatch sample. -->
     <portType xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/insert/">db:insert_plt</portType>
     </partnerLink>
</faultPolicyBindings>
i have added the one more <name> branch for <patnerlink>
<name>SamleService</name>
even i bind the policy file in my bple.xml also,
this is my bpel.xml flie
<?xml version = '1.0' encoding = 'UTF-8'?>
<BPELSuitcase>
<BPELProcess id="Fault_DEMO" src="Fault_DEMO.bpel">
<partnerLinkBindings>
<partnerLinkBinding name="client">
<property name="wsdlLocation">Fault_DEMO.wsdl</property>
</partnerLinkBinding>
<partnerLinkBinding name="SampleService">
<property name="wsdlLocation">SampleService2.wsdl</property>
</partnerLinkBinding>
</partnerLinkBindings>
</BPELProcess>
<faultPolicyBindings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.oracle.com/bpel/faultpolicy ../../../../../../../../fault-policy-binding.xsd"
xmlns="http://schemas.oracle.com/bpel/faultpolicy">
<process faultPolicy="SamplePolicy"/>
<partnerLink faultPolicy="SamplePolicy">
<name>SampleService</name>
</partnerLink>
</faultPolicyBindings>
</BPELSuitcase>
is there any problem in these files?
can anyone please help me?
thanks in advance

Similar Messages

  • SOA fault management framework doesn't work

    The following is my fault-policies.xml and fault-binding.xml. Both are located in the same folder as the composite.xml. I simulated a remote fault. The fault was not caught by the framework.
    I even re-started both admin server and soa managed server.
    I am using SOA 11.1.1.5
    1. fault-binding.xml:
    <?xml version="1.0" encoding="UTF-8" ?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
    <composite faultPolicy="POProcessingFaults"/>
    </faultPolicyBindings>
    2. fault-policies.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <faultPolicy version="2.0.1"
    id="POProcessingFaults"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/ XMLSchema-instance">
    <Conditions>
    <!-- Step #1: Add your fault handler for remote fault here: -->
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension" name="bpelx:remoteFault">
    <condition>
    <action ref="ora-human-intervention"/>
    </condition>
    </faultName>
    <!-- Step #2: Add your fault handler for binding fault here: -->
    <!-- Step #3: Add your fault handler for mediator faults here: -->
    </Conditions>
    <Actions>
    <!-- Step #4: Add the Action definition for handling mediator faults using custom java here:-->
    <!-- Custom Java Handler: Logs the fault details to a log file -->
    <Action id="my-java-handler">
    <javaAction className="soatraining.faulthandling.MyFaultHandler"
    defaultAction="ora-terminate" propertySet="myProps">
    <returnValue value="OK" ref="ora-rethrow-fault"/>
    </javaAction>
    </Action>
    <!-- Retry -->
    <Action id="ora-retry">
    <retry>
    <retryCount>4</retryCount>
    <retryInterval>2</retryInterval>
    <exponentialBackoff/>
    </retry>
    </Action>
    <!-- Rethrow action -->
    <Action id="ora-rethrow-fault">
    <rethrowFault/>
    </Action>
    <!-- Human Intervention -->
    <Action id="ora-human-intervention">
    <humanIntervention/>
    </Action>
    <!-- Terminate -->
    <Action id="ora-terminate">
    <abort/>
    </Action>
    </Actions>
    <!-- Property sets used by custom Java actions -->
    <Properties>
    <!-- Property set for MyFaultHandler customer java action -->
    <propertySet name="myProps">
    <property name="logFileName">myfaulthandler.log</property>
    <property name="logFileDir">c:\temp</property>
    </propertySet>
    <!-- Step #5: Add new property set for MyFaultHandler for logging Mediator faults here:-->
    </Properties>
    </faultPolicy>
    </faultPolicies>

    Please use the below files and let me know...
    fault-policies.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <faultPolicy version="2.0.1" id="bpelFaultHandling"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Conditions>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:bindingFault">
    <condition>
    <action ref="ora-retry"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault">
    <condition>
    <action ref="ora-retry"/>
    </condition>
    </faultName>
    </Conditions>
    <Actions>
    <Action id = "ora-rethrow-fault">
    <rethrowFault/>
    </Action>
    <Action id = "ora-retry">
    <retry>
    <retryCount>5</retryCount>
    <retryInterval>1</retryInterval>
    <exponentialBackoff/>
    <retryFailureAction ref = "ora-rethrow-fault"/>
    </retry>
    </Action>
    </Actions>
    </faultPolicy>
    </faultPolicies>
    fault-bindings.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <composite faultPolicy="bpelFaultHandling"/>
    </faultPolicyBindings>
    Write two composites A and B . A is Asynchronous and B is Synchronous. Call B from A, just throw a remotefault from B; put the above two files in composite A in the folder where the composite.xml file resides.And also keep a catchALL block at the BPEL process level for the composite A. So when you execute A, The fault policies will come into play, try the same invoke for five times and rethrow the fault which will be caught by catchALL block in composite A and do something from A, either invoke back the caller or write some error message to the file or email or something else.
    Hope this helps...
    Thanks,
    N

  • 10.1.3.3 fault management framework and catchall problem

    Hi all,
    I have a BPEL process with a catchall exception block for the entire process (in the .bpel file). The errorhandling determines if action needs to be taken on a given exception and notify's tech support with an e-mail if action needs to be taken. This works fine.
    However, it would be nice if you could retry faulted instances if for instance a web service was temporarily down. Here the fault management framework comes to the rescue. I have created default policy and fault-binding files. I have set it up so that any error goes to human interaction. Apparently this worked. An instance pending manual recovery was created, and it could be retry'ed from the BPEL console.
    So here is my problem: The fault management framework apparently overwrites the catchall exception in the BPEL process, so that while a task for human interaction is created the error block is not excuted first - meaning that no e-mail notification is sent and no differentiating between exception occurs.
    If I remove the default policy and fault-binding files then the catchall is used again.
    This may be expected behaviour, but I assume that it is possible to use both a catch all block in the bpel code AND the generic fault management framework.
    Does anybody have any ideas?
    Your assistance will be much appreciated.
    Regards,
    Aagaard

    Hi Aagaard,
    The BPEL Error Hospital that Oracle introduced with SOA Suite 10.1.3.3 will prevent you from having to model the handling of Binding Faults or Runtime Faults in BPEL processes.
    Hope in the future we will also be able to specify policies for handling custom faults that may occur anywhere in the BPEL process, i.e. not only on invoke activities.
    This framework will gives us the opportunity to handle all the business and runtime faults for an “invoke” activity. With the framework we can define one policy for every bpel domain.
    In the bpel/domains/default/config/fault-policy-binding.xml , we can setup the policies we would use and which processes,partnerlinks,port types will be part of it.
    If there is already some fault-handling (catch) defined in the the bpel process, the framework will overrule this, and use a policy if possible.
    Hope that answers your question!
    Cheers
    Anirudh Pucha

  • Oracle Fault Management Framework - how to intercept first invocation

    I know the Oracle Fault Management Framework is only activated on faults that occur on invokes.
    Which is fine for all internal calls.
    However, is there any way to get the framework to be activated on the very first invoke?
    I want to be able to get the framework to log all fault details and then rethrow. I'ms using Oracle version 10.1.3.4.
    However, if an external third party calls my process (say Process A) and an error occurs in process A that is NOT from an invoke, eg xpath error.
    The framework does NOT get activated.
    Any ideas how to get around this other than going into every BPEL and adding in a catchAll , log, throw fault?
    Thanks.

    There should be no difference between managing internal and external calls using the fault handler.
    If we can just talk about process A as a BPEL process which utilizes the fault management.
    It should not matter where the services process A calls reside. The fault management system will only get calls as part of an error occurring on an invoke.
    I don't agree with your comment that the framework will get called if a fault occurs any where within the domain. e.g. If process A has an assign activity and fails because it can't convert a string into date. The fault management system will not be called. Therefore it is independent if the services process A calls are internal or external.
    What is your reasoning behind having a process that continues in the event of a fault when the first fault could cause subsequent faults.
    If no fault is manged either by the framework or a catch then the raw error will be returned back to the consumer. So you will be able to debug that initial fault. Does this not fulfill your uses case?
    cheers
    James

  • Fault Management Framework

    Hi folks,
    I am studying the Fault Management Framework that comes with BPEL.
    It is a really nice feature: in a single place I can define a strategy for handling errors that occurs in the invoke activity of any BPEL process.
    I have a question about this: is there a similar tool or framework to handle in a single place errors that can occur in ANY activity of the BPEL process not only in the invoke activity.
    In other words, instead of using catchall in all of BPEL processes (and writing the same code in all BPEL processes) can I use the Fault Management Framework (or write some BPEL code) to catch errors like : selectionFailure, joinFailure or others and associate specific action with them?
    If anybody has an idea feels free to explain it!

    No.
    Marc
    http://orasoa.blogspot.com

  • SOA 11g Fault Management Framework Issue

    Hi,
    I am using soa 11.1.1.3.
    I have a composite with bpel process. Bpel process invokes a external web service.
    I add fault-bindings.xml and fault policy to catch remote fault.
    When I turn off web service, bpel process has the remote fault but the fault didn't be caught by fault management framework.
    Here is my fault-policies.xml and fault-ibindings.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicyBindings version="0.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <!-- only applies for the bpel process -->
         <component faultPolicy="FusionMidFaults" >
    </component>
    </faultPolicyBindings>
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <faultPolicy version="0.0.1" id="FusionMidFaults"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Conditions>
    <!--
    <faultName xmlns:medns="http://schemas.oracle.com/mediator/faults"
    name="medns:mediatorFault">
    <condition>
    <action ref="MediatorJavaAction"/>
    </condition>
    </faultName>
    -->
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault">
    <condition>
    <action ref="BPELJavaAction"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:bindingFault">
    <condition>
    <action ref="BPELJavaAction"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:runtimeFault">
    <condition>
    <action ref="BPELJavaAction"/>
    </condition>
    </faultName>
    </Conditions>
    <Actions>
    <!-- Generics -->
    <Action id="default-terminate">
    <abort/>
    </Action>
    <Action id="default-replay-scope">
    <replayScope/>
    </Action>
    <Action id="default-rethrow-fault">
    <rethrowFault/>
    </Action>
    <Action id="default-human-intervention">
    <humanIntervention/>
    </Action>
    <!--
    <Action id="MediatorJavaAction">
    <javaAction className="MediatorJavaAction.myClass"
    defaultAction="default-terminate">
    <returnValue value="MANUAL" ref="default-human-intervention"/>
    </javaAction>
    </Action>
    -->
    <Action id="BPELJavaAction">
    <!-- this is user provided class-->
    <javaAction className="com.rubiconred.faultManagement.MyFaultPolicyJavaAction"
    defaultAction="default-terminate">
    <returnValue value="MANUAL" ref="default-human-intervention"/>
    </javaAction>
    </Action>
    </Actions>
    </faultPolicy>
    </faultPolicies>

    Hi, I've the same issue. I created the fault-bindings.xml and fault-policies.xml in the same directory as composite.xml. I throw a fault in the BPEL process, but it does not get caught by the fault policy mechanism.
    fault-bindings.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <composite faultPolicy="MyCompositeFaultPolicy"/>
    </faultPolicyBindings>
    fault-policies.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <faultPolicy version="2.0.1" id="MyCompositeFaultPolicy"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <!-- This section describes fault conditions. Build more conditions with faultName, test and action -->
    <Conditions>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:assertFailure">
    <condition>
    <action ref="ora-terminate"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:runtimeFault">
    <condition>
    <action ref="ora-terminate"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault">
    <condition>
    <action ref="ora-terminate"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:bindingFault">
    <condition>
    <action ref="ora-terminate"/>
    </condition>
    </faultName>
    </Conditions>
    <Actions>
    <Action id="ora-retry">
    <retry>
    <retryCount>3</retryCount>
    <retryInterval>10800</retryInterval>
    <retryFailureAction ref="ora-human-intervention"/>
    <!--<exponentialBackoff/>-->
    </retry>
    </Action>
    <!-- This is an action will bubble up the fault-->
    <Action id="ora-rethrow-fault">
    <rethrowFault/>
    </Action>
    <Action id="ora-human-intervention">
    <humanIntervention/>
    </Action>
    <!-- This action will cause the instance to terminate-->
    <Action id="ora-terminate">
    <abort/>
    </Action>
    </Actions>
    </faultPolicy>
    </faultPolicies>
    I tried restarting the managed server, but it did not help. If you have any suggestions, please supply them.

  • How does BPEL Fault Management Framework gel with ESB Error Handling ?

    I see that BPEL 10.1.3.3 has pretty neat Fault Management Framework (although I have to admit it is not very well advertised).
    The next logical question is: what about ESB ? Would that help in ESB error handling ? I understand that ESB has its own Error Hospital etc.; however, we have to constantly grapple with two distinct paths for any piece of integration functionality (1. ESB 2. BPEL). I guess, all of this will be moot in the 11g timeframe. Still wondering if anyone out there has somehow unified error handling for these two distinct offerings ?

    It's not available in ESB, you have to implement/extend that by your self. Off course in the next release everthing will be better :-)
    But, if you are able to use Oracle AIA (http://edelivery.oracle.com) You could use Oracle AIA Foundation, that has a fault 'hospital' implemented both for BPEL and ESB.
    Marc
    http://orasoa.blogspot.com

  • Verizon Access Manager Download link not working

    Hi,
              Verizon Access Manager Download link not working, Following Links
    http://www.vzam.net/download/download.aspx?productid=872
    http://pcdn2-download.vzw.com/win/7.7/VZAM_7.7.1_2727b-AC30-Web.exe
    plz help to download verizon five spot access manager.
    thanks
    karthirocks

        Hi karthirocks! I'm sorry to see you're having any difficulties using these links. I've clicked on both, but had no problems getting pages to launch or in getting the application to download. If this is still a problem for you, please describe the issue you're experiencing. Also, please share the browser version you're using, and if you've enabled any security feature that prevents access to certain secure sites or services. Thanks!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • Power Manager 4.42 Not Working T61p Vista 64-bit

    ThinkVantage Power Manager is not working on my machine.  I first noticed this after System Update added several new ThinkVantage programs, including PM version 4.41a several weeks ago, but I can't point with any certainty a specific cause or beginning to the problem. 
    PM now stops working every time during initial (power-on) machine boot-up showing message: "Power Manager Stopped Working".  This seems to happen whenver it is installed by system update.  When I have tried installing PM manually, it simply refuses to install, giving a short message saying it cannot run on my system.  Earlier versions ran OK before.  Microsoft Problem Reports and Solutions is of course clueless about this (and most other crashes).
    I have tried uninstalling, rebooting, and reinstalling both PM and the latest PM driver in several different sequences, but nothing seems to work.  I was hopeful that a recent upgrade to PM version 4.42 (via System Update) might solve the problem, but same thing happens and manually installation still doesn't work.  I also uninstalling Access Connections (which has given me other problems), rebooted, and tried loading both PM and PM Driver, but with the same results.  Something funny going on...
    I have ThinkPad 61p (6459-CTO) with 4GB RAM, running Vista Ultimate 64-bit with NIS 2009.  I have installed the most recent BIOS and have other up-to-date Lenovo software via System Update. 
    Any suggestions?
    Thanks

    I have tried several more things, including upgrading to Visual C++ 2008 in an attempt to get my system to install TV Power Manager 4.42 (or earlier versions).  I still get the same message when I attempt to install manually: "cannot run on this system". Same thing happens when trying to load an older version 4.20a that I found through the forum.
    I have been successful in loading the version that came pre-installed on my computer (found in SWTools folder), and that seems to work, though with very basic functionality.  It appears to be Version 2.11.
    I would really like to find a way to install a newer version (preferably 4.42), as it seems this is needed to run later versions of other TV software.  I have T61p (6459-CTO) running Vista Ultimate 64-bit, and the BIOS and drivers are all up to date, as per Lenovo site.
    Thanks for any advice.

  • Photo gallery module manage items description not working

    Hi. On this page I've got two photo galleries. For some reason the Description in the Manage Items tool only works some of the time. Seems to be quite random as to when it will/won't work. Is there a reason for this?
    Waitakeres Ranges Maps

    I'm having the same problem. Can you give me an idea of how this is possible using AJAX or point me at a tutorial?
    for every iweb photos page iweb generates an rss.xml file with it, the captions are kept in the rss.xml .
    so you can use ajax method to read the rss.xml and figure out what need to be manipulated.
    there is no tutorial of any kind for iweb ajax widgets, I have not seen any one yet to crack an iweb widgets (this forum or elsewhere); so you are on your own.
    that said you can hyperlink photos page captions and thumbnails with simple javascript (simple mapping lookup), but you still need to know javascript and iweb widgets.
    here is my simple javascript sample: http://temp.cyclosaurus.com/NoThumbnails/Photos.html
    thumbnails and captions are hyperlinked to apple, ggogle and yahoo.
    code is linked to the sample, you'll have to adapt it to your own needs.

  • Icloud manage storage link not working on my iphone 4s

    I need to manage my icloud storage, but the manage storage link on my iphone is not working. When I click on it, nothing happens. Can anyone help with this problem? I don't want to buy more storage if I can turn off some of my apps in icloud. Has anyone else had this problem? Thanks!

    Had the same problem recently (on an iPhone 4S, iOS 5.1.1). The phone couldn't back up to iCloud as the storage limit had been exceeded, and tapping "Manage Storage" in the iCloud settings didn't work: it just briefly showed a spinning wheel but I couldn't enter the Manage Storage screen. Looks like a bug.
    In the end I was able to solve it  via the iCloud settings on a laptop. Using this route, I removed the backup that was clogging the available 5GB free storage and was able to access Manage Storage again to tweak the settings. In my case this meant disabling iCloud backups of photos in the camera roll, which was the reason for the large size of the backup file in the first place.
    Here's what I did:
    1. Important step: first of all, make a backup of your phone in iTunes by connecting it to the computer and chosing the backup option in iTunes. You will delete the iCloud backup in step 3, so it's best to have another backup handy. It's not very likely your phone will crash in the short time it takes to complete these steps, but better safe than sorry.
    2. After making the full phone backup, I downloaded all the photos from the camera roll onto my computer and deleted them from the phone. There are different ways of doing this, on a Mac you can for instance use Image Capture. This step is not really necessary to get the backups working again as you will probably disable camera roll backups in step 3 anyway, but it's good to get into the habit of backing up photos on the computer regularly, rather than in iCloud. If you want to keep some photos on the phone as well, you can always copy them back from the computer onto the phone.
    3. Access iCloud storage management via the computer rather than the iPhone. Instructions: http://support.apple.com/kb/ht4847 > Backup > Deleting backups and turning off Backup for your device > Mac OS X (or Windows 8, Windows 7 and Vista). If you use a Windows computer and the iCloud control panel hasn't been installed yet, you can find it here http://www.apple.com/icloud/setup/pc.html.
    I don't think you can delete specific elements like the camera roll from the backup this way, you have to delete the whole thing. But you made another backup in step 1 so this isn't really a problem.
    4. On the iPhone, try to access Settings > iCloud > Storage & Backup > Manage Storage again - it should work now. In the next screen, choose your iPhone and you will get the Backup Options where you can switch backups on and off for different apps. It shows you how much storage each app takes, you will probably see that the Camera Roll is the largest so you may want to switch that off. Once you're happy with the settings, go back two screens to Storage & Backup and switch Icloud Backup back on (it was automatically switched off in step 3), and if you are on Wi-Fi, tap Back Up Now so it makes a new iCloud backup right away.
    That's all, hope it solves your problem.

  • Weblogic 10.3.6 managed servers are not working properly

    Hi,
    i am using weblogic 10.3.6. I have 6 managed server and one Admin server. I observed one thing that when i up Managed6 and run my application. In one of the java file i am using one jar file to fetch one class(Bussiness Object instance). For managed 6 the code is working fine. it gives me the same class file. but if i up any other managed server then i am getting the Impl of that class.
    can anyone help me out. Thanks in advance.

    Hi,
    You shouldn't have to edit the startup.properties manually.
    Try the following sequence:
    1. Shut down all managed servers;
    2. Change the property in the Admin Console;
    3. Restart the AdminServer;
    4. Start the managed servers and check the property;
    Make sure the managed server do not start in Independence Mode

  • Sync Manager Automatic Sync not work

    Hi,
    I have a zen vision m with the latest firmware. I'm using WMP beta with zencast and the latest sync manager.
    Everything is working great except the automatic sync.
    Zencast will download new podcasts fine, but the sync manager will often not be notified properly. I usually just restart the sync manager then it picks up on the changes needed for sync, but it will not automatically sync to the zen. Instead, a windows taskbar notification pops up telling "click here to begin sync".
    I have the Sync Manager configured for Automatic Sync (prefrences, Automatic sync is checked), but it doesn't seem to work.
    Am I missing something? Can the Sync Manager be configured to automatically sync my zencasts when I dock? Is there a conflict with having WMP setup for sync too?
    -beau

    No, i haven't. I just decided to li've with having to sync zencast manually by running sync daily from the taskmgr icon and to use mediamonkey to do my playlists, etc. Media Monkey is actually a quite capable media player.
    I may move to a Zune when that comes out for hopefully better software integration (sync) and a bigger screen. -beau

  • Energy Management conservation mode not working

    I ust bought the y50 about a month ago and ive updated the energy manager driver aswell but it seems that the "conservation mode" is not working for me. When i turn on conservation mode and close energy manager and open it back up again conservation mode is turned off. it seems that it wont even turn on at all. theres is no icon or notification saying that it is turned on. I try to turn it on but nothing happens. PLEASE HELP! :IM CRYINGG (My laptop is 24/7 plugged into the a/c and i dont want the battery life to die help </3)
    Moderator comment: Please refrain from bumping your thread(s) / post(s) more frequently than 3 days. Doing so, unfairly, pushes other members' threads downwards. Bumping post(s) removed.

    BUMPPPPPP , Comeon Lenovo is this all you can do? sit back and watch? jesus.

  • Management Console is not working from Data Services Designer

    Hi,
    Management Console was working fine from DataServices Designer.
    We have reconfigured Tomcat Weserver to a different port.   The Management Console in the DataServices Designer is still pointing towards the old port and not working. Please advise how to change the port settings for the Management Console in the DataService Designer.
    Thanks.
    Raj.

    from the Designer, click on tools menu, select Options
    In the Options window, expand Designer node and select Environment
    Select host:port for the Administrator under (Default Administrator for Metadata Reporting), it should list both old and new ManagementConsole port

Maybe you are looking for

  • How can I tell if my T60 has bluetooth?

    what info do I need to give?

  • Need quick help for printer that vanished

    My printer was giving me trouble (it wasn't printing when I asked it to); while monkeying around in the printer setup utility, I somehow managed to delete the printer (an Epson Stylus Color 740) from my system--so now my computer thinks I do not have

  • Prerequisites for Using Windows NTLM Authentication

    Hi, One of the prerequisites for using Windows NTLM Authentication, mentioned on help.sap.com documentation, is: - The user’s Web browser must be a Microsoft Internet Explorer This means that users not using Internet Explorer can’t authenticate using

  • Both side printing problem

    I use Jasper in Swing applications as a means for generating reports. When generating multiple pages report I set in the Printer Options "Print on boht sides/ Landscape" (rotation of the page along the left border of the paper). Jasper prints on two

  • Finder Trouble

    Last Monday, my iMac Intel Core Duo 2.4GH (bought late 2007), with 4GB RAM, suffered a weird breakdown.   Here are the symptoms: Finder seemed unable to generate thumbnails for documents and the like. Once you open a Finder window, the whole machine