-
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
-
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