vote up 1 vote down star

I have a java library that I am accessing in VB.NET via COM. The objects on the java side expose non-trivial .toString methods that I need for debugging. Unfortunately, when I call .toString on the COM objects, the call is being intercepted by the Object class' .ToString function.

How do I force the call to the COM-side .toString and prevent Object.ToString from firing?

flag

17% accept rate

2 Answers

vote up 1 vote down

Do you have access to the IDL for the java object? Are you generating the runtime callable wrapper for the COM object?

I think you should change the interop assembly or manually generate the wrapper to change the toString() method to toStringJava() or to_String() or something else that doesn't clash with the syntax for object.ToString(). Here's a starting point on MSDN for customizing runtime callable wrappers.

link|flag
I think you may have lead me down the right path on this. There is no IDL for the object and I don't have access to the source code. I suspect that in order to do this, I would have to create the IDL/RCW manually and then alias it. msdn.microsoft.com/en-us/library/… – Dan Coates Feb 2 at 19:22
That's all I was trying to do. Glad it helped. – Hamish Smith Feb 2 at 20:12
vote up -1 vote down

Try casting the object to the COM interface type. It doesn't have a ToString() method.

link|flag
How is that performed? Can you provide an example? – Dan Coates Jan 30 at 19:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.