Use this tag for questions relating specifically to Java Enterprise Edition 5.

learn more… | top users | synonyms (5)

1
vote
3answers
500 views

Stateless Session Bean

Do I package a stateless session bean in a war file or a ear file for deployment?
1
vote
3answers
2k views

JSON Web Service over simple HTTP GET/POST

Can you suggest a way or a framework or etc. for Java EE in order to make simple HTTP GET/POST calls to some web services like in SOAP web services but transport format must be JSON; not XML and there ...
0
votes
3answers
65 views

JBoss ejb3.0 instant hot deployment

I am newbie with jboss-eclipse. I have to work on javaEE5 with JBoss AS 5.1.0.GA. I don't want to use JRebel at the moment. I installed "Eclipse Java EE IDE" with "JBoss Tools". I added the JBoss 5.1 ...
1
vote
2answers
108 views

env-entry values get lost when updating web application in WebSphere Application Server 7.0

I hava a web application (*.war) deployed to a WebSphere Application Server 7.0. In the deployment descriptor (web.xml) I have defined several ennvironment entries using the <env-entry>-Tag. I ...
1
vote
2answers
94 views

Request in Apache CXF WS is null

I wrote a WS using Apache CXF and while getting the request data in implenment class, it gives all null values. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
2answers
75 views

Which authentication/authorization solution to use for a java web project?

What options do I have to enforce authentication/authorization in a java web app ? From my research, there's: JAAS JNDI Spring security Any others ? Does JEE5 or JEE6 have anything new ?
0
votes
2answers
251 views

EntityManager obtained from JNDI lookup is already closed

On our PRE-PROD environment (Glassfish v2.1), we're encountering two RuntimeExceptions from two separate requests to our session bean: "org.hibernate.SessionException: Session is closed!" ...
0
votes
2answers
272 views

How is it to return a very long list from ejb3 session bean?

I have a ejb3 session bean and a servlet. The bean have access to a database with some big table. The servlet should retrieve the table's content from the bean and send data through ...
-2
votes
2answers
446 views

exception com.vaadin.event.ListenerMethod$MethodException

i'm busing developer a application spring hibernate vaadin i want to do function add new Article when i click the button it appears me an error, can you help me ...
3
votes
1answer
450 views

what's is the best way to initialize log4j with EJB 3.0?

I have an EAR who has only EJBs (EJB3.0) and with out a WAR module, the server is JBOSS 4.3 over linux. I want to initialize LOG4J with a log4j.properties file outside the server and use slf4j as ...
2
votes
1answer
152 views

Is it possible to create unit tests for Spring security intercepted Urls

Our application has filtering on Urls using spring security as in: <intercept-url pattern="/resources/**" access="ROLE_ANONYMOUS,ROLE_USER"/> We would like to write a unit test that takes a ...
2
votes
1answer
128 views

Does Weblogic/Glassfish guarantees the order of application deployment?

Java EE 5 does not guarantee any application deployment ordering. This feature was introduced in Java EE 6. We use Oracle WebLogic 10.3.2 and it is Java EE 5 compliant. We also use GlassFish 3. We ...
2
votes
1answer
130 views

Configurable persistence in Java EE5+

There are 2 ways of using a persistence unit, code or annotation. CODE [..]EntityManagerFactory emf; emf = Persistence.createEntityManagerFactory("SOMEPU");[..] or ANNOTATION [..] ...
1
vote
1answer
107 views

How can I improve this design that calls third party methods from JSF based front end

I want opinions and expert advice on design . I am developing an application using JSF2 and EJB3 and I am not using CDI. I have been given an API (jar) from an other team and there are three main ...
1
vote
1answer
131 views

How can I receive the persistence unit name of an EntityManager?

In a Java EE application I am using @PersistenceContext on an EJB3.0 SessionBean to let an EntityManager be autowired. As I am using multiple Datasources, I want to programmatically determine the ...
0
votes
1answer
24 views

Tutorial for moving from Java EE 5 to 6

I'm looking for a quick tutorial to introduce me to the new features of Java EE 6. I know the basics of JavaEE 5 servlets and JSPs etc (not an expert I must add. just the basics). So I don't want to ...
0
votes
1answer
450 views

EJB 3.0 timer bean timeout called multiple times in glassfish

We have to implement EJB 3.0 timers and we took the following approach: we created @Stateless beans and injected the TimerService with the @Resource annotation we have implemented a servlet which ...
0
votes
1answer
193 views

web application Java EE and CSV files

I am developing a web application (Java EE) to upload CSV files on the server. My question is the following: How can I save these CSV files? my reasoning is as the following: 1- create a data base ...
0
votes
1answer
590 views

Maven EAR-project with SLF4J, logback and native hibernate on glassfish

My project is pretty simple. i want a standard ear-project which supports slf4j with logback as implementation. my main problem is, that the config file is not used and i get debug info printed out to ...
0
votes
1answer
68 views

Which design-pattern is right in this scenerio?

In a problem scenerio, I have to call five different vendors complying to same industry web service API. Based on the output received from each, I would chose best among all and perform remaining ...
0
votes
1answer
1k views

I am Using maven build tool, I am getting this type of error when I am build, Please help me

FAILED for project: com.tenkinfo:b2g:war:1.1-SNAPSHOT Reason: /home/nrao/workspace15/mapnsav/src/main/java/com/tenkinfo/mapnsav/search/facade/ResourceServiceImpl.java:[5,-1] cannot access ...
0
votes
1answer
84 views

recommended connection method for outside clients to connect to JMS queues

We have our clients in an extranet based environment that need to connect to our JMS queues. Should they be able to just lookup our queues and connectionFactories in the JNDI space. I mean what is ...
0
votes
1answer
597 views

Hibernate : can't resolve property username

User.hbm.xml <hibernate-mapping> <class name="server.dao.domain.User" table="user" catalog="story_v1"> <id name="userId" type="java.lang.Long"> <column name="user_id" ...
0
votes
1answer
496 views

ejb3-using-2-persistence-units-within-a-transaction

I am having problems connecting to 2 persistence units from within the same transaction using following tech stack, WLS 10.3.x, Eclipselink 2.1, Oracle 11g JDBC driver, Informix 10 JDBC driver Using ...
4
votes
0answers
3k views

Jsf DataModel vs Java List problem ( no row available exception )

In JSF 1.2 One was listing Items using Java List : private List<Customer> customerItems = null; , but in JSF 2.0 JSf DataModel (ListDataModel) is the way to go. (I am using JSF 2.0) private ...
2
votes
0answers
164 views

JavaEE 6 and connection between two EJB by @Remote

I have two EJB One EJB has Remote interface Second EJB try to connect to One EJB by Remote. Under Geronimo EE 5 works fine but Geronimo EE6 fails https://issues.apache.org/jira/browse/GERONIMO-6232 ...
1
vote
0answers
25 views

unexplained Compilation error

In a project, the developer used HttpServletResponse.setContentTYpe(), followed by HttpServletResponse.setCharacterEncoding(); There was a compilation error at the deployment setup due to ...
1
vote
0answers
39 views

reaching a weblogic web-app over internet

On a project I’m working on at my current job, I’ve come across a pernicious problem. We have an internal web-app runs at say, 1.1.1.1:123/webapp. Customer wants to reach the web-app over ...
1
vote
0answers
23 views

ElException method not found

I work in a project using seam and jsf. I want to call a method from view part (an xhtml file) . I have this: <h:outputText value="#{thePoliciesAdmin.getMinusUsage()}"/> I have the ...
1
vote
0answers
12 views

datasouce injection

I need help to understand DataSource injection. I have defined the jndi datasource in webSphere server and tested the connection within the console return successful. When I tried to inject the ...
1
vote
0answers
114 views

how to use JPA in a worker thread?

