Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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();
```