https://github.com/stefh/wsdlgenerator
A tool to generate a WSDL file from a C# DLL which contains one more Microsoft WebServices.
https://github.com/stefh/wsdlgenerator
Last synced: about 1 year ago
JSON representation
A tool to generate a WSDL file from a C# DLL which contains one more Microsoft WebServices.
- Host: GitHub
- URL: https://github.com/stefh/wsdlgenerator
- Owner: StefH
- License: mit
- Created: 2017-04-27T17:16:37.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-01-28T21:30:31.000Z (over 2 years ago)
- Last Synced: 2025-05-06T22:26:25.529Z (about 1 year ago)
- Language: C#
- Size: 794 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WSDLGenerator
A tool to generate a WSDL file from a C# DLL which contains one more Microsoft WebServices.
## Info
The project is build using VS2017 and uses .NET Framework 4.0
WSDLGenerator uses ServiceDescriptionReflector code to retrieve all information from an assembly (dll) to generate a wsdl file.
## Usage
```
WSDLGenerator (0.0.0.14)
Usage:
-i, --input... Input assembly or file which contains the WebServices
-o, --outputfolder... Output directory
-w, --wsdl[optional]... Generate wsdl file
-s, --spwsdl[optional]... Generate SharePoint compatible *wsdl.aspx file
-d, --spdisco[optional]... Generate SharePoint compatible *disco.aspx file
-n, --servicename[optional]... Specifies the fully qualified name of a service to be exported (when omitted, all services are exported)
-v, --verbose[optional]... Verbose messages
```
### Examples
```
1. WSDLGenerator.exe --input MyWebServices.dll --outputfolder ..\..\Temp --wsdl
2. WSDLGenerator.exe --input MyWebServices.dll --outputfolder ..\..\Temp --wsdl --spwsdl --spdisco
```