p4 api .net でセッションを開こうとしましたが、コマンドが機能しません。
ServerAddress adr = new ServerAddress(p.conStr);
Server serv = new Server(adr);
P4Server ser = new P4Server(p.conStr, p.user, p.password, p.ws_client);
Connection con = new Connection(serv);
string password = "Password";
con.Login(password);
オブジェクト con.timeout は値を数えます:
"base {System.SystemException} = {"La référence d'objet n'est pas définie à une instance d'un objet."}"
p4 -p xx.xxx.xxx.x:xxxx login
コマンドを渡してコマンドラインwプロセスを使用し、パスワードを渡す場合、問題はそれができないことだと思います。
System.Diagnostics.Process
次のコードを使用してコマンドを渡すことも試みました。
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "p4.exe";
startInfo.Arguments = "p4 -p 10.215.100.7:1666 login";
process.StartInfo = startInfo;
process.Start();
お願い助けて