Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
347 views

hosting clr and catching threading exceptions

I am trying to write an plugin system that can load managed plugins. The host should be able to unload the plugins if there are any exceptions. for my poc I have a sample code library in C# that ...
10
votes
1answer
297 views

CLR hosting exception handling in a non-CLR-created thread

The issue: An unhandled exception in a thread entering the CLR from unmanaged code does not trigger the "normal" unhandled exception CLR processing. In the code below calling ...
9
votes
2answers
991 views

What is CLR hosting?

What is CLR hosting? What is the use case for that?
5
votes
2answers
3k views

How does Excel VSTO Work?

How does Excel VSTO Work? If I create an Excel Workbook solution in Visual Studio 2005 then I can happily code away, access a full Excel object model and even treat the Excel sheet as a design ...
4
votes
1answer
328 views

Resolving .NET assembly reference to a different name?

My project references Library1.dll and Library2.dll. Library2.dll has a dependency on Library1.dll, but it was compiled to reference it by a different name, Library1.Net40.dll. Is there an nice way ...
3
votes
2answers
227 views

How to limit a memory that can be allocated by a specific class?

I'm loading several external assemblies into my application at runtime. And I need to limit an amount of memory that can be used by a specific class which is defined in each of the external ...
3
votes
3answers
388 views

Is it possible to load two versions of the .NET runtime in the same process?

There are two scenarios I need to clarify: An executable compiled with .NET 3.5 needs to use a library compiled with .NET 1.1 and the library must run on the 1.1 runtime. An executable compiled with ...
2
votes
1answer
65 views

Custom AppDomainManager fails to start runtimeHost

I have following appDomainManager code public class HostAppDomainManager : AppDomainManager { public override void InitializeNewDomain(AppDomainSetup appDomainInfo) { ...
2
votes
0answers
83 views

CLR4 Hosting Interface is causing Heap Corruption?

I'm working with native CLR hosting for some weeks now. In the beginning it worked pretty well. But later on I've noticed that something in my application causes heap corruption. I've figured out that ...
2
votes
1answer
162 views

How do I convert a .tlb file to headers and implementation files?

I'm trying to convert mscorlib.tlb. It normally used in C++ like this: #import "mscorlib.tlb" raw_interfaces_only \ high_property_prefixes("_get","_put","_putref") \ ...
2
votes
0answers
300 views

Creating a hosted CLR AppDomain with full trust permissions including network rights

I need to host the .NET runtime in an unmanaged process. I have code that works to load the runtime via COM and I can load assemblies into the AppDomain and execute code just fine. However, I run ...
2
votes
1answer
45 views

What/Where is the value of E_CLR_ALREADY_STARTED?

The docs for ICLRRuntimeHost::SetHostControl claim that it can return E_CLR_ALREADY_STARTED. I have been unable to find a definition for this value. Ideally, I'd like to know what the appropriate ...
2
votes
1answer
1k views

Is it possible to host the CLR in a C program?

Every example I can find is in C++, but I'm trying to keep my project in C. Is it even possible to host the CLR in a C program? If so, can you point me to an example?
2
votes
2answers
692 views

Injecting a CLR host into a running process - possible?

This way lies madness, I know. I have an executable (the source code to which I do not have access) that I would like to extend via .NET. It's a native executable, so I would need to inject a CLR ...
2
votes
1answer
490 views

Hosting CLR - Bad parameters

I'm trying to host the CLR inside my C++ application and I'm having problems invoking the entry point of the managed application. The entry point is defined as usual: static void Main(string[] args) ...
1
vote
2answers
119 views

Is it possible to reload the CLR?

I'm fiddling with a project where the CLR is hosted within a C application. Is there a supported way to unlink the CLR and relaunch it?
1
vote
1answer
346 views

How to split Dot Net Hosting function when calling via C++ dll

I am exploring calling .net methods from unmanaged C++ code and have found the function below in How To Inject a Managed .NET Assembly (DLL) Into Another Process void StartTheDotNetRuntime() { // ...
0
votes
1answer
51 views

Hosting CLR in native - COM interfaces, unresolved external symbol _CStdStubBuffer_Release@4

I'm experimenting with hosting CLR (not trying to use mono for now, though I will probably try). Basically, I'm following this: ...
0
votes
4answers
161 views

A SQL Server function to generate of sequential numbers

I would like to have a SQL Server function dbo.GetNextNumber(), which would generate sequential numbers for each call. As far as I understand this is impossible with a native T-SQL function as SQL ...
0
votes
2answers
319 views

How to tell what version of the .NET CLR is loaded by a running application on XP?

I know that there are managed shell extensions loaded by explorer.exe on a computer. I want to know what version of the CLR is loaded into explorer.exe. If I am running Vista or Win7, I can use ...
0
votes
1answer
88 views

Cannot create a WPF UserControl in a Clr 4.0 self hosting application because of a stackoverflow error

I managed to host the CLR 2.0 in a Delphi win32 application that was able to create and host WPF controls inside a Delphi control, something similar to the ElementHost for WinForms applications. Now, ...
0
votes
1answer
533 views

Azure and native code

It looks like you can host native code on Azure: http://msdn.microsoft.com/en-us/library/dd573362.aspx. Is it possible to run a socket server (listening tcp/udp) here? And even hosting a CLR on top?
0
votes
2answers
922 views

error C2440: 'function' : cannot convert from 'const IID' to 'DWORD'

While trying to host the CLR, I keep getting this: error C2440: 'function' : cannot convert from 'const IID' to 'DWORD' My code: ICLRRuntimeHost *host = NULL; HRESULT result = ...
0
votes
1answer
409 views

Hosting .NET method in SQL Server CLR

I have been asked to create a function in SQL Server 2005 that is a CLR hosted function I have created in .NET 3.5. Do CLR functions hosted in SQL have access to App.Config files or do all config ...