Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Biffa
  • Order by date
  1. Biffa

    DCOM book/tutorial

    Try this link :- http://www.developmentor.com/devresources/ResourceDetail.aspx?wp=4 As to books, there are many good (and bad) at various levels. Try these :- Inside DCOM (G Eddon, and H Eddon), Essential COM (Don Box).
  2. Biffa

    Query :Basic Concept of COM Regarding IUnknown interface

    You are correct in your assertion, IUnknown interface pointers returned from a server object are REQUIRED to be equal. In fact this is the ONLY valid way for a client to test for pointers to the same object. However, it is the responsibility of the object itself to implement...
  3. Biffa

    Try to marshal a interface pointer to DCOM server (E_OUTOFMEMORY)

    I am assuming that you client side is a a COM object or has access to one, which supports the ICallback interface. If that is so then I think the problem might be with the following line of code :- ICallback * callBack = new ICallback(); I don't think you can instantiate your ICallback...
  4. Biffa

    Passing large binary files in DCOM server client relationship.

    I do not know what platform you are developing on, but thre is a new interface defined in COM+ under Win 2K. The "IStream" interface seems to provide this type of functionality. See the MSDN for more details. Hope this helps
  5. Biffa

    How do I Create an Activex exe ?????

    I have developed several COM servers in C++ with this sort of requirement. I don't know if this will be applicable to you but here goes.. In a C++ COM server application one of the tasks whick you must do during initialization of the server object is to call CoRegisterClassObject (See MSDN for...
  6. Biffa

    "Object invoked has disconnected from its clients"

    This message will normally only be returned when accessing an object which implements IMarshall and which has for some reason been shutdown. The error code is actually returned from the proxy and not from the object. As to the reasons for the object being shutdown, I'm afraid I can't begin to...

Part and Inventory Search

Back
Top