Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

View SOAP Message with Debug Proxy

Is it possible to use a web debug proxy with Talend to view SOAP / REST messages? I am attempting to use the tWebService component and having a bit of difficulty verifying the content.
If anyone has set up a web debug proxy (like Charles or Fiddler), would you mind showing how you set this up?
Thank you-
Joe
Labels (4)
2 Replies
Anonymous
Not applicable
Author

I just figured this out and it's extremely useful, so I thought I would post the steps I used:
1) On the Run tab, click Advanced Settings
2) Check Use Specific JVM Arguments
3) Create three new arguments:
DproxySet=true
DproxyHost=127.0.0.1
DproxyPort=8888
4) Launch Fiddler
5) Run the job and you should see the HTTP traffic in Fiddler.
A few notes:
- This doesn't appear to work with tFileFetch for some reason, but it does work with the new tRest component in 4.2.0M4
- If you are making a call over https, you need some additional steps:
1) Export the Fiddler self signed (DO NOT TRUST) certificate to a file on your machine
2) Import this certificate into your Java keystore
3) Add a tSetKeystore component to your job and enter your keystore location and password
Good luck!
_AnonymousUser
Specialist III
Specialist III

works well! thank you