vote up 2 vote down star

I'm working with JIntegra java com bridge. I have an object of type Object which true coclass is unknown. I need to check if that object can be casted to specific COM interface (which has a proxy class generated by JIntegra).

flag

2 Answers

vote up 0 vote down check

Call queryInterface() on the proxy. It should throw an exception if the underlying COM object does not implement the proxy interface.

link|flag
vote up 0 vote down

If the proxy class implements a (generated) interface, can you check if the object is an instanceof that?

link|flag
No I can't, the generated proxy classes don't follow java conventions. In order to case an object from one interface to another, I need to do some thing like <br/> ISomeInterface = new ISomeInterfaceProxy(someObject); <br/> But this action fails on method invocation and not on creation. – Alex Shnayder Oct 8 '08 at 10:53
What's even worse... if you use an interface "C" that extends interface A & B, you get even stranger behavior. The proxy for "C" will work with any object that implements only A xor B, and won't fail until you hit a method that's in the non-implemented interface. Grrr! – James Schek Oct 9 '08 at 22:04

Your Answer

Get an OpenID
or

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