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

Does Cargo support WebSphere Liberty?

Does Cargo support WebSphere Liberty? I find the Cargo page for WebSphere inconclusive.
wilx
  • 17,697
  • 6
  • 59
  • 114
0
votes
1 answer

AdminClient Websphere NoClassDefFoundError

I am trying to connect to a remote Websphere Deployment manager from a Websphere Application Server. For this I am using the Websphere AdminClient, but I keep getting the error java.lang.NoClassDefFoundError:…
Strike08
  • 267
  • 1
  • 2
  • 17
0
votes
1 answer

Can the mobilefirst server use port 9080 while the mobilefirst console use port 9090?

I have set my mobileFirst platform foundation v7 hybrid app to communicate with the worklight server using the port 9080 (defined it in worklight.properties and also built the app to communicate through it). The problem I have is the following: I…
papakias
  • 2,925
  • 3
  • 13
  • 20
0
votes
1 answer

502 error when viewing Java liberty Bluemix application using Docker container

I created a Java Liberty application on Bluemix and cloned the sample code from the JazzHub Git repository linked to the application. I then copied the JavaHelloWorldApp.war file to the base directory of the sample code and created a Dockerfile with…
Andrew
  • 63
  • 6
0
votes
1 answer

Handshake alert: Unrecognized_name Liberty Profile

I am building a Java EE web application that has a component that connects to a remote server through REST. Unfortunately this server has some problems with the SSL certificates atm which isn't getting fixed until a later date. From what I found on…
Strike08
  • 267
  • 1
  • 2
  • 17
0
votes
1 answer

CMIS java.lang.RuntimeException: java.lang.NoClassDefFoundError: org/apache/chemistry/opencmis/client/api/SessionFactory

java.lang.RuntimeException: java.lang.NoClassDefFoundError: org/apache/chemistry/opencmis/client/api/SessionFactory I keep on getting this error when I deploy an instance of CMIS. I know that there are other questions on here with the same error…
Unknown Coder
  • 6,625
  • 20
  • 79
  • 129
0
votes
1 answer

How do I listen on a custom port with a Bluemix Liberty application?

I have a spring boot camel hello world application that I would like to deploy to Bluemix: import org.apache.camel.spring.boot.* import org.springframework.boot.* import org.springframework.boot.autoconfigure.* import…
Chris Snow
  • 23,813
  • 35
  • 144
  • 309
0
votes
0 answers

Websphere Liberty java.lang.NoClassDefFoundError on created class

Hey I've made a project EAR with two modules. The first module is maven project which is responsible for communicate with DB and have entity classes (I used JPA). The sceond module is a dynamic Web project and for test i created a sample servlet…
0
votes
1 answer

How to use own swagger-ui with Liberty JSON generated content

There is an internal Liberty swagger-ui and it is working fine for me, but actually we need to make our own swagger layout, I mean putting our logo and our company name ... etc. This is what we get when calling https://localhost:9443/ibm/api/docs…
mibrahim.iti
  • 1,928
  • 5
  • 22
  • 50
0
votes
1 answer

How to retrieve records from Cloudant DB over date range

I am storing following object in CloudantDB. SystemLog: { "logContext":"ARTLogging", "logTime":2016-05-04T22:33:02Z, "logReference":"CloudantARTManager", "log":"Hello world. Test Message", "status":"Success" …
Madhu
  • 109
  • 2
  • 13
0
votes
1 answer

Connection between Bluemix's Liberty for Java and Cloudant throw RuntimeError everyday

I create an application by using Bluemix's Liberty for Java to connect Cloudant. I found RuntimeException everyday while connecting to my RESTful API. However, I have to restart my application everyday to solve this problem. An error is shown as…
0
votes
1 answer

Using Node.js with TLS getting HTTP hostname wrong error

I'm trying to write a simple Node.js server applicationthat will accept client requests, and allowing me to change the TLS/SSL protocol to use. It works fine with a browser (Firefox). However, when I call the Node.js server from WebSphere Liberty…
Westy
  • 707
  • 2
  • 10
  • 23
0
votes
1 answer

Spark service on Bluemix call from a Java Liberty app

I would like to ask how can I connect the Spark service of Bluemix from an application loaded on Java Liberty (still on Bluemix)? Thank you
William
  • 3
  • 1
0
votes
1 answer

Can I delete .dmp and .phd files of Liberty Profile server?

In the folder \\usr\servers\defaultServer there are many files named core.*.dmp and heapdump.*.phd. The size of these files is between 130 MB and 1.3 GB when my deployed app uses 4 MB. Can I delete these files…
Miguel
  • 536
  • 6
  • 20
0
votes
3 answers

Class loading for jaas custom login modules in WebSphere Liberty

UPDATE: Some context on the problem below. My goal is to handle requests for users where they supply a Kafka topic with each request. I use Message Hub deployed on Bluemix as Kafka provider. The requests will pass the broker URL, topic name,…