Skip to main content
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
HirisH_V7
Master
Master

Hi ,

Calling Webservice from Qlikview

How to call a WebService to pull some data into the QV application

Check this

-Hirish

HirisH
“Aspire to Inspire before we Expire!”
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