0
I’m not getting the value of the following input.
<input type="text" name="rua" class="form-control" id="rua"
placeholder="Rua/Av/Estrada" disabled required>
This field it is filled through a webservice. That is a post office service "Viacep".
Only during the registration of this input, I’m not able to take the value that the service puts in it.
I’m using the getParameter.
String pEndereco = request.getParameter("rua");
The code passes on this line and returns null.
Thank you @Diego Schmidt, it worked. This issue of the webservice does not always work, I will validate with my client, if it is his will I leave released.
– Kennedy Anderson
@Kennedyanderson It may be a new address that is not yet in the post office or outdated, on the website of the webservice says it may have some outdated. abss
– Diego Schmidt