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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

simple web service call

Hello,

I created a simple web service.

You call it with the following URL

https://localhost/webservice/*ID*

I only want to make a call and I don't need any Response.

I tried to create a pivot table with a formula like:

='hyperlink<url>https://localhost/webservice/' & ID

This is working fine. But I dont't want to open the IE. It should only call the url and hand over the Parameter.

any ideas?

THANKS!

3 Replies
Anonymous
Not applicable
Author

How do I handle an https-request?

My script doesn't work.

Sub function

Const HOST = "https://localhost/webservice/"


Set xmlhttp = CreateObject("Microsoft.XMLHTTP")


xmlhttp.open "GET", _
HOST & 123456, false

xmlhttp.send ""

end sub