Reputation: 1511
i have a WSDL web service in the server1 instance of websphere.
this server1 instance shuts down regularly. there are no error logs being generated every time the shutdown occurs.
however, whenever the server1 instance of websphere is started, these errors and exceptions are generated:
my questions are: 1. is MQ required by the WSDL service? 2. are any of these 5 errors possible for causing the frequent downtimes?
Upvotes: 0
Views: 351
Reputation: 2375
As far as I understand you have WebSphere Process Server
configured with WebSphere MQ
as message bus.
MQ Queue
might be represented as JMS binding in SOAP over JMS
configuration. IBM article.
Regarding errors: First 2 errors are simple - certificates have expired. You should update it.
I assume 3 -5 exception are 1 error - there is answer to this question stackoverflow
2063 is security related problems.
Upvotes: 1