Cannot view large request in trace

kphan
New Member

There's no request captured in trace tool if it has large body content (uploaded photos). Is there any size limit of the request in trace tool?

0 2 111
2 REPLIES 2

The trace tool won't display the request content completely if request is large. You can use Assign message policy to display full request contents as shown below.

<AssignMessage continueOnError="true" enabled="true" name="EchoRequest" >
  <AssignVariable>
    <Name>echoReq</Name>
    <Ref>request.content</Ref>
  </AssignVariable>
</AssignMessage>

You can also use Javascript policy to print the request content - print (context.getVariable("request.content"))

The whole request does not present in the trace tool, not the content only. I couldn't find the request even though the target received and processed it properly