I am trying to create a client from a WSDL file without using my own visual studio, and did not know what is the best place to start.
The client must take the same file and create the client for the PHP application, and I wanted to prove that the WSDL was valid by creating the client myself (outside the studio).
svcutil.exe is a command line tool that ships with the Windows SDK. It creates a WCF client (C # code file plus a configuration file whose elements can be placed in your web.config or app.config).
I am sure that you can pass the UNC path to the WSDL and not the URL.
wsdl.exe .
- , ?
wsdl /out:[localpath]/myProxyClass.cs http://localhost/WebserviceRoot/WebServiceName.asmx?WSDL
To use WSDL to use the code module:
wsdl /n:<Namespace> pathtowsdlfile
Then we want to compile the dll with debugging symbols and the given file name.
Using:
csc /t:library /debug /out:<DllFileName.dll> pathtosourcefile.cs
Source: https://habr.com/ru/post/1720197/More articles:There is === in jquery - javascriptreturns column values ββas IEnumerable - yieldget client computer timezone in asp.net mvc - javascriptC # ASP.Net Fancy Buttons - c #How to determine the binding order of network interfaces in Windows using .NET? - .netConnection Reset by Peer Error - sql-serverOutlook 2007 add-in memory leak? - memory-managementCreating Excel with C # - How to make diagonal borders? - c #View / Lock Drupal - drupalPDO in PHP how to improve this PDO mysql code - phpAll Articles