Skip to content

Commit 8478c97

Browse files
committed
Use uppercase namespace in connInfo
1 parent d579b6c commit 8478c97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/serverActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export async function serverActions(): Promise<void> {
7171
const file = currentFile();
7272
const classname = file && file.name.toLowerCase().endsWith(".cls") ? file.name.slice(0, -4) : "";
7373
const classnameEncoded = encodeURIComponent(classname);
74-
const connInfo = `${host}:${port}${pathPrefix}[${nsEncoded}]`;
74+
const connInfo = `${host}:${port}${pathPrefix}[${nsEncoded.toUpperCase()}]`;
7575
const serverUrl = `${https ? "https" : "http"}://${host}:${port}${pathPrefix}`;
7676
const portalPath = `/csp/sys/UtilHome.csp?$NAMESPACE=${nsEncoded}`;
7777
const classRef = `/csp/documatic/%25CSP.Documatic.cls?LIBRARY=${nsEncoded}${

0 commit comments

Comments
 (0)