{
File temp = File.createTempFile( "pattern", ".suffix" );
temp.deleteOnExit();
FileOutputStream out = new FileOutputStream( temp );
out.write( ac.getData() );
request.attachFile( temp, true );
}
else
{
request.attachFile( new File( ac.getUrl() ), false );
}