Is it possible to have a step that takes place on all but one path?

Also, is it possible to have a preflow step that is skipped for one proxy.path suffix?

Trying to have authentication (using an xml) on all but one path.

0 1 111
1 REPLY 1

I suppose you could do this

<ProxyEndpoint name="endpoint1">

  <HTTPProxyConnection>
    <BasePath>/will-be-replaced</BasePath>
    <Properties/>
    <VirtualHost>secure</VirtualHost>
  </HTTPProxyConnection>

  <FaultRules ...>

  <PreFlow name="PreFlow">
    <Request>
      <Step>
         <Condition>NOT(proxy.pathsuffix = "/foo/bar")</Condition>
         <Name>Step-to-Execute-on-All-But-One-Path</Name>
      </Step>
    </Request>
    <Response/>
  </PreFlow>
  ...