|
-
Jul 7th, 2001, 04:59 AM
#1
Thread Starter
New Member
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
-
Jul 14th, 2001, 02:44 AM
#2
New Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|