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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

We are looking to implement a BI

Hello!!!  The goal is to create a job that calls /WebServices/Invoice.svc processed the response and outputs it to the attached XML format
Can you help me? I can't understand where to start

Labels (1)
  • Other

2 Replies
Anonymous
Not applicable
Author

Hi
To start your case, learn the component tRest (for restful web service) or tSOAP (for soap web service) to know how to call a web service, and print the response on the console with tLogRow to check if you get the expected output, eg:
tRest--main--tLogRow

Next, you will learn tExtractJsonField (extract data from Json string) or tExtractXMLField (extract data from XML string) to know how to extract data from the response, eg:
tRest--main--tLogRow--tExtractJsonField--tLogRow

Please try and let me know if you have any problems.

Regards
Shong

Anonymous
Not applicable
Author

Thank you, this is an interesting solution, but when I click on the link a ( https://brandedpromoapparel.com/WebServices/Invoice.svc)message appears "Service
You have created a service.
To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:
svcutil.exe /WebServices/WSDL/InvoiceService.wsdl
This will generate a configuration file and a code file that contains the client's class. Add the two files to your client application and use the generated client class to call the Service. For example:"

How can I use it?