-
Hello! I just installed the extension in VSCode (1.58.2) on Mac (BigSur, 11.5). I can compile and run ECL code but it won't display results in the "HPCC: [workunitid]" panel. I use HTTPS protocol with username and password in my launch configuration (and Http Proxy set to off in global settings). What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
@lpezet - What server version are you targetting? |
Beta Was this translation helpful? Give feedback.
-
man I tried to provide it all in first post and I forgot that one! Sorry! |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Oh ok. I didn't have those DEBUG logs and turned out I need to set "ECL: Debug Logging" in the Extension Settings and NOT in the settings.json (when I mouse over "ecl.debugLogging" in settings.json VSCode ddid warn me "This setting can be applied only in application user settings"). My bad. Sigh...any way to make it work with self-signed certificates? |
Beta Was this translation helpful? Give feedback.
-
If you add it to your Chrome / Chromium settings it might get picked up by VSCode as well? |
Beta Was this translation helpful? Give feedback.
-
So I tried to import my self-signed certificate in Keychain Access, but it doesn't seem do any good (it reads the certificate just fine, but still have the same issues). That works for me and now I see my query results in VSCode! Thank you so @GordonSmith for this super helpful and very responsive support! |
Beta Was this translation helpful? Give feedback.
-
Good find - the following extension may help as well (for our windows users): https://marketplace.visualstudio.com/items?itemName=ukoloff.win-ca |
Beta Was this translation helpful? Give feedback.
Oh ok. I didn't have those DEBUG logs and turned out I need to set "ECL: Debug Logging" in the Extension Settings and NOT in the settings.json (when I mouse over "ecl.debugLogging" in settings.json VSCode ddid warn me "This setting can be applied only in application user settings"). My bad.
I see the DEBUG logs and nothing that helps like you said.
In the Network tab, I see WUQuery.json requests that failed. If I copy those requests for like curl, they work fine BUT ONLY if I don't verify the SSL certificate (I'm using a self-signed cert right now).
Looking at the Console tab I see "Failed to load resource: net::ERR_CERT_INVALID" for those WQuery.json requests.
Sigh...any way to make it w…