I'm using WebLogic 10.3.5.0 with JPA 2.0 and have the following scenario: user needs to start a task takes some time to complete; this task needs to read and write to DB; One solution would be to ...
1
vote
0answers
87 views

Authorization problems with Embedded Glassfish 3.1.1

I'm using Embedded Glassfish to deploy a JEE 5 web application. Using version 3.1 I was successful to: Deploy it in a normal (not embedded) environment; Based on the 1st step, create an embedded ...
1
vote
0answers
391 views

how to get client ip for different kinds of clients

How Can I get client ip in an ejb interceptor? My application is based on javaee5 and is deployed on glassfish and it has different kind of clients (ejb/MDB/jax-ws webservices) and I have a default ...
1
vote
0answers
79 views

Can't execute embedded Glassfish App at Apple platform

I'm having a problem running an JEE5 application at GF 3.1 Embedded at Apple computers... (the same environment works at Linux and Windows). The server starts ok, but when loading the APP the server ...
1
vote
0answers
78 views

Bean to monitor a topic and give statistics in a portlet?

I'm new to java and i'm not sure how to implement the following. We have a topic queue where some java apps write various object messages to (Performance with Min,max and avg processing ...
1
vote
0answers
338 views

Ejb refrences another ejb

I have two EJBs , EJB A references EJB B, both are deployed to the same server. Each time I try to deploy EJB A it tries to register EJB B which is already deployed and registered which causes error: ...
0
votes
0answers
10 views

Place dependencies in root lib folder

I have an EJB/Web project that I have created with netbeans. I have created the project with netbeans so we would have a working prototype quickly. Now I'm converting this to Gradle. I'm using the ear ...
0
votes
0answers
10 views

<a4j:outputpanel> causing havoc with <rich:dataTable>

I have a <rich:dataTable> with two columns as the basis of my form. one column is used for labels and one where users can fill in the various pieces of information that the application needs. ...
0
votes
0answers
11 views

Sequence action on deploying and undeploying a web application

When a Java AppServer deploy an application, a sequence of action ocurrs. As we know, listeners, filters and servlets are initialized respectively in that order. I would like to know de complete ...
0
votes
0answers
30 views

Automatically flush entity manager when ending conversation

Is there a way to automatically flush the entityManager when a seam-conversation is over? Now we have to manually call flush to tell Seam that we think that we are ready to commit the data. But in all ...
0
votes
0answers
44 views

JSF view displaying outdated value

I have two entities and a backing bean in my application. Following, a simplified version of it: Controller and Models: class BackingBean { private List<A> collectionOfA; private A ...
0
votes
0answers
159 views

SOAP webService: want xml data instead of object

I made simple SOAP based WS project in MyEclipse10(JEE5).(am new on WS) CalculatorProject as follows _ first i created Calculator.java public class Calculator { public int add(int a, int b) { ...
0
votes
0answers
493 views

JSP Example to connect to MS SQL database using Tomcat

I am trying to retrieve data using jsp but it showing Error:org.apache.jasper.JasperException: An exception occurred processing JSP page /databaseTest.jsp at line 13 My Code is: <%@taglib ...
0
votes
0answers
1k views

JSF Datamodel & JPA parent to leaves navigation. How to?

My web application is a CRUD web application based on JSF 2.0 / JPA using JEE 5 and JDK 1.6. Running on Glassfish 3.1. The IDE is Netbeans 7.0. (I do not use EJB, nor CDI). THE PROBLEM What I can ...
0
votes
0answers
449 views

URI problem when using domain.xml at embedded glassfish

I'm embedding a JEE 5 application using Glassfish 3.0.1. I already can deploy it (when using without specific configuration), but when trying to run server with the domain.xml (basically JAAS info), I ...
0
votes
0answers
289 views

Glassfish tuning

We have here an application developed using Java EE 5 stack (using JSF, RichFaces, EJB, JPA, Hibernate, JAAS) that runs inside Glassfish 3.1! The thing is we are in need to run it as an installable ...