Wrong filename with odt-files attachments

Hi,
i want to download an attachment called myfile.odt, but the navigator (i.e. and mozilla) only shows "name" without the extension. This only happens working with an expecific mail server (in the other mail servers this works ok).
If i use Microsoft outlook to open this attachment, this works ok and show "myfile.odt".
Debugging my source code it shows the correct filename and its extension.
      ContentType ct = new ContentType(sct);
      res.setContentType(ct.getBaseType());
      sName = part.getFileName();
      if (sName != null)
        sch = "inline;filename=" + sName;
        res.addHeader("Content-disposition", sch);
      part.getDataHandler().writeTo(sos);
      sos.flush();What is the reasson that i can't see the file extension in the navigator?
Thanks.

i'm sorry for my explanation.
We display an existing email from a mail server in a browser with a link to download its attach file.
When user clicks the link, he invokes a servlet for getting the attach file and save it to disk.
The problem is the filename in this particular case (in other cases it works ok). I use
      res.setContentType(msg.getContentType());
      msg.getDataHandler().writeTo(sos);
      sos.flush();to return the attachment to the navigator, and i modify the header of the HttpServletResponse because i want the navigator download window shows the complete filename:
res.addHeader("Content-disposition", ""inline;filename=ORDENADORES A REVISAR.odt;");
{code}
But, in this case, filename appears without the extension.
IMAP bodystructure:
{code}
* 20088 FETCH (BODYSTRUCTURE (("text" "plain" ("charset" "us-ascii") NIL NIL "7bit" 129 3 NIL ("inline" NIL) NIL NIL)("application" "octet-stream" NIL NIL NIL "base64" 16738 NIL ("attachment" ("filename" "ORDENADORES A REVISAR.odt")) NIL NIL) "mixed" ("boundary" "--317dbded7fd117601334") NIL "gl"))
{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • How to send the mail with multiple file attachments ?

    Sending mails with multiple files as attachments.

    You need to start from the app, assuming that it has an email function, that contains the files that you want to send as attachments. The Photos app allows you to send up to 5 photos on the same email, but if you want to send multiple file types then you need an app that supports all those file types. I use the GoodReader app which supports quite a few document/file types (e.g. PDF, Excel, Word, pictures), and from that I can select multiple files (including different types) and attach them to the same email.

  • Is there any way to read word or odt files in my alcatel fire e?and a second question,why i cant read emails with attachments?

    i download from marketplace apps like document viewer and web odf for odt files but non of them make the job right.

    Hi j.yiogg,
    Can you please elaborate what you mean when you say that these applications do not make the job right? What issues are you encountering? Is it on only one specific file, or with every file you open?
    Regarding your question about Emails not opening - do you mean that you are not able to read the contents of any email that has an attachment, or that you are not able to view certain attachments?
    The Mail application only supports certain attachment types, so depending on the file type, you may not be able to view or download the attachment.
    - Ralph

  • CVAW package : wrong filename when saving pdf file

    Hi experts,
    In my bsp, I have a link to the standard bsp CVAW_VIEW_DOCFILE in order to display an original of a DIR.
    An example of a complete URL to open an original :
    https://daplmdv.sylvania.com:10443/sap/bc/bsp/sap/CVAW_VIEW_DOCFILE/ViewDocFile.htm?pa_document_key=ZPI000000000000000000185252800EN&pa_file_id=49A5C8136B110187E1008000C61CAA2D&filename=d:\seal\data\convserv\49A5B257145901AAE1008000C61CAA2D\in\test.pdf
    In this case, the pdf has been displayed but when I use the button "Save a copy" in acrobat reader, the windows proposed "ViewDocFile.pdf" instead of "test.pdf".
    In fact, I have always this name when I open the document first and try to save it after.
    With .doc files, I have another window which ask me if I want to open or save the document (I think I have this window because the doc is not automaticaly opened in internet explorer). So, when I save it directly, the name is correct but when I open it and then save it, MS word propose me the name "ViewDocFile.doc".
    Do you have an idea how I can have the original name and not ViewDocFile.ext ?
    Thanks for your support

    Hi Regis,
    You have put this thread as answered.
    I have the same problem, can you tell me how you fixed this problem?
    thanks!
    KR,
    Micha

  • Creating list of folders from filenames with files organized in subfolders within

    Hi all. This is my first post in the Apple Support Community and I really hope that someone can help me as I'm using apple script for the first time.
    I have a list of hundreds of items that are each .jpg, .cr2, or .mov. Certain filenames have multiple extensions, ex: Q95A7170.CR2 & Q95A7170.jpg.
    I'm looking for an applescript or automator action that will allow me to create a folder out of each filename with 5 subfolders in it
    I need the subfolders to be called:
    AUDIO
    COLOR
    METADATA
    PICTURE
    PROXY
    In this instance I need all the .mov, .cr2, and .jpgs to be routed to the PICTURE folder. In later instances I'll need to route .mxf to PICTURE AND .xml .sif  & .thm to METADATA.
    So for example I have a list of that looks like this
    and I want a script that will make it look like this (i did all of this manually: creating the folders, renaming them, and putting the specific files into the picture folder)
    (not nearly a fraction of the list -- there are hundreds and hundreds of files)
    I've been researching applescripts for hours but the only script that i could make work and was very useful was this one to create the folders out of the names of the files:
    tell application "Finder"
              set selected to selection
              set current_folder to item 1 of selected
              set mlist to every file of current_folder
              repeat with this_file in mlist
                        set cur_ext to name extension of this_file
                        set new_name to text 1 thru -((length of cur_ext) + 2) of (name of this_file as text)
                        set new_folder to make new folder with properties {name:new_name} at current_folder
      move this_file to new_folder
              end repeat
    end tell
    Even with this script I had to manually copy all of the duplicate file named .jpgs out of the folder before it would properly run.
    Also I've found these scripts but I'm not sure what information to change. Like I said, I don't know much about code at all and I'm finding more research about it is just digging me deeper in a hole that I'm not entirely ready for.
    Here are the other two scripts that CLAIM they can do what I'm looking for, but I haven't gotten them to work.
    1.
    set pathToFolderOfTTUFiles to (path to the desktop as text) & "TTU:"
    tell application "Finder"
        set theFiles to every item of folder pathToFolderOfTTUFiles whose name extension is not "csv" and kind is not "Folder"
        repeat with theFile in theFiles
            set lengthOfExtension to (length of (theFile's name extension as text)) + 1
            set fileNameWithoutExtension to text 1 through -(lengthOfExtension + 1) of (theFile's name as text)
            set theFolder to make new folder at folder pathToFolderOfTTUFiles with properties {name:fileNameWithoutExtension}
            set theContentFolder to make new folder at theFolder with properties {name:"content"}
            make new folder at theContentFolder with properties {name:"archive"}
            set theContentDisplayFolder to make new folder at theContentFolder with properties {name:"display"}
            set theMetadataFolder to make new folder at theFolder with properties {name:"metadata"}
            make new folder at theMetadataFolder with properties {name:"archive"}
            set theMetadataDisplayFolder to make new folder at theMetadataFolder with properties {name:"display"}
            move theFile to theContentDisplayFolder
            set pathToCSV to pathToFolderOfTTUFiles & fileNameWithoutExtension & ".csv"
            if exists pathToCSV then move pathToCSV to theMetadataDisplayFolder
        end repeat
    end tell
    2.
    set myFolder to "FOLDERPATH"
    tell application "Finder" to set myFiles to folder myFolder's files as alias list
    repeat with aFile in myFiles
        tell application "System Events" to set {fileName, fileExt} to {name, name extension} of aFile
        set baseName to text 1 thru ((get offset of "." & fileExt in fileName) - 1) of fileName
        do shell script "mkdir -p " & (quoted form of (POSIX path of myFolder)) & "/" & baseName & "/{\"content\",\"metadata\"}/{\"display\",\"archive\"}"
        tell application "System Events"
            if fileExt is "pdf" then move aFile to (myFolder & ":" & baseName & ":content:display" as text)
            if fileExt is "csv" then move aFile to (myFolder & ":" & baseName & ":metadata:display" as text)
        end tell
    end repeat
    (the .pdf, .csv extensions are examples from the person who posted that discussion.)
    I tried using both of these codes but to no avail.
    Overall, this process is incredibly time-consuming and this is the first time I am using apple script so I know almost nothing about code.
    Also I don't know if this changes anything, but all of these files are on an external and I'm trying to save them back on this external.
    PLEASE HELP! I am a night assistant editor doing very tedious work at 3:00 AM or later and anything that would expedite this process would be so unbelievably appreciated. Please, someone who's more experience with code and who's smarter than I am on this topic, help me! I know there must be a way to automate this process!
    Please and so many thank yous! Really, this code would save me 40+ hours of eye-tiring work.
    Shelby

    This is how you'd do it in AppleScript.  I assume you can see how to expand it to different file extensions...
    set workFolder to "/path/to/folder"
    tell application "System Events"
      -- get files to work on
              set filesToProcess to files of folder workFolder whose visible is true
              repeat with thisFile in filesToProcess
                        set {fileName, fileExt} to {name, name extension} of thisFile
      -- get name of file without extension
                        set rootName to text 1 thru -((length of fileExt) + 2) of fileName
      -- make sure a correctly named folder exists
                        set targetFolder to my checkForFolder({parentFolder:workFolder, folderName:rootName})
      -- sort files into subFolders, making sure subfolders exist
                        if fileExt is "jpg" or fileExt is "cr2" or fileExt is "mov" then
                                  set targetSubfolder to my checkForFolder({parentFolder:targetFolder, folderName:"PICTURE"})
                                  move thisFile to targetSubfolder
                        else if fileExt is "xml" or fileExt is "sif" or fileExt is "thm" then
                                  set targetSubfolder to my checkForFolder({parentFolder:targetFolder, folderName:"METADATA"})
                                  move thisFile to targetSubfolder
                        else if fileExt is "mxf" then
                                  set targetSubfolder to my checkForFolder({parentFolder:targetFolder, folderName:"PICTURE"})
                                  move thisFile to targetSubfolder
                        else
      -- skip unknown file extensions
                        end if
              end repeat
    end tell
    to checkForFolder({parentFolder:fParent, folderName:fName})
      -- find or create a folder
              tell application "System Events"
                        if not (exists folder fName of folder fParent) then
                                  set output to POSIX path of (make new folder at end of folder fParent with properties {name:fName})
                        else
                                  set output to (POSIX path of (folder fName of folder fParent))
                        end if
              end tell
      -- returns a POSIX path
              return output
    end checkForFolder

  • Hi.  I am having issues with copying files to my shared WB 2TB HDD connected to my airport extreme.  Comes up with error 50.  I am using a Macbook Pro to copy from so not sure what I am doing wrong.  Can someone help? thanks Rory

    Hi.  I am having issues with copying files to my shared WB 2TB HDD connected to my airport extreme.  Comes up with error 50.  I am using a Macbook Pro to copy from so not sure what I am doing wrong.  Can someone help? thanks Rory

    These links might provide some information that may be of help.
    http://support.apple.com/kb/TA20831
    https://discussions.apple.com/message/2035035?messageID=2035035
    I've encountered this error myself upon occasion.  If I remember correctly, it was a permissions/ownership issue with the some of the files I was copying.

  • Auxiliary filename  conflicts with a file used by the target database

    Hi,
    I am using RMAN backup to duplicate my prod database.
    My database is 10g on Linux.
    My RMAN script is like this
    connect auxiliary /;
    connect catalog rman/rman@catalog;
    connect target sys/sys@prod;
    sql "alter session set optimizer_mode=RULE";
    run {
    allocate auxiliary channel dup1 type disk;
    allocate auxiliary channel dup2 type disk;
    allocate auxiliary channel dup3 type disk;
    set newname for datafile 1 to '/d05/u08/oracle/qadata/system01.dbf';
    set newname for datafile 2 to '/d05/u08/oracle/qadata/system02.dbf';
    set newname for datafile 3 to '/d05/u08/oracle/qadata/system03.dbf';
    set newname for tempfile 1 to '/d05/u09/oracle/qadata/temp01.dbf';
    set newname for tempfile 2 to '/d05/u09/oracle/qadata/temp02.dbf';
    set newname for tempfile 3 to '/d05/u09/oracle/qadata/temp03.dbf';
    set newname for tempfile 4 to '/d05/u09/oracle/qadata/temp04.dbf';
    duplicate target database to qa logfile
    group 1 ('/d05/u09/oracle/qadata/log1a.log',
    '/d05/u09/oracle/qadata/log1b.log') size 50m,
    group 2 ('/d05/u09/oracle/qadata/log2a.log',
    '/d05/u09/oracle/qadata/log2b.log') size 50m,
    group 3 ('/d05/u09/oracle/qadata/log3a.log',
    '/d05/u09/oracle/qadata/log3b.log') size 50m;
    I am getting the following error in the middle
    Starting Duplicate Db at 18-SEP-10
    released channel: dup1
    released channel: dup2
    released channel: dup3
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 09/18/2010 11:32:07
    RMAN-05501: aborting duplication of target database
    RMAN-05001: auxiliary filename /db01/u08/oracle/proddata/GRCM.dbf conflicts with a file used by the target database
    Recovery Manager complete.
    Previously the duplicate db was successful, but now it is giving error.
    How can I solve this.
    Thanks,
    Kavitha

    5001, 1, "auxiliary file name %s conflicts with a file used by the target database"
    // *Cause: RMAN is attempting to use the specified file name as a restore
    //         destination in the auxiliary database, but this name is already
    //         in use by the target database.
    // *Action: Use the CONFIGURE AUXNAME command to specify a name for the data
    //          file that does not conflict with a file name in use by the
    //          target db.

  • Abbreviated filenames of file attachments

    I need to print out my emails on paper. It is important that the full filename of the file attachment is printed out. In the translating community in which I work, we make small changes to the filenames at the end of the filename. You can't see this with Mail, nor when you print it out. I use Snow Leopard, so it's the latest edition of Mail.
    Is there a setting to change this so I can print the filenames in full?
    Many thanks.

    HI,
    Yes, it is possible to attach file or picture while create PR using T-code ME51N - Create Purchase Requisition. Enter T-code ME51N  screen top line create Purchase Requisition word display left side 'Services for Object'" button  click  and open new small window first button "Create" click shown options 'Create Attachment"  click and shown new window "Insert File".
    Here, you have select your attachment file or picture from stored location. After attached file the 'Create' next button "attachment List"  enable and shown  the file. On the file double click the attachment file open to corresponding package.
    The above steps are doing after generated PR number only.
    Hope, it is useful for you,
    Regards,
    K.Rajendran

  • [SOLVED] Wrong handling with file types after update

    Arch can't "remember" which program to use for certain file type
    Example:
    after update arch try to open everything (mp3, avi, doc, odt, rar.......) with gedit, when I set mplayer for avi, Arch try to open every file with mplayer, I set writer for odt files Arch try to open every file with writer and .....
    And another thing, every file have "text file" icon
    Last edited by Joxy (2008-06-25 16:50:16)

    Take a look here http://bbs.archlinux.org/viewtopic.php?id=50667

  • How can I install attachments for SAP notes with zip-files ???

    How can I install attachments for SAP notes with zip-files ???

    Can you elaborate on your question? How exactly is your question related to SAP NetWeaver Portal: Application Integration? If you are really asking how to install attachments contained in SAP notes, there is no automatic/general way and you should ask your question in the Software Support and Maintenance space to begin with. What SAP note(s) are you looking at installing?

  • Sending a mail from Orale APEX with File Attachments

    Hi All,
    I want one solution, i need to send a mail from my application with HTMLDB_MAIL.SEND package and i need to know wheather we can send a mail with file attachments in APEX,if it is possible then how can i send,Can any body please help me with this.
    Thanks

    dil84 wrote:
    Hi All,
    I want one solution, i need to send a mail from my application with HTMLDB_MAIL.SEND package and i need to know wheather we can send a mail with file attachments in APEX,if it is possible then how can i send,Can any body please help me with this.
    ThanksEmail attachments arrived with Apex version 3.1.

  • Is it possible to open .odt files with office 2011?

    Hi everyone; I actually have some problems when I try to open odt files with microsoft office 2011 (evaluation version). Some ideas?
    Thanks

    http://www.oooforum.org/forum/viewtopic.phtml?t=116122
    And others if you would just google for what you want. Also look to the right of this post to the column More Like This. ------------->

  • Adobe forms with file attachments

    Hello,
    I want to use file attachments in my offline adobe forms. I have found some articles about how to do that but it was all related to webdynpro which i'm not using for this scenario.
    Does anyone know how to do that in plain ABAP?
    Many thanks in advance for your help!
    Best Regards,
    Tijana

    I'll answer on my own question
    I found the answer in the test program FP_PDF_TEST_16.

  • File attachments with Jdeveloper - SOAP

    Hi ! I am using JDev 10.1.3. I need to send file attachments via SOAP call. I have a soap service sending text files. I have a wsdl from the client. I am able to read the wsdl and create a client proxy using Jdev. I can see the contents of the file using HTTP analyser. How do I read that content within my java client? Any tips/pointers to tutorials would be greatly appreciated.
    Thanks
    Sriram

    Hi ! I hit this example also. I am new to web services as well as Java ..so please dont get ticked.
    1) I am able to see the data going back and forth (when I use the http analyzer) only as hex.
    when i view the message as raw ..this is all I have ..
    HTTP/1.1 200 OK
    Server: Sun-ONE-Web-Server/6.1
    Date: Mon, 14 Aug 2006 21:40:27 GMT
    Content-length: 1182
    Content-type: Multipart/Related; type="text/xml"; start="<main_envelope>"; boundary="----------=_1155591627-23347-0"
    Soapserver: SOAP::Lite/Perl/0.60
    null
    However when I switch to the hex mode ... I see a whole lot? Do you know why the file would be coming in as binary encoded when I specify the file is text/plain?
    [0000..0015] 43 6F 6E 74 65 6E 74 2D 54 79 70 65 3A 20 4D 75 Content-Type: Mu
    [0016..0031] 6C 74 69 70 61 72 74 2F 52 65 6C 61 74 65 64 3B ltipart/Related;
    [0032..0047] 20 62 6F 75 6E 64 61 72 79 3D 22 2D 2D 2D 2D 2D boundary="-----
    [0048..0063] 2D 2D 2D 2D 2D 3D 5F 31 31 35 35 35 39 31 36 32 -----=_115559162
    [0064..0079] 37 2D 32 33 33 34 37 2D 30 22 0A 43 6F 6E 74 65 7-23347-0"
    Conte
    [0080..0095] 6E 74 2D 54 72 61 6E 73 66 65 72 2D 45 6E 63 6F nt-Transfer-Enco
    [0096..0111] 64 69 6E 67 3A 20 62 69 6E 61 72 79 0A 4D 49 4D ding: binary
    MIM
    [0112..0127] 45 2D 56 65 72 73 69 6F 6E 3A 20 31 2E 30 0A 58 E-Version: 1.0
    X
    [0128..0143] 2D 4D 61 69 6C 65 72 3A 20 4D 49 4D 45 2D 74 6F -Mailer: MIME-to
    [0144..0159] 6F 6C 73 20 35 2E 34 31 31 20 28 45 6E 74 69 74 ols 5.411 (Entit
    [0160..0175] 79 20 35 2E 34 30 34 29 0A 0A 54 68 69 73 20 69 y 5.404)
    This i
    [0176..0191] 73 20 61 20 6D 75 6C 74 69 2D 70 61 72 74 20 6D s a multi-part m
    [0192..0207] 65 73 73 61 67 65 20 69 6E 20 4D 49 4D 45 20 66 essage in MIME f
    [0208..0223] 6F 72 6D 61 74 2E 2E 2E 0A 0A 2D 2D 2D 2D 2D 2D ormat...
    [0224..0239] 2D 2D 2D 2D 2D 2D 3D 5F 31 31 35 35 35 39 31 36 ------=_11555916
    [0240..0255] 32 37 2D 32 33 33 34 37 2D 30 0A 43 6F 6E 74 65 27-23347-0
    Conte
    [0256..0271] 6E 74 2D 54 79 70 65 3A 20 74 65 78 74 2F 78 6D nt-Type: text/xm
    [0272..0287] 6C 0A 43 6F 6E 74 65 6E 74 2D 44 69 73 70 6F 73 l
    Content-Dispos
    [0288..0303] 69 74 69 6F 6E 3A 20 69 6E 6C 69 6E 65 0A 43 6F ition: inline
    Co
    [0304..0319] 6E 74 65 6E 74 2D 54 72 61 6E 73 66 65 72 2D 45 ntent-Transfer-E
    [0320..0335] 6E 63 6F 64 69 6E 67 3A 20 38 62 69 74 0A 43 6F ncoding: 8bit
    Co
    [0336..0351] 6E 74 65 6E 74 2D 4C 6F 63 61 74 69 6F 6E 3A 20 ntent-Location:
    [0352..0367] 2F 6D 61 69 6E 5F 65 6E 76 65 6C 6F 70 65 0A 43 /main_envelope
    C
    [0368..0383] 6F 6E 74 65 6E 74 2D 49 64 3A 20 3C 6D 61 69 6E ontent-Id: <main
    [0384..0399] 5F 65 6E 76 65 6C 6F 70 65 3E 0A 0A 3C 3F 78 6D _envelope>
    <?xm
    [0400..0415] 6C 20 76 65 72 73 69 6F 6E 3D 22 31 2E 30 22 20 l version="1.0"
    [0416..0431] 65 6E 63 6F 64 69 6E 67 3D 22 55 54 46 2D 38 22 encoding="UTF-8"
    [0432..0447] 3F 3E 3C 53 4F 41 50 2D 45 4E 56 3A 45 6E 76 65 ?><SOAP-ENV:Enve
    [0448..0463] 6C 6F 70 65 20 78 6D 6C 6E 73 3A 53 4F 41 50 2D lope xmlns:SOAP-
    [0464..0479] 45 4E 43 3D 22 68 74 74 70 3A 2F 2F 73 63 68 65 ENC="http://sche
    [0480..0495] 6D 61 73 2E 78 6D 6C 73 6F 61 70 2E 6F 72 67 2F mas.xmlsoap.org/
    [0496..0511] 73 6F 61 70 2F 65 6E 63 6F 64 69 6E 67 2F 22 20 soap/encoding/"
    [0512..0527] 53 4F 41 50 2D 45 4E 56 3A 65 6E 63 6F 64 69 6E SOAP-ENV:encodin
    [0528..0543] 67 53 74 79 6C 65 3D 22 68 74 74 70 3A 2F 2F 73 gStyle="http://s
    [0544..0559] 63 68 65 6D 61 73 2E 78 6D 6C 73 6F 61 70 2E 6F chemas.xmlsoap.o
    [0560..0575] 72 67 2F 73 6F 61 70 2F 65 6E 63 6F 64 69 6E 67 rg/soap/encoding
    [0576..0591] 2F 22 20 78 6D 6C 6E 73 3A 78 73 69 3D 22 68 74 /" xmlns:xsi="ht
    [0592..0607] 74 70 3A 2F 2F 77 77 77 2E 77 33 2E 6F 72 67 2F tp://www.w3.org/
    [0608..0623] 32 30 30 31 2F 58 4D 4C 53 63 68 65 6D 61 2D 69 2001/XMLSchema-i
    [0624..0639] 6E 73 74 61 6E 63 65 22 20 78 6D 6C 6E 73 3A 53 nstance" xmlns:S
    [0640..0655] 4F 41 50 2D 45 4E 56 3D 22 68 74 74 70 3A 2F 2F OAP-ENV="http://
    [0656..0671] 73 63 68 65 6D 61 73 2E 78 6D 6C 73 6F 61 70 2E schemas.xmlsoap.
    [0672..0687] 6F 72 67 2F 73 6F 61 70 2F 65 6E 76 65 6C 6F 70 org/soap/envelop
    [0688..0703] 65 2F 22 20 78 6D 6C 6E 73 3A 78 73 64 3D 22 68 e/" xmlns:xsd="h
    [0704..0719] 74 74 70 3A 2F 2F 77 77 77 2E 77 33 2E 6F 72 67 ttp://www.w3.org
    [0720..0735] 2F 32 30 30 31 2F 58 4D 4C 53 63 68 65 6D 61 22 /2001/XMLSchema"
    [0736..0751] 3E 3C 53 4F 41 50 2D 45 4E 56 3A 42 6F 64 79 3E ><SOAP-ENV:Body>
    [0752..0767] 3C 6E 61 6D 65 73 70 31 3A 73 6F 6D 65 4D 65 74 <namesp1:someMet
    [0768..0783] 68 6F 64 52 65 73 70 6F 6E 73 65 20 78 6D 6C 6E hodResponse xmln
    [0784..0799] 73 3A 6E 61 6D 65 73 70 31 3D 22 75 72 6E 3A 41 s:namesp1="urn:A
    [0800..0815] 74 74 61 63 68 6D 65 6E 74 22 2F 3E 3C 2F 53 4F ttachment"/></SO
    [0816..0831] 41 50 2D 45 4E 56 3A 42 6F 64 79 3E 3C 2F 53 4F AP-ENV:Body></SO
    [0832..0847] 41 50 2D 45 4E 56 3A 45 6E 76 65 6C 6F 70 65 3E AP-ENV:Envelope>
    [0848..0863] 0A 2D 2D 2D 2D 2D 2D 2D 2D 2D 2D 2D 2D 3D 5F 31
    ------------=_1
    [0864..0879] 31 35 35 35 39 31 36 32 37 2D 32 33 33 34 37 2D 155591627-23347-
    [0880..0895] 30 0A 43 6F 6E 74 65 6E 74 2D 54 79 70 65 3A 20 0
    Content-Type:
    [0896..0911] 74 65 78 74 2F 70 6C 61 69 6E 3B 20 6E 61 6D 65 text/plain; name
    [0912..0927] 3D 22 73 6F 6D 65 2E 78 6D 6C 22 0A 43 6F 6E 74 ="some.xml"
    Cont
    [0928..0943] 65 6E 74 2D 44 69 73 70 6F 73 69 74 69 6F 6E 3A ent-Disposition:
    [0944..0959] 20 61 74 74 61 63 68 6D 65 6E 74 3B 20 66 69 6C attachment; fil
    [0960..0975] 65 6E 61 6D 65 3D 22 73 6F 6D 65 2E 78 6D 6C 22 ename="some.xml"
    [0976..0991] 0A 43 6F 6E 74 65 6E 74 2D 54 72 61 6E 73 66 65
    Content-Transfe
    [0992..1007] 72 2D 45 6E 63 6F 64 69 6E 67 3A 20 62 69 6E 61 r-Encoding: bina
    [1008..1023] 72 79 0A 43 6F 6E 74 65 6E 74 2D 49 64 3A 20 31 ry
    Content-Id: 1
    [1024..1039] 32 33 34 0A 4D 49 4D 45 2D 56 65 72 73 69 6F 6E 234
    MIME-Version
    [1040..1055] 3A 20 31 2E 30 0A 58 2D 4D 61 69 6C 65 72 3A 20 : 1.0
    X-Mailer:
    [1056..1071] 4D 49 4D 45 2D 74 6F 6F 6C 73 20 35 2E 34 31 31 MIME-tools 5.411
    [1072..1087] 20 28 45 6E 74 69 74 79 20 35 2E 34 30 34 29 0A (Entity 5.404)
    [1088..1103] 0A 42 41 52 54 20 20 0A 42 61 72 74 44 45 56 20
    BART
    BartDEV
    [1104..1119] 0A 69 64 6F 6D 61 69 6E 20 3D 20 62 61 72 74 44
    idomain = bartD
    [1120..1135] 45 56 20 6E 61 6D 65 20 3D 20 53 72 69 72 61 6D EV name = Sriram
    [1136..1151] 20 53 61 6E 6B 61 72 61 6E 0A 0A 2D 2D 2D 2D 2D Sankaran
    [1152..1167] 2D 2D 2D 2D 2D 2D 2D 3D 5F 31 31 35 35 35 39 31 -------=_1155591
    [1168..1181] 36 32 37 2D 32 33 33 34 37 2D 30 2D 2D 0A 627-23347-0--
    Again, sorry for pasting a whole lot of info.

  • File Sharing .odt files

    Hello,
    I have A LOT of .odt files, created using NeoOffice for Mac.
    I would like to convert these files into a format my new iPad can read using Pages.
    I do not have Pages on my Mac, only the app on my iPad.
    On my Mac I use a combination of Microsoft Word for Mac and NeoOffice.
    Now, I have tried opening a .odt file in NeoOffice and saving as in various formats. But I cannot seem to find a format that will sync onto the iPad.
    First question: Which format should I save my .odt files as in order to successfully be able to sync and open in Pages on the iPad?
    Second question: Assuming there is an answer to the first question, is there a way to convert ALL my .odt files into an iPad friendly format WITHOUT having to open them one by one and do each conversion individually?
    I have over 100 .odt files to convert!
    Thanks,
    Martin

    If you know how to use the terminal and UNIX command line, OSX 10.4 and higher come with a command for converting document file formats, textutil. E.g. to change all the OpenDoc (.odt) files in a directory into Word 2008 .doc files you would do something like this:
    for filename in *.odt; do; textutil -convert doc $filename; done
    If you know some AppleScript you may be able to bind this to a folder action.
    Pages can open .doc files as attachments in Mail. And if you save your files to a DropBox account, DropBox can view .doc files and pass them to Pages to edit -- although to get them out of Pages you'll need to either use an iLife.com account (which won't handle Pages files over 40 pages long) or register with GetHabilis to mail them back to your DropBox account.

Maybe you are looking for

  • SLVR L7 mp3 converting into iTunes

    Sorry if this question has already been answered but I need help. I have almost 200 hundred songs on my computer in the mp3 format is there a way to convert them into the iTunes format? If so, could someone please walk me thru the process because if

  • Portal Runtime Error on clicking work item in UWL.

    Hi I can see the workitems displayed in the UWL. But when I click on any of the items it shows a Portal Runtime Error with an Exception Id like this  : 02:48_13/04/10_0030_6207450. Can anyone help me out with this ? Does this error have anything to d

  • Function Module Need

    Hi Experts, Can any one have Function Module or BAPI which has created space in SAP memory for our customizing Program Output Thanks Surendra Reddy

  • Registry workings?

    Hi, The inherited RMI server application has the following way of hosting multiple instances on the same host machine, and I wonder whether my alternative approach would be better. Currently the server app is started with a port number. The port numb

  • Phone wakes from sleep by itself

    Usually after hitting the sleep/wake button my phone wakes up again. I have not touched the home button or sleep button and it is not an everyday problem it is just random I have restored it but no luck any help thanks