Erase Cache From applicaction

Hi! How are you, i have a little problem.
I made an application that parse an xml that it is modify from my own application
The problem is that when i want to get the data from the xml after it is modified.
The xml it is stored in the cache and all the data that gets is no updated.
I attached the code i use to parse the xml
function getRequest(Pendiente:Boolean):Void
    var items:String = "";
    var Mostrar:Boolean;
    var getRequest:HttpRequest = HttpRequest
        location: "{url}CallData.xml";
        method:HttpRequest.GET
        onStarted: function()
            println("Empezo: {getRequest.method} on location: {getRequest.location}");
        onInput: function(input)
            try
                var examinar:PullParser = PullParser
                    //I DO AL THE PARSE
                examinar.parse();
            finally
                input.close();
        onDone: function()
            println("Termino: {getRequest.method} on location: {getRequest.location}");
    getRequest.setHeader(HttpHeader.EXPIRES, "0");
    getRequest.setHeader(HttpHeader.LAST_MODIFIED, "0");
    getRequest.setHeader(HttpHeader.CACHE_CONTROL, "no-cache, must-revalidate");
    getRequest.start();
I Can not make it work i hope you could help me
Sorry for my bad english
Edited by: 848997 on 31-mar-2011 10:51

Yes, if you delete the app and then reinstall the app the cache (if there is one) would be cleared.
Remember, the operating systems on the iPod (iOS) and Android are different.

