SQL ServerからいくつかのCOM呼び出しを(サードパーティのDLLに)ラップする.netアセンブリを呼び出そうとしています。アセンブリは、(私は安全ではないと外部からのアクセスに登録してみました)罰金登録するが、私は手順を実行したときに私はこのエラーを取得:SQLCLR - COM呼び出しをラップする
A .NET Framework error occurred during execution of user-defined routine or aggregate "ManagedCodeCallTest": System.UriFormatException: Invalid URI: The URI is empty. System.UriFormatException: at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind) at System.Uri..ctor(String uriString) at System.ComponentModel.Design.RuntimeLicenseContext.GetLocalPath(String fileName) at System.ComponentModel.Design.RuntimeLicenseContext.GetSavedLicenseKey(Type type, Assembly resourceAssembly) at System.ComponentModel.LicenseManager.LicenseInteropHelper.GetCurrentContextInfo(Int32& fDesignTime, IntPtr& bstrKey, RuntimeTypeHandle rth) at ManagedCode.MyClass.ArielComponentCall()
任意のアイデア?私は可能なことをしようとしていますか?私はライセンスされたdllについて何かを読んだが、情報は非常に曖昧だった。
編集:ケースでCLRコードは役立ちます:
[SqlProcedure]
public static void ArielComponentCall()
{
Ariel.ApplicationClass application = new Ariel.ApplicationClass();
object arielDoc = application.OpenDocument(@"P:\Projects\COAT\Ariel1.run");
}
このクラスを含むプロジェクトは、COMオブジェクトへの参照を持っています。