Java Enterprise Edition (Java EE) is a specification defining a collection of Java-based technologies and how they interoperate. Java EE specifies server and client architectures and uses profiles to define technology sets targeted at specific classes of applications.
0
votes
0answers
7 views
How does a web browser (IE8) determine the token to send for the Authorization: Negotiate request header?
I am installing spnego on a java app server that will authenticate users against Active Directory. I've followed all of the directions closely, and the AD Preauth account has the java app server FQDN ...
0
votes
1answer
24 views
How to Edit input type text field created from servlet
I have created a text field from servlet
out.println("<input type='text' class='userValue' />");
it shows properly in my page. but when i click on the field it does not allow me to type ...
0
votes
2answers
21 views
Spring Auto Components Scanning with Constructor injection
I know how to use Auto Components Scanning and Consctuctor Injection individually.
http://www.mkyong.com/spring/spring-auto-scanning-components/
...
0
votes
0answers
7 views
Apache Shiro First Use in NetBeans
I am trying to use to use Apache Shiro to secure a simple Java Web application.
So here is how I preceded:
1 I downloaded the Shiro-web.jar.
2 I created a new web Java web Application.
3 I add the ...
0
votes
0answers
9 views
ClassCastException with org.owasp.esapi.logger when deploying with JBoss
I'm trying to install JasperServer on a Jboss 7.1 server, and after a lot of trouble to successfully deploy the .war I downloaded on their site, when I try to log in I got this exception:
ERROR ...
1
vote
0answers
13 views
JBoss7 and Beans - required jars appear not to be used
We are trying to create a functional example with Hibernate, JBoss7, Beans and Servlets using Eclipse as an IDE.
In other example project we were able to make functional Servlets, and we were able to ...
0
votes
5answers
75 views
convert java.util.Set to java.util.List
How to convert java Set to java List or ArrayList ?
ex: my code is
Set<String> set = new HashSet<String>();
set.add("1");
set.add("2");
set.add("3");
...
0
votes
1answer
34 views
simpe maven web project in eclipse
For last few hours I’m trying to set up a simple(create a simple project(skip archetype selection) )maven javeEE project in eclipse with one servlet and one jsp page, nothing fancy. Can someone ...
0
votes
2answers
33 views
JPA and Table Views. Can it be done?
We currently have a JEE system where we are mapping to our database using JPA. It is a fairly well developed system with about 20 entities.
We now have been ordered to use Views for everything. Eg: ...
0
votes
0answers
8 views
com.caucho.jsp.JspParseException: illegal start of type <![CDATA[
I am getting the following exception when I run an application on Resin 4.0.22.
com.caucho.jsp.JspParseException: /abc.jsp:7: illegal start of type
<![CDATA[
^
The CDATA ...
0
votes
0answers
13 views
How to permanently disable in JBoss 7/EAP6?
Current application what to use its own log4j dependency, but this become a challenge to deploy on JBoss EAP6/AS7 as it always roll back the deployment due to logging issue.
So I follow some ...
0
votes
0answers
22 views
Log4J not really excluded in JBoss EAP6/AS7
In jboss-deployment-structure.xml from application war file, I have exclude log4j modules or so
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure ...
0
votes
1answer
27 views
Caused by: javax.naming.NameNotFoundException - Name [Class/object] is not bound in this Context
have a problem that am dealing with since 6 hours but don't get to solve it.
Am developping a Dynamic web project using JSF/Tomcat 7/ Maven/Java 7
Everytime I run the project on the server I get ...
0
votes
1answer
26 views
Passing objects via EJB RMI - NullPointerException
I haven't been able to find anything useful in days of searching. Maybe I'm just not looking the right place.
Here's the idea - really simple: I want to pass an object from one EJB to another by the ...
-2
votes
1answer
57 views
Best Algorithm to encrypt password [closed]
I want to encrypt the password & store the encrypted value in MySQL database. What algorithm is the best way to go for encryption in Java?
For each user, I've userid, useremail field as well ...
0
votes
2answers
42 views
How to use beans in model attribute in Spring framework
Hello Might be it's a silly Question But I am new in Spring frame work. Please help
web.xml
<display-name>demo name</display-name>
<context-param>
...
0
votes
2answers
27 views
Single EAR? Or multiple EARs?
We are in the process of developing a JavaEE 6-based application to be deployed on JBoss EAP 6.1. The app has 2 primary presentation mechanisms: A web admin console, and a RESTful service API. On ...
0
votes
0answers
46 views
Session Management Using Java Web Application [closed]
I am using jboss server. When JBoss server bounces, then users automatically getting logged out. I need to secure that users without logging out. How to manage these kind of sessions in java web ...
0
votes
1answer
23 views
Struts 2 Jars Conflict
My struts 2 tile application was working fine.
But after adding the struts2-jquery-plugin library jar, I am getting the following error:
"SEVERE: Exception starting filter struts2
Unable to load ...
-1
votes
0answers
21 views
Advantage of Glassfish server over JBoss and all other J2EE servers [closed]
What is the advantage of Glassfish server over other j2EE server like JBoss,Tomcat etc ?
0
votes
2answers
28 views
Is it possible to call an EAR with a script ?(an deployed EAR on jboss 7)
I would like to write an SVN pre commit hook script that would be able to call an EAR that is deployed on jboss 7.
I mean that when the script is executed it would be open the web navigator and call ...
0
votes
1answer
6 views
Eclipse build path warning
I can not deploy my Jee app on Glassfish, I have this buil path warning on the Problems view :
Description Resource Path Location Type
Classpath entry eclipse.fproj.jdt.libprov.osgi/jpt.jpa ...
0
votes
2answers
19 views
How can I make this sql query with jpa ?
I'm trying to create a query in my entities.
I have these following tables in mysql DB :
Categorie : id, nom ...
Article : num_code_barre_, categorie ...
In my entity Categorie :
...
@Id
...
0
votes
2answers
40 views
the only error: No Spring WebApplicationInitializer types detected on classpath
May 21, 2013 3:44:07 PM org.apache.catalina.core.AprLifecycleListener init
INFO: Loaded APR based Apache Tomcat Native library 1.1.27 using APR version 1.4.6.
May 21, 2013 3:44:07 PM ...
0
votes
0answers
7 views
Richfaces, render components on checkbox does not update select or picklist
I've implemented a checkbox like the following:
JSF-command-button-enable-disable-based-on-jsf-check-box
answer of Hanynowsky.
It works fine for inputtext, autocomplete and buttoncomponents.
...
1
vote
2answers
25 views
stop solr search after timeout
I'm using solr and search on distributed lucene indices over network. I send queries from arbiter to searchers (solr) and then get the result.
Some of queries take a lot of time (more than a minute) ...
0
votes
3answers
21 views
Failed to Start Apache tomcat from eclipse juno in linux at port 80
At the window platform I have run tomcat from eclipse juno. But at linux I face this problem
When I run web project from eclipse I got this error message, while from command line I can able to run ...
0
votes
1answer
14 views
Weblogic: Encrypt properties
Weblogic application server 10g and above encrypts data source passwords etc. in the configuration files which is usually fine.
For a third party library, I have to provide credentials via my ...
0
votes
0answers
18 views
Javax.mail not working
I have to send a mail when a new user is registered in my application.I have used javax.mail.* for this.When my application is moved to AWS i get error in the following line.
...
0
votes
1answer
29 views
JPA products DB model design
I need to create a products DB. My products will have common attributes, such as price, description, brand... and specific ones, depending on their category (notebooks will have display size, ram, cpu ...
-2
votes
0answers
16 views
using sleep for every servlet request until jms onMessage listener method is invoked by server [closed]
My Idea is to make a ajax call from the jsp page and make all servlet request sleep until i receive message from the jms topic.As soon i receive message in onMessage method.I want to wake all these ...
0
votes
0answers
22 views
Eclipse - Include JAXB Project in Java EE Project for JAXBContext CDI
My issue seems to be some sort of build path/export issue. I have a simple JAXB Project that contains a number of JAXB classes generated from an XSD schema. These classes are in a ...
1
vote
1answer
21 views
JAXB Marshal setProperty com.sun.xml.bind.characterEscapeHandler
I am trying to override the escape of special characters in JAXB encoding.
For this I am using an interface that implements: CharacterEscapeHandler.
Here is the interface:
package project1;
import ...
0
votes
0answers
14 views
Web Service unavailable after restart Glassfish
now I have this new problem. I´m using Glassfish 3.1.2.2 to host an application that has a Web Service to communicate with another application outside the server, mainly a swing desktop application. ...
-1
votes
1answer
26 views
How can we inject a DAO dynamically
Is it possible to inject a DAO dynamically, I mean to say inject aDao if the param value is "a" or inject bDao if the param value is "b". I know we can inject both the DAO's and use it as per the what ...
1
vote
1answer
18 views
Primefaces row edit listener wont work
I use Primefaces 3.5.jar and Hibernate.
I have problem with datatable row edit listener. When i debug project i can enter in onCancel method but onEdit never start. My XHTML code:
<f:facet ...
0
votes
0answers
11 views
Reducing configuration required to add new view in Apache Tiles
I search for ideas on how to reduce some of the boilerplate added by Tiles. Here is how my project organized.
In my spring-mvc config I have Tiles configured this way:
...
<bean ...
0
votes
0answers
18 views
Testing of EJB3.0 deployed on weblogic 10.3.5 using JUNIT
Found arquillian can do so but it can be done using some Maven dependencies.There is no much document found for its configuration with ANT , Using IVY.xml with ant build file we can use arquillian.
I ...
0
votes
1answer
11 views
Possible unicode interop issue between WCF and JEE when using signed messages over HTTPS?
I'm using the custom binding configuration below to sign the SOAP message with a certificate over HTTPS:
System.ServiceModel.Channels.AsymmetricSecurityBindingElement asbe = new ...
0
votes
1answer
41 views
Is there any Java based open source framework to find values from a text field based on key string with delimiter?
Is there any Java based open source framework to find values in a text field based on key string with delimiter?
Example:
Key: username
Start-Delimiter: ;
End-Delimiter: ;
Key: on
...
-4
votes
0answers
16 views
Complete list of standalone.xml tags in JBoss7? [closed]
for study i want to get complete tag list of standalone.xml used in JBoss7 server.It would be very helpful if you can provide a reference link.
0
votes
1answer
27 views
doFilter called twice, intended behaviour?
I'm working through the Java EE servlet tutorial and tried the mood example (http://docs.oracle.com/javaee/6/tutorial/doc/gkcpg.html). I noticed the doFilter is getting called twice, once the servlet ...
0
votes
1answer
32 views
REST Jersey exception AbstractJAXBProvider
I have this resource
@Path("customer")
public class Customers
inside it, I have this function:
@Path("signin/{mobileNumber}/{simNumber}/{password}")
@GET
@Produces({ ...
0
votes
1answer
38 views
Role based menu in J2EE
I am using Spring MVC for my Web Application. My views are JSP based. What is the Best Practice show role based menus.
Should I make a check in JSP page for role?
Should I built menu in Java class ...
0
votes
0answers
20 views
Struts 1 : validate two fields have same value
I have two fields and need to validate that both fields are having the same value using struts 1 validation framework (Not in Form's validation method). Here can be found a solution for that, but I ...
0
votes
1answer
17 views
Error Servlet.init() when using Jersey(RESTful service) + Hibernate
i have a following problem :
i copy librarys of both hibernate and jersey into web-inf/lib in my project, when i start project in tomcat and type "localhost:8080/de.vogella.jersey.jaxb/ind" then an ...
0
votes
2answers
26 views
Why the order of hashmap items get changed?
I am using the following code in my interface, once the results are shown on the browser the order of the values get changed. how to solve the problem?
public static final Map<String,String> ...
2
votes
5answers
64 views
How to run a specific block of code automatically based on date and time?
I am wondering how to make the application execute a specific part of code, for example a part of code to send an email on a specific time and date?
I have read the following questions but none of ...
0
votes
0answers
37 views
Select Query Cause DeadLock
We keep getting deadlock errors in our production environment. The error message as below in the log file
2013-04-24 01:44:28,893 ERROR [gk.lvl1Executor-1] - Transaction (Process ID 68) was ...
0
votes
1answer
28 views
jndi lookup routine?
I've got a java se aplication that lookup for remote bean and executes methods of this object. Is there a way to lookup just once and then use this object or i have to lookup every time ?
I was ...





