Forum Moderators: open
I have gone so far as to create a default "hello world" project on that machine, and it will not accept a GET request.
The same default project will accept GET requests when created on the development machine or another remote server.
Method as follows.
<WebMethod()> Public Function HelloWorld() as string
Dim HelloWorld as string
HelloWorld = "Hello World"
Return HelloWorld
End Function
Ive double checked, and any method without arguments (which should accept a GET), will not, but only on that machine
Ive uninstalled and re-installed the .dot net platform , doesnt seem to produce any real change
I've thought through any thing that might be specific to the machine itself, permissions, evil spirits, but any thing should have been set to default when reinstalling.
Im going to end it here, if this seems to be a common problem, someone else will have encountered it and know exactly what im talking about. If not, please reply with any requests for details.
Thanks In Advance
VLG
<?xml version="1.0"?>
<configuration>
<system.web>
<webServices>
<protocols>
<add name="HttpSoap1.2"/>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="HttpPostLocalhost"/>
<add name="Documentation"/>
</protocols>
</webServices>
</system.web>
</configuration>