Client script error w/TSAC 5.1

  • Thread starter Thread starter Matt Keener
  • Start date Start date
M

Matt Keener

I am implementing the TSAC ActiveX control; most wkstns
are working fine, but I have a few wkstns getting an
error "Object doesn't support this property or method" on
this line of code:

MsRdpClient.Server = "10.1.1.1"

The other symptom from these wkstns I see is that when I
connect to the Default.htm page installed w/TSAC 5.1 on
the server, the "Connect" button is always disabled;
this .htm file has the following code:

sub OnControlLoad
set Control = Document.getElementById("MsRdpClient")
if Not Control is Nothing then
if Control.readyState = 4 then
Document.all.connectButton.disabled = FALSE
end if
end if
end sub

....but I can't find any documentation about "readyState".
Evidently, readyState must be = 4 or else the Connect
button is disabled.

Please help while I still have hair :-)
 
Yes, that's the one. - MSRDP.CAB dated 8/10/2002
containing MSRDP.OCX version 5.1.2600.1095

I came up with a workaround by *manually* registering
msrdp.ocx on the client; however, this is not practical as
I am publishing apps on TS for use on the Internet (having
purchased the TS Internet Connector license).

Any better workaround would be appreciated.

Thanks,
Matt
 
Back
Top