public class GenericAttachmentTestCase extends JBossWSTest
{
public void testEncodingDecoding() throws Exception
{
MessageFactoryImpl factory = new MessageFactoryImpl();
SOAPMessage msg1 = factory.createMessage();
AttachmentPart attachment1 = msg1.createAttachmentPart();
attachment1.setContent("this is a test", "text/plain; charset=UTF-8");
attachment1.setContentId("<attachment1@test.ws.jboss.org>");
msg1.addAttachmentPart(attachment1);