CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2000
    Posts
    242

    register remote dll

    Hello.

    I uploaded my project 1 dll to some server at http://a.com/proj1.dll.

    I want to use this dll on project 2.

    if both are on the same computer - everything is ok but after placing the first project on remote computer I can't call it.

    Please Help
    Thanks

  2. #2
    Join Date
    Nov 2002
    Location
    Tampa, FL
    Posts
    50
    If you register the component in Component Services (COM+) you can then create a proxy for it.. Now install the proxy on the remote machine, and you now can access the remote dll, as if it was installed locally.

    OR you could wrap the dll with a web service...

  3. #3
    Join Date
    Aug 2000
    Posts
    242
    I looked for info about wraping dll's and I got lost and I know nothing about "com"s. Is there a tutorial for beginners how to do this?

    Thank you for the help
    Asaf

  4. #4
    Join Date
    Nov 2002
    Location
    Tampa, FL
    Posts
    50
    this might help you..

    MSDN Article

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured