Results 1 to 2 of 2

Thread: Remote Data Service

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2001
    Location
    Sri Lanka
    Posts
    2

    Exclamation Remote Data Service

    I make ActiveX.dll using VB (Svr) and I add class
    svrCls and That class Contain One method getStr

    Then Installe it on Component Service of Windows 2000 Prof. Edition MAchine Running Web Server.

    I want to access that component Remotel on another Windows 2000 Prof. Machine So I write Following Code on the CLient Program

    Set obj = new RDs.DataSpace
    set m_proxy = obj.CreateObject("Svr.svrCls","Http://WebServerName")
    msgbox m_proxy.getStr

    But the Error arise say Unexpected Error

    Pls Tell me Is there any Additional Configuration Requaired
    in the Client Machine. How can Use RDs to Communicate with
    Server COmponent

  2. #2
    New Member
    Join Date
    Jul 2001
    Location
    Nairobi
    Posts
    1

    Unhappy

    Check Whether This May work

    Dim objRS as Object
    set objRS= obj.CreateObject("Svr.svrCls","MachineName")
    msgbox objRS.getStr
    set objRS=Nothing

    Or

    Dim objRS as Object
    set objRS= obj.CreateObject("Svr.svrCls","192.168.10.10")
    msgbox objRS.getStr
    set objRS=Nothing

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