-1

I am using Maximo Anywhere 7.5 on Websphere 8.5.

When i am trying to upload image i got this error:

servlet E com.ibm.ws.webcontainer.servlet.ServletWrapper service SRVE0068E: An exception was thrown by one of the service methods of the servlet [AnywhereProxyServlet] in application [AnywhereWorkManager_1-2_4_war]. Exception created : [java.lang.UnsupportedOperationException: SRVE8020E: Servlet does not accept multipart requests

scott dickerson
  • 908
  • 1
  • 5
  • 13
Mohammed Alrifai
  • 131
  • 1
  • 3
  • 13
  • What are you doing in the app when the error is happening? How did you implement it? Did you contact Maximo? – Idan Adar Apr 07 '15 at 06:08
  • i got this Problem on the App that's provided when i install Maximo AnyeWhere without any modification from my side Yes I am contacting them but they didn't answer yet they need much time – Mohammed Alrifai Apr 07 '15 at 06:35
  • Where are you performing the "upload"? – Idan Adar Apr 07 '15 at 06:38
  • from my work execution app to Maximo deployed on server – Mohammed Alrifai Apr 07 '15 at 06:45
  • @MohammedAlrifai, can you edit your question by providing additional information's like Client/Server side implementation and also Java code if any.? – dhineshsundar Apr 07 '15 at 07:52
  • Are you sending form data to the server via POST? Is this relevant? http://www-01.ibm.com/support/docview.wss?uid=swg24032099 – Sun Apr 07 '15 at 15:44
  • http://www-01.ibm.com/support/knowledgecenter/SSEQTP_8.0.0/com.ibm.websphere.messages.doc/com.ibm.ws.webcontainer.resources.Messages.html?cp=SSEQTP_8.0.0%2F1-15-7-259: SRVE8020E: Servlet does not accept multipart requests `Explanation`: The servlet does not accept multipart requests. `Action`: Add a @MultipartConfig annotation to this servlet or add a multipart-config element to this servlet in the web.xml. – Sun Apr 07 '15 at 15:45
  • i am using Standard IBM Maximo AnyWhere without any modification from my side it seem that its An IBM issue i am Contacting IBM I will see – Mohammed Alrifai Apr 09 '15 at 06:22

2 Answers2

1

I Googled the error code and this came up:

SRVE8020E: Servlet does not accept multipart requests

Explanation: The servlet does not accept multipart requests.

Action: Add a @MultipartConfig annotation to this servlet or add a multipart-config element to this servlet in the web.xml.

Sun
  • 2,595
  • 1
  • 26
  • 43
1

to solve this issue i have to install fix 8.5.5.0 for WebSphere

Mohammed Alrifai
  • 131
  • 1
  • 3
  • 13