It's the weirdest thing. I know AOLserver supports ns_eval, but in the folder I was given to prototype new features, I get errors simply by having variables in the ns_eval code block:
can't read "bar": no such variable
while executing
"ns_eval {
proc foo {bar} {
ns_log notice "hello, $bar"
}
}"
Now I can get around this by relying on adprocs that are loaded when the server starts, but then I still can't seem to get ns_job to function the way I'd expect. If foo is already defined (in this case, as an adproc), I don't get a runtime error with this in a tcl script loaded in tandem with an adp page:
set bar "world"
ns_job queue test_queue [foo $bar]
but if I review the queue's job list, I see an empty string:
id job36 state done results {} script {} code TCL_OK type nondetached req none time 0.01 starttime 1743162229 endtime 1743162229
indicating the foo proc was executed before anything was added to the queue. If use curly braces:
set bar "world"
ns_job queue test_queue {[foo $bar]}
I get the following in the queue:
id job38 state done results {can't read "bar": no such variable} script {[foo $bar]} code TCL_ERROR type nondetached req none time 0.06 starttime 1743163464 endtime 1743163464
I could try again with standard procs, but this feels like something wrong with how my script is being evaluated.