public void CreateTC(string strTCName, string strTCIdentifier)
{
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
startInfo.Arguments = " + ConfigurationSettings.AppSettings["LivelinkServerName"] + "//Livelink/livelink.exe?func=ll.login&Username=Admin&Password="+AdminPassword+"&NextURL=%2FLivelink%2Flivelink%2Eexe%3Ffunc%3Dll%26objType%3D" + (int) Const.llTypeComittee + "%26objAction%3Dcreate2%26parentId%3D2000%26Name%3D" + strTCIdentifier + " " + strTCName + "%26elinkname%3D" + strTCIdentifier.Replace(" ", "").Trim() + "%26status%3D0%26CommitteeTemplate_ID%3D" + int.Parse(ConfigurationSettings.AppSettings["LivelinkTemplate"]) + "%26CTT_ID%3D2000%26nextURL%3D%26state%3D1%26CLASS_ID%3D0";
Process aa = new Process();
aa.StartInfo = startInfo;
aa.Start();
Thread.Sleep(10000);
aa.Kill();
}
But i Explorer say:
Server did not Respond
The Livelink Server did not respond, or sent a document that contained no data. Please try again. If the problem persists, contact your Livelink administrator.
-------------------
Can anyone help me?
Thank you
{
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
startInfo.Arguments = " + ConfigurationSettings.AppSettings["LivelinkServerName"] + "//Livelink/livelink.exe?func=ll.login&Username=Admin&Password="+AdminPassword+"&NextURL=%2FLivelink%2Flivelink%2Eexe%3Ffunc%3Dll%26objType%3D" + (int) Const.llTypeComittee + "%26objAction%3Dcreate2%26parentId%3D2000%26Name%3D" + strTCIdentifier + " " + strTCName + "%26elinkname%3D" + strTCIdentifier.Replace(" ", "").Trim() + "%26status%3D0%26CommitteeTemplate_ID%3D" + int.Parse(ConfigurationSettings.AppSettings["LivelinkTemplate"]) + "%26CTT_ID%3D2000%26nextURL%3D%26state%3D1%26CLASS_ID%3D0";
Process aa = new Process();
aa.StartInfo = startInfo;
aa.Start();
Thread.Sleep(10000);
aa.Kill();
}
But i Explorer say:
Server did not Respond
The Livelink Server did not respond, or sent a document that contained no data. Please try again. If the problem persists, contact your Livelink administrator.
-------------------
Can anyone help me?
Thank you