Similar Messages

  • How do you erase email from "trash" folder???

    Is there some way to erase email from the "trash" folder beside having to delete each one singularly.  That means to get rid of email you have do each one TWICE.  On my I touch there is a button to erase all at once.  Not on PALM that I can find.
    Post relates to: Pre 2 p102eww (Verizon)
    This question was solved.
    View Solution.

    Thank you, when I did the on line check thing he couldn't tell me that for some reason.
    It was easier than I expected.

  • HT5622 I am the owner of my iPhone 4 and it had not been updating and allowing me to download apps. So I decided to do factory setting, before doing so I had backed up my phone on my computer then I had erased everything from my iphone. But now I want to

    I am the owner of my iPhone 4 and it had not been updating and allowing me to download apps. So I decided to do factory setting, before doing so I had backed up my phone on my computer then I had erased everything from my iphone. But now I want to start everything from the beginning, and on my setting my Apple ID is present however when I put my password in it doesn't let me log in. The message that I receive says that I would have to remove my Apple ID  as it will not let me log in with that I'd even though I am the original owner, I have tried  everything on find my iPhone as well, even there my Apple ID not showing on the devise.
    If anyone has had a similar experience could you please advise me on what to do,
    Thanks

    You must have the credentials that were used to turn on Find my iPhone on the device. Without them, you can not get past the activation lock.

  • HT201250 Is there a possibility to recover erased files from an external hard drive that was reformatted by the Time Machine?

    Is there a possibility to recover erased files from an external hard drive that was reformatted by the Time Machine?

    Basics of File Recovery
    Files in Trash
    If you simply put files in the Trash you can restore them by opening the Trash (left-click on the Trash icon) and drag the files from the Trash to your Desktop or other desired location.  OS X also provides a short-cut to undo the last item moved to the Trash -press COMMAND-Z.
    If you empty the Trash the files are gone. If a program does an immediate delete rather than moving files to the Trash, then the files are gone.  Recovery is possible but you must not allow any additional writes to the hard drive - shut it down. When files are deleted only the directory entries, not the files themselves, is modified. The space occupied by the files has been returned to the system as available for storage, but the files are still on the drive. Writing to the drive will then eventually overwrite the space once occupied by the deleted files in which case the files are lost permanently. Also if you save a file over an existing file of the same name, then the old file is overwritten and cannot be recovered.
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.

  • How to erase pics from nano?

    I have synched some photos to my iPod nano 1,2...but I dont know how to erase them from there...
    Anyone can help please?

    go to the ipod summary page in itunes, and go to the photos tab. uncheck the "sync photos" box or circle or whatever it is. then sync your ipod.

  • Clear wsdl cache from java

    hi ,
    I am trying to clear wsdl cache from java , some errors are coming,
    Please any one help me
    this is my code
    package bpeltest;
    import com.oracle.bpel.client.BPELProcessId;
    import java.util.Properties;
    import com.oracle.bpel.client.IBPELDomainHandle;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.ServerException;
    public class UnDeployBPELProcess {
    public static void main(String[] args) throws ServerException {
    UnDeployBPELProcess unDeployBPELProcess = new UnDeployBPELProcess();
    //Properties with BPEL server connection information
    Properties props = new Properties();
    props.put("orabpel.platform", "ias_10g");
    props.put("java.naming.factory.initial", "com.evermind.server.rmi.RMIInitialContextFactory");
    props.put("java.naming.provider.url", "opmn:ormi://EC3-VEDARRA:6005:home");
    props.put("java.naming.security.principal", "oc4jadmin");
    props.put("java.naming.security.credentials", "oracle1");
    props.put("dedicated.connection","true");
    //Get a locator in default domain
    Locator locator = new Locator("default","oracle1",props);
    //Get a handle to the domain
    IBPELDomainHandle iBPELDomainHandle = locator.lookupDomain();
    iBPELDomainHandle.undeployProcess(new BPELProcessId("default","MyUndeployedBPELProcess"));
    System.out.println("iBPELDomainHandle" + iBPELDomainHandle);
    iBPELDomainHandle.clearWSDLCache();
    compilation errors:
    C:\jdevstudio10131\jdk\bin\javaw.exe -client -classpath C:\jdevstudio10131\jdev\mywork\javatest\BPELTest\classes;C:\product\10.1.3.1\OracleAS_1\bpel\lib\orabpel.jar;C:\product\10.1.3.1\OracleAS_1\bpel\lib\orabpel-common.jar;C:\product\10.1.3.1\OracleAS_1\j2ee\home\lib\oc4j-internal.jar;C:\product\10.1.3.1\OracleAS_1\opmn\lib\optic.jar;C:\jdevstudio10131\j2ee\home\lib\ejb.jar -Dhttp.proxyHost=157.204.22.4 -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=*.2o7.net|32.85.*|chipsndip|157.204.*|localhost|127.0.0.1|*.wlgore.com|EC3-VEDARRA|tigger -Dhttps.proxyHost=157.204.22.4 -Dhttps.proxyPort=8080 -Dhttps.nonProxyHosts=*.2o7.net|32.85.*|chipsndip|157.204.*|localhost|127.0.0.1|*.wlgore.com|EC3-VEDARRA|tigger bpeltest.UnDeployBPELProcess
    Exception in thread "main" java.lang.Exception: Failed to create "ejb/collaxa/system/FinderBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/collaxa/system/FinderBean not found
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:52)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupFinderBean(BeanRegistry.java:337)
         at com.oracle.bpel.client.Locator.getFinder(Locator.java:920)
         at com.oracle.bpel.client.Locator.lookupDomain(Locator.java:228)
         at bpeltest.UnDeployBPELProcess.main(UnDeployBPELProcess.java:29)
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:82)
         at com.oracle.bpel.client.Locator.getFinder(Locator.java:926)
         at com.oracle.bpel.client.Locator.lookupDomain(Locator.java:228)
         at bpeltest.UnDeployBPELProcess.main(UnDeployBPELProcess.java:29)
    Caused by: java.lang.Exception: Failed to create "ejb/collaxa/system/FinderBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/collaxa/system/FinderBean not found
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:52)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupFinderBean(BeanRegistry.java:337)
         at com.oracle.bpel.client.Locator.getFinder(Locator.java:920)
         at com.oracle.bpel.client.Locator.lookupDomain(Locator.java:228)
         at bpeltest.UnDeployBPELProcess.main(UnDeployBPELProcess.java:29)
         at com.oracle.bpel.client.util.BeanRegistry.lookupFinderBean(BeanRegistry.java:351)
         at com.oracle.bpel.client.Locator.getFinder(Locator.java:920)
         ... 2 more
    Process exited with exit code 1.
    and one more
    where we find thiis value
    "java.naming.factory.initial"= "com.evermind.server.rmi.RMIInitialContextFactory"
    Regards
    janardhan

    I think there is error with this line in code
    props.put("java.naming.provider.url", "opmn:ormi://EC3-VEDARRA:6005:home");
    Please see the post for details
    http://oraclebpelindepth.blogspot.com/2008/08/bpel-context-properties-for-client-api.html
    The value should be
    props.put("java.naming.provider.url", "opmn:ormi://EC3-VEDARRA:6005:home/orabpel");
    Every Little Helps
    Kalidass Mookkaiah
    http://oraclebpelindepth.blogspot.com/

  • I recently bought a used iPod touch generation 5 and reset it (erased everything from it because the previous owner left a passcode on it) and I had to enter my language,wi-fi stuff, and then it said "Activate iPod" I don't know the owners info! Help?

    I recently bought a used iPod touch generation 5 and reset it (erased everything from it because the previous owner left a passcode on it) and I had to enter my language,wi-fi stuff, and then it said "Activate iPod" This iPod is currently linked to an Apple ID (c*****@k*****.net). Sign in with the Apple ID that was used to set up this iPod. The man who sold it to me said he bought it from another guy and sold it to me..So, I don't know what to do! I searched it up and it said you could go to iCloud and iTunes, but It's not working for me. Please help!!

    A little more information:
    You are running against the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    If you can't get this done
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    you have a thin brick. I suspect your iPod was stolen or lost. I would turn it into the police since it is worthless to you if you can't get the previous owner to remove from their account

  • How can I erase songs from imatch without erasing them from the playlist ?

    How can I erase songs from imatch without erasing them from the playlist ?

    punzete wrote:
    I can't do it that way. I erase these songs from the iTunes Library, but when I sycronize the iPhone, all these songs are copied again to the Library. Isn't there any way to stop that? Everything I buy on iTunes Store through my iPhone cannot be erased from the iPhone?
    WHY can't you do it the way 100 million people do it?

  • Erasing videos from iTunes without losing them on iPod

    hey, i got a 30g 5.5, ive put lots of movies on it using iTunes, now my problem is this, i want to erase the movies from my computer hard disc and iTunes library, but not from my iPod, when i do erase them from my PC hardrive they get erased from the iPod on next sync =( !HELP!

    In order to do this, you need to set your iPod to manage the iPod content manually.
    This will allow you to store stuff of the iPod without the need to keep it on your computer.
    I hope you have a back up of these movies?

  • I accidently somehow erased iphoto from my computer!! i really need help on how to get it back without having to buy it! please help me !

    I somehow erased iphoto from my computer when i was clearing out all unwanted pictures fromt he all images folder , i have no idea what i did, my computer went from 83 g left to 103gs now so i'm panicking !!
    please help me i have no idea on what to do!

    Did you erase iPhoto (an application in your applications folder), the iPhoto library (a database file in yoru pictures folder) or images inside of the iPhoto library which will cause iPhoto to not operate correctly?
    If you deleted images inside of the iPhoto library using the all images display (it is not a folder but a display of all image photos on yoru computer) and have emptied the trash then your optiopns are very simple - restore from your backup prior to deleting the images, purcshase file recovery software like file savage for one - http://subrosasoft.com/OSXSoftware/index.php?main_page=product_info&products_id= 1 - have a file recovery company recover your files or go forward without them.
    LN

  • How can I erase text from a PDF?

    how to erase text from a pdf

    Hi iggybuskus2,
    If you want to edit text in a PDF, you'll need to use Acrobat. You can download a free trial of Acrobat from www.adobe.com/products/acrobat.html, if you'd like to give it a try.
    Best,
    Sara

  • HT204022 How to erase photos from photo stream on my iPhone?

    How to erase photos from photo stream on my iPhone?

    Open you photo stream photos in the thumbnail view, tap Edit, tap all the photos you want to delete, then tap Delete.  This will delete them from your phone and from your photo stream and any other devices that are connected to your photo stream.

  • How to erase photos from photo stream?

    How can I erase photos from the photo stream album in my iphone?

    You cannot delete individual photos from PhotoStream, though you can reset it, effectively deleting all the photos from the server.
    PhotoStream is purely a conduit for sending photos taken on one device to all the others automatically. Photos there are deleted after 30 days on the assumption that by then they will have been synced to all devices. There is no access to the photos on the server.

  • How to erase apps from a iPad

    How to erase apps from a iPad

    Press and hold down the app until a black x appears then hit the x then choose delete

  • While erasing memories from iPhone 4, the phone gets switched off and can't turn on back

    while erasing memories from iPhone 4, the phone gets switched off and can't turn on back. Please help.

    What exactly do you mean by "erasing memories"?

Maybe you are looking for

  • Hot Synch with Outlook Synchs mail only

    I have an M500 and the hotsynch works and gives all OK messages on all the items of outlook but the data is not on the handheld for anything but the mail. My system is windows XP Pro and Outlook 2003. I have downloaded the newest Palm One desktop 4.1

  • Xdoclet for Generate CMR Fileds orion-ejb-jar

    Does anybody try to use xdoclet to generate orion-ejb-jar.xml with ejb relation? i tried with @orion.persistence but it's not generate fine. thanks for any advice.

  • CAN I LOCK A DVD AFTER IT'S BEEN BURNDED SO NO-ONE ELES CAN COPY IT?

    Can you lock a DVD after it has bee burned?

  • Problems for lunar birthday

    Dear SAP Users I have some problems for employee to have a birthday at 29/02/1982 as a lunar calendar. I know it's natural in SAP to use a solar calendar. But I need to respect our emloyee's individual information. Registeing his birthday to program,

  • Creating Custom Swatches

    Is there a way in Illustrator CS3 or CS4 to add individual swatches or a group of swatches that have specific names for my workflow into the swatches panel? I have found that I can do this with a new document with the "New Document Profile" and also