コールバック(非同期)、result..etcを使用してAPI(SOAP)を呼び出す必要があります。私が使用しなければならない方法:
public IAsyncResult BeginInsertIncident(
string userName, string password, string MsgId, string ThirdPartyRef,
string Type, string EmployeeId, string ShortDescription, string Details,
string Category, string Service, string OwnerGrp, string OwnerRep,
string SecondLevelGrp, string SecondLevelRep, string ThirdLevelGrp,
string ThirdLevelRep, string Impact, string Urgency, string Priority,
string Source, string Status, string State, string Solution,
string ResolvedDate, string Cause, string Approved, AsyncCallback callback,
object asyncState);
EndInsertIncident(IAsyncResult asyncResult, out string msg);
EndInsertIncidentは、チケットシステムでリクエストを閉じ、チケットが正しく実行された場合に結果を返します。
現状:
server3.ILTISAPI api = new servert3.ILTISAPI();
api.BeginInsertIncident(username, "", msg_id, "", "", windows_user,
"BISS - Software Deployment", "", "", "NOT DETERMINED", "", "", "", "", "",
"", "5 - BAU", "3 - BAU", "", "Interface", "", "", "", "", "", "", null,
null);
では、Callback-Functionをどのように実装しますか?API「InsertIncidentCompleted」のステータスはまだnullではありません。EndInsertIncidentを呼び出さないためだと思います。
私はC#を初めて使用するので、助けが必要です。