I’m running a Java web application on WebSphere Application Server 9.0.5.6, and I’m encountering the following error when processing an HTTP request:
000042b3 webcontainer E com.ibm.ws.webcontainer.WSWebContainer handleRequest SRVE0232E: Internal Server Error. java.lang.IllegalArgumentException: Upgrade currently not implemented! at com.ibm.ws.webcontainer.srt.SRTConnectionContext.finishConnection(SRTConnectionContext.java:1 What I’ve investigated so far: The exception occurs inside finishConnection(), where WebSphere tries to upgrade the request using IUpgrade.getUpgradeConnection(), but the connection (conn) remains null.
This seems related to HTTP Upgrade handling
WebSphere might not be configured to support upgrades, or there might be an issue with HttpUpgradeHandler.
I enabled trace logging for com.ibm.ws.webcontainer but didn’t get additional details.
Any insights or debugging tips would be appreciated. Thanks!