Forum Discussion
Pradeep_Kandala
Nov 06, 2012Nimbostratus
HTTP::Collect and HTTP::payload Not working
I got some problem,
In HTTP::request I'm able to collect only upto 200 bytes using HTTP::collect 200 , if I'm specifying the full body length with full number or using Content-Length of HTTP::he...
Pradeep_Kandala
Nov 06, 2012Nimbostratus
when HTTP_REQUEST {
Log debug? 1=yes, 0=no
set debug 1
Collect up to the first 1MB of POST data
log local0. "Checking post method [HTTP::method] uri: [HTTP::uri] http_version: [HTTP::version] IP: [IP::client_addr]"
if {[HTTP::method] eq "POST"}{
set clength 0
Check if there is a content-length header and the value is set to less than 1Mb
if {[HTTP::header exists "Content-Length"] && [HTTP::header "Content-Length"] <= 1048576}{
set clength [HTTP::header "Content-Length"]
} else {
set clength 1048576
}
log local0. "Checking content length $clength IP: [IP::client_addr]"
if { $clength > 0} {
if {$debug}{log local0. "[virtual name]: Collecting $clength bytes IP: [IP::client_addr]"}
HTTP::collect [HTTP::header "Content-Length"]
}
}
}
when HTTP_REQUEST_DATA {
if {$debug}{log local0. "Collecting payload [HTTP::header "Content-Length"] IP: [IP::client_addr]"}
set SAMLResponse [HTTP::payload [HTTP::header "Content-Length"]]
log local0. "saml response : $SAMLResponse IP: [IP::client_addr] "
HTTP::release
}
This is the code, I have read the link material, But could not solve. and this code is working for small amount of data(200) but not for 5500(which I require).
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects