Can't find WSDL file

  • Thread starter Thread starter Nicholas Paldino [.NET/C# MVP]
  • Start date Start date
N

Nicholas Paldino [.NET/C# MVP]

pronto,

The WSDL file is automatically generated from the type definition by the
ASP.NET runtime. If you want to create the WSDL file, then you can just ask
for it in IE, and save it. I believe if you go to the page for your
webservice, and attach ?WSDL to the end, it will give you that. Save that
to an WSDL file, and then you can create your proxy from that.

Hope this helps.
 
Nicholas Paldino said:
pronto,

The WSDL file is automatically generated from the type definition by
the ASP.NET runtime. If you want to create the WSDL file, then you can
just ask for it in IE, and save it. I believe if you go to the page for
your webservice, and attach ?WSDL to the end, it will give you that. Save
that to an WSDL file, and then you can create your proxy from that.

Better yes, create your proxy directly from the URL <webServiceAddress>?wsdl
(assuming your toolkit can generate from URLs as well as files.)
 
Hi all.

I created simple web service with C# and run it on Win2000 XP sp2.
Service has two simple [WebMethods]. I test it with my C# client and IE.

Now I want to create VC++ 6 application and talk to web service with SOAP
SDK lib.

It's good so far, but SOAP SDK samples are using link to the WSDL file for
the tested WebService. I have search whole computer with WebService running
and can't find WSDL !

Questions :
1. Where is my WSDL file ?
2. Is there is other way to use SOAP SDK without WSDL ?

BTW. I can see WSDL via IE if I specify .....SomeFolder/Service1.asmx?WSDL
in URL

regards
 
Back
Top