get folder content form a webservice
-
Hi, I am trying to develop a webservice which will scan a given directory on the server and expose the result. I want to call this webservice from a WinForm application to populate a treeview. Do you have any suggestions on the way I should do that ? Thanks, Guillaume
-
Hi, I am trying to develop a webservice which will scan a given directory on the server and expose the result. I want to call this webservice from a WinForm application to populate a treeview. Do you have any suggestions on the way I should do that ? Thanks, Guillaume
Hi, Not sure what part you need help with, but the easiest way to consume a webserivice is build a proxy class in vs.net. Just right click on the name of your project in the soloutions explorer and the select add webreference. Then enter the url to the WSDL of your webservice and click on the add web reference button. You can then call the methods of your webservice by doiing th following. webreferenceNameyoucreatedabove.methodName(); Regards, tom