Retrieving special characters through an HttpRequest

Why I can not retrieve special characters like accents, spanish chars, etc. through an HttpRequest? Instead of the special char I want to retrieve it always changes them to another symbol. For example (ni�o, informaci�n)
Is there any way to do it?
Thanks in advance

The HTTP specifications say that data sent through HTTP must be in ASCII. Those accented characters are not in the ASCII character set, so when you ignore the rule and send them anyway, they become mangled. You'll observe that this forum has the same problem.
The HTTP specs do provide a way to send non-ASCII characters, though, through some kind of escaping or encoding. You could look it up, they are in an RFC on the Internet somewhere. However, you are probably asking about characters that are sent to you by some agent (probably a browser) that you do not control.

Similar Messages

  • ### Problem in retrieving special characters with Oracle 9i JDBC drivers

    hi,
    We are having some problem with retrieving special characters like '�' from the database.
    Our application is using JDK1.3.1 with Oracle 9i at the back end(Version: 9.0.1.0.0). We are using oracle 9i thin drivers (classes12.zip) for database interaction.
    To relieve the data from database we are using PreparedStatement in two ways
    1. Creating a preparedstatement from connection object without any parameters and then retrieve the
    data using it. This gives the results in correct format i.e. special characters like '�'
    2. Create the preparedstatement by passing the following parameters.
    i) ResultSet.TYPE_SCROLL_INSENSITIVE
    ii) ResultSet.CONCUR_READ_ONLY
    In this case we are not able to retrieve the special character like '�' correctly. Instead the ResultSet
    returns 'h'
    I think this is the problem with Oracle drivers. Does anyone have any information about the mentioned problem.
    rgds

    I don't know exactly (because I am using JDK 1.4 with ojdbc14.jar where these problems seem to be rare...) but you may consider this:
    1. Add nls_charset12.zip to your classpath to ensure that the encoders are present (may or may not help)
    2. Swith to JDK 1.4, and do this:
    Instead of String s = getString(column)
    use
    byte[] bytes = getBytes(column);
    ByteBuffer bb = ByteBuffer.wrap(bytes); // in package java.nio
    CharBuffer cb = Charset.forname("ISO-8859-x").decode(bb);
    String s = cb.toString();
    The latter method allows you to perform the encoding/decoding manually.
    3. Change the character encoding in the database to unicode upon database setup.
    4. Try playing with NLS parameters (alter session ...)

  • Handling special characters through proxy

    Hi Gurus,
    we hvae a scenario sap to file, sending material information from SAP through outbound prpxy and palcing that detaisl in FTP loation using file adapter.
    Here probelm is one of the fields desc and text we are passing material Description and basic text which may have special characters like # @  µ while these cahractrs coming to XI itselfthey are convering as #0 and giving soem fatal error in XI whaich is unabel to parse in XI mapping and end up with mapping error.
    One more thing the if i use test the interface in dev and qa with the same characters these are working fine only failing in prod.
    please suggest how to procedd furthur.. whhetehr there is any place to check this special charatcres ecoding, uncode maintned at r/3 side or side side.
    here is the error
    Root Cause: com.sap.aii.utilxi.misc.api.BaseRuntimeException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XMLParser : #0 not allowed in Character data sections(:main:, row:1, col:1607794) at com.sap.aii.mappingtool.tf3.rt.xparser.MTSaxHandler.run(MTSaxHandler.java:157) at com.sap.aii.mappingtool.tf3.rt.xparser.XParser.run(XParser.java:73) at java.lang.Thread.run(Thread.java:770) Root Cause: com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XMLParser : #0 not allowed in Character data sections(:main:, row:1, col:1607794)(:main:, row=1, col=1607794) ->
    Edited by: Jitender Devunuri on Oct 26, 2009 3:33 PM

    Hi all .... any idea

  • Special characters through gateway !

    Hi,
    I've a portlet. In Edit->preferences, I've a textarea where user can enter <HTML> content. If user enters " " for a extra space and hit finish, it is replaced by junk character like "__" . Response.Type="text/html".
    I'm using GDK.

    Hi Harmony,
    You dont have to worry about the conversion you can directly import the data through Import Manager.
    I assume that your source is excel and will let you know the import step for this
    1) Open the Import Manager
    2) Select the Source, Source can be anything like Excel/Delimited Text or Fixed Text ( If it is text delimited than please specify the delimiter as well)
    3) if source is in Excel then just import it and then map the fields ( Please change the data type of that particular column to Text in your excel so that excel does not change any data value automatically)
    4) Once the mapping is done please import the data and check it would have special characters as well.
    Note : Filed size at source as well as destination should match or destination should have more size so that it does not truncate the data value.
    Let me know if it does not works
    Thanks and Regards
    Praful

  • SQL query not retrieving special characters in like O', M÷ and û

    Hi,
    I have a sql script to query database. The output is a string. When I execute this script through a Korn shell script to send the query result to a .csv file, it is showing some characters of the output as below.
    The characters O’ is displayed as ?
    The characters M÷ is displayed as ?
    The characters û is displayed as u
    I am able to retrieve the data as it is while running the script through SQL * Plus and spooling the output to a .csv file.
    If anybody is having solutions for this please reply.
    Thanks in advance for your kind help
    Regards,
    Sreesha
    Edited by: user530278 on Oct 18, 2008 2:56 PM

    user530278 wrote:
    Hi,
    I have a sql script to query database. The output is a string. When I execute this script through a Korn shell script to send the query result to a .csv file, it is showing some charcters of the output as below.
    The characters O’ is displayed as ?
    The characters M÷ is displayed as ?
    The characters û is displayed as uThis sounds like an NLS client setting issue.
    Note that there are scenarios where the data is "incorrectly" stored in the database but can be retrieved "successfully" from some clients. This is the case if you specify the same character set at your client as you have as database character set and this client character set setting is wrong, which means you ought to have specified a different client character set than you have in the database.
    Specifying the same character set on client and server prevents any conversion from taking place, so as long as the database can store the data (e.g. multi-byte characters won't be stored correctly in single-byte character set database no matter what you do) it will be stored "as is". If you now retrieve the data using the same setting, it looks correct, but if you use a client with a different character set setting that requires conversion the data will be mangled.
    The database character set can be identified using the dictionary view NLS_DATABASE_PARAMETERS, parameter "NLS_CHARACTERSET".
    The client character set can be identified by issuing the following at the SQL*Plus prompt:
    SQL> @[%NLS_LANG%]You'll get a message similar to:
    "Unable to open file [AMERICAN_AMERICA.WE8MSWIN1252]"
    The string after the dot represents the client character set.
    If you get this:
    Unable to open file "[%NLS_LANG%]"
    then the NLS_LANG client setting is undefined.
    Please follow this very useful link regarding client NLS issues and how to resolve them, in particular to determine what is your correct client NLS_LANG setting:
    http://www.oracle.com/technology/tech/globalization/htdocs/nls_lang%20faq.htm
    I am able to retreive the data as it is while running the script through SQL * Plus and spooling the output to a .csv file.You mean that when using SQL*Plus interactively the data is shown/spooled correctly, whereas if you run a script non-interactively then the data is mangled?
    Note that if you e.g. use "cron" to schedule/execute your script that you need to take care of the Oracle specific environment variables yourself because no logon scripts are executed when cron forks the process to run. May be you need to define the NLS_LANG variable explicitly or call/source the corresponding script to define your default Oracle environment that includes the NLS_LANG setting.
    It probably depends on your environment, operating system, etc. and how you set the Oracle specific settings, e.g. environment variables under Unix, registry settings under Windows etc.
    Use the above mentioned check regarding NLS_LANG setting in the different cases that you encounter to get started.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Replacement of special characters through hex-code

    Hi,
    I create a xml-output via SYS_XMLTYPE- and XML_ELEMENT-functions. In the coulumn values I select special XML-Characters like the ampersand will be automatically replaced through their quivalent Escape code (&amp;) - But our special german characters (ä, ü, ö, ß) won't be replaced. Is there a function to replace them or do I have to write my own function?
    Bye,
    Jens

    Hi Mark,
    now I have a problem with the replacement (You must replace $ through an ampersand to understand the code, the ampersand would be automatically replaced)
    The following query:
    SELECT XMLELEMENT( "city", a.city,
    XMLELEMENT( "company", a.company )
    ) AS XML_DATEN
    FROM (
    SELECT 'München' AS CITY, 'MCM' AS COMPANY
    FROM dual
    UNION
    SELECT 'Hamburg' AS CITY, 'P$C' AS COMPANY
    FROM dual
    ) a
    returns
    <city>Hamburg<company>P$amp;C</company></city>
    <city>München<company>MCM</company></city>
    Ok, that's fine. The XMLELEMENT function automatically replaces the ampersand. But the "ü" do I have to replace for myself.
    But when I do it:
    SELECT XMLELEMENT( "city", REPLACE( a.city, 'ü', '$#'||ASCII('ü')||';' ),
    I got the following:
    <city>M$amp;#252;nchen<company>MCM</company></city>
    And not:
    <city>M$#252;nchen<company>MCM</company></city>
    How can I solve this problem?

  • Problem with specials characters like '€' or 'œ'

    Hello,
    I'm having troubles with specials characters such as '€' or 'œ'.
    I use an application connected to a 9.2.0.7.0 database on a w2003 server.
    Characterset of the database is FRENCH_FRANCE.WE8MSWIN1252.
    In my workstation the value of [HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0\NLS_LANG] is also FRENCH_FRANCE.WE8MSWIN1252.
    But when I type such specials characters through the application, they are replaced by '¿' in the database. The datatype of this column is varchar2.
    Can anyone help me ?
    thanks
    Antoine
    Edited by: Antoine.M on Aug 19, 2009 12:45 PM

    Is your application a java application ? if so, pl see MOS Doc 365874.1 (Euro Symbol/Trademark Symbol is Garbled When JDBC Thin Driver Retrieves Data from a Database with Characterset WE8MSWIN1252)
    HTH
    Srini

  • Special characters and JDBC problem

    I am trying to retrieve special characters, e.g. c from the
    database. The problem is that the characters always show
    up as ?. I use getString to get the data from the database.
    The character set that my database uses is US7ASCII and the
    sqlplus program displays the correct dataset. It's only
    in the Java program where the display gets all screwed up.
    Help or direction of any kind would be greatly appreciated.
    -- Balendu

    This is because you are using the wrong database character set
    for storing your data . In the 7-bit ASCII encoding scheme, c or
    other non 7-bit data do not exist.
    Java can not handle the conversion of invalid characters inside
    your database , because it does not know what they are. What you
    need to do is to change your database character set to match the
    encoding of the data inside your database.
    Please check out the Character set migration paper on the
    Globalization Support Home page.

  • How can I distinguish special characters or signs in Doc through VBA?

    How can I distinguish special characters or signs in Doc through VBA?
    I have a few large documents written in word 2003 format and now I work on them under word 2007.
    Such large documents containing lots of special characters.  I want to change them into Microsoft 3.0 equation form(It is required by the team). I find no way but using function AddOLEObject and  Sendkeys through VBA. Common characters can be added
    to equation by function Sendkeys, but the return value of Asc() or AscW() for "double arrow", "in" , " not greater than " such special characters or signs, to name but a few are the same ,i.e., 40 And I cannot distinguish them.
    I found the link http://msdn.itags.org/word/44333/ may be of use to me, and the title is:
    How to read symbols from a DOC documents! (Microsoft Word)
     the original question is
    Using function "InsertSymbol", I can insert a symbol into a document. But
    how can I read a symbol from a document?
    Using "Characters(i).range.text", I can read a char. But when meeting a
    symbol, the value of "Characters(i).range.text" is always '('.How can I get the CharacterNumber of the symbol.
    And the final answer is :
    Hi chenfeng,
    Word protects symbols from symbol fonts if you insert them from the "Insert
    > Symbol" dialog.
    This is done so they aren't changed when you change the font or style. But
    it also results in Word reporting AscW( ) = 40 on all of them.
    I've posted a macro to "unprotect" them (or to protect them again if you
    want) ... just today again in
    Newsgroups: microsoft.public.word.vba.customization
    Subject: Symbol Characters
    Date: Mon, 3 May 2004 11:00:46 -0700
    Message-ID: <09f401c43138$8f92f900$[email protected]>
    It isn't archived on Google yet, but tomorrow you should be able to simply
    copy the message ID into http://www.google.com/advanced_group_search.
    Regards,
    Klaus
    But the link for the macro in the final answer is missing.
    Can anyone with kindness help me? Thaks a lot.

    Following Cindy Meister's Advice ,I use MathType SDK.
    The sample in MathType SDK in the following may be meaningful,but I do not know how the MTEF for cos^^2Theta, MTEF for sin^^2Theta and MTEF for 1 are generated .
    It looks much complicated,and I searched the docs in MathType SDK to get a explanation.Is there any function to generate them? I want to use this method to change commaon text mathematical signs( in special character table) and  Greek letters and characters
    with subscripts and superscripts to Microsoft 3.0 equation form.
    Can anyone with kindness help me?
    Sub MTEFTextSubstitution()
        Dim MTEFStr1$, MTEFStr2$, MTEFStr3$
        Dim stat
        'MTEF for cos^^2Theta
        MTEFStr1$ = "% MathType!MTEF!2!1!+-" + _
            " % feaaeaart1ev0aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn" + _
            " % hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr" + _
            " % 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq-Jc9" + _
            " % vqaqpepm0xbba9pwe9Q8fs0-yqaqpepae9pg0FirpepeKkFr0xfr-x" + _
            " % fr-xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaGaci4yaiaac+" + _
            " % gacaGGZbWaaWbaaSqabeaacaaIYaaaaOGaeqiUdehaaa!3B65!"
        'MTEF for sin^^2Theta
        MTEFStr2$ = "% MathType!MTEF!2!1!+-" + _
            " % feaaeaart1ev0aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn" + _
            " % hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr" + _
            " % 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq-Jc9" + _
            " % vqaqpepm0xbba9pwe9Q8fs0-yqaqpepae9pg0FirpepeKkFr0xfr-x" + _
            " % fr-xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaGaci4CaiaacM" + _
            " % gacaGGUbWaaWbaaSqabeaacaaIYaaaaOGaeqiUdehaaa!3B6A!"
        'MTEF for 1
        MTEFStr3$ = "% MathType!MTEF!2!1!+-" + _
            " % feaaeaart1ev0aaatCvAUfeBSjuyZL2yd9gzLbvyNv2CaerbuLwBLn" + _
            " % hiov2DGi1BTfMBaeXatLxBI9gBaerbd9wDYLwzYbItLDharqqtubsr" + _
            " % 4rNCHbGeaGqiVu0Je9sqqrpepC0xbbL8F4rqqrFfpeea0xe9Lq-Jc9" + _
            " % vqaqpepm0xbba9pwe9Q8fs0-yqaqpepae9pg0FirpepeKkFr0xfr-x" + _
            " % fr-xb9adbaqaaeGaciGaaiaabeqaamaabaabaaGcbaGaaGymaaaa!36A4!"
        Selection.Copy
        'Init API, reset transform
    '    If MTUtil.CheckMTDLLVersion = 0 Then Exit Sub
        If Not IsDLLVersionOK() Then Exit Sub
        MTXFormReset
        'first substitution
        stat = MTXFormAddVarSub( _
            mtxfmSUBST_ONE, _
            mtxfmVAR_SUB_PLAIN_TEXT, "<v1>", 0, _
            mtxfmVAR_SUB_MTEF_TEXT, MTEFStr1$, Len(MTEFStr1$), 0)
        If stat <> 0 Then
            MsgBox "1st MTXFormAddVarSub returned: " + Str(stat)
            Exit Sub
        End If
        'second substitution
        stat = MTXFormAddVarSub( _
            mtxfmSUBST_ONE, _
            mtxfmVAR_SUB_PLAIN_TEXT, "<v2>", 0, _
            mtxfmVAR_SUB_MTEF_TEXT, MTEFStr2$, Len(MTEFStr2$), 0)
        If stat <> 0 Then
            MsgBox "2nd MTXFormAddVarSub returned: " + Str(stat)
            Exit Sub
        End If
        'third substitution
        stat = MTXFormAddVarSub( _
            mtxfmSUBST_ONE, _
            mtxfmVAR_SUB_PLAIN_TEXT, "<v3>", 0, _
            mtxfmVAR_SUB_MTEF_TEXT, MTEFStr3$, Len(MTEFStr3$), 0)
        If stat <> 0 Then
            MsgBox "3rd MTXFormAddVarSub returned: " + Str(stat)
            Exit Sub
        End If
        'do the substitution
        stat = TransformGraphicEquation
        If stat <> 0 Then
            MsgBox "TransformGraphicEquation returned: " + Str(stat)
            Exit Sub
        End If
        MTTermAPI
        'Paste new equation
        Selection.Collapse Direction:=wdCollapseEnd
        Selection.PasteSpecial Placement:=wdInLine
    End Sub

  • Special characters in URL parameters retrieved as question marks

    Hello,
    I am posting a simple HTML form to a WebDynpro application, and then I retrieve the 2 parameters with the following code :
    IWDWebContextAdapter adapter = WDWebContextAdapter.getWebContextAdapter();
    String comment= adapter.getRequestParameter("comment");
    Problem : some special characters (those with accents for instance) are retrieved as question marks. Their ascii character is always 65533 (unicode rather?).
    I guess this is a problem of charset, but where could I change it ?
    Trying to encode afterwards does not change the characters, I always get the question marks. But I may not do it the right way...
    Any hint on that ?
    Thanks a lot.
    Best Regards,
    Nicolas

    Hi,
    refer to following code.
    Stop using deprecated object IWDWebContextAdapter
    IWDProtocolAdapter adapter = WDProtocolAdapter.getProtocolAdapter();
         try {
              byte comment[]= adapter.getRequestObject().getParameter("comment").getBytes("ASCII");
              String str = new String(comment);
         } catch (UnsupportedEncodingException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    Ashu

  • NVision report through Report Book generating special characters

    Problem generating nVision Tabular report using Report Book. Reports brings special characters on two tabs after half way down the report. When we run the same report through two-tier mode it comes out clean. Tested the production and test layouts, they both bring the special characters. Running Peoplesoft Application 8.8, People Tools 8.45, MS office 2000 SR-1 Professional (both on server and the client computer.
    Appreciate any input on this case.

    Hi,
    Developer 6i does not support PDF subset (that is the easiest way to achieve this). In 6i you can try the following approach.
    Reference
    How to print Turkish correctly in UNIX Oracle Reports in PDF format? (Doc ID 146596.1)
    Regards, Roberto

  • Special characters into datagrid through the use of buttons

    Hi!
    I have a datagrid for word input, I'm trying to create a "special characters" panel, kind of like google's new "virtual keyboard" thing on google.com, so that the user can enter data into the datagrid cells using characters that aren't on their keyboards.
    I manage to do this just fine, using the solution below. I know this is probably not the best/most effective way to do this, so any suggestions for making the code better will be appreciated. I only started using Flex a month ago.
    grid.addEventListener(DataGridEvent.ITEM_EDIT_BEGIN, selectColumn)
    function selectColumn(event:DataGridEvent):void
    var selectedColumn:DataGridColumn = grid.columns[event.columnIndex];
    selCol = selectedColumn.dataField;
    //The function for adding a special character to the selected datagrid column by clicking a button:
    //(inputWordArray is the dataprovider for the grid called "grid" )
    protected function clickSomeButton(event:MouseEvent):void
    var colIndex:int = new int;
    if (selCol == "from"){
    inputWordArray[grid.selectedIndex].from = inputWordArray[grid.selectedIndex].from + "æ";
    colIndex = 0;
    else if (selCol == "to"){
    colIndex = 1;
    inputWordArray[grid.selectedIndex].to = inputWordArray[grid.selectedIndex].to + "æ";
    inputWordArray.refresh();
    grid.dispatchEvent(new DataGridEvent(DataGridEvent.ITEM_EDIT_BEGINNING, false, false, colIndex, null, grid.selectedIndex));
    The problem is that this only adds a letter at the end of the selected item's value, not at a specific position within the word specified by the position of the cursor. This is what I need to achieve. I have no idea even what to search for, if anyone could please give me a hint that'd be great.

    You will probably need to capture the editor's selectionBeginIndex and
    selectionEndIndex

  • Moving through the Special Characters Pane

    I have created a keyboard shortcut on my Mac to quickly display the special characters pane. I was wondering if there was a way to jump to the pane directly from the keyboard without having to click on the pane? Thanks.
    Nibber #1
    Ohio

    Not that I know of.  But you might want to also ask in the OS X forum, since this is not an issue specific to Pages.

  • Trying to add emjoi from special characters to my document which is a table it seems to go through the motions but can not see the emjoi. cheers

    Question: Trying to add a emjoi from special characters to my document which has tables.  when adding can not see the emjoi picture.  Can anyone help.  Thank you

    Emoji is not supported by the iWork apps.
    Send Feedback to Apple via the Pages menu.
    Jerry

  • Special characters an issue in reading email from server?

    I have an email application that uses javamail 1.4.1 that grabs emails out of flat files and displays the messages on the screen. Until recently, all email was sent within the business, but now they are able to receive emails from any email provider. We've been seeing issues where parts of messages go missing, even links to attachments that don't get displayed to the screen. All of the correct information is in the flat files, but it doesn't get displayed. Does Javamail do anything to handle special characters or is there anything you think I could try to get these messages to display? It's really causing some problems!

    As far as I can tell, it's not throwing any exceptions, the only ones I catch in retrieving emails are MessagingException, IOException, and IndexOutOfBoundsException, and I'm not seeing any errors in my log files. The headers are the only thing that come through correctly every time, it's always either the message or attachments that go missing. One of the messages is from a mobile phone, which could be a problem, but we've seen it from our company email addresses too. I'll see if I can get a hold of a sample message to post. In the meantime, what kinds of properties can be set? Is there a good place to look for that?
    EDIT: here is a sample message (names have been changed to protect the innocent, also removed attachment encoding)
    Return-Path: <[email protected]>
    X-Original-To: [email protected]
    Delivered-To: [email protected]
    Received: from localhost (unknown [IP])
         by company.com (Postfix) with ESMTP id AA0FB52B4F0
         for <[email protected]>; Wed, 17 Dec 2008 12:27:00 +0000 (UTC)
    Received: from company.com ([IP])
    by localhost (HOST [IP]) (amavisd-new, port 10024)
    with ESMTP id 02398-05 for <[email protected]>;
    Wed, 17 Dec 2008 06:27:00 -0600 (CST)
    Received: from fortimail (unknown [IPADDRESS])
         by company.com (Postfix) with ESMTP id 7EBC7178D95
         for <[email protected]>; Wed, 17 Dec 2008 06:27:00 -0600 (CST)
    Received: from atlmtaow03.cingularme.com (atlmtaow03.cingularme.com [IPADDRESS])
         by fortimail with ESMTP id mBHCQvRG003014
         for <[email protected]>; Wed, 17 Dec 2008 06:26:58 -0600
    X-Mms-MMS-Version: 18
    Date: Wed, 17 Dec 2008 06:31:21 -0600
    X-Nokia-Ag-Internal: ; smiltype=true; internaldate=1229517081559
    Content-Type: multipart/mixed; boundary="----=_Part_11936491_5421953.1229517081567"
    X-Mms-Delivery-Report: 1
    Received: from schagw02 ([IPADDRESS]) by atlmtaow03.cingularme.com (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20081217122656.MANG3081.atlmtaow03.cingularme.com@schagw02> for <[email protected]>; Wed, 17 Dec 2008 07:26:56 -0500
    X-Mms-Transaction-ID: MMS0000084841772
    From: <[email protected]>
    To: [email protected]
    X-Mms-Message-Class: 0
    X-Mms-Read-Reply: 1
    Mime-Version: 1.0
    Message-ID: <3200553.1229517081568.JavaMail.wluser@schagw02>
    X-Mms-Priority: 1
    X-Mms-Message-Type: 0
    Subject: Multimedia message
    X-Nokia-Ag-Version: 2.0
    X-Virus-Scanned: amavisd-new at location.company.com
    ------=_Part_11936491_5421953.1229517081567
    Content-Type: text/plain; charset=utf-8
    Content-Transfer-Encoding: base64
    Content-ID: <slide1.txt>
    Content-Location: slide1.txt
    Content-Disposition: inline
    TG9vawo=
    ------=_Part_11936491_5421953.1229517081567
    Content-Type: image/jpeg
    Content-Transfer-Encoding: base64
    Content-ID: <1215082150-01.jpg>
    Content-Location: 1215082150-01.jpg
    Content-Disposition: inline
    [Attachment encoding goes here]
    ------=_Part_11936491_5421953.1229517081567--
    Edited by: jlapoint on Dec 22, 2008 9:22 AM

Maybe you are looking for