All Questions

1
answer

ASP.NET Identity and Claims

Still about ASP.NET Identity , following another question I asked about it ( ASP.NET Identity Example using SQL Server ), an interesting topic within the same subject would be about < in> Claims . What is it about? What would be a...
asked on 19.05.2014 / 18:58
1
answer

How to run a suite of suites in JUnit?

I have the following suites below: @RunWith(Suite.class) // this other matters @Suite.SuiteClasses({ TestC.class, TestB.class, TestA.class }) public class MySuiteA {} @RunWith(Suite.class) // this other matters @Suite....
asked on 31.01.2014 / 21:04
1
answer

How to change font in PDF generated by iReport?

I created a report using iReport and changed the text font to a custom font here. The report is viewed using the iReport viewer itself and works smoothly with the font I placed, but when generating the report in PDF the font I placed is chang...
asked on 22.01.2014 / 12:01
2
answers

Build build in the Maven project

I would like to generate a Java build using Maven, where the generated .jar file name was the same as the last revision number of the SVN repository.    Example: My last generated build has the following numbering:   1.0.0.51. And during the...
asked on 22.01.2014 / 21:08
7
answers

How to create masks in input with JavaScript? [duplicate]

I need to create a mask for a phone input with JavaScript only (I can not use jQuery). How can I do it?     
asked on 12.02.2014 / 17:28
2
answers

Do not prompt for credentials if user is not authenticated

I have a system with two sites in the same domain. The two sites are in separate folders of the same domain, something like this: http://renan/foo http://renan/bar The first site (let's call it " foo ") has a page that accesses data f...
asked on 19.09.2014 / 16:28
1
answer

Javascript performance: switch or if nested?

Which of the two alternatives provides the best performance in Javascript: switch or if nested? if { ... } else { if { ... } else { if { ... } else { ... } } } or switch(expression) { case n:...
asked on 20.06.2014 / 18:14
3
answers

LEN function, know number of characters of a number

In the example below the result of the query instead of returning 7 is returned 5 . DECLARE @valor money = 10.6879 SELECT LEN(@Valor) The impression I get is that when the number is of type money , only 2 decimal places are con...
asked on 02.07.2018 / 20:54
2
answers

Entity Framework with Oracle databases

I'm creating an application that will use an Oracle database, but when I enter .edmx (Entity Data Model) I came across the following situation! I can not create a connection with Oracle Database. What do I need to do to make this work?...
asked on 10.04.2014 / 15:38
2
answers

How to send email with PHP?

I have a site under construction that people have the possibility to insert an email, I would like that as soon as they enter your email and click the "subscribe" button, send an automatic reply email to them, how could do that?     
asked on 05.07.2014 / 21:17