Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate a WSDL file?

i have created a webservice [.asmx] file. This web service will actually get a string as Input and insert the values to database.

Now this webservice will be called by another application, so they are asking wsdl file from me to access consume this webservice.

I know that, wsdl can be created via cmd to generate a .cs or .vb or .dll files And there is also a xml generated when i user ?wsdl along with my URL

But i am confused which one to provide ??!!!

like image 575
Anuya Avatar asked Jul 27 '12 02:07

Anuya


1 Answers

The ?wsdl on your URL is what you should provide however that means that it exists as an XML file somewhere in your project. I'm not a .net developer (java) but I do know that if ?wsdl gives it to you on the end of your url then it exists somewhere, you can just use the browser save as to save the file as a wsdl for your consumers for the time being.

like image 200
lv2program Avatar answered Sep 28 '22 06:09

lv2program