com.filenet.wcm.api.CannotDetokenizeException - filenet-p8

I am using Filenet 5.2.1 and recently I am seeing this error in the log file.
Does anyone have ideas about it:
com.filenet.wcm.api.CannotDetokenizeException
at com.filenet.wcm.api.impl.SessionImpl.fromToken(SessionImpl.java:620)
at com.filenet.ae.toolkit.server.util.credentials.UserTokenUtil.crackUserToken(UserTokenUtil.java:87)
at com.filenet.ae.toolkit.server.servlet.filter.PreprocessorFilter.setUserToken(PreprocessorFilter.java:111)
at com.filenet.ae.toolkit.server.servlet.filter.PreprocessorFilter.doFilter(PreprocessorFilter.java:72)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
at com.filenet.ae.toolkit.server.servlet.filter.SecurityPluginFilter.doFilter(SecurityPluginFilter.java:202)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
at com.filenet.ae.toolkit.server.servlet.filter.ThreadLocalCleanupFilter.doFilter(ThreadLocalCleanupFilter.java:50)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
at com.dataserve.moamalat.misc.CompitabilityFilter.doFilter(CompitabilityFilter.java:47)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:964)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1104)
at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:87)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:914)
at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1662)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:200)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:463)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:530)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:316)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:287)
at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1865)

Related

How can I make this code asks each question once?

