• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Special characters

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a problem to receive special characters correctly in GroupWise email when I sent a message out from my java application. The interesting thing is that I sent same message from this java application into my GroupWise email account and my Yahoo email account. I did receive special character correctly in my Yahoo Email but Not in my GroupWise Email.

The piece of code that I used like this:

MimeBodyPart messageBodyPart = new MimeBodyPart();

messageBodyPart.setText( content, "UTF-8" ).

Any idea about this problem?

Thank

Sue
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Which encoding are you using in GroupWise? Is it picking up the fact that it should be using UTF-8?
 
Susan Dunn
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In GroupWise -> from tools -> options -> send

From MIME encoding drop-down list, I picked up UFT-8 to test. It works if I send a message from GroupWise into GroupWise. However it is failed if I send a message from my Java application's message box.

I think that GroupWise may not able to decode UFT-8 for the messages that come from outside the Groupwise's email system.

I tried to find a receive selection's MIME decoding somewhere in GroupWise that can select UFT-8 just like "send" from above . But I couldn't find it.

I agree with yours. It may a bug in GroupWise.

Thanks

Sue
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic