473,399 Members | 4,192 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Retrieve name of VB6 calling app via reflection from C# COM interf

I have a C# logging assembly with a static constructor and methods that is
called from another C# Assembly that is used as a COM interface for a VB6
Application. Ideally I need to build a file name based on the name of the
VB6 application. A second choice would be a file name based on the # COM
interface assembly. I have tried calling Assembly.GetCallingAssembly() but
this fails when I use the VB6 client. Is there a way to get this information
at runtime?
Jun 27 '08 #1
7 2659
What do you mean "fails"? Do you get an exception, or do you get and empty
string, or do you get a string that makes no sense?

It would seem to me that you are on the right track, and since the VB Client
is the ultimately the caller, is should come back with it's name if at all.
However, since you have the middle interface, why not require the caller to
name itself to the interface and just pass in App.Name there?
"QSIDeveloper" <QS**********@newsgroup.nospamwrote in message
news:8A**********************************@microsof t.com...
>I have a C# logging assembly with a static constructor and methods that is
called from another C# Assembly that is used as a COM interface for a VB6
Application. Ideally I need to build a file name based on the name of the
VB6 application. A second choice would be a file name based on the # COM
interface assembly. I have tried calling Assembly.GetCallingAssembly()
but
this fails when I use the VB6 client. Is there a way to get this
information
at runtime?

Jun 27 '08 #2
When I call GetCallingAssembly It does not fail (my bad) but I get the
Current assembly, in the prev description that would be the C# logging
assembly rather than the C# COM interface assembly as I had expected.

I also tried applying MethodImplAttribute attribute with
MethodImplOptions.NoInlining to the C# logging assembly constructor but it
had no affect.

I also tried GetEntryAssembly but that return null when run with a VB6
executable calling the COM interface.

I would like not to need an additional parameter for the name because this
will impact existing code. I would prefer a silent/automatic name creation.
"amdrit" wrote:
What do you mean "fails"? Do you get an exception, or do you get and empty
string, or do you get a string that makes no sense?

It would seem to me that you are on the right track, and since the VB Client
is the ultimately the caller, is should come back with it's name if at all.
However, since you have the middle interface, why not require the caller to
name itself to the interface and just pass in App.Name there?
"QSIDeveloper" <QS**********@newsgroup.nospamwrote in message
news:8A**********************************@microsof t.com...
I have a C# logging assembly with a static constructor and methods that is
called from another C# Assembly that is used as a COM interface for a VB6
Application. Ideally I need to build a file name based on the name of the
VB6 application. A second choice would be a file name based on the # COM
interface assembly. I have tried calling Assembly.GetCallingAssembly()
but
this fails when I use the VB6 client. Is there a way to get this
information
at runtime?


Jun 27 '08 #3
Hi Amdrit,

As for the "GetCallingAssembly" method, it should return the immediate
caller of the current method. I'm not sure whether there is anything else
in your applicaiton/assmeblies that may cause the problem, but if what you
want to do is get reference to a certain assembly, you can consider using
the a type in the assembly to reference it. e.g.

"MyAssembly.MyType" is a known type defined in the target assemly I want
to get reference
================
Type tp =typeof(MyAssembly.MyType);

Assembly asm = tp.Assembly;

================

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= <QS**********@newsgroup.nospam>
References: <8A**********************************@microsoft.co m>
<OI**************@TK2MSFTNGP05.phx.gbl>
>Subject: Re: Retrieve name of VB6 calling app via reflection from C# COM in
Date: Mon, 14 Apr 2008 10:43:14 -0700
>
When I call GetCallingAssembly It does not fail (my bad) but I get the
Current assembly, in the prev description that would be the C# logging
assembly rather than the C# COM interface assembly as I had expected.

I also tried applying MethodImplAttribute attribute with
MethodImplOptions.NoInlining to the C# logging assembly constructor but it
had no affect.

I also tried GetEntryAssembly but that return null when run with a VB6
executable calling the COM interface.

I would like not to need an additional parameter for the name because this
will impact existing code. I would prefer a silent/automatic name
creation.
>

"amdrit" wrote:
>What do you mean "fails"? Do you get an exception, or do you get and
empty
>string, or do you get a string that makes no sense?

It would seem to me that you are on the right track, and since the VB
Client
>is the ultimately the caller, is should come back with it's name if at
all.
>However, since you have the middle interface, why not require the caller
to
>name itself to the interface and just pass in App.Name there?
"QSIDeveloper" <QS**********@newsgroup.nospamwrote in message
news:8A**********************************@microso ft.com...
>I have a C# logging assembly with a static constructor and methods that
is
called from another C# Assembly that is used as a COM interface for a
VB6
Application. Ideally I need to build a file name based on the name of
the
VB6 application. A second choice would be a file name based on the #
COM
interface assembly. I have tried calling
Assembly.GetCallingAssembly()
but
this fails when I use the VB6 client. Is there a way to get this
information
at runtime?


Jun 27 '08 #4
In the real app I don't know hat the calling assembly is nor do I know ablut
any types it contains.

Here is a simple example of the issue.
// Calling assembly
namespace ReflectionTest
{
class Program
{
static void Main(string[] args)
{
MyLogger.Logger.LogInfo("Hello");
}
}
}

// logger
namespace MyLogger
{
public class Logger
{
static string callingAssembly = string.Empty;
static Logger()
{

// This is where I need to know who called. The first call is
to LogInfo Below
// that causes this constructor to be called.
// What I need to know is the assembly that called LogInfo
string caller = Assembly.GetCallingAssembly().FullName; // this
returns 'Logger'
string s;
Assembly a = Assembly.GetEntryAssembly();
if (null != a)
s = a.FullName; // this gives me 'ReflectionTester', but
when called from VB6. a is null in that case
}

public static void LogInfo(string info)
{
if (callingAssembly.Equals(string.Empty))
callingAssembly = Assembly.GetCallingAssembly().FullName;
//This gives 'Logger' but it is too late by the time this is run

}
}
}

"Steven Cheng [MSFT]" wrote:
Hi Amdrit,

As for the "GetCallingAssembly" method, it should return the immediate
caller of the current method. I'm not sure whether there is anything else
in your applicaiton/assmeblies that may cause the problem, but if what you
want to do is get reference to a certain assembly, you can consider using
the a type in the assembly to reference it. e.g.

"MyAssembly.MyType" is a known type defined in the target assemly I want
to get reference
================
Type tp =typeof(MyAssembly.MyType);

Assembly asm = tp.Assembly;

================

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= <QS**********@newsgroup.nospam>
References: <8A**********************************@microsoft.co m>
<OI**************@TK2MSFTNGP05.phx.gbl>
Subject: Re: Retrieve name of VB6 calling app via reflection from C# COM in
Date: Mon, 14 Apr 2008 10:43:14 -0700

When I call GetCallingAssembly It does not fail (my bad) but I get the
Current assembly, in the prev description that would be the C# logging
assembly rather than the C# COM interface assembly as I had expected.

I also tried applying MethodImplAttribute attribute with
MethodImplOptions.NoInlining to the C# logging assembly constructor but it
had no affect.

I also tried GetEntryAssembly but that return null when run with a VB6
executable calling the COM interface.

I would like not to need an additional parameter for the name because this
will impact existing code. I would prefer a silent/automatic name
creation.


"amdrit" wrote:
What do you mean "fails"? Do you get an exception, or do you get and
empty
string, or do you get a string that makes no sense?

It would seem to me that you are on the right track, and since the VB
Client
is the ultimately the caller, is should come back with it's name if at
all.
However, since you have the middle interface, why not require the caller
to
name itself to the interface and just pass in App.Name there?
"QSIDeveloper" <QS**********@newsgroup.nospamwrote in message
news:8A**********************************@microsof t.com...
I have a C# logging assembly with a static constructor and methods that
is
called from another C# Assembly that is used as a COM interface for a
VB6
Application. Ideally I need to build a file name based on the name of
the
VB6 application. A second choice would be a file name based on the #
COM
interface assembly. I have tried calling
Assembly.GetCallingAssembly()
but
this fails when I use the VB6 client. Is there a way to get this
information
at runtime?

Jun 27 '08 #5
Thanks for your reply Amdrit,

Based on the complete code sample you provided, I've also tested it on my
side. I think the output is as expected.

In the static constructor of "Logger" class, the "GetCallingAssembly" will
return "MyLogger" assembly because the static constructor is called by .NET
runtime's internal code which is marked as the assembly itself(Rather than
the "ReflectionTest" app assembly).

And in the "LogInfo" method, the "GetCallingAssembly" will return
"ReflectionTest" because it is the immediate caller of the LogInfo method.
Also, if you call "GetEntryAssembly" it will return the assembly that
contains the Main entry point, that's the "ReflectionTest" app assembly
here. You can also see this chain correctly via the CallStack in
debugger's callstack window.

However, for unmanaged VB6 client, it is not a managed application, the
..NET runtime won't mark it as part of the calling assembly chain or entry
point, that's why you will not get it as Entry point assembly.

Why do you need to cache the calling AssemblyName in static constructor? I
think at runtime, it is possible that many different classes in different
assemblies may call "LogInfo" method and the "CallingAssmebly" may also
vary from time to time. It is reasonable to call "GetCallingAssembly" in
"LogInfo" method if you do need to get the assembly who invoke that method.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Thread-Topic: Retrieve name of VB6 calling app via reflection from C# COM
in
>thread-index: Acie74kZBFIskDvWSkqeSsNJrp7vVQ==
Subject: Re: Retrieve name of VB6 calling app via reflection from C# COM in
Date: Tue, 15 Apr 2008 04:55:01 -0700
>In the real app I don't know hat the calling assembly is nor do I know
ablut
>any types it contains.

Here is a simple example of the issue.
// Calling assembly
namespace ReflectionTest
{
class Program
{
static void Main(string[] args)
{
MyLogger.Logger.LogInfo("Hello");
}
}
}

// logger
namespace MyLogger
{
public class Logger
{
static string callingAssembly = string.Empty;
static Logger()
{

// This is where I need to know who called. The first call is
to LogInfo Below
// that causes this constructor to be called.
// What I need to know is the assembly that called LogInfo
string caller = Assembly.GetCallingAssembly().FullName; //
this
>returns 'Logger'
string s;
Assembly a = Assembly.GetEntryAssembly();
if (null != a)
s = a.FullName; // this gives me 'ReflectionTester', but
when called from VB6. a is null in that case
}

public static void LogInfo(string info)
{
if (callingAssembly.Equals(string.Empty))
callingAssembly = Assembly.GetCallingAssembly().FullName;
//This gives 'Logger' but it is too late by the time this is run

}
}
}

"Steven Cheng [MSFT]" wrote:
>Hi Amdrit,

As for the "GetCallingAssembly" method, it should return the immediate
caller of the current method. I'm not sure whether there is anything
else
>in your applicaiton/assmeblies that may cause the problem, but if what
you
>want to do is get reference to a certain assembly, you can consider
using
>the a type in the assembly to reference it. e.g.

"MyAssembly.MyType" is a known type defined in the target assemly I
want
>to get reference
================
Type tp =typeof(MyAssembly.MyType);

Assembly asm = tp.Assembly;

================

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments
and
>suggestions about how we can improve the support we provide to you.
Please
>feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
>>

--------------------
>From: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= <QS**********@newsgroup.nospam>
References: <8A**********************************@microsoft.co m>
<OI**************@TK2MSFTNGP05.phx.gbl>
>Subject: Re: Retrieve name of VB6 calling app via reflection from C#
COM in
>Date: Mon, 14 Apr 2008 10:43:14 -0700
>
When I call GetCallingAssembly It does not fail (my bad) but I get the
Current assembly, in the prev description that would be the C# logging
assembly rather than the C# COM interface assembly as I had expected.

I also tried applying MethodImplAttribute attribute with
MethodImplOptions.NoInlining to the C# logging assembly constructor but
it
>had no affect.

I also tried GetEntryAssembly but that return null when run with a VB6
executable calling the COM interface.

I would like not to need an additional parameter for the name because
this
>will impact existing code. I would prefer a silent/automatic name
creation.
>

"amdrit" wrote:

What do you mean "fails"? Do you get an exception, or do you get and
empty
>string, or do you get a string that makes no sense?

It would seem to me that you are on the right track, and since the VB
Client
>is the ultimately the caller, is should come back with it's name if
at
>all.
>However, since you have the middle interface, why not require the
caller
>to
>name itself to the interface and just pass in App.Name there?
"QSIDeveloper" <QS**********@newsgroup.nospamwrote in message
news:8A**********************************@microso ft.com...
I have a C# logging assembly with a static constructor and methods
that
>is
called from another C# Assembly that is used as a COM interface for
a
>VB6
Application. Ideally I need to build a file name based on the name
of
>the
VB6 application. A second choice would be a file name based on the
#
>COM
interface assembly. I have tried calling
Assembly.GetCallingAssembly()
but
this fails when I use the VB6 client. Is there a way to get this
information
at runtime?


Jun 27 '08 #6
Thank you for looking at this, I had hoped I had overlooked something.
In most cases the logger is consumed by a .NET executable. In that case the
config information is found in the app.config file. In this case the main
executable is a VB6 application we that will eventually be replaced. New
feature are being added using .NET via COM. So as you know normally the
config file name is related to the exe as assembly.exe.config. In the case
of the VB6 EXE, the COM interface will be the only consumer of the logger so
I am looking for a way to build a config file name based on the assembly name
of the COM interface assembly rather than the usual exe. I was hoping there
was some way through reflection to get the assembly name (GetCallingAssembly
of CallingAssembly ) in case we need to have another similar situation with
another interface to legacy code rather than hard coding or passing in a
name.

Is there some way at run time to get the stack information?
If not thanks for you help.
"Steven Cheng [MSFT]" wrote:
Thanks for your reply Amdrit,

Based on the complete code sample you provided, I've also tested it on my
side. I think the output is as expected.

In the static constructor of "Logger" class, the "GetCallingAssembly" will
return "MyLogger" assembly because the static constructor is called by .NET
runtime's internal code which is marked as the assembly itself(Rather than
the "ReflectionTest" app assembly).

And in the "LogInfo" method, the "GetCallingAssembly" will return
"ReflectionTest" because it is the immediate caller of the LogInfo method.
Also, if you call "GetEntryAssembly" it will return the assembly that
contains the Main entry point, that's the "ReflectionTest" app assembly
here. You can also see this chain correctly via the CallStack in
debugger's callstack window.

However, for unmanaged VB6 client, it is not a managed application, the
.NET runtime won't mark it as part of the calling assembly chain or entry
point, that's why you will not get it as Entry point assembly.

Why do you need to cache the calling AssemblyName in static constructor? I
think at runtime, it is possible that many different classes in different
assemblies may call "LogInfo" method and the "CallingAssmebly" may also
vary from time to time. It is reasonable to call "GetCallingAssembly" in
"LogInfo" method if you do need to get the assembly who invoke that method.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
Thread-Topic: Retrieve name of VB6 calling app via reflection from C# COM
in
thread-index: Acie74kZBFIskDvWSkqeSsNJrp7vVQ==
Subject: Re: Retrieve name of VB6 calling app via reflection from C# COM in
Date: Tue, 15 Apr 2008 04:55:01 -0700
In the real app I don't know hat the calling assembly is nor do I know
ablut
any types it contains.

Here is a simple example of the issue.
// Calling assembly
namespace ReflectionTest
{
class Program
{
static void Main(string[] args)
{
MyLogger.Logger.LogInfo("Hello");
}
}
}

