Tagged Questions
The application-client tag has no wiki summary.
3
votes
1answer
242 views
Java EE 6 Application Client login
I am quite new to Java EE and have been having a lot of trouble just getting started on the application I want to create. What I would like is a Swing application client that connects to an EJB ...
3
votes
2answers
2k views
Difference between an application client and a stand-alone client
As the title suggests, this is in relation to Java EE and Glassfish in particular.
From what i've learned the application client is executed in some application client that has the ability to talk to ...
3
votes
1answer
5k views
EJB 3: Accessing a stateful session bean from an application client
I am having some trouble accessing a stateful session bean (SFSB) from an application client. I am using JBoss 5.0.1.GA. The application client and the EJBs are both packaged in an EAR which deploys ...
2
votes
2answers
247 views
EJBs with main() - what is this all about?
While doing the original training for EJBs from Sun I came across the rather strange concept of a enterprise application client which has the notion of dependecy injection and a main class:
...
2
votes
2answers
815 views
maven javaee application client plugin
I am pretty new to maven.
Is there any plugin or packaging type suitable for building application client jar file ?
I want to add the application-client.xml file to the META-INF folder inside the ...
1
vote
1answer
211 views
GlassFish Application Client Container
I'm trying to work with the Embeddable Glassfish app client container.
The only resources I can find are the above mentioned javadocs which contain this tantalising code snippet
import ...
1
vote
1answer
456 views
Unable to run app-client that is accessing an EJB on GlassFish v3
Environment: GlassFish 3.0.1, NetBeans 6.9, JDK 6u21
Problem: Unable to run app-client that is accessing an EJB
A bugreport can be found under http://netbeans.org/bugzilla/show_bug.cgi?id=183488 ...
1
vote
1answer
1k views
Multiple entry point (mainclass) for application client jar
How do I set up multiple entry points in an application client jar?
I am using Glassfish application server. I can grab the client using
asadmin get-client-stubs --appname APPLICATION_NAME .
I ...
0
votes
2answers
78 views
Deploy Application Client by comand line (asadmin)
Is there an option/parameter to deploy an application client with java-web-start enabled with the asadmin command? I work with GlassFish 3.1.1.
I have a jar-file which works well, when I deploy it in ...
0
votes
2answers
492 views
Create an “Application Client” with Maven in Java EE
I am trying to create a maven based Enterprise Application with an Application Client which runs in the Application Client Container from GlassFish. It should fit togheter as the Project template from ...
0
votes
2answers
149 views
EJB pool while calling EJB from client app
Is it ok if i inject an EJB in the application client through JNDI, and then call this EJB from multiple threads ?
Will the j2ee container know to create more ejb to handle more requests ?
OR do i ...
0
votes
3answers
790 views
Application Client EJB Eclipse Glassfish
I'm using GlassFish Tools Bundle for Eclipse.
I need to create a bean and a client that tests it. The bean (and its interface) are the following.
package mykPK;
import java.math.BigDecimal;
import ...
0
votes
1answer
650 views
EJB remote application-client
I am starting a new enterprise project and use Glassfish 3 as an application server and NetBeans 6.9 as an IDE. I have some EJBs which I want to access remotely from a desktop Swing application. AFAIK ...
0
votes
4answers
1k views
EJB3 JNDI Lookup Failure in JEE application client
I'm trying to access an EJB3 from a JEE client-application, but keep getting nothing but lookup failures. The client application is running within the JEE Application Client Container.
My JEE ...
0
votes
1answer
2k views
Different kind of Java EE projects
What is the different between different kind of Java EE projects in Eclipse WTP?
There are:
Application Client Project
Connector Project
Enterprise Application Project
Utility Project
0
votes
2answers
885 views
eclipse howto start a application client on java ee glassfish appl srv
i have installed the glassfish eclipse tools bundle...
i can start a project like dynamic web & a ear project and deploy them on the glassfish... it works perfect & under the localhost url i ...