Re: StreamCaching in Camel 1.6

2009-03-18 Thread _Jens
Wow nice job! I'll make sure that I try 1.6.1 soon. Thanks a lot Claus. -- View this message in context: http://www.nabble.com/StreamCaching-in-Camel-1.6-tp22305654p22581500.html Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.

Re: StreamCaching in Camel 1.6

2009-03-18 Thread Claus Ibsen
class); >>>                            while (inputStream.read() != -1) {} >>>                        } >>>                    }); >>>            } >>>        }); >>> >>>        context.start(); >>> >>>        HttpClient cl

Re: StreamCaching in Camel 1.6

2009-03-17 Thread Claus Ibsen
       context.start(); >> >>        HttpClient client = new HttpClient(); >>        PostMethod method = new PostMethod("http://localhost:8989/bigfile";); >>        File file = new File("c:\\temp\\test.bin.ok2"); >>        method.setRequestEntity(new

Re: StreamCaching in Camel 1.6

2009-03-17 Thread _Jens
this message in context: http://www.nabble.com/StreamCaching-in-Camel-1.6-tp22305654p22554404.html Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.

Re: StreamCaching in Camel 1.6

2009-03-17 Thread Claus Ibsen
start(); > >        HttpClient client = new HttpClient(); >        PostMethod method = new PostMethod("http://localhost:8989/bigfile";); >        File file = new File("c:\\temp\\test.bin.ok2"); >        method.setRequestEntity(new FileRequestEntity(file, >

Re: StreamCaching in Camel 1.6

2009-03-06 Thread _Jens
= new HttpClient(); PostMethod method = new PostMethod("http://localhost:8989/bigfile";); File file = new File("c:\\temp\\test.bin.ok2"); method.setRequestEntity(new FileRequestEntity(file, "unknown/unknown")); assertEquals(200, clien

Re: StreamCaching in Camel 1.6

2009-03-03 Thread willem.jiang
Hi Just as Gert said. In CXF , we will cache the big message into the File instead of the memory. I think we could do the same thing in Camel. I just filled a JIRA[2] for it. [1] http://www.nabble.com/Re%3A-StreamCaching-in-Camel-1.6-to22305858.html [2] https://issues.apache.org/activemq

Re: StreamCaching in Camel 1.6

2009-03-03 Thread Gert Vanthienen
is > seems not to make any difference. > > Now, my question is if there is some other way to disable stream caching or > if I'm doing something wrong here. > > Thanks in advance > Jens > -- > View this message in context: > http://www.nabble.com/StreamCaching-in-Camel-1.6-tp22305654p22305654.html > Sent from the Camel - Users (activemq) mailing list archive at Nabble.com. > >

StreamCaching in Camel 1.6

2009-03-03 Thread _Jens
any difference. Now, my question is if there is some other way to disable stream caching or if I'm doing something wrong here. Thanks in advance Jens -- View this message in context: http://www.nabble.com/StreamCaching-in-Camel-1.6-tp22305654p22305654.html Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.