I have some external web services that I use for a variety of backend system. they no longer work and just sit there and spin... if I try to access the .asmx directly and test that way, they just post back to the parent page... any ideas?
Arie - no, it's in the regular webservices folder. I'm assuming umbraco it treating it differently now. i've tried excluding the directories and files in the web.config but still have not had any luck...
web services failing...
I have some external web services that I use for a variety of backend system. they no longer work and just sit there and spin... if I try to access the .asmx directly and test that way, they just post back to the parent page... any ideas?
Are they by any chance on a subdomain of your main Umbraco site?
Arie - no, it's in the regular webservices folder. I'm assuming umbraco it treating it differently now. i've tried excluding the directories and files in the web.config but still have not had any luck...
found the problem - thx Casey! had some SEO rules in place and needed to negate the webservices directory....
<!-- SEO: Force lower-case for URLs -->
<!-- exclude umbraco folder, and all static requests to images, css, js and axd resource files -->
<rule name="LowerCaseRule1" stopProcessing="true">
<match url=".*[A-Z].*" ignoreCase="false" />
<conditions>
<add input="{REQUEST_URI}" pattern="^/umbraco/" negate="true" />
<add input="{REQUEST_URI}" pattern="^/webservices/" negate="true" />
<add input="{REQUEST_URI}" pattern="^/tracking/" negate="true" />
<add input="{URL}" pattern="^.*\.(axd|css|js|jpg|jpeg|png|gif)$" negate="true" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="{ToLower:{URL}}" />
</rule>
is working on a reply...