Version 8.x of IBM WebSphere Application Server (WAS)
Questions tagged [websphere-8]
1195 questions
5
votes
2 answers
Cannot convert 4/23/12 12:00 AM of type class java.util.Date to class java.sql.Date
I'm migrating my project from WebSphere 7 to WebSphere 8 and I'm using JSF 1.2.
I was facing a problem with IBM JSF/html_extended tags and also standard converters, which are mainly JSF 1.2 core components. I'm also updating my Java EE version from…

Keeran
- 51
- 1
- 4
4
votes
2 answers
WebSphere Application Server 8 Enhanced EAR shared library bug?
I have posted this question on the IBM forums but just in case no answer comes from there I thought I would try my luck here.
I have just upgraded my version of WebSphere Application Server for Developers from 7.0.0.19 to 8.0.0.1. I notice what…

Ross
- 3,008
- 1
- 22
- 27
4
votes
2 answers
Returning an excel document via a Java REST service with Apache Wink
I need to return a Microsoft Excel file from a Java REST service. I'm using WebSphere 8.5 which inherently uses Apache Wink as it's JAX-RS implementation; that's a requirement which I can not change. I am also using Java 7 JDK. Here is the error…

risingTide
- 1,754
- 7
- 31
- 60
4
votes
1 answer
WebSphere liberty class loading PARENT LAST as default
I have been investigating using WebSphere's Liberty profile as a light weight alternative to having a fully fledged WebSphere instance deployed on my local machine (late to the party, I know).
1 thing that I can not figure out:
How do I set Parent…

dooffas
- 474
- 9
- 18
4
votes
1 answer
CertPathBuilderException: unable to find valid certification path was 8.5 network deployment
I have a webservice client in a web application(java) deployed on Websphere 8.5
After I changed the protocol from http to https in the call of the webservice(deployed on was with selfsigned certificate) I have following error:
...…

Marco S.
- 512
- 2
- 6
- 22
4
votes
1 answer
Error when deploying application in WebSphere 8.5.5
I am getting following error message in stdout logs while starting my application in WebSphere 8.5.5
SRVE8111E: The application is trying to modify a cookie which matches a pattern in the restricted programmatic session cookies list [domain=*,…

user3455193
- 95
- 3
- 15
4
votes
1 answer
ActiveMQ 5.11 with WebSphere Application Server 8.5
Does anybody know which jars from ActiveMQ 5.11 I need to use with IBM Websphere Application Server 8.5 in order to create a new ActiveMQ JMS Provider?
I found discussions related to older ActiveMQ versions that don't seem applicable anymore because…

Maarten Boekhold
- 867
- 11
- 21
4
votes
1 answer
WAS 8.5, How to avoid annotation scanning?
We deploy a web app on WAS 8.5.0.0, we're using PARENT_LAST class loader(we have to for some reason), during the startup, there're some warnings:
[12/16/14 17:19:15:088 CST] 00000048 InjectionProc E CWNEN0044E: A resource reference binding could…

gfytd
- 1,747
- 2
- 24
- 47
4
votes
2 answers
Use JASPIC auth module on WebSphere 8.5
I have a JASPIC auth module that works really well on GlassFish, WildFly and WebLogic.
Now we have a new customer who uses WebSphere 8.5, and I can't get the auth module to run properly there.
The problem is that WebSphere doesn't accept the…

Mike Braun
- 3,729
- 17
- 15
4
votes
1 answer
JNDI Lookup of local EJB (no @EJB)
I have a requirement where I'm asked to load both remote and local EJBs with a JNDI lookup, so without the @EJB annotation.
My EJB is defined as follows:
@Remote
public interface MyObjectInterfaceRemote extends MyObjectInterface {
}
@Local
public…

BackSlash
- 21,927
- 22
- 96
- 136
4
votes
1 answer
EJB 3.1 asynchronous method and thread pool
I need to process about 250.000 documents per day with an EJB 3.1 asynchronous method in order to face an overall long time task.
I do this to use more threads and process more documents concurrently. Here's an example in pseudo code:
// this…

Yanosh
- 368
- 5
- 15
4
votes
2 answers
How to add Websphere Application Server Liberty Profile runtime dependencies to Maven POM?
I have a restful application that I converted to a maven project. Now, I get a compile error when using maven compile because the java-ee/openjpa packages are not found. Below is my POM file

user2316667
- 5,444
- 13
- 49
- 71
4
votes
1 answer
Multiple instances of stateful EJB when injecting via CDI
This is mostly about understanding the differences when injecting a stateful EJB (SFSB) with @Inject compared to injecting it with @EJB.
One of the main differences ought to be the contextual awareness when injecting via @Inject. So my assumption…

stef77
- 1,000
- 5
- 19
4
votes
1 answer
JSP Loading Incompletely on Websphere Application Server 8.5
I am planning to migrate from Websphere Application Server (WAS) 7 to version 8.5. I have deployed an application which runs fine on WAS 7 and I have not made any changes to it since migration.
However, on WAS 8.5, the JSP pages are not being…

Black Dranzer
- 41
- 3
4
votes
3 answers
How to make "HTTPS redirect" work on WebSphere Application Server Liberty Profile?
I want make HTTP Redirect work on WebSphere Application Server Liberty Profile (WLP). For example:-
When user types:
http://localhost:8080/helloworld, the browser should automatically go (be redirected) to
https://localhost:9443/helloworld
To…

Anuroop
- 993
- 3
- 13
- 25