Questions tagged [application-server]

An application server is a software framework dedicated to the efficient execution of procedures (programs, routines, scripts) for supporting the construction of applications. Normally the term refers to Java application servers. When this is the case, the application server behaves like an extended virtual machine for the running applications, handling transparently connections to the database at one side, and connections to the web client at the other.

592 questions
6
votes
7 answers

Application server - to use or not use?

Typically we use WebLogic or JBoss to deploy our apps. I understand that when using open source solutions like Spring you can develop your app and run it on a simple servlet container like Jetty. So the question would be why even bother with an…
Marcus Leon
  • 55,199
  • 118
  • 297
  • 429
6
votes
1 answer

What is Jboss standalone.xml? what is the purpose of it?

I know to run the JBoss we need the standalone.xml, but I do not understand the content in the standalone.xml file. Can someone explain to me what is defined in it with an example? Thanks
Sudhakar
  • 97
  • 1
  • 1
  • 5
6
votes
1 answer

Java Application Servers alternatives

I've been professionally working with Java application servers for five years, but I have only experienced my self two vendors: Weblogic and JBoss, and mainly the last. Focusing in JBoss I'm currently migrating (or at least trying to) some apps from…
rsilva4
  • 1,915
  • 1
  • 23
  • 39
6
votes
1 answer

How to enable Weblogic 12.1.2 JPA 2.1

I have been deploying our web application to Weblogic server. However, although I was able to deploy the application successfully in this new version, the app does not start up and users cannot login. The log is: May 29, 2015 4:38:47 PM…
iso_9001_
  • 2,655
  • 6
  • 31
  • 47
6
votes
4 answers

Turning off JBoss hot deploy service?

What is the correct way to turn off the JBoss hot deploy service? This is a production environment. Edit: JBoss version 5.1.0 GA
tinny
  • 4,232
  • 7
  • 28
  • 38
6
votes
1 answer

EJB Local/Remote interface within separate applications in a single application server instance

Assume a single application server instance that has two EARs deployed. The first EAR invokes EJBs from the second EAR using remote EJB interfaces. It is rumored that even if the invokation is implemented using remote interfaces, the application…
yannisf
  • 6,016
  • 9
  • 39
  • 61
6
votes
5 answers

Choosing an Open Source Application Server for Java EE

I know this may be a recurring topic, but I have read a lot of articles and I still have doubts. Also, I would like to hear more recent opinions about this. The main requirements of my application server are: flexible configuration, support for a…
Rafael Angarita
  • 777
  • 10
  • 27
6
votes
1 answer

HttpServletRequest reuse

It seems that some servlet containers reuse HttpServletRequest (or more generally, ServletRequest) instances between requests. Question: Can someone point to the servlet spec where this behavior (or the validity rules for references to such…
MRalwasser
  • 15,605
  • 15
  • 101
  • 147
6
votes
3 answers

question about application instance management

I am currently working on a rather large project with a team distributed across the United States. Developers regular commit code to the source repository. We have the following application builds (all are managed by an application, no manual…
Jay
  • 4,994
  • 4
  • 28
  • 41
6
votes
6 answers

Will Oracle retire 10gAS in favor of WebLogic?

Oracle purchased BEA and their WebLogic suite of tools. They still have a competing product in their own 10gAS Application Server. Both are Java EE, enterprise grade, servers. While it make take some time due to maintenance agreements, it would be…
dacracot
  • 22,002
  • 26
  • 104
  • 152
6
votes
3 answers

what is the relationship between Application server and JVM?

A quick question that come up to my mind and I thought to post it here to clarify my inner concerns. What is the relationship between APP server (i.e. JBoss, WebLogic etc) and JVM? Where is APP server located; does it run within JVM? Many Thanks!
Simple-Solution
  • 4,209
  • 12
  • 47
  • 66
6
votes
3 answers

Choosing application server for API backend

With so many choices for the application server (Passenger, Thin, Unicorn, Mongrel, Puma and Rainbows!), I'm wondering what would be appropriate for the following scenario: Rails is used purely for API backend (all assets are served with Nginx).…
randomguy
  • 12,042
  • 16
  • 71
  • 101
5
votes
3 answers

Java EE 6 Application Server for Web Profile with JavaMail

I have a Java EE web application using features from the Java EE 6 web profile + the EJB Timer service and JavaMail. I'm currently using GlassFish 3.1.2 full profile during development, but I want to investigate the alternatives because: There…
bernie
  • 9,820
  • 5
  • 62
  • 92
5
votes
4 answers

Where to store application data on Android?

I use to use user.home + app_name directory under Linux and Windows. However directory given me by Android for user.home has no right to write. So what is common practice of storing application data? My situation even more complicated. The data I…
Dmitriy R
  • 613
  • 1
  • 5
  • 12
5
votes
2 answers

What does Java EE compliant means?

We often say that the particular application server is a Java EE compliant server. But I am still not completely aware of what it means exactly. Need more information on this.
GuruKulki
  • 25,776
  • 50
  • 140
  • 201