Any recommendation for adding logging to a server script to produce output when running a web service generated via the Process Activator.
Mstm.WriteToLog() will insert into eLog table. You can use it to catch unhandled exceptions...
try
{
//do stuff
}
catch (Exception ex)
Mstm.WriteToLog("",ex.ToString(),Severity.Warning);
Can also use Mstm.WriteToFile