Body Buffer Overflow - Streaming

I am doing conversion of SOAP to pdf into response as call out method in my existing solution ( policy)

Is it still possible with enabling response ?

How I can keep my previous policies untouched with Streaming enabled?

1 2 996
2 REPLIES 2

You can't. Streaming disables the ability to read from / write to the body, which means things which convert the body aren't going to work any more.

For something like this you'd need a backend/hosted target capable of receiving the whole body before modifying it.

Not applicable

When the streaming is enabled the response doesn't come at a time. This comes as a chunk. so, performing any operation on the response will behave abnormally. First, you have to collect the whole response and then do operations on it.