Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
A couple of general things to check if you having trouble with Qlik Web Connectors:
=> We had one user who started experiencing this spontaneously after restarting their server (Qlik Web Connectors had been running fine up to this point). It turned out to be due to a user account being removed from have access to the Settings.xml file (alongside the main Qlik Web Connectors exe). This was fixed by simply renaming/deleting this Settings.xml file and allowing Qlik Web Connectors to recreate it. If this does fix your issue and you renamed the old Settings.xml file you should be able to compare the permissions to see what changed.
A large number of temporary files are accumulating on my machine in the Content.IE5 directory
This is nothing to do with Qlik Web Connectors however, as you might only be making a large number of http load requests since using Qlik Web Connectors it might appear to be related. Qlik have given us Bug Id 69453 for this issue and we are awaiting a resolution. We do believe it happens only in conjunction with IE11 although this is not confirmed.
=> One possible workaround appears to be to enable “Can Execute External Programs” in the script editor Settings and add a line something like the following to your load script:
Execute cmd /C del /s /q "C:\Windows\System32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\WebConnectorV2*.xml";
Or you could also consider adding a scheduled windows task which temporarily clears down this directory.
=> Qlik Web Connectors starts OK but there are no connectors listed or some connectors are missing.
In rare circumstances it seems that the Qlik Web Connectors ZIP file does not download properly OR does not unzip correctly on the end user's machine. Please try downloading and unzipping Qlik Web Connectors again to see if this resolves your issue.
=> If you only see some of then, then please:
=> We would now recommend you use Qlik Web Connectors 1.2.5.2 or later and the QVX file format which should resolve this issue:
LOAD .... FROM [http://localhost:5555/QVSource/[Connector]/?table=[Table]¶meters=?????&format=qvx] (qvx);
=> If you have started receiving a 'Syntax error....' when reloading your QlikView application which started happening after upgrading to QlikView 11 - please ensure you have no colon ':' characters in your field/column names - you could replace these, for example, with an underscore '_' character.
1) When I use Qlik Web Connectors I get the data, but when I then run it in Qlik Sense, I get the following Load error: LOAD statement only works with lib:// paths in this script mode
=> There is a feature in Qlik Sense, which stop arbitrary load URLs from being used. There is a workaround which involves disabling Standard Mode as described here
1) I am getting an error 'Cannot open HTML File', 'Cannot open file' or 'Field not found' (or some other load script error) when trying to reload my QlikView application. Something like the following:
=> The first step with any errors like this is to take the url in the load request, in this case: http://localhost:5555/QVSource/TwitterConnector/?table=Search&fixedcolumns=&searchTerm=%40BlackBerry...
And try it in a standard web browser where you should receive a more helpful error. Some typical causes of this are:
If, when browsing to the load request url, you see under the section, "WebExcep" the error message "System.Net.WebException: Unable to connect to the remote server", then please ensure that the machine on which Qlik Web Connectorsis installed is able to connect to the internet or the end points specified for connector you're using - these end points can be found on the Connector's 'About' tab under permissions.
2) My Qlik Web Connectors application reloaded OK in QlikView desktop but fails when reloading via QlikView Server or publisher.
=> We have discovered an apparent bug in QlikView where if you have new lines in the http url to Qlik Web Connectors, e.g. something like:
| 1 2 3 4 5 6 7 8 9 10 11 |
TwitterConnector_SearchV2: LOAD id as SearchV2_id, created_at as SearchV2_created_at, text as SearchV2_text, ...removed for clarity... FROM [http://localhost:5555/QVSource/TwitterConnector/?table=SearchV2& searchTerm=qlikview& format=qvx] (qvx); |
The reload works OK in QlikView desktop but not in QlikView Server/Publisher. We therefore recommend always ensuring that your urls are on a single line, e.g.:
| 1 2 3 4 5 6 7 8 9 |
TwitterConnector_SearchV2: LOAD id as SearchV2_id, created_at as SearchV2_created_at, text as SearchV2_text, ...removed for clarity... FROM [http://localhost:5555/QVSource/TwitterConnector/?table=SearchV2&searchTerm=qlikview&format=qvx] (qvx); |
If you believe your load script is running particularly slowly (bearing in mind that with Qlik Web Connectors, you could be download large amounts of data across the public web which be significantly slower than accessing data stores on your LAN) please try turning off logging (both in Qlik Web Connectors Log Files) and log file generation from QlikView and see if this makes a difference.
We've had some instances where it appears that some numbers in Qlik Web Connectors based QlikView applications are giving different values to those when they are manually checked for example the average time spent on a web page (Google Analytics) or number of visits.
The first thing to check in this instance is that you also get the same numbers in the Google Analytics Query Explorer.
Since Qlik Web Connectors gets the data from the same system, there should be no, or nominal differences. The following are a few steps that you can follow to identify and reconcile the differences.
Please note, that sampling (detailed here) may also explain why you are getting results different to those you expect of different to those you are seeing in another table/chart either in the Google Analytics interface or in QVSource/QlikView. The Google Analytics Connector has a table named QueryInfo which will tell you if your request is returning sampled data.