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
100 Views Asked by Moth W. At
1
There are 1 best solutions below
Related Questions in MICROFOCUS
- how to form fields section in xfd file
- MicroFocus cobol commands cobinit,cobcall and cobtidy are throwing errors in my C program
- Error in cobol program on linux selecting from table in postgresql database
- How to set a custom download path in Chromium in Truclient protocol of Loadrunner
- Does Loadrunner (VUGen) support 2-Factor Authentication?
- API PATCH request to move message using python in Micro Focus RPA
- How to automate Microfocus Rumba using VB.Net
- Microfocus and MQ connection
- What can cause CICS transaction to write out of CICS allocated memory?
- What does Cobol file status 9Â mean?
- How to take screenshot of application and save it word using VBA
- How to troubleshoot issues related to requests and responses from ws loaded in SM
- Is it possible play a video and record the timestamp in UFT?
- Unignoring a file in .gitignore is not working. I want GIT to unignore bin directory?
- CALL SYSTEM USING WS-COMMAND not working on microfocus COBOL on Enterprise server
Related Questions in SERVICEMANAGER
- Fatal error: Uncaught exception in Zend ServiceManager
- Service-monitoring tool
- Can I call a service inside a service in zf3?
- zf2 ServiceManager vs ServiceLocator
- Issue in phpuit ServiceManager::get was unable to fetch or create an instance for ModuleManager
- Gaining Root Access w/ Elevated Helper & SMJobBless
- How to get License info for Service Manager using Javascript
- How to troubleshoot issues related to requests and responses from ws loaded in SM
- How to block Service Manager Windows clients from logging in?
- How I can use service Manager in entity class in ZendFramwork2?
- Python service is not starting in windows machine error 1053
- How can I use ZF2 forms as a stand-alone module in my PHP application?
- Pass argument in shellscript after creating exe with pyinstaller
- Doctrine 2 + ZF2: Create entities via ServiceManager
- setting basic authentication c# to call a soap web service
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
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.