I'm trying this code on SWI-Prolog:
go :-
write('What is the patient''s name? '),
read(Patient),
hypothesis(Patient,Disease),
write_list([Patient,'probably has ',Disease,'.']),nl.
go :-
write('Sorry, I don''t seem to be able to'),nl,
write('diagnose the disease.'),nl.
symptom(Patient,fever) :-
write_list(['Does ',Patient,' have a fever (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,rash) :-
write_list(['Does ',Patient,' have a rash (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,headache) :-
write_list(['Does ',Patient,' have a headache (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,runny_nose) :-
write_list(['Does ',Patient,' have a runny_nose (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,conjunctivitis) :-
write_list(['Does ',Patient,' have a conjunctivitis (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,cough) :-
write_list(['Does ',Patient,' have a cough (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,body_ache) :-
write_list(['Does ',Patient,' have a body_ache (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,chills) :-
write_list(['Does ',Patient,' have a chills (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,sore_throat) :-
write_list(['Does ',Patient,' have a sore_throat (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,sneezing) :-
write_list(['Does ',Patient,' have a sneezing (y/n) ?']),
response(Reply),
Reply='y'.
symptom(Patient,swollen_glands) :-
write_list(['Does ',Patient,' have a swollen_glands (y/n) ?']),
response(Reply),
Reply='y'.
hypothesis(Patient,measles) :-
symptom(Patient,fever),
symptom(Patient,cough),
symptom(Patient,conjunctivitis),
symptom(Patient,runny_nose),
symptom(Patient,rash).
hypothesis(Patient,german_measles) :-
symptom(Patient,fever),
symptom(Patient,headache),
symptom(Patient,runny_nose),
symptom(Patient,rash).
hypothesis(Patient,flu) :-
symptom(Patient,fever),
symptom(Patient,headache),
symptom(Patient,body_ache),
symptom(Patient,conjunctivitis),
symptom(Patient,chills),
symptom(Patient,sore_throat),
symptom(Patient,runny_nose),
symptom(Patient,cough).
hypothesis(Patient,common_cold) :-
symptom(Patient,headache),
symptom(Patient,sneezing),
symptom(Patient,sore_throat),
symptom(Patient,runny_nose),
symptom(Patient,chills).
hypothesis(Patient,mumps) :-
symptom(Patient,fever),
symptom(Patient,swollen_glands).
hypothesis(Patient,chicken_pox) :-
symptom(Patient,fever),
symptom(Patient,chills),
symptom(Patient,body_ache),
symptom(Patient,rash).
hypothesis(Patient,measles) :-
symptom(Patient,cough),
symptom(Patient,sneezing),
symptom(Patient,runny_nose).
write_list([]).
write_list([Term| Terms]) :-
write(Term),
write_list(Terms).
response(Reply) :-
read_line_to_codes(user_input, Codes),
nth0(0, Codes, FirstCode),
char_code(Reply, FirstCode).
**And sometimes and randomly it asks the same question multiple times when it was already answered. Help please.**
You can use a dynamic predicate to store the answers to questions that have been asked before. Thus, when the system is verifying a hypothesis, it will not repeat the questions that were already asked during the verification of hypotheses that have already been verified previously.
:- dynamic symptom/3.
go :-
retractall(symptom(_, _, _)), % clear the database
write('What is the patient''s name? '),
read_atom(Patient),
hypothesis(Patient,Disease),
write_list([Patient,' probably has ', Disease, '.']),
nl.
go :-
write('Sorry, I don''t seem to be able to'),nl,
write('diagnose the disease.'),nl.
read_atom(Atom) :-
read_line_to_string(user_input, String), % <== EDIT: user_input instead of user
atom_string(Atom, String).
symptom(Patient, Symptom) :-
( symptom(Patient, Symptom, Answer) % If the answer is already known
-> true % then don't ask it again
; write_list(['Does ',Patient,' have a ', Symptom, ' (y/n)? ']), % else ask the question
read_atom(Answer), % read the answer and
assertz(symptom(Patient, Symptom, Answer)) % store it into the database
),
Answer = y.
hypothesis(Patient, measles) :-
symptom(Patient, fever),
symptom(Patient, cough),
symptom(Patient, conjunctivitis),
symptom(Patient, runny_nose),
symptom(Patient, rash).
hypothesis(Patient, german_measles) :-
symptom(Patient, fever),
symptom(Patient, headache),
symptom(Patient, runny_nose),
symptom(Patient, rash).
hypothesis(Patient, flu) :-
symptom(Patient, fever),
symptom(Patient, headache),
symptom(Patient, body_ache),
symptom(Patient, conjunctivitis),
symptom(Patient, chills),
symptom(Patient, sore_throat),
symptom(Patient, runny_nose),
symptom(Patient, cough).
hypothesis(Patient, common_cold) :-
symptom(Patient, headache),
symptom(Patient, sneezing),
symptom(Patient, sore_throat),
symptom(Patient, runny_nose),
symptom(Patient, chills).
hypothesis(Patient, mumps) :-
symptom(Patient, fever),
symptom(Patient, swollen_glands).
hypothesis(Patient, chicken_pox) :-
symptom(Patient, fever),
symptom(Patient, chills),
symptom(Patient, body_ache),
symptom(Patient, rash).
hypothesis(Patient, measles) :-
symptom(Patient, cough),
symptom(Patient, sneezing),
symptom(Patient, runny_nose).
write_list([]).
write_list([Term| Terms]) :-
write(Term),
write_list(Terms).

How to sort a file with timestamp having date and time

I have a file having data like,
[2/6/20 10:07:26:877 IST] a
[2/6/20 11:39:09:575 IST] b
[2/6/20 12:26:05:689 IST] c
[2/6/20 14:08:05:583 IST] d
[2/6/20 15:19:51:719 IST] e
[2/5/20 15:19:51:719 IST] i
[2/6/20 18:16:19:771 IST] f
[2/6/20 2:19:51:757 IST] g
[2/6/20 8:16:59:420 IST] h
I want to sort the file based on the timestamp. I have tried the below command,
cat file | sort -k1
[2/5/20 15:19:51:719 IST] i
[2/6/20 10:07:26:877 IST] a
[2/6/20 11:39:09:575 IST] b
[2/6/20 12:26:05:689 IST] c
[2/6/20 14:08:05:583 IST] d
[2/6/20 15:19:51:719 IST] e
[2/6/20 18:16:19:771 IST] f
[2/6/20 2:19:51:757 IST] g
[2/6/20 8:16:59:420 IST] h
But the result is not correct. Some timestamps are not in the correct order. How to sort the file in the right manner?
sort -k1,1 -k2n,2n
worked perfectly fine!

Get IBM MQ connection factory in my spring boot application

I'm getting the following error while trying to send a message to an IBM MQ, I created a queue connection factory on Websphere which is tested and successfully connected to the deployed MQs, then I look up over it by jndi name.
I'm using ibm.mq.allclient as a Gradle dependency.
I would appreciate any help.
org.springframework.jms.UncategorizedJmsException: Uncategorized exception occurred during JMS processing; nested exception is com.ibm.msg.client.jms.DetailedJMSException: JMSFMQ6312: An exception occurred in the Java(tm) MQI.
The Java(tm) MQI has thrown an exception describing the problem.
See the linked exception for further information.; nested exception is com.ibm.mq.jmqi.JmqiException: CC=2;RC=2195;AMQ9546: Error return code received. [1=java.lang.reflect.InvocationTargetException[null],3=NativeConstructorAccessorImpl.newInstance0]
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.jms.support.JmsUtils.convertJmsAccessException(JmsUtils.java:316)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.jms.support.JmsAccessor.convertJmsAccessException(JmsAccessor.java:169)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:487)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.jms.core.JmsTemplate.send(JmsTemplate.java:570)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:95)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at java.lang.reflect.Method.invoke(Method.java:508)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at javax.servlet.http.HttpServlet.service(HttpServlet.java:595)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1232)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:781)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:480)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:136)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:97)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:108)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.boot.web.support.ErrorPageFilter.doFilter(ErrorPageFilter.java:115)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.boot.web.support.ErrorPageFilter.access$000(ErrorPageFilter.java:59)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.boot.web.support.ErrorPageFilter$1.doFilterInternal(ErrorPageFilter.java:90)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.boot.web.support.ErrorPageFilter.doFilter(ErrorPageFilter.java:108)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:967)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1107)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3928)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:304)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1007)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:200)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:463)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:530)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:316)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:287)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1881)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R Caused by: com.ibm.msg.client.jms.DetailedJMSException: JMSFMQ6312: An exception occurred in the Java(tm) MQI.
The Java(tm) MQI has thrown an exception describing the problem.
See the linked exception for further information.
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:88)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:57)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at java.lang.reflect.Constructor.newInstance(Constructor.java:437)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.msg.client.commonservices.j2se.NLSServices.createException(NLSServices.java:314)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.msg.client.commonservices.nls.NLSServices.createException(NLSServices.java:228)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.msg.client.wmq.factories.WMQXAConnectionFactory.createV7ProviderConnection(WMQXAConnectionFactory.java:175)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.msg.client.wmq.factories.WMQConnectionFactory.createProviderConnection(WMQConnectionFactory.java:6200)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.msg.client.wmq.factories.WMQXAConnectionFactory.createProviderXAConnection(WMQXAConnectionFactory.java:102)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.msg.client.jms.admin.JmsConnectionFactoryImpl.createXAConnectionInternal(JmsConnectionFactoryImpl.java:364)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.mq.jms.MQXAConnectionFactory.createXAConnection(MQXAConnectionFactory.java:98)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.jms.JMSManagedConnection.createConnection(JMSManagedConnection.java:1499)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.jms.JMSManagedConnection.<init>(JMSManagedConnection.java:352)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.jms.JMSManagedConnectionFactory.createUnifiedManagedConnection(JMSManagedConnectionFactory.java:1301)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.jms.JMSManagedConnectionFactory.createManagedConnection(JMSManagedConnectionFactory.java:682)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.jms.WMQJMSRAManagedConnectionFactory.createManagedConnection(WMQJMSRAManagedConnectionFactory.java:704)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.j2c.FreePool.createManagedConnectionWithMCWrapper(FreePool.java:2161)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.j2c.FreePool.createOrWaitForConnection(FreePool.java:1839)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.j2c.PoolManager.reserve(PoolManager.java:3818)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.j2c.PoolManager.reserve(PoolManager.java:3094)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.j2c.ConnectionManager.allocateMCWrapper(ConnectionManager.java:1548)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.j2c.ConnectionManager.allocateConnection(ConnectionManager.java:1031)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.ejs.jms.JMSConnectionFactoryHandle.createConnection(JMSConnectionFactoryHandle.java:256)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.jms.support.JmsAccessor.createConnection(JmsAccessor.java:180)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:474)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R ... 75 more
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R Caused by: com.ibm.mq.jmqi.JmqiException: CC=2;RC=2195;AMQ9546: Error return code received. [1=java.lang.reflect.InvocationTargetException[null],3=NativeConstructorAccessorImpl.newInstance0]
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.mq.jmqi.JmqiEnvironment.processESESecurity(JmqiEnvironment.java:987)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.mq.jmqi.JmqiEnvironment.getInstance(JmqiEnvironment.java:832)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.mq.jmqi.JmqiEnvironment.getMQI(JmqiEnvironment.java:655)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.msg.client.wmq.factories.WMQXAConnectionFactory.createV7ProviderConnection(WMQXAConnectionFactory.java:167)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R ... 93 more
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R Caused by: java.lang.reflect.InvocationTargetException
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:88)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:57)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at java.lang.reflect.Constructor.newInstance(Constructor.java:437)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R at com.ibm.mq.jmqi.JmqiEnvironment.processESESecurity(JmqiEnvironment.java:906)
[1/6/19 19:32:45:710 EET] 00000245 SystemErr R ... 96 more
2195 is a very generic error that just means unexpected error, but in many cases it means you have mixed jars from different mq client versions. Check the following items:
If you do not have an Oracle jms.jar in the CLASSPATH, add the jms.jar 2.0 from the IBM provided MQ client install (This can be from any of the full client, redist client, or java-all client).
If you do have an Oracle jms.jar check the MANIFEST.MF to make sure it is the 2.0 version.
Ensure that you do not have other com.ibm.mq*.jar files besides the com.ibm.mq.allclient.jar.

