Posts by Alexandre Rodrigues Da Silva • 66 points
6 posts
-
1
votes2
answers122
viewsA: Pass Cpf to a javascript function
You should pass the field id in replaceCpf(), something like replaceCpf(document.getElementById('cpf')); only that within its function it will not receive the string but rather the Cpf’s INPUT…
-
1
votes1
answer394
viewsA: Validating USB Serial Port Name
Normally scales have two-way communication, you send a command and it responds to you, it can be a weight request, a ping, something like that, so you should check on all active COM ports, so you…
-
1
votes2
answers70
viewsA: I’m learning, so it’s a basic question
I even did a test with your code and it worked normally according to the print below, I don’t know how you were running it, if you just gave 2 clicks on the executable, ran straight through Visual…
-
1
votes2
answers143
viewsA: ASP Net Core - Server receives multiple GET requests repeatedly
Try to capture the source IP address of these requests, they can be robos, as said by Julio, but it can also be some Load Balance configuration to check if the service is active (in the case of…
-
1
votes2
answers965
viewsA: WCF ERROR: Failed to add a service. Service Metadata may not be accessible. Make sure your service is running and exposing Metadata
From what I understand, you’re wearing HTTPS in webconfig’s Binding, and is calling via http by the client, in addition, even if you are using https in the client, IIS localhost (development)…
-
0
votes1
answer183
viewsA: c# Silent install from localDB
This command will install an MSI package without any user intervention, the /i parameter indicates an installation (/x uninstall, /f reisntala/repair), while the /Qn parameter indicates that no user…