Christoph Deppisch

Results 215 comments of Christoph Deppisch

The sample test case in the problem description does not use the `SpringExtension` nor `@Autowired` so I could not tell by the sample that this is not working. If you...

You can add the charset in the send/receive actions like this: ```java send("camel:sync:direct:testXsltMerge") .payload(new ClassPathResource("data/file2.xml"), StandardCharset.UTF-8); receive("camel:sync:direct:testXsltMerge") .payload(new ClassPathResource("data/expectedResult.xml"), StandardCharset.UTF-8); ``` The problem is that the file resource is read...

when the receive action fails the send is not executed. The server then uses the fallback response that is sent after configured timeout. By default the fallback response is a...

I am confused how your workaround should fix the issue then. How does the 500 error response cause the test to fail? Another question is why do you need the...

@tschlat many thanks for the detailed analysis. I think the solution with `@PreDestroy` annotation is a valid fix. As the issue is related to Spring based projects I would make...

Is there a specific test setup that reproduces the error? Even if it occurs randomly it might be good to know which setup is used to receive the Http message....

What exactly are you missing? Just to be sure we meet your needs when updating the docs. Also contributions are very welcome! Updating/improving the page should be quite straight forward....

we should add a new flag `autoHandlePongMessage` on the Websocket endpoint component. If set to `true` the handler will not forward the pong messages to the test case for validation...