We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
connInfo
1 parent d579b6c commit 8478c97Copy full SHA for 8478c97
src/commands/serverActions.ts
@@ -71,7 +71,7 @@ export async function serverActions(): Promise<void> {
71
const file = currentFile();
72
const classname = file && file.name.toLowerCase().endsWith(".cls") ? file.name.slice(0, -4) : "";
73
const classnameEncoded = encodeURIComponent(classname);
74
- const connInfo = `${host}:${port}${pathPrefix}[${nsEncoded}]`;
+ const connInfo = `${host}:${port}${pathPrefix}[${nsEncoded.toUpperCase()}]`;
75
const serverUrl = `${https ? "https" : "http"}://${host}:${port}${pathPrefix}`;
76
const portalPath = `/csp/sys/UtilHome.csp?$NAMESPACE=${nsEncoded}`;
77
const classRef = `/csp/documatic/%25CSP.Documatic.cls?LIBRARY=${nsEncoded}${
0 commit comments