1

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();

お願い助けて

4

1 に答える 1

1
ServerAddress adr = new ServerAddress(conStr);
Server serv = new Server(adr);
P4Server ser = new P4Server(conStr, user,password,ws_client);
Connection con = new Connection(serv);
Options opconnect = new Options();
opconnect.Add("-p" , "");
con.SetClient(ws_client);
con.Connect(null);
con.Login(password);
于 2013-05-08T09:56:13.670 に答える