Questions tagged [websphere-8]

Version 8.x of IBM WebSphere Application Server (WAS)

1195 questions
2
votes
1 answer

Database error (server error) while deploying mobilefisrt artifacts

I have deployed IBM mobilefirst 7.1 application on IBM mobilefirst server using server configuration tool. My application server is Websphere application server 8.0(Network deployment) with a single node cluster. When I tries to deploy application…
user7046438
2
votes
0 answers

Get certificate out of default keystore of WebSphere Application Server 8.5.5

I want to sign a SOAP message with a given certificate which is stored in the default keystore of my WebSphere Application Server (8.5.5). I'm refusing to provide a keystore path since the WebSphere should already know which keystores it has. And I…
bobbel
  • 3,327
  • 2
  • 26
  • 43
2
votes
0 answers

Can't connect remotely to WAS 8.5 full profile installed on Ubuntu 14.04 from RAD 9.5 installed on OSX

WAS 8.5 full profile isn't officially supported on OSX by IBM so the only option to perform development from OSX is to install stub runtime and connect to WAS installed remotely. I'm trying to install such scenario but something done wrong and can't…
Anatoly
  • 5,056
  • 9
  • 62
  • 136
2
votes
2 answers

Connecting to Filenet running on Websphere 8.5 via EJB transport using Spring Boot with Embedded Tomcat

I’m developing a Spring Boot app using Filenet CEAPI with EJB transport (the Filenet Web Service (CEWS) connection is not an options), but when I try to run my spring boot app, I get the following error over and over again in every…
Kumite
  • 2,129
  • 3
  • 15
  • 15
2
votes
1 answer

Can I use newer version of Jackson than bundled in Websphere 8.0?

I am developing an application under Websphere Application Server v8.0 and I need to use org.codehaus.jackson:jackson-core-asl and org.codehaus.jackson:jackson-mapper-asl version 1.9.2 (mandatory). On WAS 8.0 such libraries are already included in…
2
votes
0 answers

Websphere cxf spring issue for NamespaceHandler class

I am getting the below exception while starting the application context in websphere. I have deployed my war on Websphere 8.5.5 with class loading as parent last. 000000db ContextLoader E org.springframework.web.context.ContextLoader…
2
votes
1 answer

Remote EJB lookup using Spring Boot and WebSphere 8.5.5

I have a batch application using Spring Batch, and I'm using Spring Boot as well. This application needs to do Remote EJB lookups to load some informations from the application server. Until now we were using JBoss EAP 6.1. My pom.xml contains a…
2
votes
0 answers

Websphere 8.5 java.security.cert.CertPathBuilderException: unable to find valid certification path to requested target

let me put across how frustrated I am with WebSphere right now. Yes the Theatre is WebSphere Application Server 8.5 and the protagonist is SSL. I have followed the IBM guide for enabling SSL encryption to a database source found here :…
Don Draper
  • 137
  • 1
  • 3
  • 12
2
votes
1 answer

Using com.ibm.ws.Transaction.TransactionManagerFactory in Websphere 8.5

I have a software project running in IBM Websphere 8.5.5. It needs to lookup the JTA TransactionManager from the application server. Currently it uses the com.ibm.ws.Transaction.TransactionManagerFactory class, and then calls getTransactionManager()…
2
votes
3 answers

jenkins Websphere deployer plugin successfully connect but fail deploying

I have Websphere Portal 8.5.5.2 Cluster of 2 Windows Server Nodes. I have a separate Jenkins Build Server (also windows), I configured the plugin correctly and click test connection returns connection successful. when running build now to deploy the…
2
votes
1 answer

Make WebSphere listen on IPv4

I have a WebSphere application server 8, where I have deployed an enterprise application. Now I want to make that web GUI of that application reachable. So I set up a port (9080), added a web container transport chain, added a virtual host for port…
flyx
  • 35,506
  • 7
  • 89
  • 126
2
votes
1 answer

Deploy Spring Boot 1.3.2 IBM WAS 8.5

I'm facing a problem deploying a simple spring boot web on IBM Websphere 8.5.5.8 using full profile WAS is by default using servlet 3.0 and java 1.7. The application does not do much, just display a page with a "Hi - [current-date]". When deploying…
2
votes
0 answers

Configuring log4j under WebSphere Application Server

We have a bunch of applications being deployed on Webshere Application Server (WAS). Somewhere on the class path we have a very basic log4j.properties with that looks similar to below: log4j.rootLogger=ERROR, FILE, CONSOLE # # CONSOLE appender is…
Julian
  • 3,678
  • 7
  • 40
  • 72
2
votes
1 answer

Issue when using Jersey 2.x with IBM WAS 8.x to scan and register JAX-RS resources

I am trying to integrate Jersey 2.22.1 with IBM WAS 8.5.4.I have a couple of JAX-RS resources under a certain package (com.innovation.postdata.integration.rest.test.jersey.resources).One of the JAX-RS resource is shown below: import…
Cheeta
  • 429
  • 1
  • 8
  • 17
2
votes
1 answer

How to enable preTestConnection checkbox from deployment api for Websphere application server?

I am trying to enable validate pooled connection checkbox for a datasource using deployment api. AttributeList preTestConnections = new AttributeList(); preTestConnections.add(new Attribute("name", "preTestConnections")); preTestConnections.add(new…
kusumat
  • 319
  • 3
  • 9
  • 21