Re: HELP - COM Local Server
have you registered proxy stub dll ?
Re: HELP - COM Local Server
Do I have to register something else besides the class factory in my EXE application?
Re: HELP - COM Local Server
Thanks for any help, the problem was I didn't have the proxy stub dll registered.
Re: HELP - COM Local Server
For a local server you have to do marshaling to pass data.
This can be done in 3 ways.
Standard marshalling : make the proxystub dll using nmake and register it using regsvr32.
Typelibrary marshalling : if you use IDispatch interface / Ole automation types only in your server
you can use the typelib marshaller supplied by microsoft ( oleaut32.dll )
Custom marshalling : You can implement IMarshal interface and write your own code.
most cases standard marshalling will do.
-Satya
[email protected]