I am unable to delete the files

Hi all,
I am totally new with this iPad stuff, so I hope that someone could help me a bit. I bought the software which is called BUZZ Player (plays videos and subtitles). So, I installed the software and upload a few videos (avi's) and subtitle's (.idx and .sub) via iTunes. Then I start the player and everything worked perfectly except I did not see any subtitles.
Then I decided to remove those files and upload something else. Well, I manage to delete those avi's, but not the subtitles, because BUZZ player does not show them. When I look at the iTunes (My pad -> Apps -> File Sharing -> BUZZ player) those subtitle files are still there, but there's no way to delete them but only upload more stuff.
So, my question is that is there any way to get rid off those files?
Oh, I almost forgot to mention that iPad search can not find them either.
Thanks in advance!

Hi there eizi, and welcome to apple discussions.
Just click on one of the files in itunes, and press backspace, or delete on your keyboard. You will receive a warning, and then you can delete.
I don't see why apple do not put a delete button on there!
Hope this helps.
< Edited by Host >

Similar Messages

  • Unable to delete the file. (Some times deletes and sometime fails to delet)

    Please help me in deleting the file from the temporary location .
    Below is my code
    //Append the session is with filename as there is possibility of having same name of file.
    try{
    boolean isMultipart     = ServletFileUpload.isMultipartContent(request);
              if (isMultipart)
                   // Create a factory for disk-based file items
                   factory = new DiskFileItemFactory();
                            // Create a new file upload handler
                   upload = new ServletFileUpload(factory);
                   // Parse the request
                      List /* FileItem */ items = upload.parseRequest(request);
                           // Process the uploaded items
                   Iterator iter = items.iterator();
    if(strInputFileName.lastIndexOf("\\")== -1)
         strInputFileName = (String)mPropBag.get("TempUploadDirM") + strInputFileName;
      }else
         strInputFileName = (String)mPropBag.get("TempUploadDir") +   strInputFileName.substring(strInputFileName.lastIndexOf("\\"));
    strInputFileName = strInputFileName + "_" + request.getSession().getId();
    uploadedFile     = new File(strInputFileName);
    item.write(uploadedFile);  //// I am Writing the file in this location appened with the session Id because there might //be a  possibility of having same name of file.
    catch(......)
    finally
         uploadedFile.delete();
         uploadedFile = null;
         upload = null;
    }I am unable to delete the file from the temporary location
    some times it is deleting and some times it is not deleting.. I have also tried ...deleteOnExit();

    Make sure you've got no other processes holding onto it (Windows Explorer, for instance) and that you've closed any streams involved with the file. If that fails, try calling System.gc() just before deleting the file. This is a workaround for a bug in certain JVMs on Windows machines

  • Unable to delete the files from CSV volumes on HyperV Cluster

    Hello There,
    I have a HyperV failover cluster with CSV Volumes recently i moved some of the VMs to another cluster.
    VMs are moved but i still have the VM files on the CSV volumes which are occupying the disk space i tried to delete the VHD files / VM folders which are moved but it doesn't delete the files, please suggest.
    This file when i browse it from  a server and delete the file it disappears but when i revisit the folder i find the files still on the disk, i did try to delete the files directly
    from the server through command line as it is running server core.
    Regards,
    Maqsood
    Maqsood Mohammed Senior Systems Engineer MCITP-Enterprise Admin & ITILv3 Foundation Certified

    HyperV is good about not allowing you to delete files while they are still in use. You can try to reboot host, make sure all parts if your VM moved to the new location. If that VHD is associated with a VM on any host you will not be able to delete
    it. Delete the VM's that may have links to it. Not knowing you configuration could it be a parent disk?  Be carful because if you can't delete it it's likely in use, I've see VHD merge after you delete a VM too preventing you from deleting the files.
    You may just want to wait a day or so and see if it free's up. If it is doing a merge reboot will pause and restart it so you won't be able to remove until the merge is done, once you delete a VM and a merge starts there is no way to tell if it's merging,
    watch the size and timestamp of the VHD is it changing if it is something is using it.

  • Unable to delete a file on application server

    Hello Experts,
    I have gone through  couple of post and sample nothing worked that's the reason Iam posting a query here.
    Please help me with your valuable suggestions.
    I am reading a file from the application server running a BDC program to update my ztable all works fine.
    now i wanted to move this file to another folder thats too working perfectly but now when i try deleting the older one it is not getting deleted.
    I have closed the dataset and checked the authorization that is not a concern but still it is not getting deleted.
    I have pasted the code below.
    For READ and CLOSE dataset it returns subrc as 0 but after delete it returns 4.
    data : mess type string.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT message mess.
    IF SY-SUBRC = 0.
    DO.
        READ DATASET ld_file INTO wa_string.
        if sy-subrc eq 0.
            append wa_string to it_string.
            clear wa_string.
        else.
            exit.
        endif.
      enddo.
      close dataset ld_file.
      delete dataset ld_file.
    else.
    WRITE 'Unable to open source file to move the content'.
    endif.
    Regards,
    Ranjith N

    Hello Mr Ghode,
    Thaking you for your response on my query.
    as you said to handle exception this is what i have done.
    kindly verify the same would be of great help.
    still iam unable to delete the file.  
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF SY-SUBRC = 0.
        DO.
          READ DATASET ld_file INTO wa_string.        "LV_LINE is variable to hold line contents being read
          if sy-subrc eq 0.
            append wa_string to it_string.
            clear wa_string.
          else.
            exit.
          endif.
      enddo.
      close dataset ld_file.
      if sy-subrc eq 0.
      try.
        delete dataset ld_file.
        catch CX_dynamic_check into t_ref.
        err_txt = t_ref->get_longtext( ).
    endtry.
    endif.
    endif.
    Regards,
    Ranjith N

  • Stroring certain details in a file, But Could not delete the File.

    I am storing certain details using serialization. But when i decide to delete the File i am unable to delete the File. I am attaching a sample Code to understand my problem.
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.io.Serializable;
    public class SerialDemo implements Serializable {
      public static void main(String[] args) {
        try {
            FileOutputStream f = new FileOutputStream("./test.proj");
            ObjectOutputStream s = new ObjectOutputStream(f);
            SerialDemo d = new SerialDemo(5);
            s.writeObject(d);
            s.flush();
            FileInputStream f = new FileInputStream("./test.proj");
            ObjectInputStream s = new ObjectInputStream(f);
            SerialDemo d = (SerialDemo) s.readObject();
            System.out.println(d.getIndex());
            s.close();
            f.close();
            System.out.println("SerialDemo.getVal() is: " + d.getVal());
          File file = new File("./test.proj");
          System.out.println(file.delete());
        } catch (Exception e) {
          e.printStackTrace();
      int test_val = 7; // value defaults to 7
      public SerialDemo() {
        super();
      public SerialDemo(int x) {
        super();
        test_val = x;
      public int getVal() {
        return test_val;
      private int idx = 2;
      public int getIndex() {
        return idx;
      static final long serialVersionUID = -4717603181820250815L;
    }

    Glad I could help. I recommend you look into using FindBugs, it will warn you of this kind of thing. Also change the way you open/close streams to:
    YourStream stream = null;
    try {
       stream = new YourStream();
       // read/write from
    } finally {
      try {
         stream.close();
      } catch( IOException ioe ) {
          // Log the IOE. Or use the IOUtils.quiteClose from Commons IO.
    }As otherwise you could leave the stream open, i.e. if the read() method throws an IOE.

  • I followed your help directions on "Corrupt extension files" under "Unable to install add-ons", foolishly deleting the files you told me to. Now firefox won't open. I tried reinstalling firefox but it still won't open. Now what do I do?

    I was trying to install the SEOQuake add on. After clicking install Firefox would hang up saying the script had timed out and asking if I want to stop it or continue. Didn't matter which option I chose nothing would happen. The only way to stop it was to close Firefox and restart. Tried restarting the computer. Still wouldn't install. Tried installing the Outwit add on and got the same error leading me to conclude it was a problem with Firefox, not the add on. I found this help page <http://support.mozilla.com/en-US/kb/Unable+to+install+add-ons?s=addons+won't+install&as=s> and did everything it told me to. Finally at the end I got to "Corrupt extension files". I foolishly deleted the files you told me to and now Firefox won't even start! I tried reinstalling Firefox and it still won't start. Tried restarting the computer. I have no idea how to get back to where I was let alone install the add ons I wanted to install. Please help. At this point I'd just be happy to be able to get Firefox working.

    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    Create a new profile as a test to check if your current profile is causing the problems.<br />
    See [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting&#58; Make a new profile]]
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)<br />
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Unable to delete a file from the downloads list of...

    i am an e7 user. I was recently downloading a couple of videos at the same time when my phone hanged and had to be restarted. When it did restart, most of the files had to be redownloaded. All except one. The downloads list claims that the file has been saved. The video plays bt isnt completely downloaded.
    The problem now is that i cant delete the video through the file manager. The error msg says web:already in use.. When i tried deleting the file from the downloads list of the web browser, there was a similar msg.
    So how do i remove this file from my phone??
    I tried downloading a couple of file managing softwares bt that didnt really help....
    Solved!
    Go to Solution.

    Retry after clearing the Browser Cache.. If that does not solve.. Reboot the phone and try again...

  • Unable to delete a file

    I'm unable to delete a a file from the filesystem.
    String fileName = "dummy.xml"
    boolean delete = (new File(fileName)).delete();It's not deleting this file from the filesystem.

    Can anything else delete that file? Is the fileopen?
    I don't know what you mean by can anything else
    delete the file.I mean can you delete the file from the command line, a window, whatever. Is it just Java's delete that is having this problem or is it the file system?
    No this is not opened/or use.How do you know?
    DO I have to specify a path for this. Certainly. How else would Java know which file to delete?
    If yes, please read on ........
    the path where this xml file resides could by
    anywhere in the file system. If it is how do I access
    it since there is no specific location (it is left to
    the user's choise to save the file anywhere he
    wants)Keep the user's choice.

  • HT4847 I am unable to delete the last backup from icloud, i checked my all device setting but it still say "cannot delete icloud this time because it is in use,"Please tell me what should i do.

    I am unable to delete the last backup from icloud, i checked my all device setting but it still say "cannot delete icloud this time because it is in use,"Please tell me what should i do                             

    It still didn't work...
    Within this commonfiles\apple folder, there is only one folder, labeled "Internet Services." Within this folder, there are 6 folders, labeled:
    APLZOD.resources
    BookmarkDAV_client.resources
    CoreDAV.resources
    iCloud.resources
    iCloudServices.resources
    ShellStreams.resources
    Within all but CoreDAV and BookmarkDAV_client, there are multiple different folders, all labeled starting with a two letter (acronym I believe, for different languages) then .lproj (for example, a folder is labeled "ar.lproj".
    In each of the folders of APLZOD.resources, there is a file labeled "APLZODlocalized.dll."
    In all of the folders containing the multiple .lproj folders, there are likewise "name"localized.dll files contained.
    In the BookmarkDAV_client and Core DAV folders, they each contain only one file, "Info.plist"
    I attempted to delete all of these files, and still, the FileAssassin could not delete them. I unlocked one of them for instance, and I tried to delete the file myself (thru windows explorer and just clicking delete), and I still had the same issue of coming eventually to the window requesting me to "try again" to have permission.
    What can I do?? I'd like to avoid Unlocker, but if it really is a reliable and SAFE program, and someone knows a SAFE place to download it from, I'd appreciate it very much so!!
    thanks!!

  • I cannot fully uninstall iTunes because I am unable to delete the commonfiles\apple folder

    I received error 42404 after updating to itunes 11, and have attempted to follow the instructions at http://support.apple.com/kb/HT1925. However, my Vista will not let me delete the commonfiles\apple folder. How can I delete it?
    The day of iTunes 11's release, I updated my iTunes, then opened up the prgm to take a look at it. I was immediately brought to the attention that the program didn't install correctly (with error 42404), so I uninstalled iTunes and reinstalled it, with the same error coming up. I continued to use iTunes and see if i could ignore the issue, however I discovered I was unable to log into my itunes acount on the store.
    So I followed the isntructions at http://support.apple.com/kb/HT1925 correctly, deleted the remaining files/folders, except I am still unable to delete the C:\Program Files\Common Files\Apple\ folder. I attempt to delete it, it asks me for permission to do so, I say continue, and even after I give it permission to delete the folder, it instantly says to me, "You need permission to perform this action," and it gives me the options to cancel or try again (which immediately brings this same window up again asking me to try again).
    I've done plenty of research for the past two days, from attempting to delete the individual files within this folder via the Command Prompt, using Safe Mode, and many other options, yet nothing works. I've seen many forums advise using a program called "Unlocker," however, anyone googling the program will find that it is offered from a plethora of various sites, and I honestly dont trust programs from these sites.
    Is there ANYTHING anyone knows to do for an issue like this? All I need is that one folder deleted, and all my problems are gone!

    It still didn't work...
    Within this commonfiles\apple folder, there is only one folder, labeled "Internet Services." Within this folder, there are 6 folders, labeled:
    APLZOD.resources
    BookmarkDAV_client.resources
    CoreDAV.resources
    iCloud.resources
    iCloudServices.resources
    ShellStreams.resources
    Within all but CoreDAV and BookmarkDAV_client, there are multiple different folders, all labeled starting with a two letter (acronym I believe, for different languages) then .lproj (for example, a folder is labeled "ar.lproj".
    In each of the folders of APLZOD.resources, there is a file labeled "APLZODlocalized.dll."
    In all of the folders containing the multiple .lproj folders, there are likewise "name"localized.dll files contained.
    In the BookmarkDAV_client and Core DAV folders, they each contain only one file, "Info.plist"
    I attempted to delete all of these files, and still, the FileAssassin could not delete them. I unlocked one of them for instance, and I tried to delete the file myself (thru windows explorer and just clicking delete), and I still had the same issue of coming eventually to the window requesting me to "try again" to have permission.
    What can I do?? I'd like to avoid Unlocker, but if it really is a reliable and SAFE program, and someone knows a SAFE place to download it from, I'd appreciate it very much so!!
    thanks!!

  • Unable to delete the BDS attachment

    Hi,
    I am using the FM BDS_BUSINESSDOCUMENT_CREA_TAB in my ztable to attach file to the BO. I am able to attach the file and open it from the document but i am unable to delete the same document.
    Dd anyone know the solution? Pls suggest.
    This is my code:
      CALL METHOD cl_gui_frontend_services=>gui_upload
        EXPORTING
          filename                = lv_file
          filetype                = 'BIN' "Binary Mode
        IMPORTING
          filelength              = lv_filelength
        CHANGING
          data_tab                = lt_data
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          not_supported_by_gui    = 17
          error_no_gui            = 18
          OTHERS                  = 19.
      CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
        IMPORTING
          own_logical_system = lv_logical_system.
      CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'
        EXPORTING
          full_name     = lv_file
        IMPORTING
          stripped_name = lv_filename
          file_path     = lv_filepath
        EXCEPTIONS
          x_error       = 1
          OTHERS        = 2.
      SPLIT lv_filename AT '.' INTO lv_strip lv_extension.
      CALL FUNCTION 'SDOK_MIMETYPE_GET'
        EXPORTING
          extension = lv_extension
        IMPORTING
          mimetype  = lv_mimetype.
      ls_files-doc_count = '1'.
      ls_files-comp_count = '1'.
      MOVE lv_filename TO ls_files-filename.
      MOVE lv_filepath TO ls_files-directory.
      APPEND ls_files TO lt_files.
      CLEAR ls_files.
      ls_components-doc_count = '1'.
      ls_components-comp_count = '1'.
      ls_components-mimetype = lv_mimetype.
      ls_components-comp_size = lv_filelength.
      ls_components-comp_id   = lv_filename.
      APPEND ls_components TO lt_components.
      CLEAR ls_components.
      ls_signature-doc_count = '1'.
      ls_signature-doc_id = space.
      ls_signature-doc_ver_no = 1.
      ls_signature-doc_var_id = 1.
      ls_signature-doc_var_tg = 'OR'.
      ls_signature-comp_count = 1.
      APPEND ls_signature TO lt_signature.
      ls_signature-prop_name = 'DESCRIPTION'.
      ls_signature-prop_value = lv_filename.
      APPEND ls_signature TO lt_signature.
      ls_signature-prop_name = 'LANGUAGE'.
      ls_signature-prop_value = sy-langu.
      APPEND ls_signature TO lt_signature.
      ls_signature-prop_name  = 'BDS_DOCUMENTTYPE'.
      ls_signature-prop_value = 'ATTACHMENT'.
      APPEND ls_signature TO lt_signature.
    case lv_extension.
    when 'txt'.
      ls_signature-prop_name  = 'BDS_DOCUMENTCLASS'.
      ls_signature-prop_value = 'TXT'.
      APPEND ls_signature TO lt_signature.
    when 'pdf'.
      ls_signature-prop_name  = 'BDS_DOCUMENTCLASS'.
      ls_signature-prop_value = 'PDF'.
      APPEND ls_signature TO lt_signature.
    when 'xls'.
      ls_signature-prop_name  = 'BDS_DOCUMENTCLASS'.
      ls_signature-prop_value = 'XLS'.
      APPEND ls_signature TO lt_signature.
    endcase.
      CLEAR ls_signature.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = P_QMNUM
          IMPORTING
            output = lv_qmnum.
      move '005000011781' to lv_object_key.
    MOVE '0000000402' TO lv_object_key.
      CALL FUNCTION 'BDS_BUSINESSDOCUMENT_CREA_TAB'
        EXPORTING
          logical_system  = lv_logical_system
          classname       = 'BUS2088'
          classtype       = 'BO'
          object_key      = lv_object_key
          binary_flag     = 'X'
        TABLES
          signature       = lt_signature
          components      = lt_components
          content         = lt_data
        EXCEPTIONS
          nothing_found   = 1
          parameter_error = 2
          not_allowed     = 3
          error_kpro      = 4
          internal_error  = 5
          not_authorized  = 6
          OTHERS          = 7.
    Best Regards,
    Pavan Jhawar.

    Hello Francois,
    Thanks for the reply. I guess ur code which u have metioned to check is not pasted. Can u reply back with the code?
    Regards,
    Pavan Jhawar.

  • I am not able to display or change the file after deleting the file

    Hi All,
    I am checking in the document to content category while creating the DIR.
    I tried to delete the file on my desktop and after i am unable to open the file in CV02N,It gives the below error:
    Error while executing "C:\
    Firdosi\Desktop\gg.txt"
    I changed the settings in define workstation applications also and i ticked on Data check of.
    Please advice.
    Muzamil

    Hi Muzamil,
    The error is occuring because you have not checked-in the document before deleting. First you need to save the DIR and then you can delete the file from your desktop. Then only SAP DMS can retrieve the file from content server and display on screen.
    If you have only selected the file which is not checked-in means DIR not saved. And suddenly you tried to delete the original file from desktop. It means the recod is not saved in SAP DMS and before that you have tried to delete it.
    This is standard behaviour and such type of files can't be retrieved from content serever as it's original is not saved properly i.e. checked-in.
    Hope this will resolve the query.
    Regards,
    Ravindra

  • Unable to find the file NavGuide.htm

    I installed some extensions yesterday, and promptly uninstalled them again.  Now I am getting the following message:
    Unable to find the file NavGuide.htm in the Confirutration/Floaters directory.  The floater will not be shown.
    Any suggestions on what config file I need to clean up that removing the extension didn't clean up for me?

    Well, Adobe support got back to me with a quick and easy solution to reset the configuration
    settings:
    1. Quit Dreamweaver.
    2. Rename the Configuration folder in the "Users\[user]\AppData\Roaming\Adobe\Dreamweaver CS4\(installation language)\" folder.
    3. Open regedit and delete the whole "HKEY__CURRENT_USER\Software\Adobe\Dreamweaver CS 4" key.
    4. Restart Dreamweaver and it will be like a new installation.
    This would obviously loose any other configuration, but would also work to fix any other extension clean up issues.  The nice thing was that the extension manager still showed my old extension as installed, just not active so I didn't have to redownload them.

  • Oralce B2B 10g unable to delete the xml from ftp folder

    Hi,
    Oracle B2B is polling in to a ftp folder which is located on different IP.
    After picking-up the xml from this folder, b2b should delete the xml but, it is unable to delete the xml.
    and as a result same xml is picked-up multiple times. could you please help us here?
    Regards

    Manually I am able to delete the xml from thr FTP folder
    Also below is the text of b2b-idc log generated
    2012.06.06 at 13:46:00:296: B2BStarter thread: (DEBUG) TransportProperties.TransportProperties():markerbasedpoll=false;file.receiver.wallet_location=/etc/ORACLE/WALLETS/ows/ewallet.p12;file.receiver.polling_interval=5;file.receiver.path=/wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound;file.receiver.marker=false;marker=false;ccc=false;filename_separator=-;file.receiver.channel_mask=None;port=21;file.receiver.minimum_age=0;filename_format=%TO_PARTY%-%SERVICE%-%ACTIONNAME%-%INREPLYTO_MSG_ID%.xml;file.receiver.van=false;keep_connections=false;file.sender.channel_mask=None;file.receiver.user=gsb2bdA;file.receiver.archive_dir=null;file.receiver.markerbasedpoll=false;file.receiver.password=******;file.receiver.preserve_filename=false;transport_callout_waittime=30;preserve_filename=false;file.receiver.keep_connections=false;file.receiver.ccc=false;van=false;polling_interval=5;
    2012.06.06 at 13:46:00:336: B2BStarter thread: (DEBUG) initialize TransportReceiver: [PG_Transport_Server_new < ftp > < CIT >]
    2012.06.06 at 13:46:00:338: B2BStarter thread: (DEBUG) FileReceiver.init() started ....
    2012.06.06 at 13:46:00:375: B2BStarter thread: (DEBUG) FTPAgent.login(): Enter
    2012.06.06 at 13:46:00:377: B2BStarter thread: (DEBUG) Host name is 'hwspxv006'.
    2012.06.06 at 13:46:00:484: B2BStarter thread: (DEBUG) Host hwspxv006 FTP command: USER gsb2bdA
    2012.06.06 at 13:46:00:486: B2BStarter thread: (DEBUG) FTP Command: USER, reply:
    331 Password required for gsb2bdA.
    2012.06.06 at 13:46:00:488: B2BStarter thread: (DEBUG) Host hwspxv006 FTP command: PASS
    2012.06.06 at 13:46:00:903: B2BStarter thread: (DEBUG) FTP Command: PASS, reply:
    230-Please read the file README-btwlutils.txt230- it was last modified on Wed Jul 1 17:09:58 2009 - 1071 days ago230 User gsb2bdA logged in.
    2012.06.06 at 13:46:00:908: B2BStarter thread: (DEBUG) FTPAgent.login(): Exit
    2012.06.06 at 13:46:00:910: B2BStarter thread: (DEBUG) Disconnecting from hwspxv006
    2012.06.06 at 13:46:00:979: B2BStarter thread: (DEBUG) Host hwspxv006 disconnected.
    2012.06.06 at 13:46:01:003: B2BStarter thread: (DEBUG) FileReceiver.init() completed.
    2012.06.06 at 13:46:01:004: Thread-13: (DEBUG) FTPAgent.login(): Enter
    2012.06.06 at 13:46:01:006: Thread-13: (DEBUG) Host name is 'hwspxv006'.
    2012.06.06 at 13:46:01:077: Thread-13: (DEBUG) Host hwspxv006 FTP command: USER gsb2bdA
    2012.06.06 at 13:46:01:079: Thread-13: (DEBUG) FTP Command: USER, reply:
    331 Password required for gsb2bdA.
    2012.06.06 at 13:46:01:080: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASS
    2012.06.06 at 13:46:01:356: Thread-13: (DEBUG) FTP Command: PASS, reply:
    230-Please read the file README-btwlutils.txt230- it was last modified on Wed Jul 1 17:09:58 2009 - 1071 days ago230 User gsb2bdA logged in.
    2012.06.06 at 13:46:01:357: Thread-13: (DEBUG) FTPAgent.login(): Exit
    2012.06.06 at 13:46:01:359: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASV
    2012.06.06 at 13:46:01:361: Thread-13: (DEBUG) FTP Command: PASV, reply:
    227 Entering Passive Mode (147,149,200,111,175,184)
    2012.06.06 at 13:46:01:362: Thread-13: (DEBUG) Passive: ip = 147.149.200.111, port = 44984
    2012.06.06 at 13:46:01:364: Thread-13: (STATUS) Connecting to hwspxv006:44984
    2012.06.06 at 13:46:01:366: Thread-13: (DEBUG) Host hwspxv006 FTP command: NLST //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound
    2012.06.06 at 13:46:01:368: Thread-13: (DEBUG) FTP Command: NLST, reply:
    150 Opening ASCII mode data connection for file list.
    2012.06.06 at 13:46:01:375: Thread-13: (DEBUG) Disconnecting from hwspxv006
    2012.06.06 at 13:46:01:377: Thread-13: (DEBUG) Host hwspxv006 disconnected.
    2012.06.06 at 13:46:01:380: Thread-13: (DEBUG) [IPT_FileRecMonitorProcessFile] Processing file BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml in transport layer.
    2012.06.06 at 13:46:01:381: Thread-13: (DEBUG) FTPAgent.login(): Enter
    2012.06.06 at 13:46:01:383: Thread-13: (DEBUG) Host name is 'hwspxv006'.
    2012.06.06 at 13:46:01:447: Thread-13: (DEBUG) Host hwspxv006 FTP command: USER gsb2bdA
    2012.06.06 at 13:46:01:448: Thread-13: (DEBUG) FTP Command: USER, reply:
    331 Password required for gsb2bdA.
    2012.06.06 at 13:46:01:450: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASS
    2012.06.06 at 13:46:01:726: Thread-13: (DEBUG) FTP Command: PASS, reply:
    230-Please read the file README-btwlutils.txt230- it was last modified on Wed Jul 1 17:09:58 2009 - 1071 days ago230 User gsb2bdA logged in.
    2012.06.06 at 13:46:01:731: Thread-13: (DEBUG) FTPAgent.login(): Exit
    2012.06.06 at 13:46:01:732: Thread-13: (DEBUG) Host hwspxv006 FTP command: CWD //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound
    2012.06.06 at 13:46:01:771: Thread-13: (DEBUG) FTP Command: CWD, reply:
    250 CWD command successful.
    2012.06.06 at 13:46:01:773: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASV
    2012.06.06 at 13:46:01:775: Thread-13: (DEBUG) FTP Command: PASV, reply:
    227 Entering Passive Mode (147,149,200,111,72,215)
    2012.06.06 at 13:46:01:776: Thread-13: (DEBUG) Passive: ip = 147.149.200.111, port = 18647
    2012.06.06 at 13:46:01:778: Thread-13: (STATUS) Connecting to hwspxv006:18647
    2012.06.06 at 13:46:01:787: Thread-13: (DEBUG) Host hwspxv006 FTP command: TYPE I
    2012.06.06 at 13:46:01:789: Thread-13: (DEBUG) FTP Command: TYPE, reply:
    200 Type set to I.
    2012.06.06 at 13:46:01:790: Thread-13: (DEBUG) Host hwspxv006 FTP command: RETR BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml
    2012.06.06 at 13:46:01:793: Thread-13: (DEBUG) FTP Command: RETR, reply:
    150 Opening BINARY mode data connection for BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml (2257 bytes).
    2012.06.06 at 13:46:01:796: Thread-13: (DEBUG) Disconnecting from hwspxv006
    2012.06.06 at 13:46:01:798: Thread-13: (DEBUG) Host hwspxv006 disconnected.
    2012.06.06 at 13:46:01:834: Thread-13: (DEBUG) Conversion of file BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml to TransportMessage is completed.
    2012.06.06 at 13:46:17:355: Thread-13: (DEBUG) Move file to archive null
    2012.06.06 at 13:46:17:356: Thread-13: (DEBUG) FileSourceMonitor.moveFile(MessageOrigin): begin to move BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml in //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound to null
    2012.06.06 at 13:46:17:359: Thread-13: (DEBUG) Host name is 'hwspxv006'.
    2012.06.06 at 13:46:17:462: Thread-13: (DEBUG) Host hwspxv006 FTP command: USER gsb2bdA
    2012.06.06 at 13:46:17:464: Thread-13: (DEBUG) FTP Command: USER, reply:
    331 Password required for gsb2bdA.
    2012.06.06 at 13:46:17:466: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASS
    2012.06.06 at 13:46:18:051: Thread-13: (DEBUG) FTP Command: PASS, reply:
    230-Please read the file README-btwlutils.txt230- it was last modified on Wed Jul 1 17:09:58 2009 - 1071 days ago230 User gsb2bdA logged in.
    2012.06.06 at 13:46:18:055: Thread-13: (DEBUG) Host hwspxv006 FTP command: CWD //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound
    2012.06.06 at 13:46:18:081: Thread-13: (DEBUG) FTP Command: CWD, reply:
    250 CWD command successful.
    2012.06.06 at 13:46:18:083: Thread-13: (DEBUG) Host hwspxv006 FTP command: RNFR //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound/BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml
    2012.06.06 at 13:46:18:084: Thread-13: (DEBUG) FTP Command: RNFR, reply:
    350 File exists, ready for destination name
    2012.06.06 at 13:46:18:086: Thread-13: (DEBUG) FTPClient.renameFrom(): 350 File exists, ready for destination name
    2012.06.06 at 13:46:18:087: Thread-13: (DEBUG) Host hwspxv006 FTP command: RNTO null/BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml
    2012.06.06 at 13:46:18:090: Thread-13: (DEBUG) FTP Command: RNTO, reply:
    550 rename: No such file or directory.
    2012.06.06 at 13:46:18:091: Thread-13: (DEBUG) FTPClient.renameTo(): 550 rename: No such file or directory.
    2012.06.06 at 13:46:18:092: Thread-13: (ERROR) FTPClient.renameTo(): Unable to RNTO file null/BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml', reply code = 550
    2012.06.06 at 13:46:18:093: Thread-13: (DEBUG) File has been already archived BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml in //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound to null
    2012.06.06 at 13:46:18:094: Thread-13: (DEBUG) Moved file BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml in //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound to null
    2012.06.06 at 13:46:18:109: Thread-13: (DEBUG) Host name is 'hwspxv006'.
    2012.06.06 at 13:46:18:190: Thread-13: (DEBUG) Host hwspxv006 FTP command: USER gsb2bdA
    2012.06.06 at 13:46:18:193: Thread-13: (DEBUG) FTP Command: USER, reply:
    331 Password required for gsb2bdA.
    2012.06.06 at 13:46:18:194: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASS
    2012.06.06 at 13:46:18:471: Thread-13: (DEBUG) FTP Command: PASS, reply:
    230-Please read the file README-btwlutils.txt230- it was last modified on Wed Jul 1 17:09:58 2009 - 1071 days ago230 User gsb2bdA logged in.
    2012.06.06 at 13:46:18:474: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASV
    2012.06.06 at 13:46:18:475: Thread-13: (DEBUG) FTP Command: PASV, reply:
    227 Entering Passive Mode (147,149,200,111,171,164)
    2012.06.06 at 13:46:18:477: Thread-13: (DEBUG) Passive: ip = 147.149.200.111, port = 43940
    2012.06.06 at 13:46:18:478: Thread-13: (STATUS) Connecting to hwspxv006:43940
    2012.06.06 at 13:46:18:480: Thread-13: (DEBUG) Host hwspxv006 FTP command: NLST //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound
    2012.06.06 at 13:46:18:482: Thread-13: (DEBUG) FTP Command: NLST, reply:
    150 Opening ASCII mode data connection for file list.
    2012.06.06 at 13:46:18:483: Thread-13: (DEBUG) Disconnecting from hwspxv006
    2012.06.06 at 13:46:18:485: Thread-13: (DEBUG) Host hwspxv006 disconnected.
    2012.06.06 at 13:46:18:489: Thread-13: (DEBUG) [IPT_FileRecMonitorProcessFile] Processing file BTGS-bcRequestIncidentReportv1-rsConfirmIncidentReport-2008Dec15_12_12_12_122-Conversation-Id-READY-2009Jun23_16_37_43_625-1295541858750.xml in transport layer.
    2012.06.06 at 13:46:18:492: Thread-13: (DEBUG) Host name is 'hwspxv006'.
    2012.06.06 at 13:46:18:557: Thread-13: (DEBUG) Host hwspxv006 FTP command: USER gsb2bdA
    2012.06.06 at 13:46:18:559: Thread-13: (DEBUG) FTP Command: USER, reply:
    331 Password required for gsb2bdA.
    2012.06.06 at 13:46:18:561: Thread-13: (DEBUG) Host hwspxv006 FTP command: PASS
    2012.06.06 at 13:46:18:833: Thread-13: (DEBUG) FTP Command: PASS, reply:
    230-Please read the file README-btwlutils.txt230- it was last modified on Wed Jul 1 17:09:58 2009 - 1071 days ago230 User gsb2bdA logged in.
    2012.06.06 at 13:46:18:836: Thread-13: (DEBUG) Host hwspxv006 FTP command: CWD //wls_domains/gsb2b/gsb2bdA/ART/oraclePickupPath/outbound
    2012.06.06 at 13:46:18:840: Thread-13: (DEBUG) FTP Command: CWD, reply:
    250 CWD command successful.
    Thanks

  • Upon Preview View: "Unable to locate the file."

    When clicking on the Preview View icon with an ebook selected in the View pane, I get the error message "Unable to locate the file. This item has been moved, renamed or deleted". This happened after I created collections, and dragged books from the Library into the collections.

    The link below will provide the information needed to resolve the current Sony Reader issue you are experiencing.
    http://www.kb.sony.com/selfservice/micr ... 0203266040

Maybe you are looking for

  • Mouse pointer turned solid black, no white outline

    Hi all,     10.7.3  OSX on mac mini.     Mouse pointer is now a solid black, the white outline has disappeared.      Any idea what happened and how to fix?      It is really noticeable on a black background as the pointer completely disappears.     

  • Data Load using only 1 data package

    Hi, I am moving data from one cube to another manually using an infopackage. This system has recently been upgraded from 3.0 to 3.5. It is only using 1 datapackage (I am loading 19m records) and have done this successfully before and it used 4 datapa

  • SIT page in OAF

    Dear all, I have struck in SIT page,As per requirement,Messagetextinput bean is readonly.I did this field read only but my issue is while click on apply button that data is not save in data base. But field is messagetextinput bean then that data is s

  • IMsg suddenly won't work on my MacBook Pro

    A few hours ago I received a msg on iMsg. I immediately responded, and was told that the server connection was lost. 3 hours later and I still can't get in. Oddly, my ipad works though. Any ideas? Thanks!

  • My computer wont detect my Canon vixia hf r400

    Please Help me. My computer wont detect my Canon vixia hf r400 im running windows 8 and I tried everything from installing the drivers to the USB ports, I have my ports in legacy mode and still wont detect. I have USB 3.0 ports but I can't imagine it