I am working on an integration between Microfocus Service Manager and Remedy. In order to troubleshoot issues related to requests and responses from SM to Remedy is needed to print or send that information to a log. I have tried using a debug -RTM:3 flag in my testing port configuration, but unfortunately there is a lot of information in my log since it writes every step performed by the tool. After that, I set the -debughttp flag in my port, but it only writes inputs/outputs from external resources. Here is what I have done: Load Remedy customer's endpoint with WSDL2JS utility. Invoke the endpoint with a SL. Perform a request to the endpoint. Get an undefined response. Check logs written by -RTM and -debughttp without success. Is there any way to check what’s happening with my requests or with my customer’s reponses?
How to troubleshoot issues related to requests and responses from ws loaded in SM
26 views Asked by Moth W. At
1
You can get the content of your requests and responses using the sl created by WSDL2JS only adding a piece of code within it. For your requests, look for this part of the code (about line 129):
Add the following code below:
For your customer’s responses, look for this part of the code:
Add the following code below:
As a reference you can check the following picture to identify where inserting your code: Hopefully, that can be helpful for your troubleshooting.