Posts by James Braz • 131 points
6 posts
-
0
votes2
answers2531
viewsA: API request mails returning null
I was able to identify the problem. By importing the WSDL reference to class sroxml with explicit properties, one of them is the one that is returning null object. /// <remarks/>…
-
3
votes1
answer989
viewsQ: REINF - Invalid Signature
I’m developing a message for reinf but I’m having trouble sending the first event. By sending an R1000 I’m getting the message: MS0017 Invalid event signature. Invalid XML document Digital signature…
-
1
votes2
answers151
viewsA: How to map an Excel column to a Database column
For what you said, just create the tables in Bd and perform CRUD(Create,Read,Update,Delete) by the application. Example: As you did not specify which bank you are using I will use Postgres, but…
-
0
votes2
answers241
viewsA: Popular Datagrid Combobox Windows Forms C#
Using BindingSource would need to create one for each Combobox. One planoContasBidingSource and another centroCustoBidingSource, load them with the data and configure them to be the DataSource of…
-
2
votes3
answers948
viewsA: Logout com Identity
I implemented one of these yesterday, I believe the controller method needs to be a post to request logoff: [HttpPost] [ValidateAntiForgeryToken] public ActionResult Logoff() {…
-
7
votes1
answer296
viewsQ: C# - Maintenance of Classes generated from xsd file
I’m developing an application that uses classes generated from xsd files made available by the IRS with the xsd.exe. I use them to serialize xml files from the objects of these classes after…