Questions tagged [websphere-liberty]

IBM WebSphere Liberty is a highly composable, fast to start, dynamic application server runtime environment.

This tag is specifically for questions relating to IBM WebSphere Liberty. IBM WebSphere is built on Open Liberty. For questions relating to Open Liberty see tag open-liberty

Developer download links

Knowledge Center links

Forum links

More resources

1717 questions
0
votes
1 answer

How do you join a Liberty collective on Linux?

I am trying to set up a Liberty collective using Docker hosts running linux. The videos they have about setting up Liberty collectives at the moment use Windows and are all on the same machine. To join the collective so it appears on adminCenter…
Archimedes Trajano
  • 35,625
  • 19
  • 175
  • 265
0
votes
1 answer

Loadbalancing WebSphere Liberty Profile Servers using Nginx Plus

I have two apps running on three separate Liberty Profile servers (each). The first app renders the UI and second apps serves data via REST webservices. The UI application has a login page that on successful landing takes the user to the home page.…
krckumar
  • 544
  • 4
  • 21
0
votes
1 answer

How to use HikariCP with WebSphere Liberty

we are using oracle database, this is how we configured JNDI against oracle on liberty profile, I want to use hikarui-cp instead if javax.sql.ConnectionPoolDataSource.
Praneeth
  • 559
  • 9
  • 19
0
votes
1 answer

Java Servlet-2.3 not working in Websphere Liberty Profile 8.5.5.6

We have a Java Web application running in IBM Websphere Liberty profile server. We have recently developed a Java Servlet which is responsible to generate JFreeCharts using Java library. Code in web.xml
0
votes
1 answer

Spring Boot dead lock with websphere liberty classloader

I am running spring boot applications on WebSphere Liberty servers(version 16.0.0.4). There more than on war with springboot application run on single instance of liberty. The spring library version we have are Spring Core -…
vinothM
  • 195
  • 1
  • 6
0
votes
1 answer

implementing JSF-2.3 and CDI together in WebSphere Application Server

I have recently upgraded to using Oracles new JSF-2.3 which involved adding the dependency as an external library in my pom.xml as I am using maven, As opposed to previously using WebSphere Application server's (WAS) inbuilt JSF-2.2 feature. I…
0
votes
1 answer

Why deploy-tool in my WAS Liberty local installation is blocked?

I want to know because page of deploy tool in my local installation of admin center is blocked (I've installed WAS Liberty in my PC) I get this message: Cannot access host or deploy rules information on the server This is my server.xml
Cesar Miguel
  • 661
  • 1
  • 13
  • 38
0
votes
2 answers

Deploy application in a Websphere Liberty Collective

How do you deploy to a WebSphere Liberty Collective? At the moment I am just copying the EAR files across into each node's apps folder and adding a reference to it in server.xml Is there some sort of deployment manager say I upload to the control…
Archimedes Trajano
  • 35,625
  • 19
  • 175
  • 265
0
votes
1 answer

Not finding all Liberty 17.0.0.1 jar files in maven repo

While I was able to find many WebSphere Liberty related jar files based on question Liberty Maven repo for 17.0.0.1 not found I am still not able to find the repo containing jar files…
wnm3
  • 381
  • 3
  • 17
0
votes
0 answers

Websphere Liberty Profile JPA 2.1 .and JAXB errors

When I have feature jpa-2.1 enabled in my server.xml (WLP 8.5.5.7) I get a JAXB context initialization error java.lang.RuntimeException: Errors getting JAXB context for class Caused by: javax.xml.bind.JAXBException: Unable to…
ChuckLeviton
  • 141
  • 9
0
votes
2 answers

Spring + Liberty +JNDI +Oracle

I have a server.xml with jndi configuration that works and can connect to database (validated with small program using @Resource), but when I try to use an application that is spring based, I can never login to the database. I am successfully…
0
votes
2 answers

Daily rolling log file in Websphere Liberty (16.0.0.4-WS-LIBERTY-CORE)

How to create a daily rolling log file in Websphere Liberty? I want the name of the log file to have YYYYMMDD format. Currently I'm only able to limit the max file size, max file and a static naming of messages.log and disable consolelog.
user1872384
  • 6,886
  • 11
  • 61
  • 103
0
votes
1 answer

What does dollar signs do in manifest.mf class-path?

I have a Spring Boot project using Jersey. spring-jersey3 has a dependency to HK2: org.glassfish.hk2 hk2 ${hk2.version} The HK2's manifest…
0
votes
1 answer

Websphere Liberty: URL to a file in a WAR doesn't have correct last-modified timestamp

I'm getting back a URL to a file inside a JAR inside an (unzipped) WAR running in Liberty 16.0.0.4. The code is roughly: URL url = servletContext.getResource(somePath); URLConnection connection = url.openConnection(); long lastModified =…
Randy Hudson
  • 1,600
  • 1
  • 12
  • 11
0
votes
3 answers

WebSphere Liberty starts multiple singleton EJB instances

I am developing an Enterprise application which is packaged in an ear. The ear consists of one Enterprise Bean application (in a jar), one JAX-RS application (in a war) and one web application (also in a war). The ear descriptor (application.xml)…