Posts by Humberto Machado • 146 points
10 posts
-
0
votes1
answer406
viewsA: Self-signed Certificate Security ( Self-signed Certificate)
The verification done through the chain of Cas is to ensure that that certificate is reliable or is the authentication of the same. In a public environment, to ensure this, a trusted certification…
-
0
votes1
answer44
viewsA: Error using Sslclientexisengineconfig
I believe the call is missing axisConfig.initialize() axisConfig = new SSLClientAxisEngineConfig(abconfigfile); axisConfig.setProtocol("TLS"); axisConfig.setKeyStoreType("JKS");…
javaanswered Humberto Machado 146 -
1
votes1
answer164
viewsA: Dragging Listview item
For now the default Xamarin-Forms Listview implementation does not support this. You would have to implement a custom one. Or else use third party components. Take a look here…
-
1
votes1
answer197
viewsA: How I publish my application Xamarin.Forms
Take a look at this video. Talks about publishing app in store. https://mva.microsoft.com/pt-pt/training-courses/maratona-xamarin-publicando-seu-app-na-store-17707?l=w2yA8s90D_2205192810 This video…
-
0
votes1
answer408
viewsA: DTO - Interface x Class
The interface can be a way to type a JSON structure. The advantage of using direct interface is to treat the object as a pure JSON. Since this allows you to create the direct object in this…
-
0
votes1
answer48
viewsA: Deployment only works with Samsung J5 smartphone plugged into the computer
I believe that you should not worry too much about these Warns, because it seems that it is compatibility problem of this ADV with your computer. Try using android x86 emulator…
-
2
votes1
answer338
viewsA: An unhandled Exception occured. I cannot understand this message, no detail comes
Tries to send a request to the url (http://localhost:9078/api/release) using some http client (for example this: https://www.getpostman.com/). Can give a clue as to what problem you are giving in…
-
0
votes2
answers244
viewsA: Which framework or tool can I use to generate reports?
There is a project called BIRT Report. http://www.eclipse.org/birt/
javaanswered Humberto Machado 146 -
0
votes1
answer525
viewsA: Implications of @Autowired on and off
All forms serve the same goal, and you get the same end result. The advantage of being in the builder is: Explicitly identify which dependencies The dependencies can be final Makes it easier to…
-
1
votes2
answers99
viewsA: Array returns wrong value in java
In this code here: while(linha!=null){ array = linha.split(";"); ... } You are overwriting the array at each iteration in while. At the end your array will only be with the values of the last line…