DAX Package Manager not working (SSL connection failed) #1512
Replies: 5 comments 1 reply
-
|
Hi @mrubinitor |
Beta Was this translation helpful? Give feedback.
-
|
@mrubinitor
Restart Tabular Editor 3 after making a change to these settings, then try to connect to DaxLib again. If the issue persists, could you try to run the following C# script and reply here with the output? This should give us a bit more information about what's going on. using DaxLib.Client;
var source = new Uri("https://api.daxlib.org");
var version = typeof(Model).Assembly.GetName().Version;
var client = new DaxLibClient(new ProductInformation("Tabular_Editor", version.ToString()), source);
try
{
_ = await client.SearchAsync("test", 0, 20, true);
Info("Test succeeded!");
}
catch(Exception ex)
{
Output(ex.ToString());
} |
Beta Was this translation helpful? Give feedback.
-
|
@mlonsk @otykier thanks for your support! I tried changing the proxy settings as suggested (from "None" to "System" and vice versa), but the connection issue persists. I'm attaching the message generated by the C# script: Could this be a firewall issue at this point? May I kindly ask where I can find information about which firewall port needs to be enabled to allow the connection to DAX Package Manager? Thank you very much for your help 🙂 |
Beta Was this translation helpful? Give feedback.
-
|
@mrubinitor As Daniel mentioned, it seems the DaxLib client cannot verify the TLS certificate chain. This is a check the DaxLib client enforces to ensure the connection can be trusted. Could you please open this link in your browser and let us know what you see? This is the same address used by the DaxLib client and allows you to simulate the same request directly from the browser. https://api.daxlib.org/v1/query-packages?q=sample Do you get a JSON response, a certificate warning, or another error? In your browser, if you click
|
Beta Was this translation helpful? Give feedback.
-
|
@albertospelta thank you for your support, and apologies for the delayed response. I’ll check with our IT team to verify access to the firewall port mentioned in the previous messages. I’ll update you here if this resolves the issue. Thanks for your help! |
Beta Was this translation helpful? Give feedback.



Uh oh!
There was an error while loading. Please reload this page.
-
Hi everybody!
I’m having trouble getting the DAX Package Manager to work. I have a 'Desktop' license.
It doesn’t seem to run correctly, and I’m not sure if it’s due to a configuration issue on my side.
Here's a screenshot of the error message I get:
Could someone please confirm if this might be related to a wrong setup or if there’s something specific I need to configure to make it work?
Thanks in advance.
Massimo
Beta Was this translation helpful? Give feedback.
All reactions