Posts by wryel • 2,143 points
57 posts
-
2
votes4
answers1550
viewsA: How to make an external login authentication?
If you don’t have a request Single Sign On, you can use a Web Service SOAP (whose goal is to integrate) with WS-Security running in https. XML and Webservices (Link to specific information) are…
-
2
votes1
answer393
viewsA: System.getProperty() on the server
Documentation The class System maintains an object Properties that describes the current desktop configuration. This object is initially populated by JVM, you can specify additional parameters using…
-
1
votes1
answer615
viewsA: Application migration error, ANTLR and Wildfly incompatibility 8
I wanted to put as a comment but I’m not getting. 14:11:41,484 ERROR [stderr] (default task-6) javax.servlet.Servletexception: java.lang.Nosuchmethoderror:…
-
1
votes2
answers1859
viewsA: Error occurs when performing resource injection into the bean
An additional to your own answer (This should be a comment, but strangely in some questions I am unable to comment (I am new user)). You do Drivermanager.registerDriver(Driver driver) may be…
-
1
votes1
answer2596
viewsA: Creating Automatic Tables by Hibernate
Your tables haven’t been created yet and/or you haven’t gotten any error/success yet because Hibernate hasn’t been triggered in any way by your application (I’m guessing you’re in a web container…
-
1
votes1
answer99
viewsA: Change of entity reflect on related entities
Try to do entityManager.refresh(cellular); Refresh the state of the instance from the database, overwriting changes made to the Entity, if any.…
-
1
votes2
answers50
viewsA: Business Exception is not in the Clientejb classpath
Complementing André’s reply (I wanted to comment). Here is a visual example: Interestingly, a user from another forum asked a similar question, and I uploaded a Maven project on github with a…