Hi all
A web service provider has deployed an interceptor which should log the incoming message in a similar performant way as the logging interceptor but not into a file. Instead the incoming message is sent as part of a web service call with other monitoring related information. The message is passed as an any type. I want to avoid that a DOM tree is created when filling the any type. I have to make a copy of the message because the message is sent in a seperated thread (scheduler) to not block processing of the incoming request. I wanted to copy the stream into a string which can be read by the scheduler. But I haven't found a way to write the xml content of the cached string into the xml any. Any hints are highly appreciated. Thanks Oli
