Search Results

4
votes

What is the difference between precedence, associativity, and order?

Precedence rules specify priority of operators (which operators will be evaluated first, e.g. multiplication has higher precedence than addition, PEMDAS). The associativity …
0
votes

How do you pass an authenticaticated session between app domains

The resolution depends on the type of application and environment in which it is running. E.g. on intranet with NT Domain you can use NTLM to pass windows credentials directly to servers in intrane …
1
vote

How to keep a process running on a remote windows server

You can create Windows Service (server programming on Windows) or use scheduler to periodically execute a task. Depending on the requirements for the high availability, program can be inst …
0
votes

what is the servlet equivalent of Server.MapPath?

You can use method getResourcePaths(String path) from Ser …