I am trying to create n consume a webservice.
-- created a /test/math.asmx file.
-- then used wsdl.exe /out:math.cs http://localhost/test/math.asmx
-- then used
csc.exe /t:library /out:math.dll math.cs /r:System.dll,System.Web.dll
now when i tried in math.aspx, <%@i... namespace="math" %>, which
is givin an error------
"The type or namespace name 'math' could not be found (are you
missing a using directive or an assembly reference?)"
1)What should i do to consume the service.
2)Is it that the service provider provides .asmx file and the other 2
steps wsdl.exe and csc.exe should be done by the consumer?
3)how can a asp.net page consume a webservice not written in asp.net