Version 8.x of IBM WebSphere Application Server (WAS)
Questions tagged [websphere-8]
1195 questions
5
votes
1 answer
JAX-RS 2.0 WebSphere 8.5 without isolated shared library
I am using Jersey 2 to implement JAR-RS 2.0 in an IBM WebSphere 8.5 environment.
After reading this post JAX-RS Jersey 2.10 support in Websphere 8 I managed to get this working.
However, is it possible to bundle the JAX-RS Jars within the WAR and…

dooffas
- 474
- 9
- 18
5
votes
3 answers
How to cancel or remove Persistent EJBTimers
When we use persistent EJBTimer with @schedule and persistent=true, deploy it to cluster and then we change the actual schedule within @Schedule and re-deploy to the cluster, does the original schedule get replaced with the new one ( removed and…

adbdkb
- 1,897
- 6
- 37
- 66
5
votes
1 answer
How to configure Java Message Driven Beans and Websphere Activation specification without hardcoded JNDI Names?
We have a MDB listening to a Queue reading data and sending data to another Queue
@MessageDriven(
activationConfig = { @ActivationConfigProperty(
propertyName = "destinationType", propertyValue = "javax.jms.Queue"
)…

naamadheya
- 1,902
- 5
- 21
- 28
5
votes
3 answers
How to distribute websphere server configuration (datasources,jms,...) to multiple instances?
For a team of developers it is essential that everybody sets up and configures the application server. In our case we are using websphere 8.5.
I'm looking for an easy way to do this. Normally you do it using the profile management tool located in…

René Link
- 48,224
- 13
- 108
- 140
5
votes
2 answers
Stop IBM RAD from restarting applications on code change.
I'm using IBM RAD 9.0 with WebSphere 8.5. I've opened the server options and selected 'Never publish automatically' under 'Publishing'.
However, if I make any bigger changes in code, IBM RAD is restarting the application. If I made some changes in…

Danubian Sailor
- 1
- 38
- 145
- 223
5
votes
1 answer
Spring 4, Hibernate JPA JarInputStreamBasedArchiveDescriptor Error on Websphere 8.5.5
I have a Spring MVC/Spring-Data-JPA (with Hibernate) application running perfectly on the Websphere 8.5.5 Liberty Profile. However, when I deploy to the full version of Websphere 8.5.5. I get the error pasted below.
My other beans naturally rely…

Jay Goettelmann
- 375
- 1
- 6
- 15
5
votes
3 answers
Jenkins WebSphere deployer plugin fails
I am doing a POC and trying to deploy an EAR into WebSphere using the Jenkins WebSphere deployer plugin. WebSphere has security enabled. I tried to import the certificates using InstallCert.java into a cacerts file and use the same. Still no…

gaby7457
- 103
- 1
- 7
5
votes
2 answers
Log4JLogger does not implement Log when deploying on websphere 8.5.01
I am facing this problem when trying to deploy an EAR file to websphere 8.5.0.1. The EAR only contains on its dependencies
commons-logging-1.1.3.jar,
log4j-1.2.17.jar
and a single JSF page.
As a remark, in the classpath by default must be a…

jesantana
- 1,241
- 2
- 14
- 27
5
votes
1 answer
How do I start a specific bundle in my own OSGi application deployed in WAS 8.0?
I have quite a sophisticated OSGi application which uses Declarative Services and was designed to be deployed in Equinox. Now the task is to make this application be deployable in WAS 8.
The first try was quite pragmatic: I have deployed an EAR…

Ilya Shinkarenko
- 2,134
- 18
- 35
5
votes
2 answers
JAX-RS implementation on Websphere 8.0.0.6
I understand Websphere 8.0.0.6 uses the Apache Wink implementation for JAX-RS 1.1.
I'm just wondering what version of Apache Wink does it use?
Also, if I needed to use Apache CXF do I just bundle the CXF jars with my war?
ALso what implementations…

DarVar
- 16,882
- 29
- 97
- 146
5
votes
2 answers
A way to configure WebSphere 8.5 Liberty Profile programmatically?
I'm moving from IBM RAD 8 / WAS 7.0 to IBM RAD 9 / WAS 8.5. Liberty Profile. There's a plenty of configuration things such as URLs and namespace bindings.
I've found an information that WSADMIN is not working for Liberty Profile. I haven't found,…

Danubian Sailor
- 1
- 38
- 145
- 223
5
votes
1 answer
Call EJB method from web services project
I have a webservice project (WebServiceProject2) and I want to call a method in EJB project (BelsizeEJB).
I have done the following: Right-click WebServiceProject2 -> Build Path -> Configure Build Path -> Projects tab -> Add -> BelsizeEJB ->…

feng
- 51
- 1
- 4
5
votes
1 answer
Call to an asynchronous servlet on WebSphere 8 results in AsyncIllegalStateException
I'm getting the following exception while calling a servlet:
com.ibm.ws.webcontainer.async.AsyncIllegalStateException: SRVE8010E: The current request does not support asynchronous servlet processing.
The servlet looks like this:
public class…

Maxim Suponya
- 1,419
- 2
- 20
- 43
5
votes
2 answers
Example of Spring Security PreAuthentication Filter on WebSphere?
Does anybody have the Spring Security sample PreAuthentication Filter for WebSphere working (WebSpherePreAuthenticatedProcessingFilter)? There is very little documentation on it and I just can't seem to nail it. I'm looking for someone who has it…

Cody Burleson
- 244
- 2
- 6
5
votes
3 answers
ShallowEtagHeaderFilter does not work under WAS8 app server
org.springframework.web.filter.ShallowEtagHeaderFilter is unable to set response header under WAS8 application server stating "WARNING: Cannot set header. Response already committed". However this works fine when tested under Tomcat server.…

Somu
- 3,593
- 6
- 34
- 44