• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Devaka Cooray
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • Paul Clapham
Sheriffs:
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
Bartenders:

File upload issue if more than 2GB, request body exceeds maximum size (2147483647) for SSL buffer

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am working on the web application that was developed in Java 1.8, Apache wicket 1.5.6 with embedded jetty server 8.1.16 and also developed few pages using Ext JS 3.4.1. Apache 2.4 has configured as reverse proxy for this application.

The problem is after enabling 2 factor authentication(2FA) and trying to upload more than 2 GB file, apache(proxy) server throws exception as Re-negotiation handshake failed, referer:https:///ui/v2FJNs4Lej0jKivA6KUhqg/v2Fd9/Ns48e request body exceeds maximum size (2147483647) for SSL buffer, referer: https:///ui/DXOKJCEAASQaiEwUH_0xOA/DXO6a/ADXe4

Multipart option is enabled for file uploading

httpd.conf:

#Proxy ui to jetty

<Location "/ui">
       ....
       ....
       SSLRenegBufferSize 2147483647

       # Forward the SSL info onto Jetty (GUI)
       RequestHeader set SSL_CLIENT_CERT "%{SSL_CLIENT_CERT}s"
       ....
       ....
   
   ProxyPass http://127.0.0.1:8080/ui
   ProxyPassReverse http://127.0.0.1:8080/ui
</Location>
I am trying with wicket filter to block the request and update Content-Length to 0 before reaching the proxy server. But request is hitting proxy server first and then come to filter. It did not work.

Anybody was facing similar issue?. I may be doing wrong approach. Please help me out to resolve this issue.

I can provide more detail if still requires.
 
Ranch Hand
Posts: 31
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This forum is for JBoss/Wildfly questions. I suggest you ask this question on the Jetty Users mailing list.

https://accounts.eclipse.org/mailing-list/jetty-users

Have you tried that yet ?
 
Yogarajan Athiyannan
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have done today. Thanks. I will remove the question from this list.
 
crispy bacon. crispy tiny ad:
Paul Wheaton's 16th Kickstarter: Gardening playing cards for gardeners and homesteaders
https://coderanch.com/t/889615/Paul-Wheaton-Kickstarter-Gardening-playing
reply
    Bookmark Topic Watch Topic
  • New Topic