intersystems-community / intersystems-servermanager

VS Code helper extension defining connections to InterSystems servers
https://marketplace.visualstudio.com/items?itemName=intersystems-community.servermanager
MIT License
12 stars 12 forks source link

pathPrefix failure #95

Closed theflyingape closed 3 years ago

theflyingape commented 3 years ago

I have many instances running on a single host that perform async Mirroring functions for our archiving and disaster reovery needs. There are working SMP for each instance off a running Apache service on the same host, i.e.,

https://valhalla.bidmc.org/csp/sys/%25CSP.Portal.Home.zen connects to BACKUP instance https://valhalla.bidmc.org/watson/csp/sys/%25CSP.Portal.Home.zen connects to WATSON instance ... and there are several more.

The VS Code settings editor does not allow for pathPrefix to not have a leading "/" in it. But, the API call seems to put an extra "/" in it, for example:

      "valhalla": {
        "webServer": {
          "scheme": "https",
          "host": "valhalla.bidmc.org",
          "port": 443
        },
        "description": "archiving & recovery",
        "username": "rhurst"
      },
      "valhalla-watson": {
        "webServer": {
          "scheme": "https",
          "host": "valhalla.bidmc.org",
          "pathPrefix": "/watson",
          "port": 443
        },
        "description": "archiving & recovery",
        "username": "rhurst"
      }

