Posts by Cristian Urbainski • 363 points
15 posts
-
1
votes1
answer3208
viewsQ: Problem with digital signature SHA-256
I am generating an xml and signing with SHA-256, but when validating the signature soon after java says that it is not valid xml generated and signed: <soap:Envelope…
-
0
votes1
answer353
viewsQ: Angularjs Factory in another file
Good morning I’m wanting to create a separate file for each Factory that I have to declare in my project, but it’s not working: App.js file var GestaoGastos = angular.module('GestaoGastos',…
-
1
votes2
answers634
viewsA: How to Remove Input Image Edge
Try the following input[type="image"]{ outline: none; } input[type="image"]:focus{ outline: none; } Good luck, any questions ask via comment I did the tests on the link you gave me and no css is…
-
2
votes1
answer966
viewsA: Phpmailer does not send email
I have an email sent with Phpmailer that is all right, I will post there you try to change to see if it is right $mail = new PHPMailer(); $mail->SMTPDebug = 1; $mail->Timeout = 60;…
-
1
votes1
answer537
viewsA: Responsive css does not work properly
The right thing would be @media screen and (min-width: 480px) { body { background-color: lightgreen; } } Understood missed the '{' after the media, this serves to delimit what is part of the rule.…
cssanswered Cristian Urbainski 363 -
0
votes1
answer74
viewsA: What is the name of this component below?
What comes closer than you want is the first faces autocomplete, from a look at the bilbioteca showcase, here is the link http://www.primefaces.org/showcase/ui/input/autoComplete.xhtml I hope this…
-
4
votes3
answers155
viewsA: Why is 'getattribute()' not a function?
The method getElementsByTagName returns a list of elements and not a single element, so of this problem, in the array there is no function getAttribute. Do so:…
javascriptanswered Cristian Urbainski 363 -
2
votes1
answer468
viewsQ: Hibernate Multitenant problem with identification of current tenancy
I am using Hibernate multitenant by schemas, use Postgresql database. My problem is the following I have a service where I make a select in a public schema table, then for each returned item I have…
-
1
votes1
answer83
viewsQ: Difficulty getting object inside a CDI Extension
I want to create an Extension in my project so that it starts to interpret an own annotation, for that I have initially a @Producer of the Quartz Scheduler object, see public class SchedulerProducer…
-
1
votes5
answers1057
viewsA: Problem with in_array()
The problem in my point of view is that Voce is looking for an array inside another one, so I understood that Voce wants to see inside the $cart_arry array if there is an object of type Asset, but…
-
0
votes1
answer1079
viewsQ: "Lookup failed" error when using a Glassfish Custom Resource
I’m using a Custom Resource of Glassfish to save a property: There, I’m trying to take this amount like this: new InitialContext().lookup("javax.faces.PROJECT_STAGE") but I get the following…
-
1
votes1
answer5979
viewsQ: Take client ip on request
I have a REST service in my application and in it I want to pick up the IP of the client who is making the call, use Spring-mvc in this project, here is the source of the service /** *…
-
2
votes1
answer333
viewsA: Web Service Testing with Arquillian
I managed to solve this problem, I just needed to update the versions of Arquillian and as utluiz said update just a little bit, I will post my dependencies for you to see how they looked…
-
3
votes1
answer333
viewsQ: Web Service Testing with Arquillian
I’m doing a unit test class and I’m using Arquillian because of CDI, in this case I’m testing a Web Service for authentication of company users. Follows the source of the test class:…
-
-1
votes6
answers11947
viewsA: How to create a password reset link?
My opinion I think it is better for you to have a logic to generate a new password for the user, concatenating capital letters and lowercase numbers and special characters and send this new password…