2011/8/12 Magnus Palmér <[email protected]>: > I would make your md5bean return a file. > Not sure if the current Jira issue of not cleaning (deleting) the file until > JVM stops will apply for you then or not.
Well, the MD5 processor would probably need to dive into the InputStream implementation (Camel specific) which holds the reference to the original file, which I don't like very much. Avoiding knowledge of the specific implementation is possibly by creating a new file during the calculation of the MD5 checksum, but then I have the file content twice on the local filesystem: once from the http4 cache, and a second copy to pass to the rest of the route. But I will try to dump the result from http4 into a file myself, I assume I can pass along that reference around easily. Thanks for the tip. Tung
