Use this tag for questions related to version 6.1 of IBM's WebSphere Application Server.
Questions tagged [websphere-6.1]
288 questions
0
votes
1 answer
webspehere 6.0.1 throws javax.resource.ResourceException: The back-end resource is currently unavailable
We have our application deployed to WAS 6 cluster. And recently it is throring following exception.
javax.resource.ResourceException: The back-end resource is currently unavailable. Stuck connections have been detected.
......
Can somebody explain…

user509755
- 2,941
- 10
- 48
- 82
0
votes
3 answers
ClassDefNotFoundException even though the class is loaded by the classloaders (Multiple Applications are installed on the Server)
I have two Applications Installed on Websphere Server v.6.
1. SGOApplication
2. ReportingWeb
SGOApplication has a shared library mapped on Application Level i.e.
SGOAPPSHLIB
This library is having a logging framework jar(logsrv.jar).
There is a…

Ajay
- 1
0
votes
1 answer
Ejb 2.1 Timer IOException
I have a weird problem, I am using EJB 2.1 timer object to fire a timer at a specific time in a day and do some housekeeping stuff like deleting files. The timer fires as expected but the problem is that it does not stop. Following is the code I…

Sandeep More
- 655
- 1
- 6
- 22
0
votes
1 answer
How to access filters in web.xml file set by a .properties file
I am using WAS6.1 as the server(but I guess this should not matter).I have a filters.properties file. It has key value pair (e.g. config.file.name=/usr/home/config.xml). These values are being used in web.xml as shown below:
…

Sameer Malhotra
- 103
- 1
- 2
- 7
0
votes
1 answer
How to get base URL in Websphere application Server?
I am running my application in WAS6.1. In the same server I have two EAR deployed. One application can be accessed using the URL server.com:port/app1 over http and the other one as server.com:port/app2. In the application1 I am referencing…

Sameer Malhotra
- 103
- 1
- 2
- 7
0
votes
0 answers
How to build a application server independent Java web application?
My question is about :
I have a Java web application which generates a EAR file and currently runs on IBM Websphere 6.1 .
In its pom.xml it has WebSphere version dependency , I want to remove complete dependency and make my application as server…

megha
- 19
- 3
0
votes
2 answers
WebSphere 6.1 Change Class loader order
I want to change the class loader delegation order on a web module deployed to WAS6.1 from it's default of parent first to parent last. The reason is I would like to use JSF 1.2 etc and WAS6.1 doesn't normally support it.
In the integrated…

volvox
- 3,014
- 16
- 51
- 80
0
votes
1 answer
JAX-RPC webservice serialization issue on WAS6.1 test environment
I'm trying to pass Vector of complex objects as a result of a WS method. I'm following a JavaBeans scheme and all Collections are replaced by Vectors already, but I'm still getting a serialization exception WSWS3037E: Serialization cannot occur for…

grzegorz_p
- 483
- 1
- 4
- 14
0
votes
1 answer
Classloading conflicts with apache commons classes for app deployed to WAS 6.1
I have an app that uses apache-commons-collections v3.2.1. When I deploy the war file using the WAS 6.1 Integrated Solutions Console I get errors because the commons-collections.jar file in isclite.ear gets loaded before the one that I bundle with…

Laran Evans
- 1,283
- 5
- 15
- 31
0
votes
1 answer
Viewing Queue and Topic messages in WebSphere 6.1
I need to see the messages in Queues and Topics configured on WebSphere 6.1. I tried to configure HermesJMS, but just couldn't make it work. If someone knows how to make it work with WebSphere 6.1, it would be great!
Else... what are the…

Blake
- 1,123
- 2
- 10
- 14
0
votes
1 answer
How to read the schema used by a JPA implementation
My EntityManager is using a persistence unit that uses a data source provided by our Websphere configuration. The DS configuration includes an environment specific DB to use.
The EM successfully uses this schema, but I can't figure out a way to log…

Eddie
- 9,696
- 4
- 45
- 58
0
votes
2 answers
Is there a way to find out how long it takes for websphere process a request
I have an issue where I need to monitor how long it takes for Websphere to process a request. Specifically I need to know how much time is spent in the "application world", that is time spent processing code in the ear file.
I can't just compute…

Jeff Kawn
- 11
- 2
0
votes
1 answer
Websphere problem with JSP page
I am migrating a web application from tomcat to an IBM Websphere 6.1. The problem is that i get this error when i navigate to a specific page:
Error message: JSPG0048E Page failed
to validate using taglib validator for
…

Simon Foskolos
- 1
- 1
- 1
0
votes
1 answer
Has anyone been able to hotdeploy using m2eclipse on Websphere 6.1 with MyEclipse?
I've been looking around for a while how can I hotdeploy my projects when using m2eclipse plugin on MyEclipse and working with Websphere 6.1.
What I've done so far is to deploy my full application using the was6 maven plugin…

Alfredo Osorio
- 11,297
- 12
- 56
- 84
0
votes
0 answers
javax.naming.NameNotFoundException: Name comp/env/com.asdmt.bean.DiagramManagerManagedBean not found in context "java:"
I ran into a little problem. I try to use a viewScoped managedBean in one of my page. I proced as follow:
My bean location
my bean :
@ManagedBean(name = "diagramManager")
@ViewScoped
public class DiagramManagerManagedBean {
private String toto…

moros_a
- 3
- 3