• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

reading post request data in C module in apache http server

 
Ranch Hand
Posts: 3852
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This question is related to C module in apache HTTP server.

The need is to read post request data in apache HTTP server & modify it, before request reaches to WebLogic application server.

We first considered to have perl filter (using mod_perl2) which will do this but we discarded perl because of reasons like it's slower etc. So we are now building same kind of filter in C language.

I am able to invoke C module (.so module) for a particular URL. It reads get request parameters also. The code is as follows:




However I didn't find any code sample which reads post request.
Can someone help?

Thanks.
 
reply
    Bookmark Topic Watch Topic
  • New Topic