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!

Recent content by Suppandi

  1. Suppandi

    IDL and COM+

    Hi, I put in some time studying 'Marshalling of an Interface pointer' from the book 'Inside COM+ by Eddon and Eddon'. This is what I have understood: Marshalling an interface pointer involves re-creating the interface's v-table in the clients address space. The v-table is fabricated by loading...
  2. Suppandi

    IDL and COM+

    Hi volkoff, I put in some time studying 'Marshalling of an Interface pointer' from the book 'Inside COM+ by Eddon and Eddon'. This is what I have understood: Marshalling an interface pointer involves re-creating the interface's v-table in the clients address space. The v-table is fabricated by...
  3. Suppandi

    IDL and COM+

    I can transfer an interface, however I need to transfer implementation as well. I need to transfer an object (containing member data and methods). How can I do that? Thank Q, Santhosh
  4. Suppandi

    IDL and COM+

    Hi, I need to transfer a class from my COM client to my COM server. MIDL does not recognize classes, hence the following IDL code is incorrect (MIDL says "undefined symbol : class") : // component.idl import "unknwn.idl"; class Arithemetic { public: void Multiply(int x...
  5. Suppandi

    IDL and COM+

    Hi, I need to transfer a class from my COM client to my COM server. MIDL does not recognize classes, hence the following IDL code is incorrect (MIDL says "undefined symbol : class") : // component.idl import "unknwn.idl"; class Arithemetic { public: void Multiply(int x...
  6. Suppandi

    Mobile executable components

    Hello, As part of my school thesis I plan to design and develop a 'Mobile Agent framework'. I intend to begin with a simple prototype: 1. Move an executable component from one machine to another 2. Have the executable component run on the destination machine 3. Move the executable component...
  7. Suppandi

    Mobile executable components

    Hello, As part of my school thesis I plan to design and develop a 'Mobile Agent framework'. I intend to begin with a simple prototype: 1. Move an executable component from one machine to another 2. Have the executable component run on the destination machine 3. Move the executable component...
  8. Suppandi

    msxml2.h not found

    Hi, I'm new to XML programming in the VC++ environment. I tried to create a DOM object witht the sample code on the MSDN site. The compiler is unable to locate the msxml2 header file. Where can I download the API/header file? Is there a package to be downloaded? Thank you, Santhosh
  9. Suppandi

    COM and .Net (Conceptual question)

    Hi all, Are .Net and COM similar? Is .Net a newer COM? Will .Net eventully replace COM? Santhosh
  10. Suppandi

    I need sample DLL surrogate source code

    Hello all, I've been trying to setup a DLL running through the dllhost.exe surrogate, but have had no success for over a week. Please let me know where I can find sample code for using the default surrogate dllhost.exe (VC++) BTW, can u have a DLL surrogate, where the DLL is not registered as...
  11. Suppandi

    DLL surrogate problem

    Using INPROC would load the DLL in the same process (exe) as my client. I need to use LOCAL so that it is loaded in a seperate process (dllhost.exe) TY, Santhosh
  12. Suppandi

    DLL surrogate problem

    Hello all, My DLL component works fine, but I'm having trouble running it under the default surrogate "dllhost.exe". I've tried to run the DLL under the default surrogate by making these changes: Changes to registry: Add AppID pointer, Fill up AppID...
  13. Suppandi

    Creating a DLL surrogate with dllhost.exe

    Hello, I would like to create a DLL surrogate. I have already developed my DLL, how can I convert this into a surrogate (using the default dllhost.exe)? I'm looking for clear and detailed instruction on how to do that. Thank you, Santhosh
  14. Suppandi

    Unable to DLL Surrogate with dllhost.exe correctly

    Hello all, My DLL component works fine, but I'm having trouble running it under the default surrogate "dllhost.exe". I've tried to run the DLL under the default surrogate by making these changes: Changes to registry: Add AppID pointer, Fill up AppID...
  15. Suppandi

    Creating a DLL Surrogate

    Hello, I have a DLL and I would like to create a DLL surrogate. I'm looking for clear and detailed instruction on how to do that. Thank you, Santhosh

Part and Inventory Search

Back
Top