Skip to main content
Announcements
Qlik Community Office Hours, March 20th. Former Talend Community users, ask your questions live. SIGN UP
cancel
Showing results for 
Search instead for 
Did you mean: 
20aldrich20
Contributor
Contributor

Qlik Sense .Net SDK v13.17.0

I am trying to connect to our Qlik Sense Server through .Net SDK v13.17.0 but I always get the "QT" Product Method Error.

I am using a trial license given by qlik vendor.

Any thoughts?

//This is my code

Uri uri = new Uri("http://207.99..."); //I intentionally removed the ip address. There's also no port included on the uri
ILocation location = Qlik.Engine.Location.FromUri(uri);

location.AsNtlmUserViaProxy(proxyUsesSsl: false);

using (IHub hub = location.Hub())
{
 Console.WriteLine(hub.ProductVersion());
}

 

Labels (4)
3 Replies
Øystein_Kolsrud
Employee
Employee

Two things to check:

  1. You are using an http connection (not https). Are you sure the proxy you are connecting to supports that?
  2. Have you checked your firewall settings? Could be your connection is blocked.

I believe both of those scenarios will simply give you no resoonse for your requests which will result in that timeout.

20aldrich20
Contributor
Contributor
Author

@Øystein_Kolsrud I already tried that but still getting that error. 

Please see openportchecker image and the qlikerror image

 
Øystein_Kolsrud
Employee
Employee

Oh... But you are trying to do a direct connection to the engine using the AsNtlmUserViaProxy configuration. You should remove the port number from uri that you provide to the "AsNtlmUserViaProxy" method.

If you want to go directly on 4747, then you need to user certificates and the "AsDirectConnection" configuration.