
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
CUSTOM CONNECT TO and QvRestConnector.exe
Hello,
Has anayone being able to use "CUSTOM CONNECT TO [Provider=QvRestConnector.exe" in QLIK Sense Desktop (12.36.1 2018)? Anyone has a simple working example that can be shared?
I updated the application settings to enable custom connect (from standard to legacy), but I cannot get rid of the error:
CUSTOM CONNECT TO [Provider=QvRestConnector.exe;timeout=30;method=POST;];
let vBody = '"{""login"":""Me"",""password"":""Blabla""}"';
RestConnectorMasterTable:
SQL SELECT
"access_token"
FROM JSON (wrap on) "root" QDL
WITH CONNECTION (
Url "https://my_url/login",
BODY $(vBody),
HTTPHEADER "Content-Type" "application/json"
);
- Tags:
- custom connect
- rest

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Lib call succedded:
LIB CONNECT TO 'Google';
RestConnectorMasterTable:
SQL SELECT
"status",
"error_message"
FROM XML "GeocodeResponse";
Cusom call failed:
CUSTOM CONNECT TO [Provider=QvRestConnector.exe;timeout=30;method=GET;];
RestConnectorMasterTable:
SQL SELECT
"status",
"error_message"
FROM XML "GeocodeResponse"
WITH CONNECTION (
Url "http://maps.googleapis.com/maps/api/geocode/xml?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA..."
);
