Forum Discussion
JP_135500
Nimbostratus
Jun 10, 2014Unable to open Excel documents in Office from SharePoint 2013
I am using the following code in HTTP_REQUEST to open Office documents locally from SharePoint 2013 through LTM + APM: switch [HTTP::method] {
"MOVE" -
"COPY" -
"LOCK" -
"UNLOCK"...
JP_135500
Nimbostratus
Jul 08, 2014How I was able to get this working is the switch statement below. It may not be as surgical as other ways, but it was the only way I found to get this working. This switch statement allows the following programs through:
- Office 2010/2011/2013
- SharePoint Designer 2010/2013
- WebDAV/Open in Explorer (IE 9/10/11)
- Office Upload Center 2013
- SkyDrive/OneDrive 2013
- InfoPath 2013
switch -glob [string tolower [HTTP::header "User-Agent"]] {
"*word*" -
"*excel*" -
"*office upload*" -
"*office protocol discovery*" -
"*soap toolkit*" -
"*webdav-miniredir*" -
"*frontpage*" -
"*msfrontpage*" -
"*shareplus*" {
HTTP::disable
}
default {
switch -glob [string tolower [HTTP::uri]] {
"*owssvr.dll" {
HTTP::disable
}
}
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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
