You asked for more information about web processes to better identify requests that might be slowing down or blocking your server. We heard you and in 4D v17 R5, we’ve added information about the URL used by web processes. This information can be retrieved two ways: via the 4D Server Administration Window or via the 4D language with the Get process activity command.
VIA the 4d server Administration Window
The Session / Info column on the Processes tab displays the URL of web processes:
Via the 4D language
You can also retrieve the URL with the Get process activity command. A new “url” attribute is added to the Process object when the process type is a Web process.
[
{
name:"Web Process",
sessionID:,
number:16,
ID:358,
visible:true,
systemID:"0x13D1A2D0",
type:-3,
state:4,
cpuUsage:0.10463427835052,
cpuTime:0.3744507,
preemptive:false,
url:"/4daction/WebMethodCountryData/Argentina" //the new attribute
},
...