@Ignore
@Test
public void send() throws FileNotFoundException {
String data = "123qweæøåÆØÅ!#";
String filename = "1000_110000_000000000555.txt", username = "mule", password = "mule1234";
RemoteFileTransferClient client = new HttpPostClient( "http://localhost:8080/mockservices/httppost", username, password );
ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( data.getBytes() );
client.send( byteArrayInputStream, filename );
}