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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Parse a response from the SOAP call

When I call the SOAP service with cCXF component(RAW mode) I get back the respons in the log

...BodyType: sun.net.www.protocol.http.HttpURLConnection.HttpInputStream, Body: [Body is instance of java.io.InputStream], Out: null: ]

How can I see the response?

 

This is my setting

0683p000009Lrh6.png

Labels (2)
1 Solution

Accepted Solutions
Loko
Creator II
Creator II

in a cProcessor,

 system.out.println(exchange.getIn().getBody(String.class))

View solution in original post

5 Replies
Loko
Creator II
Creator II

in a cProcessor,

 system.out.println(exchange.getIn().getBody(String.class))
Anonymous
Not applicable
Author

What Java object contains response and how can I retrieve it?
Loko
Creator II
Creator II

The one I said in my previous comment : exchange

Anonymous
Not applicable
Author

Can you write Java code?
Loko
Creator II
Creator II

exchange.getIn().getBody(String.class).

 

This is very basic route stuff, I guess you should first take time to learn thoses basics