Google Mobile Ads

Monday, August 12, 2013

"The test form is only available for requests from the local machine."

Kendi makinenizde oluşturduğunuz bir web servisi, web sunucuya yüklediğinizde "The test form is only available for requests from the local machine." uyarısı ile karşılaşabilirsiniz. Bu durumda yapmanız gereken web.config dosyasında <system.web> tag lerinin arasına, aşağıdaki <webServices>.....</webServices> tag bloğunu yerleştirmeniz.

<configuration>
    <system.web>
    <webServices>
        <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
        </protocols>
    </webServices>
    </system.web>
</configuration>

LinkWithin

Related Posts Plugin for WordPress, Blogger...