I'm calling a REST service which is provided by my client. While I'm able to call the development service, I get weird error status codes when I call the productive service on customer site.

How can I analyse the REST service invocation and get detailed information how my request is processed?

asked 19.09.2016 at 08:57

SupportIvyTeam's gravatar image

SupportIvyTeam ♦♦
1.4k102118122
accept rate: 77%

edited 14.11.2018 at 10:26


Just enable the runtime logger for rest clients in the log4jconfig.xml file:

  <category name="runtimelog.{application}.{process_model}.rest_client" class="ch.ivyteam.log.Logger" additivity="false">
    <priority value="DEBUG"/>
    <appender-ref ref="RuntimeLog"/>
  </category>

See log4jconfig.xml file reference in the engine guide.

link

answered 14.11.2018 at 10:27

Christian%20Strebel's gravatar image

Christian St... ♦
3.2k31338
accept rate: 88%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×33

Asked: 19.09.2016 at 08:57

Seen: 1,970 times

Last updated: 14.11.2018 at 10:27