Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ngazelle
Partner - Contributor II
Partner - Contributor II

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:

The following error occurred:
QVX_UNEXPECTED_END_OF_DATA: The connection format is obsolete. Please edit your connection object and save it.

 

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"
);

 

Labels (1)
1 Reply
ngazelle
Partner - Contributor II
Partner - Contributor II
Author

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..."
);