Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • John Hodgkinson 613 posts 355 karma points
    Nov 29, 2012 @ 21:55
    John Hodgkinson
    0

    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?

  • Arie 224 posts 675 karma points
    Nov 29, 2012 @ 23:32
    Arie
    0

    Are they by any chance on a subdomain of your main Umbraco site?

  • John Hodgkinson 613 posts 355 karma points
    Nov 30, 2012 @ 00:11
    John Hodgkinson
    0

    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...

  • John Hodgkinson 613 posts 355 karma points
    Nov 30, 2012 @ 15:17
    John Hodgkinson
    0

    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>

     

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies