User bio
404 bio not found
Member since Feb 14, 2020
Posts:
Replies:

Hello,

Basically both WebApplications  has same setting. Difference is only path to fysical folder in server.

/test

  • Physical Path: C:\inet\wwwroot\test
  • Package name: csp
  • Auto Compile, Lock CSP Name
  • Event Class: test.session.cls
  • Type: CSP/ZEN

/mobile

  • Physical Path: C:\inet\wwwroot\test\mobile
  • Package name: csp
  • Recurse, Auto Compile, Lock CSP Name
  • Event Class: test.mobile.session.cls

In IIS both are created under Default WWW as an application.

Patrik Spisak · Jun 3, 2025 go to post

I dont know what Im missing here but its not work at all with $QUERY and @ indirection. Still is undefined even I converted local varaible into process private global.

Method setLayout(layout) As %Status
{
	MERGE ^||layout = layout

	SET node = ""
	FOR
	{
		SET node = $QUERY(@^||layout)
		QUIT:node=""
		W node,"",@node,!

	}


	QUIT $$$OK
}

Obviously I was still trying to apply pattern from $ORDER . This one works.

SET node = $QUERY(^||layout(""))

	WHILE (node '= "")
	{
		W !, node
		SET node = $QUERY(@node)
	}
Patrik Spisak · Jun 1, 2025 go to post

That approuch I was trying, but I got always an error of undefined so I gave up.

ClassMethod test(array)
{
    SET value = ""

    FOR
    {
        SET value = $QUERY(@array)
        QUIT:value=""

        W value,"=",@array,!
    }

    QUIT
}

DO ##class(intranet.util.xml).test(.a)

<UNDEFINED>test+4^intranet.util.xml.1 *array
Certifications & Credly badges:
Patrik has no Certifications & Credly badges yet.
Followers:
Patrik has no followers yet.
Following:
Patrik has not followed anybody yet.