How do I run a program like this in GNU-Prolog?

Every time I would try to compile it, the compilation would always seem to fail. I am very new to the language and have discovered this program while looking for examples of programs that use Prolog but I am at a loss on how to run it. The reason for using this program fragment as an example is that I would like to make a program of my own that will be able to let the user know what sickness they have based on the symptoms that the user entered.
domains
disease,indication = symbol.
Patient,name = string.
predicates
hypothesis(string,disease).
symptom(name,indication).
response(char).
go.
clauses
the program would detect an error at very first lines and I'm not sure why.
go :-
write("What is the patient's name? "),
readln(Patient),
hypothesis(Patient,Disease),
write(Patient,"probably has ",Disease,"."),nl.
go :-
write("Sorry, I don't seem to be able to"),nl,
write("diagnose the disease."),nl.
symptom(Patient,fever) :-
write("Does ",Patient," have a fever (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,rash) :-
write("Does ",Patient," have a rash (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,headache) :-
write("Does ",Patient," have a headache (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,runny_nose) :-
write("Does ",Patient," have a runny_nose (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,conjunctivitis) :-
write("Does ",Patient," have a conjunctivitis (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,cough) :-
write("Does ",Patient," have a cough (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,body_ache) :-
write("Does ",Patient," have a body_ache (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,chills) :-
write("Does ",Patient," have a chills (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,sore_throat) :-
write("Does ",Patient," have a sore_throat (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,sneezing) :-
write("Does ",Patient," have a sneezing (y/n) ?"),
response(Reply),
Reply='y'.
symptom(Patient,swollen_glands) :-
write("Does ",Patient," have a swollen_glands (y/n) ?"),
response(Reply),
Reply='y'.
hypothesis(Patient,measles) :-
symptom(Patient,fever),
symptom(Patient,cough),
symptom(Patient,conjunctivitis),
symptom(Patient,runny_nose),
symptom(Patient,rash).
hypothesis(Patient,german_measles) :-
symptom(Patient,fever),
symptom(Patient,headache),
symptom(Patient,runny_nose),
symptom(Patient,rash).
hypothesis(Patient,flu) :-
symptom(Patient,fever),
symptom(Patient,headache),
symptom(Patient,body_ache),
symptom(Patient,conjunctivitis),
symptom(Patient,chills),
symptom(Patient,sore_throat),
symptom(Patient,runny_nose),
symptom(Patient,cough).
hypothesis(Patient,common_cold) :-
symptom(Patient,headache),
symptom(Patient,sneezing),
symptom(Patient,sore_throat),
symptom(Patient,runny_nose),
symptom(Patient,chills).
hypothesis(Patient,mumps) :-
symptom(Patient,fever),
symptom(Patient,swollen_glands).
hypothesis(Patient,chicken_pox) :-
symptom(Patient,fever),
symptom(Patient,chills),
symptom(Patient,body_ache),
symptom(Patient,rash).
hypothesis(Patient,measles) :-
symptom(Patient,cough),
symptom(Patient,sneezing),
symptom(Patient,runny_nose).
response(Reply) :-
readchar(Reply),
write(Reply),nl.
Your code seems to be TurboProlog or Visual Prolog code. Start by deleting the code starting with domains up to clauses. You will also need to replace the calls to readchar/1 and readln/1 predicates with calls to standard Prolog predicates such as read/1 or read_term/3. In the particular case, of readchar/1, and only for running under GNU Prolog, you can define it as:
readchar(Char) :-
get_key(Code), char_code(Char, Code), nl.
Some other Prolog systems provide a readchar functionality but there's no standard. The main difference of these predicates compared with the standard get_char/1 predicate is not requiring a return/enter when used at the top-level.
Also, replace all calls to write with arity greater then 1 with a sequence of calls to the standard write/1 predicate and replace in those calls the double quotes with single quotes.

Processing of multipart/form-data request failed. Async operation timed out

I am facing issue while deploying applications through Websphere Admin Console. I have read lot of posts regarding this but none of them seemed to work. Below are the tunings I have done in admin console level but ended with no luck. Any help would be greatly appreciated , Thanks!
Application servers > server1 > Web container > Asynchronous Servlet Properties - Increased to 120000 ms
Application servers > server1 > Web container transport chains > WCInboundAdmin > HTTP inbound channel (HTTP_1) > Custom properties > ConnectionIOTimeOut set to 30
Application servers > server1 > Process definition > Java Virtual Machine > Custom properties [ com.ibm.ws.webservices.readTimeout - 90000
com.ibm.ws.webservices.writeTimeout - 90000
]
Error : FFDC logs
10/3/17 9:49:52:174 EDT] FFDC Exception:java.net.SocketTimeoutException SourceId:com.ibm.ws.webcontainer.channel.WCCByteBufferInputStream ProbeId:102 Reporter:com.ibm.ws.webcontainer.channel.WCCByteBufferInputStream#cd1d12ca
java.net.SocketTimeoutException: Async operation timed out
at com.ibm.ws.tcp.channel.impl.AioTCPReadRequestContextImpl.processSyncReadRequest(AioTCPReadRequestContextImpl.java:191)
at com.ibm.ws.tcp.channel.impl.TCPReadRequestContextImpl.read(TCPReadRequestContextImpl.java:111)
at com.ibm.ws.http.channel.impl.HttpServiceContextImpl.fillABuffer(HttpServiceContextImpl.java:4327)
at com.ibm.ws.http.channel.impl.HttpServiceContextImpl.readSingleBlock(HttpServiceContextImpl.java:3508)
at com.ibm.ws.http.channel.impl.HttpServiceContextImpl.readBodyBuffer(HttpServiceContextImpl.java:3614)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundServiceContextImpl.getRequestBodyBuffer(HttpInboundServiceContextImpl.java:1838)
at com.ibm.ws.webcontainer.channel.WCCByteBufferInputStream.bufferIsGood(WCCByteBufferInputStream.java:397)
at com.ibm.ws.webcontainer.channel.WCCByteBufferInputStream.read(WCCByteBufferInputStream.java:291)
at com.ibm.ws.webcontainer.srt.http.HttpInputStream.read(HttpInputStream.java:322)
at org.apache.commons.fileupload.MultipartStream.discardBodyData(Unknown Source)
at org.apache.commons.fileupload.MultipartStream.skipPreamble(Unknown Source)
at org.apache.commons.fileupload.FileUploadBase.parseRequest(Unknown Source)
at org.apache.struts.upload.CommonsMultipartRequestHandler.handleRequest(Unknown Source)
at com.ibm.isclite.container.controller.NLSDiskMultipartRequestHandler.handleRequest(NLSDiskMultipartRequestHandler.java:42)
at org.apache.struts.util.RequestUtils.populate(Unknown Source)
at org.apache.struts.action.RequestProcessor.processPopulate(Unknown Source)
at org.apache.struts.action.RequestProcessor.process(Unknown Source)
at org.apache.struts.action.ActionServlet.process(Unknown Source)
at org.apache.struts.action.ActionServlet.doPost(Unknown Source)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:595)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1233)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:782)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:481)
at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:136)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:97)
at com.ibm.ws.console.core.servlet.WSCUrlFilter.setUpCommandAssistance(WSCUrlFilter.java:967)
at com.ibm.ws.console.core.servlet.WSCUrlFilter.continueStoringTaskState(WSCUrlFilter.java:514)
at com.ibm.ws.console.core.servlet.WSCUrlFilter.doFilter(WSCUrlFilter.java:335)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:967)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1107)
at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3980)
at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:304)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1016)
at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:200)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:463)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:530)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:316)
at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:88)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1892)
Caused by: com.ibm.io.async.AsyncTimeoutException(Async operation timed out, [Timeout, rc=0])
at com.ibm.io.async.AbstractAsyncFuture.waitForCompletion(AbstractAsyncFuture.java:359)
at com.ibm.io.async.AsyncFuture.getByteCount(AsyncFuture.java:218)
at com.ibm.ws.tcp.channel.impl.AioSocketIOChannel.readAIOSync(AioSocketIOChannel.java:215)
at com.ibm.ws.tcp.channel.impl.AioTCPReadRequestContextImpl.processSyncReadRequest(AioTCPReadRequestContextImpl.java:184)
... 50 more
Websphere console logs :-
[10/3/17 9:49:52:256 EDT] 00000074 SystemErr R javax.servlet.ServletException: org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. Async operation timed out
[10/3/17 9:49:52:257 EDT] 00000074 SystemErr R at org.apache.struts.upload.CommonsMultipartRequestHandler.handleRequest(Unknown Source)
[10/3/17 9:49:52:257 EDT] 00000074 SystemErr R at com.ibm.isclite.container.controller.NLSDiskMultipartRequestHandler.handleRequest(NLSDiskMultipartRequestHandler.java:42)
[10/3/17 9:49:52:257 EDT] 00000074 SystemErr R at org.apache.struts.util.RequestUtils.populate(Unknown Source)
[10/3/17 9:49:52:257 EDT] 00000074 SystemErr R at org.apache.struts.action.RequestProcessor.processPopulate(Unknown Source)
[10/3/17 9:49:52:257 EDT] 00000074 SystemErr R at org.apache.struts.action.RequestProcessor.process(Unknown Source)
[10/3/17 9:49:52:257 EDT] 00000074 SystemErr R at org.apache.struts.action.ActionServlet.process(Unknown Source)
[10/3/17 9:49:52:258 EDT] 00000074 SystemErr R at org.apache.struts.action.ActionServlet.doPost(Unknown Source)
[10/3/17 9:49:52:258 EDT] 00000074 SystemErr R at javax.servlet.http.HttpServlet.service(HttpServlet.java:595)
[10/3/17 9:49:52:258 EDT] 00000074 SystemErr R at javax.servlet.http.HttpServlet.service(HttpServlet.java:668)
[10/3/17 9:49:52:258 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1233)
[10/3/17 9:49:52:258 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:782)
[10/3/17 9:49:52:258 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:481)
[10/3/17 9:49:52:259 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
[10/3/17 9:49:52:259 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:136)
[10/3/17 9:49:52:259 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:97)
[10/3/17 9:49:52:259 EDT] 00000074 SystemErr R at com.ibm.ws.console.core.servlet.WSCUrlFilter.setUpCommandAssistance(WSCUrlFilter.java:967)
[10/3/17 9:49:52:259 EDT] 00000074 SystemErr R at com.ibm.ws.console.core.servlet.WSCUrlFilter.continueStoringTaskState(WSCUrlFilter.java:514)
[10/3/17 9:49:52:259 EDT] 00000074 SystemErr R at com.ibm.ws.console.core.servlet.WSCUrlFilter.doFilter(WSCUrlFilter.java:335)
[10/3/17 9:49:52:260 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:195)
[10/3/17 9:49:52:260 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:91)
[10/3/17 9:49:52:260 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:967)
[10/3/17 9:49:52:260 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1107)
[10/3/17 9:49:52:260 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3980)
[10/3/17 9:49:52:260 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:304)
[10/3/17 9:49:52:261 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1016)
[10/3/17 9:49:52:261 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817)
[10/3/17 9:49:52:261 EDT] 00000074 SystemErr R at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:200)
[10/3/17 9:49:52:261 EDT] 00000074 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:463)
[10/3/17 9:49:52:261 EDT] 00000074 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:530)
[10/3/17 9:49:52:262 EDT] 00000074 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:316)
[10/3/17 9:49:52:262 EDT] 00000074 SystemErr R at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:88)
[10/3/17 9:49:52:262 EDT] 00000074 SystemErr R at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
[10/3/17 9:49:52:262 EDT] 00000074 SystemErr R at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
[10/3/17 9:49:52:262 EDT] 00000074 SystemErr R at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
[10/3/17 9:49:52:262 EDT] 00000074 SystemErr R at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
[10/3/17 9:49:52:263 EDT] 00000074 SystemErr R at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
[10/3/17 9:49:52:263 EDT] 00000074 SystemErr R at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
[10/3/17 9:49:52:263 EDT] 00000074 SystemErr R at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
[10/3/17 9:49:52:263 EDT] 00000074 SystemErr R at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1892)
[10/3/17 9:49:52:263 EDT] 00000074 SystemErr R Caused by: org.apache.commons.fileupload.FileUploadException: Processing of multipart/form-data request failed. Async operation timed out
[10/3/17 9:49:52:264 EDT] 00000074 SystemErr R at org.apache.commons.fileupload.FileUploadBase.parseRequest(Unknown Source)
[10/3/17 9:49:52:264 EDT] 00000074 SystemErr R ... 39 more
I know it's been long time since question was asked. But i guess this will help somebody else in future.
This is a workaround, not an answer, really, but I found out that it has something to do with installing from the "Local file system" option. Using the "Remote file system" option, even though the WAR file was on my local drive, works.

Resources