Posts by Éderson C. do Nascimento • 311 points
11 posts
-
0
votes3
answers1247
viewsA: Service does not execute controller method
You can either change the parameter to "id" or put the annotation: [HttpGet("{idorcamento}")] public IEnumerable<ItensLibDTO> getItensLiberacao(int idorcamento){ ... }…
-
1
votes2
answers1023
viewsA: Xml Tag base64Binary C#
Hi, I’d try to do it this way: byte[] buffer = Convert.FromBase64String("H4sIAAAAAAAEAN1aWY+jyLJ+Pv..bla bla bla"); File.WriteAllBytes(@"c:\home\arquivo.rar", buffer); I hope I’ve helped. Reply…
-
2
votes2
answers153
viewsA: Keyword for C# equivalent to Java’s "Synchronized"
Fernando, from what I could understand about the "Synchronized" it protects the code so that only one thread can access it at a time, in C# the equivalent is the "lock". ex.: static object _locker =…
-
0
votes1
answer318
viewsA: How to configure angular routes with Asp. Net Mvc
Hello, from what I could understand of your question, you created a folder "Angulartemplates" and can not access htmls. This occurs for security reasons, only some folders "serve" static documents,…
-
0
votes1
answer70
viewsA: Nuget package on local IIS or intra
In the company where we work we create a portal to publish our nuget packages, we use the Nuget.Server library (available as nuget). Follow a link with more details:…
-
3
votes1
answer3789
viewsA: C# Digital Certificate A3 CPF Token
A3 certificate offers extra protection as the private key is inaccessible except by the hardware (Smart Card). There is no way to export it. What you export is only the public key. As for the…
-
1
votes1
answer60
viewsA: Creating a forum, doubt between which languages to use
Good evening Mayla, as you already seem to have chosen to use the Mongodb I think it would be interesting to leave for the use of Express, Nodejs and Angularjs. A Fullstack Javascript framework.…
-
1
votes1
answer375
viewsA: Doubt with Array in C# returning data in Json
You can use Linq, it has a very simple documentation in this URL: https://msdn.microsoft.com/pt-br/library/bb545971.aspx…
-
2
votes1
answer752
viewsA: Printing with Reportviewer Asp.Net
The print button in the VS2010 Reportviewer only appears in internet explorer, update your project to VS2013 or VS2015, update the reportViewer libraries and the button will be available in other…
-
4
votes1
answer695
viewsA: How to pass text from textbox to report, with VS 2015, in C#?
Following is a template of an action that would return the report in PDF format, this concept addresses the loading of the "RDLC", the bind with the "Datasource" and variable assignment, hopefully…
-
1
votes3
answers7208
viewsA: How to select Digital User Certificate in Web Applications?
Good afternoon Jefferson, on the site you indicated is only sent to the public certificate key server, to sign the NF-e private key is required. When I implemented NF-e, I made a webservice and a…