Search:

Type: Posts; User: ArgyrisV

Search: Search took 0.08 seconds.

  1. How to remove all Headers from a MimeMessage

    Hello i am having a problem in removing all headers from a Part in java mail.The code i use :



    Enumeration headers = part.getAllHeaders();
    while (headers.hasMoreElements()) {
    ...
  2. Replies
    3
    Views
    2,116

    [SOLVED] Re: MD5 hash and MimeMessage problem

    I found the problem!This is how you turn a MimeMessage to a String :



    int size;
    InputStream temp1 = null;
    String temp = new String();
    byte[] b;...
  3. Replies
    3
    Views
    2,116

    [SOLVED] Re: MD5 hash and MimeMessage problem

    Thank you for your answer and happy new year!!I've tried your code but i have the same results!!So i think the poblem is not with the code of MD5 but with the input String i give...The code i use to...
  4. Replies
    3
    Views
    2,116

    [SOLVED] MD5 hash and MimeMessage problem

    Hello to all!I m new to forum so excuse me for any mistakes!!Iwan't to get MD5 hash from MimeMessage type!I use the following code to take MD5 :


    //MD5
    private static String...
Results 1 to 4 of 4