Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lsantoss/poc.serverasmx
Essa aplicação contém um exemplo básico de crud em um Servidor ASMX
https://github.com/lsantoss/poc.serverasmx
asmx-service csharp docker net-framework-472 nunit soap sql-server
Last synced: about 2 months ago
JSON representation
Essa aplicação contém um exemplo básico de crud em um Servidor ASMX
- Host: GitHub
- URL: https://github.com/lsantoss/poc.serverasmx
- Owner: lsantoss
- License: mit
- Created: 2022-02-08T12:55:11.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-23T19:25:38.000Z (about 2 years ago)
- Last Synced: 2023-03-06T01:52:38.406Z (almost 2 years ago)
- Topics: asmx-service, csharp, docker, net-framework-472, nunit, soap, sql-server
- Language: C#
- Homepage:
- Size: 429 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# POC.ServerASMX
## Application:
This application contains an example of ASMX Server> Unable to perform dependency injection
> Cannot use interfaces as return type
> Return classes must contain an empty constructor
---
## Frameworks:
- .Net Framework 4.7.2---
## Libraries (only most important):
- Dapper
- Microsoft.CodeDom.Providers.DotNetCompilerPlatform
- Microsoft.VisualStudio.Azure.Containers.Tools.Targets
- Newtonsoft.Json
- NUnit
- NUnit.Analyzers
- NUnit3TestAdapter## How to configure and use:
- Create an Empty Asp.Net Web Project (.Net Framework)
- Add a new Web Service file (ASMX)
- Nos métodos use a anotação: `[WebMethod]`
- Method example:
```c#
[WebMethod]
public List List() => _repository.List();
```