// logger
namespace MyLogger
{
public class Logger
{
static string callingAssembly = string.Empty;
static Logger()
{

// This is where I need to know who called. The first call is
to LogInfo Below
// that causes this constructor to be called.
// What I need to know is the assembly that called LogInfo
string caller = Assembly.GetCallingAssembly().FullName; //
this
returns 'Logger'
string s;
Assembly a = Assembly.GetEntryAssembly();
if (null != a)
s = a.FullName; // this gives me 'ReflectionTester', but
when called from VB6. a is null in that case
}

public static void LogInfo(string info)
{
if (callingAssembly.Equals(string.Empty))
callingAssembly = Assembly.GetCallingAssembly().FullName;
//This gives 'Logger' but it is too late by the time this is run

}
}
}

"Steven Cheng [MSFT]" wrote:
Hi Amdrit,

As for the "GetCallingAssembly" method, it should return the immediate
caller of the current method. I'm not sure whether there is anything
else
in your applicaiton/assmeblies that may cause the problem, but if what
you
want to do is get reference to a certain assembly, you can consider
using
the a type in the assembly to reference it. e.g.

"MyAssembly.MyType" is a known type defined in the target assemly I
want
to get reference
================
Type tp =typeof(MyAssembly.MyType);

Assembly asm = tp.Assembly;

================

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments
and
suggestions about how we can improve the support we provide to you.
Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
>

--------------------
From: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= <QS**********@newsgroup.nospam>
References: <8A**********************************@microsoft.co m>
<OI**************@TK2MSFTNGP05.phx.gbl>
Subject: Re: Retrieve name of VB6 calling app via reflection from C#
COM in
Date: Mon, 14 Apr 2008 10:43:14 -0700


When I call GetCallingAssembly It does not fail (my bad) but I get the
Current assembly, in the prev description that would be the C# logging
assembly rather than the C# COM interface assembly as I had expected.

I also tried applying MethodImplAttribute attribute with
MethodImplOptions.NoInlining to the C# logging assembly constructor but
it
had no affect.

I also tried GetEntryAssembly but that return null when run with a VB6
executable calling the COM interface.

I would like not to need an additional parameter for the name because
this
will impact existing code. I would prefer a silent/automatic name
creation.
"amdrit" wrote:

What do you mean "fails"? Do you get an exception, or do you get and
empty
string, or do you get a string that makes no sense?

It would seem to me that you are on the right track, and since the VB
Client
is the ultimately the caller, is should come back with it's name if
at
all.
However, since you have the middle interface, why not require the
caller
to
name itself to the interface and just pass in App.Name there?
"QSIDeveloper" <QS**********@newsgroup.nospamwrote in message
news:8A**********************************@microsof t.com...
I have a C# logging assembly with a static constructor and methods
that
is
called from another C# Assembly that is used as a COM interface for
a
VB6
Application. Ideally I need to build a file name based on the name
of
the
VB6 application. A second choice would be a file name based on the
#
COM
interface assembly. I have tried calling
Assembly.GetCallingAssembly()
but
this fails when I use the VB6 client. Is there a way to get this
information
at runtime?




Jun 27 '08 #7
Thanks for your reply Amdrit,

There does exist a StackTrace class under "System.Diagnositcs" namespace
which can help capture the callstack(for managed code) of the current
thread.

#StackTrace Class
http://msdn2.microsoft.com/en-us/lib...acktrace(VS.71
).aspx

