如何使用SAP.net coonector检查连接是否已建立

时间:2013-11-19 06:03:23

标签: c# asp.net saprfc sap-connector

我正在尝试连接到我的客户端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;
    }
}

1 个答案:

答案 0 :(得分:1)

如果连接没有抛出异常,您就会知道已建立连接。如果连接出现问题,该类将抛出适当的异常。