Forum Discussion
Willy
Feb 09, 2016Nimbostratus
TCL error :Prerequisite operation not in progress (line ...
I have an iRule that looks like this :
when HTTP_REQUEST {
if {[HTTP::path] eq "/"} {
HTTP::uri "/newpath"
pool website-pool}
}
It seems to do his job, but sometimes the next error appear...
arpydays
Feb 18, 2016Nimbostratus
Looks like you may have ASM enabled on the VS, which would require HTTP profile. You could try disabling ASM as per below;
when HTTP_REQUEST {
if {([HTTP::uri] starts_with "/partinsert") and ([string tolower [HTTP::header Upgrade]] contains "websocket")}{
log local0. "websocket detected"
HTTP::disable
ASM::disable
} else {
HTTP::uri "/partinsert[HTTP::uri]"
}
}
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