用delphi7做了一个WEBSERVICE
发布路径如下:http://localhost/myweb/bin/test.dll
IE可以显示 Service Info Page
用http://localhost/myweb/bin/test.dll/wsdl/访问也正常
webservice的接口是 ITestWeb, 实现类是TWebTest
而在ASP里有几个问题:<%
Dim soapclient
Const WSDL_URL = "http://localhost/myweb/test.dll/wsdl"   --这句对吗?
    set soapclient = Server.CreateObject("MSSOAP.SoapClient")
    soapclient.ClientProperty("ServerHTTPRequest") = True
 soapclient.mssoapinit *****  --如果是上面的地址的话,这里应该怎么写?mssoapinit方法哪里有介绍的?
Dim res
res = soapclient.gettext
%>