Tagged Questions
1
vote
1answer
37 views
EJB + WebService on GlassFish with Netbeans enabling HTTPS
I have to enable HTTPS for webservice which is inside EJB application. My environment is Netbeans 7.2 + GlassFish 3.1.2.2 OpenSource Server. In EAR project there is no WebApplication, so I try to add ...
0
votes
1answer
14 views
Exception thrown when building EAR after switching to JDK 7
i'm trying to port my application to JDK 7 from JDK 6 and its giving this exception when i'm trying to build the project in Netbeans IDE.
Error starting Sun's native2ascii:
at ...
3
votes
2answers
76 views
TomEE DataSource isn't found
I have a strange problem regarding TomEE and using a DataSource specified in tomee.xml.
It might be worth noting that I'm using Netbeans, TomEE and MySQL. Running on Ubuntu 13.04 (Xubuntu latest)
The ...
0
votes
0answers
41 views
entreprise application projet on netbeans 7.2.1 and glassfish 3.2.1 some errors
I try to make a entreprise application on netbeans 7.2.1 with remote glassfish 3.2.1. First I created a entity bean from database, then session beans from entity classes.
I also created pool and ...
1
vote
1answer
51 views
What is the shortest way to generate a Hello World Exe file from a JSP webpage?
Scenario :
When some one enter to my website at : www.domain.com/mypage.jsp he will find an input text box to type his name, and a download button.
When the user enter his name and hit the download ...
0
votes
1answer
338 views
Netbeans - deploy war error : the module has not been deployed
I've created a Java enterprise application using Netbeans 7. I'm using Glassfish v3. When I deploy my war file into glassfish, it displays the error : the module has not been deployed, but if I deploy ...
0
votes
1answer
320 views
javax.ejb.CreateException: Could not create stateless EJB
I'm using netbean 6.7.1 Glassfish v2.1 ...
I'm trying to create message driven bean.
App A (using session bean, create map message) --> App B (message driven bean located here).
@Stateless
public ...
-1
votes
1answer
57 views
error while creating session bean
i am trying the 'Hello World! with Remote Stateless Session Bean'example with glassfish3+ and netbeans 7.2 and while creating a session bean i have an error stating-"there is no suitable project ...
0
votes
1answer
59 views
Glassfish 2.x EJB library missing
I have a web-app running smoothly on GlassFish 3.1.2 which is on my local machine. However I get to put this app on an actual server which runs GF2.1.
When I tried to import the netbeans project into ...
0
votes
1answer
250 views
How to use EJB from Netbeans ejb project in the web project?
I've created a NetBeans Enterprise application which consists of an ear that wraps an ejb (jar) project and a web (war) project.
I have a servlet in my web project and I want to use one of the EJBs ...
0
votes
1answer
120 views
How to create an ejb entity with double primary keys?
I am having a problem while creating an entity of a related table (I'm using MS SQL Server and Enterprise Application in NetBeans IDE 7.2 - EJB3)
My database includes:
Projects table: primary key: ...
0
votes
0answers
291 views
Web+desktop application in one project using Java EE and NetBeans 7.2
I have a Java EE project to do, I need a server app and a desktop app to communicate with the server. I use NetBeans 7.2.1 and I have three naive questions:
1) Is there any way to create both the ...
1
vote
1answer
185 views
Migrate Desktop Swing CRUD Client to Web Application Netbeans 7.2 Glassfish 3.1.2
What tools are available in Netbeans or elsewhere to migrate a simple Java CRUD client app to web app preserving at least a resemblance of the original design?
The desktop client app connects to EJB ...
3
votes
1answer
262 views
deployment single ejb module with dependencies in netbeans and glassfish
In NB 7.2 i have ejb module managed by maven with several dependencies. I try to run it on Glassfish 3.1.2.2 but it seems like server doesn't resolve libraries on classpath. I think arguments in ...
0
votes
0answers
184 views
Couldn't write to database using the entity manager persist method
I am about developing a small application using EJB JPA MySQL netbeans7.2,
so my application has the following goal: get the list of names and their IDs and add other names to the list.
My classes ...
-1
votes
1answer
69 views
Ejb Home interface in netbeans
I am new to EJB ,I am using Netbean IDE.
I am able to create a session bean remote interface but not able to create Home interface, please help me ...
0
votes
0answers
62 views
showing updated datas on a jsp page using stateless session beans
Hi all I am new to EJB and now i have created a JSP Page and used EJB to find the datas corresponding to the primary key.
I have created a page to delete a row from database. the delete query is ...
0
votes
1answer
200 views
NetBeans + EJB3 + MySQL: Accessing two databases with tables having the same name
I'm setting up a Maven Enterprise Project in NetBeans 7.2 to develop a MIS (management information system). Happens that we have an old database that has to be migrated to the new one. Until the new ...
0
votes
1answer
84 views
What's the simplest way to remotely access a simple EJB running on Glassfish?
I'm novice in Java EE, and to get started, I used this tutorial:
http://netbeans.org/kb/docs/javaee/entappclient.html
I don't want to change anything, but I want to access the EJB remotely.
Which ...
1
vote
1answer
473 views
Concept of JSF, EJB and form based login with JDBC-Realm
I am trying to learn the concepts of JEE (EJB,JSF...) and therefore I am working on an example application.
Unfortunately I have problems to understand how some concepts should work together and if I ...
0
votes
1answer
290 views
NetBeans: Using an EJB in the EJB module from the web module
I have created a Java EE application with an EJB module and a web module in NetBeans. The business logic resides in EJBs inside the EJB module. Is it possible for managed beans of the web module to ...
2
votes
1answer
137 views
Netbeans Java EE project with layers on different machine
The goal is creating a simple Java EE 6 application with EJBs deployed on a machine and the web part on a different machine. I'm using Glassfish and Netbeans 7.2 but I get confused about the ...
0
votes
2answers
556 views
Glassfish 3.1.2 reload needed jars after application deployment
I have an ebj using some external libraries (in this case, those libraries are written by myself). I have included them in my EJB.
The problem is that glassfish seems to load the needed jars only ...
0
votes
1answer
182 views
Partial working of a J2SE client that calls methods of an EJB in an Enterpr. Project and JPA
Currently I have a Java J2SE client that calls two methods in session EJB.
One method (EJB.test()) works while the other EJB.create() doesnt.
The code for which looks like this
Properties props = ...
0
votes
0answers
184 views
@PersistenceContext gives Invalid Resource
This is my EJB implementation
@Stateless
public class ImplBean implements BeanLocal,BeanRemote
{
@PersistenceContext(unitName="DbTest") private EntityManager manager;
.....
.....
...
0
votes
1answer
770 views
Standalone java Glasshfish client. Reference to gf-client.jar
i'm deploying an application making use of EJB. I'have wrote an EJB and a java standalone client to connect to. Everything works correctly.
However, i have a question regarding the JAR dependencies. ...
0
votes
1answer
134 views
Run a ejb outside it's container in Netbeans
I am using netbeans to run my web application. Now, in my web application project, I have a jsp code which call a servlet and that servlet call's a EJB and shows the output of EJB in a jsp page. Now, ...
0
votes
2answers
294 views
Stateful session beans vs Stateless session beans, Instance variable dilemma
I have a stateless session bean, but I want to add a reference to another bean in order to do some process. So if I add reference to another bean it shows up at instance level variable like this,
...
0
votes
2answers
341 views
Why are the foreign keys in ejb declared as objects(entities)?
I'am developing a java web EE application using EJB, JPA and netbeans. I've created a table with sql named users for registration and login and another table named prescripts which has 3 foreign keys ...
1
vote
1answer
166 views
Update one(or more) field of a member (registered on a website) using Servlets, JSPs , EJBs
I am working on a website program of a 'carhiring agency'
A user can register (done) - using Servlet & Jsp page
Login if already a member(done) - using java bean , servlet and jsp
Make a booking ...
0
votes
1answer
1k views
netbeans, EJB, glassfish, e-commerce tutorial issues
I’ve been following the e-commerce tutorial located here: http://netbeans.org/kb/docs/javaee/ecommerce/intro.html
Code repo of project here.
I have ran into a few problems that I believe are ...
1
vote
1answer
610 views
JSF & Primefaces NoClassDefFoundError
Ok guys.
After something like 3 hours of struggle, I decided to post the question here, since I'm not able to solve this.
Let's get to the point.
I've got a NetBeans web project done with PrimeFaces ...
0
votes
1answer
838 views
javax.ejb.Stateless class undefined
I am currently trying to implement a web-service assignment given by my college.
My Assignment is..,
Consider a case where we have two web Services- an airline service and
a travel agent and ...
1
vote
1answer
386 views
Entities not persisting in EJB **EDIT** Entities not being created in the Database
Right next part of my saga of getting EJB working hoping someone here can help me out
Here is my server log saying my deployment was successful:
2012-03-11 22:02:41,837 INFO ...
1
vote
1answer
641 views
EJB Module test case initialization error
I'm trying to unit test a simple EJBModule project under NetBeans 7.1, but I am receiving one warning and an initialization error. I'm using GlassFish version 3.1.1. I'm hoping someone is familiar ...
0
votes
1answer
362 views
JavaFx 2.0 + EJB + Netbeans - Runtime Exception
please,
I wrote a test app in JavaFx 2.0 + EJB in the Netbeans IDE and I got a problem running this app outside netbeans.
I have a form using FXML and an action of this form runs a EJB method. I am ...
2
votes
1answer
1k views
Enable https for java ejb Webservice
i'm developing a webservice with ejb 3 and glassfish 3.1.1. I'm using Netbeans 7.0 and would like to know, how to enable https on port 8181 for this webservice.
I dont need any authentication ...
1
vote
1answer
101 views
Issue with Web Application in NetBeans
I have a web application code which uses jsp, servlet and ejb. I created those using NetBeans 6.9 and GlassFish 3.1. Now, whenever I update my code, sometimes in my browser I found the updates and ...
1
vote
1answer
543 views
Injected EJB into SessionScoped ManagedBean generates exceptions when undeploying
Start a new web application using NetBeans 7 on GlassFish 3.1
In index.xhtml body add an h:outputText tag with value="#{myBean.message}"
Create a SessionScoped ManagedBean MyBean with a String ...
2
votes
1answer
580 views
Ejb Code with NetBeans and GlassFish
I am very new in Ejb and with very few knowledge about it. I have download NetBeans (7.01) and GlassFish (3.01). But, as I have no idea about Ejb, I am not getting how to run the code which includes a ...
0
votes
1answer
146 views
Ejb with NetBeans
I am very new in Ejb and with very few knowledge about it. I have download NetBeans (7.01) and GlassFish and run a sample program. But, as I have no idea about Ejb, I can't understand how to run this ...
2
votes
0answers
541 views
Allowing EJB 3.1 Webservice with optional namespace
i'm using EJB 3.1 with NetBeans 7.0 to deploy WebServices. I have generated classes from my XSD file.
NetBeans generates a WSDL File for this WebServices.
<soapenv:Envelope ...
1
vote
1answer
132 views
test with expected exception is shown as failed
I have a small junit4 test that expect an exception.
this the code:
@Test(expected = EntityVide.class)
public void testPing() throws Exception {
System.out.println("ping");
int ...
1
vote
1answer
114 views
reference for ejb jboss and eclipse development
is there a reference or book, maybe a tutorial that can get me started with ejb using the technologies that I have mentioned above?
thank you
2
votes
1answer
133 views
How do I separate EJBs from being packaged with my web apps in Netbeans 7?
I have 2 different Netbeans projects: an enterprise application holding 2 EJBs and a web application which uses these EJBs. When I deploy, I deploy them each separately (one as an EAR and the other ...
0
votes
1answer
88 views
Why “Warning: Common implementation for both interfaces” in Netbeans?
I am using Netbeans to create EJB 2.0 module. In this module, I created both local and remote interfaces. When I added business methods in the bean class, Netbeans allows conveniently to add to either ...
0
votes
1answer
418 views
Tables not created on deployment of Java EE Application
I am running into the simple scenario that I started to create a Java EE App with EJB's.
As I changed the structure of some of the EJB's I thought it easiest to just remove the Tables in the Java DB ...
0
votes
1answer
277 views
Best way to use JPA with relationships
When I have an Entity with relationships I don't know which is the best way to save changes to DB.
Here is a simplified entity. Please consider I have made little changes to the code to post it here ...
0
votes
1answer
869 views
[Study EJB]: annotation type is not applicable to this kind of declaration?
Trying to create the simplest EJB using NetBeans 7.0 and EJB 3 in Action book.
Well, firstly I've created an interface:
package study;
public interface NewInterface {
public void ...
7
votes
4answers
522 views
Java EE 6: How to add web module on top of application client
Technology(Java EE 6 with Glassfish 3.1, Netbeans 7.0)
I have an application client that access a db via JPA. No EJB is involved. Now I need to add an web interface for this application client. So I ...


