Hello
If you want to consume a web serv in traditional ASP 3.0, you nedd to use
something like this:
<SCRIPT LANGUAGE="VBSCRIPT" RUNAT="SERVER">
OPTION EXPLICIT
SUB APPLICATION_ONSTART()
APPLICATION("CONNECTSTRING") = GETAPPSETTINGS("CONNECTSTRING")
END SUB
function getappsetting(key)
dim url, xmlhttp, dom, node
url = "http://localhost/appservice.asmx"
url = url & "getappsettings?key=" & key
set xmlhttp = server.createobject("microsoft.xmlhttp")
call xmlhttp.open("GET", url, false)
call xmlhttp.send
set dom = server.createobject("microsoft.xmldom")
dom.load(xmlhttp.responsebody)
set node = dom.selectsinglenode("//string")
if not node is nothing then
getappsettings = node.text
end if
end function
</script>
If you want to learn more about this i recommended the book "Building
ASP.NET web services"...
Best regards

Signature
FF
www.francofigun.com.ar
www.microsofties.com.ar
MSN: francofigun@hotmail.com
UIN: 305336919
Yahoo MSN: frankofm@yahoo.com.ar
> Hi,
>
[quoted text clipped - 16 lines]
> Teatinos 280, Piso 4-6
> Fono 6947136
Rub?n Valenzuela T. - 25 May 2004 18:05 GMT
Thanks Franco, I'll give it a try and tell you what happends.
Regards,
Rub?n
> Hello
> If you want to consume a web serv in traditional ASP 3.0, you nedd to use
[quoted text clipped - 56 lines]
> > Teatinos 280, Piso 4-6
> > Fono 6947136