0

我正在尝试通过首先使用 ProvisionedApplicationPlatformSettings 创建和建立 CollaborationPlatform 来创建 ApplicationEndpoint,当我执行时:

ProvisionedApplicationPlatformSettings settings = new ProvisionedApplicationPlatformSettings("MYAPP", _appID); _collabPlatform = new CollaborationPlatform(settings); _collabPlatform.BeginStartup(EndPlatformStartup, _collabPlatform);

EndPlatformStartup执行时的方法中collabPlatform.EndStartup(ar);我得到一个错误

ProvisioningFailureException: One or more values in the configured settings are invalid or unusable. Check inner exception and logs for more details. The settings wrapper failed to initialize. Unable to find the Sqld database: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

4

1 回答 1

1

找到答案/错误,
我试图从 Windows 7 PC 运行应用程序,这显然不支持Auto Provisioned Application,所以现在我在我的 Win7 PC 上构建应用程序,然后在 Lync Server 上执行它。

于 2014-08-14T12:22:53.297 回答