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
102 Views Asked by Moth W. At
1
There are 1 best solutions below
Related Questions in MICROFOCUS
- Without _JAVA_OPTIONS and JAVA_TOOL_OPTIONS, whether LeanFT will work or not?
- Not able to create a web service configuration in Service Manger client 9.80 with newly created table
- Microfocus COBOL - Remote debugging requires ALL programs to be compiled for debugging?
- How to open port 5814 on AWS EC2 machine. I need to open it for autopass licence server. UFT licence will be installed on autpass server
- How do I interpret the behavior of COBOL missing end-ifs
- Qtp code : Download attachment from eml file
- "Run-time error 462: The remote server machine does not exist or is unavailable" occurs when VBA code run more than once
- Load Runner- Network Virtualization: No NV Graph Visualization and incorrect location wise Response Time
- ALM API Call to fetch the fields from Test Lab
- Error: call to undeclared function 'EXTSM'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
- Will indentation of sql queries in Visual COBOL cause issue?
- Automate ALM QC's data extraction with an API & Python
- Connecting Mainframe MQ manager from Microfocus Enterprise Server
- import macros with .jar extension produced by Selenium
- Reading email using load runner
Related Questions in SERVICEMANAGER
- Fixing ImportError with pyWin32 on ServiceManager Preparation
- Render2 not working in Angular basic project
- Can a user at the linux shell check whether sd_watchdog is enabled?
- can I simply edit a linux *.service file and restart the service to configure it?
- Module not found error in Python script running as a Windows Service
- SMLETS: Powershell
- Pass argument in shellscript after creating exe with pyinstaller
- How to troubleshoot issues related to requests and responses from ws loaded in SM
- How to get License info for Service Manager using Javascript
- How to block Service Manager Windows clients from logging in?
- Python service is not starting in windows machine error 1053
- AOSP : How to add service in service manager after removal of android:sharedUserId="android.uid.system" from manifest
- Python 3.6 ~ AttributeError: module 'servicemanager' has no attribute 'Initialize' ~ When creating windows service exe
- Add vendor service to ServiceManager with android treble architecture[SELinux policy]
- Characters not allowed with powershell in the Cireson smlets Get-SCSMEnumeration
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 # Hahtags
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.