Hi All,
This is the exception message thrown by a windows form (ASP.NET 2.0) when I tried to start a process .
"A transport-level error has occurred when sending the request to the server. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.)"
The code snippet is :
private
void K2TEST_Click(object sender, EventArgs e){
Connection cn = new Connection();
cn.Open("Server", "";];Authentication=External;User=sourcecode;Password=");
SourceCode.K2ROM.
ProcessInstance pI = cn.CreateProcessInstance("K2R&DServerTest");pI.DataFieldss
"Temp"].Value = "101,102,103";
cn.StartProcessInstance(pI);
}
The exception was thrown in the statement
cn.Open("Server", " ;];Authentication=External;User=sourcecode;Password=");
I am unable to determine the cause.
Please guide.
Thanks and Regards.