AttachNewProcess (IHTTPAnalyzerStandalone)
Top  Previous  Next

Syntax
object .AttachNewProcess(ProcessName as String)

Arguments
ProcessName A String value which contains the name of process to be created and attached to.

Description
The AttachNewProcess method is used to create a process and attach HTTPAnalyzer stand-alone to it . Anyway, HTTPAnalyzer stand-alone will capture and monitor HTTP/HTTPs traffic from the new process.

Examples
JavaScript example:
var  standalone=new ActiveXObject("HTTPAnalyzerStd.HTTPAnalyzerStandAlone");
standalone.AttachNewProcess
("IExplorer.exe");
standalone.start();
.........

standalone.Stop();