BTW, for unmanaged application(use COM interop to call .net component),it
can also have a exe.config file and you can store some simple data such as
<appSettingsitems in it. Not sure whether this will be helpful?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>Thread-Topic: Retrieve name of VB6 calling app via reflection from C# COM i
From: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= <QS**********@newsgroup.nospam>
References: <8A**********************************@microsoft.co m>
<OI**************@TK2MSFTNGP05.phx.gbl>
<77**********************************@microsoft.co m>
<pK**************@TK2MSFTNGHUB02.phx.gbl>
<B9**********************************@microsoft.co m>
<Rm**************@TK2MSFTNGHUB02.phx.gbl>
>Subject: Re: Retrieve name of VB6 calling app via reflection from C# COM in
Date: Wed, 16 Apr 2008 04:18:00 -0700
>
Thank you for looking at this, I had hoped I had overlooked something.
In most cases the logger is consumed by a .NET executable. In that case
the
>config information is found in the app.config file. In this case the main
executable is a VB6 application we that will eventually be replaced. New
feature are being added using .NET via COM. So as you know normally the
config file name is related to the exe as assembly.exe.config. In the
case
>of the VB6 EXE, the COM interface will be the only consumer of the logger
so
>I am looking for a way to build a config file name based on the assembly
name
>of the COM interface assembly rather than the usual exe. I was hoping
there
>was some way through reflection to get the assembly name
(GetCallingAssembly
>of CallingAssembly ) in case we need to have another similar situation
with
>another interface to legacy code rather than hard coding or passing in a
name.

Is there some way at run time to get the stack information?
If not thanks for you help.
"Steven Cheng [MSFT]" wrote:
>Thanks for your reply Amdrit,

Based on the complete code sample you provided, I've also tested it on
my
>side. I think the output is as expected.

In the static constructor of "Logger" class, the "GetCallingAssembly"
will
>return "MyLogger" assembly because the static constructor is called by
..NET
>runtime's internal code which is marked as the assembly itself(Rather
than
>the "ReflectionTest" app assembly).

And in the "LogInfo" method, the "GetCallingAssembly" will return
"ReflectionTest" because it is the immediate caller of the LogInfo
method.
>Also, if you call "GetEntryAssembly" it will return the assembly that
contains the Main entry point, that's the "ReflectionTest" app assembly
here. You can also see this chain correctly via the CallStack in
debugger's callstack window.

However, for unmanaged VB6 client, it is not a managed application, the
.NET runtime won't mark it as part of the calling assembly chain or
entry
>point, that's why you will not get it as Entry point assembly.

Why do you need to cache the calling AssemblyName in static
constructor? I
>think at runtime, it is possible that many different classes in
different
>assemblies may call "LogInfo" method and the "CallingAssmebly" may also
vary from time to time. It is reasonable to call "GetCallingAssembly" in
"LogInfo" method if you do need to get the assembly who invoke that
method.
>>
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments
and
>suggestions about how we can improve the support we provide to you.
Please
>feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
>--------------------
>Thread-Topic: Retrieve name of VB6 calling app via reflection from C#
COM
>in
>thread-index: Acie74kZBFIskDvWSkqeSsNJrp7vVQ==
Subject: Re: Retrieve name of VB6 calling app via reflection from C#
COM in
>Date: Tue, 15 Apr 2008 04:55:01 -0700
>In the real app I don't know hat the calling assembly is nor do I know
ablut
>any types it contains.

Here is a simple example of the issue.
// Calling assembly
namespace ReflectionTest
{
class Program
{
static void Main(string[] args)
{
MyLogger.Logger.LogInfo("Hello");
}
}
}

// logger
namespace MyLogger
{
public class Logger
{
static string callingAssembly = string.Empty;
static Logger()
{

// This is where I need to know who called. The first call
is
>to LogInfo Below
// that causes this constructor to be called.
// What I need to know is the assembly that called LogInfo
string caller = Assembly.GetCallingAssembly().FullName; //
this
>returns 'Logger'
string s;
Assembly a = Assembly.GetEntryAssembly();
if (null != a)
s = a.FullName; // this gives me 'ReflectionTester',
but
>when called from VB6. a is null in that case
}

public static void LogInfo(string info)
{
if (callingAssembly.Equals(string.Empty))
callingAssembly =
Assembly.GetCallingAssembly().FullName;
>//This gives 'Logger' but it is too late by the time this is run

}
}
}

"Steven Cheng [MSFT]" wrote:

Hi Amdrit,

As for the "GetCallingAssembly" method, it should return the
immediate
>caller of the current method. I'm not sure whether there is anything
else
>in your applicaiton/assmeblies that may cause the problem, but if
what
>you
>want to do is get reference to a certain assembly, you can consider
using
>the a type in the assembly to reference it. e.g.

"MyAssembly.MyType" is a known type defined in the target assemly I
want
>to get reference
================
Type tp =typeof(MyAssembly.MyType);

Assembly asm = tp.Assembly;

================

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments
and
>suggestions about how we can improve the support we provide to you.
Please
>feel free to let my manager know what you think of the level of
service
>provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
>>

--------------------
From: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= <QS**********@newsgroup.nospam>
References: <8A**********************************@microsoft.co m>
<OI**************@TK2MSFTNGP05.phx.gbl>
Subject: Re: Retrieve name of VB6 calling app via reflection from C#
COM in
>Date: Mon, 14 Apr 2008 10:43:14 -0700
When I call GetCallingAssembly It does not fail (my bad) but I get
the
>Current assembly, in the prev description that would be the C#
logging
>assembly rather than the C# COM interface assembly as I had expected.

I also tried applying MethodImplAttribute attribute with
MethodImplOptions.NoInlining to the C# logging assembly constructor
but
>it
>had no affect.

I also tried GetEntryAssembly but that return null when run with a
VB6
>executable calling the COM interface.

I would like not to need an additional parameter for the name
because
>this
>will impact existing code. I would prefer a silent/automatic name
creation.
"amdrit" wrote:

What do you mean "fails"? Do you get an exception, or do you get
and
>empty
string, or do you get a string that makes no sense?

It would seem to me that you are on the right track, and since the
VB
>Client
is the ultimately the caller, is should come back with it's name
if
>at
>all.
However, since you have the middle interface, why not require the
caller
>to
name itself to the interface and just pass in App.Name there?
"QSIDeveloper" <QS**********@newsgroup.nospamwrote in message
news:8A**********************************@microso ft.com...
I have a C# logging assembly with a static constructor and
methods
>that
>is
called from another C# Assembly that is used as a COM interface
for
>a
>VB6
Application. Ideally I need to build a file name based on the
name
>of
>the
VB6 application. A second choice would be a file name based on
the
>#
>COM
interface assembly. I have tried calling
Assembly.GetCallingAssembly()
but
this fails when I use the VB6 client. Is there a way to get
this
information
at runtime?



Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Antonio Paglia | last post by:
Imaginate you have one method that accept some arguments like: 1- a control 2- un Type (MyType) 3- el nombre de una Propiedad "PropertyName" Example: ...
1
by: Jeff Molby | last post by:
Sorry for the crossposting guys. I figured this one might be a little tricky, so I'm calling upon the C# brains out there to help out this poor VB developer. I know enough C# to translate any code...
6
by: mphanke | last post by:
Hi, how can I retrieve the icon for a registered file extension from the registry and show it in my ListView? Any hints appreciated, Martin
0
by: karunakar | last post by:
Hi All I am not able to read the class name I want read the particular class name string path = System.Configuration.ConfigurationSettings.AppSettings; string className = path + ".User";...
2
by: Don | last post by:
This may seem like an odd question, but is it possible to get the name of the class & function that is calling a function of another class? e.g. Public Class CallerName Public Shared Function...
9
by: Don | last post by:
Say I have a class like so: Public Class MyClass Public Prop1 as Integer Public Prop2 As Integer Public Prop3 As Integer End Class Is it possible to retrieve a list of the variables or...
3
by: Udi | last post by:
Hi, given a member in a class, I would like to print it's name automatically (via reflection i guess). Say I have an ArrayList of objects that contains references to members of a derived class....
4
by: ssg31415926 | last post by:
I want to write a logging method. I want it to log the name of the calling class and method. Is there any way to do this? I presume it'll use Reflection but it's not an area I've used much.a ...
15
by: =?Utf-8?B?VG9tIENvcmNvcmFu?= | last post by:
I've been led to believe by several articles, particularly Eric Gunnerson's C# Calling Code Dynamically, that calling a method dynamically through Reflection was much slower than through a...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.