Connecting to the valhalla-watson server prompts for my password (wish it could re-use valhalla. but that's for another issue), but then fails and shows it with an alert icon with "Offline at hh:mm:ss xm". The server-side Apache access log shows the path request with double slashes: 10.25.6.140 - - [22/Jun/2021:13:27:27 -0400] "HEAD //watson/api/atelier/ HTTP/1.1" 404 - "-" "axios/0.21.1"

I suppose I could workaround this in Apache with a ReWrite directive to convert any leading double slashes to a single one, but ...

gjsjohnmurray commented 3 years ago

Please try https://github.com/intersystems-community/intersystems-servermanager/releases/tag/v2.0.6-beta.2

theflyingape commented 3 years ago

Closer, it now authenticates and enumerates the Namespaces for valhalla and valhalla-watson (pathPrefix). But the added Namespace out of Explorer shows an empty tree list. On the Apache server-side, below are its invocation sequence:

10.25.6.140 - - [23/Jun/2021:08:31:56 -0400] "HEAD /watson/api/atelier/ HTTP/1.1" 200 - "-" "axios/0.21.1"
10.25.6.140 - - [23/Jun/2021:08:31:58 -0400] "GET /watson/api/atelier/ HTTP/1.1" 200 639 "-" "axios/0.21.1"

10.25.6.140 - - [23/Jun/2021:08:32:06 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.settings.json HTTP/1.1" 400 233 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.tasks.json HTTP/1.1" 400 227 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.launch.json HTTP/1.1" 400 229 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.settings.json HTTP/1.1" 400 233 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.tasks.json HTTP/1.1" 400 227 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.launch.json HTTP/1.1" 400 229 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode HTTP/1.1" 400 205 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.settings.json HTTP/1.1" 400 233 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.tasks.json HTTP/1.1" 400 227 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.launch.json HTTP/1.1" 400 229 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:07 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.settings.json HTTP/1.1" 400 233 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.tasks.json HTTP/1.1" 400 227 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.launch.json HTTP/1.1" 400 229 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson...git.config HTTP/1.1" 400 215 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..git.config HTTP/1.1" 400 213 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..devcontainer.devcontainer.json HTTP/1.1" 400 253 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..devcontainer.devcontainer.json HTTP/1.1" 400 253 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.pom.xml HTTP/1.1" 400 205 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.pom.xml HTTP/1.1" 400 205 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.build.gradle HTTP/1.1" 400 215 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:32:08 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.build.gradle HTTP/1.1" 400 215 "-" "node-fetch"

For comparison, I saw no regression issues with the "parent" instance (no pathPrefix) off the same host:

10.25.6.140 - - [23/Jun/2021:08:33:20 -0400] "HEAD /api/atelier/ HTTP/1.1" 200 - "-" "axios/0.21.1"
10.25.6.140 - - [23/Jun/2021:08:33:23 -0400] "GET /api/atelier/ HTTP/1.1" 200 3059 "-" "axios/0.21.1"
10.25.6.140 - - [23/Jun/2021:08:33:32 -0400] "POST /api/atelier/v3/BACKUP/action/query HTTP/1.1" 200 201 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "POST /api/atelier/v3/BACKUP/action/query HTTP/1.1" 200 201 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "POST /api/atelier/v3/BACKUP/action/query HTTP/1.1" 200 201 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/settings.json HTTP/1.1" 404 234 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/launch.json HTTP/1.1" 404 230 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/tasks.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/settings.json HTTP/1.1" 404 234 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/tasks.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/launch.json HTTP/1.1" 404 230 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:33 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/settings.json HTTP/1.1" 404 234 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/settings.json HTTP/1.1" 404 234 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode HTTP/1.1" 400 205 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/tasks.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/launch.json HTTP/1.1" 404 230 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/tasks.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/launch.json HTTP/1.1" 404 230 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/extensions.json HTTP/1.1" 404 238 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/extensions.json HTTP/1.1" 404 238 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/extensions.json HTTP/1.1" 404 238 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..vscode.extensions.json HTTP/1.1" 400 237 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/doc//_vscode/BACKUP/extensions.json HTTP/1.1" 404 238 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson...git.config HTTP/1.1" 400 215 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "GET /api/atelier/v3/%25SYS/cspapps/%25SYS HTTP/1.1" 200 257 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "POST /api/atelier/v3/BACKUP/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:34 -0400] "POST /api/atelier/v3/%25SYS/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "POST /api/atelier/v3/BACKUP/action/query HTTP/1.1" 200 201 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..git.config HTTP/1.1" 400 213 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..devcontainer.devcontainer.json HTTP/1.1" 400 253 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson..devcontainer.devcontainer.json HTTP/1.1" 400 253 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.pom.xml HTTP/1.1" 400 205 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.pom.xml HTTP/1.1" 400 205 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.build.gradle HTTP/1.1" 400 215 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /watson/api/atelier/v3/SBX/doc/watson.build.gradle HTTP/1.1" 400 215 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "POST /api/atelier/v3/BACKUP/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /api/atelier/v3/BACKUP/doc/pom.xml HTTP/1.1" 400 191 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /api/atelier/v3/BACKUP/doc/pom.xml HTTP/1.1" 400 191 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /api/atelier/v3/BACKUP/doc/build.gradle HTTP/1.1" 400 201 "-" "node-fetch"
10.25.6.140 - - [23/Jun/2021:08:33:35 -0400] "GET /api/atelier/v3/BACKUP/doc/build.gradle HTTP/1.1" 400 201 "-" "node-fetch"
gjsjohnmurray commented 3 years ago

Closer, it now authenticates and enumerates the Namespaces for valhalla and valhalla-watson (pathPrefix). But the added Namespace out of Explorer shows an empty tree list.

@theflyingape this is #99. I will let you know when a new beta VSIX is available (should be on Friday).

gjsjohnmurray commented 3 years ago

@theflyingape 2.0.6-beta.4 is now available from https://github.com/intersystems-community/intersystems-servermanager/releases

Please test and report back here.

theflyingape commented 3 years ago

Opening the Server works:

10.25.6.140 - - [25/Jun/2021:12:00:15 -0400] "HEAD /watson/api/atelier/ HTTP/1.1" 401 - "-" "axios/0.21.1"
10.25.6.140 - - [25/Jun/2021:12:00:15 -0400] "HEAD /watson/api/atelier/ HTTP/1.1" 200 - "-" "axios/0.21.1"
10.25.6.140 - - [25/Jun/2021:12:00:21 -0400] "GET /watson/api/atelier/ HTTP/1.1" 200 639 "-" "axios/0.21.1"

... then View Code in Namespace adds into Explorer workspace (read-only) as this is a Async/DR member and it's mounted read-only -- and it now enumerates the tree view listing:

10.25.6.140 - - [25/Jun/2021:12:01:44 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 1961 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:44 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 1963 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:44 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/settings.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:44 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/launch.json HTTP/1.1" 404 224 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:44 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/tasks.json HTTP/1.1" 404 222 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:44 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/settings.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/launch.json HTTP/1.1" 404 224 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/tasks.json HTTP/1.1" 404 222 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/extensions.json HTTP/1.1" 404 232 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/extensions.json HTTP/1.1" 404 232 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/extensions.json HTTP/1.1" 404 232 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/extensions.json HTTP/1.1" 404 232 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 1963 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/settings.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/settings.json HTTP/1.1" 404 228 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 74 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/launch.json HTTP/1.1" 404 224 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/tasks.json HTTP/1.1" 404 222 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/launch.json HTTP/1.1" 404 224 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "GET /watson/api/atelier/v3/%25SYS/doc//_vscode/SBX/tasks.json HTTP/1.1" 404 222 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:01:45 -0400] "POST /watson/api/atelier/v3/SBX/action/query HTTP/1.1" 200 1961 "-" "node-fetch"

... cannot open a source file out of it, however, get a VS Code error dialog window with these entries: image

10.25.6.140 - - [25/Jun/2021:12:03:20 -0400] "GET /watson/api/atelier/v3/SBX/doc/CCC101SQL1.mac HTTP/1.1" 200 227 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:03:20 -0400] "GET /watson/api/atelier/v3/SBX/doc/CCC101SQL1.mac HTTP/1.1" 200 227 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:03:20 -0400] "GET /watson/api/atelier/v3/%25SYS/cspapps/%25SYS HTTP/1.1" 200 243 "-" "node-fetch"
10.25.6.140 - - [25/Jun/2021:12:03:20 -0400] "POST /watson/api/atelier/v3/%25SYS/action/query HTTP/1.1" 200 74 "-" "node-fetch"
theflyingape commented 3 years ago

@gjsjohnmurray should my last observation here be re-posted as a new issue?

gjsjohnmurray commented 3 years ago

@gjsjohnmurray should my last observation here be re-posted as a new issue?

Yes please.