我正在尝试连接到我的客户端SAP系统。我使用以下代码进行连接,但是我如何知道连接已成功建立。
protected void Page_Load(object sender, EventArgs e)
{
try
{
SAPSystemConnect sapCfg = new SAPSystemConnect();
RfcDestinationManager.RegisterDestinationConfiguration(sapCfg);
RfcDestination rfcDest = null;
rfcDest = RfcDestinationManager.GetDestination("Dev");
}
catch (Exception ex)
{
lbl.Text=ex.Message;
}
}
答案 0 :(得分:1)
如果连接没有抛出异常,您就会知道已建立连接。如果连接出现问题,该类将抛出适当的异常。