14
Until today I often imagined situations in which a system might need to generate boletos, although until now I have never developed anything like this, and so I decided to search how to do it in .NET. I researched a little and all I found was a library called Boleto.NET.
I’ve been going through this library a little bit, but I’m looking for alternatives. First because I’m working with ASP.NET 5 and I haven’t been able to make this library work even with Full CLR (at this point I think it’s some minor mistake I made). Secondly, because looking at the Github page I didn’t understand the proposal very well. It seems that has a site mixed with the library and another MVC application also, Anyway, I did not understand very well if it is just a library or an application built to generate boletos.
That way I continued researching on the subject but I did not find much and decided to ask here.
- How can I generate billets in . NET in a fairly simple way within the application I am developing?
- If I don’t want to use this library I found just doing manually? And in this case how is it done in . NET?
I think the question is very broad. This library is half-baked, but it is what you have ready. You can take the idea there, or look at other implementations in different languages and try to port. Although most who have available is well half-hearted as well. They do not solve certain issues well and adopt unnecessary complications for most.
– Maniero
I don’t find this simple problem. Boleto.NET is very poorly structured and would need some rework to be good. As ASP.NET 5 is not yet stable, I don’t know if it’s worth going to now.
– Leonel Sanches da Silva
Do you really need this implemented within the application? He studied the possibility of using a service for generating, managing and notifying billets such as cobregratis.com.br?
– rodrigorf
If you have an sql server with report service, I believe it is the best alternative to use the report service. Create the boleto there in the SRSS and make the boleto call by . net passing the parameters.
– Marcos Costa