1
vote
2answers
24 views
persist tomcat jndi settings
Hi,
We would like to pass the same WAR thru dev, test, and production. How can we persist our JNDI settings w/o manual modification of server.xml? For example, in Websphere there …
6
votes
5answers
411 views
Maintaining JNDI across multiple instances of Tomcat
I am wondering how people manage maintaining JNDI resources across multiple instances of their Tomcat Application server. Lets take, for example, my database JNDI resource. It is d …
0
votes
2answers
769 views
GWT 1.7 - Configuring a DataSource in Jetty (Hosted Mode)
Hello, I'm new to GWT (1.7) and tried to establish a connection to my MySQL database from the servlet. Because I got some errors, I googled them and found out, that I have to confi …
0
votes
1answer
21 views
Custom resource in @Resource annotations added at runtime
Hello, I want to be able to do something like this in a stateless Session Bean
@Resource(name="mycustomthingie") private CustomClass stuff;
The value injected is context (speak: …
1
vote
3answers
32 views
Should the jndi name for a datasource be looked up by a ServiceLocator?
I have a J2EE webapp which is used to upload a file which is then processed by a database procedure. Because we do not want the webapp to have to wait until the database procedure …
0
votes
1answer
93 views
Access objects through JNDI from an external JVM in Atg Dyanmo Application Server
Hi Everyone,
I am trying to access some objects using JNDI from an external JVM in Atg Dyanmo Application Server. I am using the following code -
import java.util.Hashtable;
…
0
votes
2answers
69 views
jetty jndi mail session
I am declaring all of my mail sessions in jetty-env.xml and they appear to work fine. The problem I'm having is that they don't appear to be using ssl or smtps which is a must.
& …
0
votes
2answers
140 views
Problems using eclipse Hibernate plugin - could not locate sessionfactory in JNDI
Hi Guys,
I'm using the reverse engineering capabilities built into the eclipse hibernate plugin to generate dao's and hbm.xml files for each table.
It does it quite well but when …
0
votes
3answers
54 views
Testing ServiceLocator using JUnit
This is a follow up question to my previous question.
I am trying to write test case for my ServiceLocator class but it gives me the following error:
com/iplanet/ias/admin/common …
1
vote
2answers
70 views
JNDI and javax.sql.DataSource
I'm someone that used to do some J2EE coding in the past and I'm coming back into the fold to work on a new J2EE project. A lot has changed since 2001, so I need to ask this very b …
1
vote
1answer
38 views
JNDI Names — Is Prefix “jdbc/” needed?
What's up with JNDI names? I'm trying to get a javax.sql.DataSource using the new annotations feature of Java 5. It's not working for me, so I want to ask...
I have a in my web.x …
0
votes
3answers
38 views
how to create initialcontext to connect to sql server
I am having difficulty connecting my java code to sql server database. I can connect from App server just fine..but now I want to try to connect with app server out of the picture …
1
vote
1answer
54 views
Making .NET configuration environment-neutral
I want to get some thoughts on best practices around making .NET app configuration environment-neutral.
Background. Some background first. I come from the Java world, not the .NET …
3
votes
4answers
562 views
JNDI lookup of EJB3 inside an EAR file on Glassfish
I have an EAR file with a bunch of JARs in it, and one of these JARs contains Local Session Beans (EJB3). I need to perform a JNDI lookup of these Session Beans from within an unma …
1
vote
3answers
631 views
Data handling in web app with GWT, Struts and Hibernate
I am writing a Web App using Struts and Hibernate. Recently, I discovered GWT and the Visualization API. This all looked very interesting and provides AJAX functionalities that my …
