Home > Blockchain >  Why is the rtcclient `getWorkitem()` for IBM RTC HTTP GET request returning incorrect response?
Why is the rtcclient `getWorkitem()` for IBM RTC HTTP GET request returning incorrect response?

Time:02-24

I am trying to use the enter image description here

But instead, it fetches that HTML data which messes up the program and prevents me from fetching work items. Does anyone have a solution or know how I could make a request to my RTC XML URL in postman to fetch the XML data and verify it is possible to do so?

CodePudding user response:

Check first if this was working with 0.6.0 (depending on your RTC version 6.x?; 7.x).

dixudx/rtcclient issue 136 mentions:

v0.7.0 has introduced a change on authentication, refer to #133 for details (and issue 112), which may be not compatible with older Rational Team Concert. From your issue, it seems to be true. Sorry for this.

My suggestion is just sticking with older rtcclient version, such as pip install rtcclient==0.6.0.

  • Related