No HTTP-GET method available for calling a WEB SERVICE

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default No HTTP-GET method available for calling a WEB SERVICE

    I just made a web service with a very simple member function.

    When I browse to the asmx file to check it, there is not HTTP-GET available
    for calling the service (only HTTP-POST and HTTP-SOAP).



    I really need to call the web service via HTTP-GET, since it's going to be
    called dynamically (i.e. without constructing a proxy class).



    How can I enable the HTTP-GET method? Why is it disabled?



    Regards,

    Pablo.


    Pablo Gutierrez Guest

  2. Similar Questions and Discussions

    1. calling web method from URL
      I created a SOAP based web service which I can easily call from my vb.net code after adding the web reference: Dim ws As New myserver.myservice()...
    2. method name exists, property value exists, calling method fails
      I have a class object I am calling in another class: class Stuff { var $myObj; function Stuff($myObj) { $this->myObj = $myObj; }
    3. Calling a method each time the Web-Service is called.
      Hello, Is there any way to call a method each time the web-service is called ? (I am using VB.NET). Thanks :)
    4. Calling a DeleteDirectory Method from a Web Service
      I am trying to call a DirectoryInfo.Delete function from a Web Service but am getting an Access Denied Error: System.UnauthorizedAccessException:...
    5. HTTP 503 (Service Unavailable) error when calling a webservice inside the network
      Hello This problem has been driving me mad for the past few days. I am basically writing a generic utility in .NET/C# that can read any WSDL...
  3. #2

    Default Re: No HTTP-GET method available for calling a WEB SERVICE

    Disabled by default in Framework 1.1. To enable locate appropriate lines in
    your machine.config file and uncomment them.

    "Pablo Gutierrez" <fucking.spammers@tamsa.com.ar> wrote in message
    news:%231%23JWtbmDHA.2536@tk2msftngp13.phx.gbl...
    > I just made a web service with a very simple member function.
    >
    > When I browse to the asmx file to check it, there is not HTTP-GET
    available
    > for calling the service (only HTTP-POST and HTTP-SOAP).
    >
    >
    >
    > I really need to call the web service via HTTP-GET, since it's going to be
    > called dynamically (i.e. without constructing a proxy class).
    >
    >
    >
    > How can I enable the HTTP-GET method? Why is it disabled?
    >
    >
    >
    > Regards,
    >
    > Pablo.
    >
    >

    Michael Per Guest

  4. #3

    Default No HTTP-GET method available for calling a WEB SERVICE

    I just made a web service with a very simple member function.

    When I browse to the asmx file to check it, there is not HTTP-GET available
    for calling the service (only HTTP-POST and HTTP-SOAP).

    I really need to call the web service via HTTP-GET, since it's going to be
    called dynamically (i.e. without constructing a proxy class).

    How can I enable the HTTP-GET method? Why is it disabled?



    Regards,

    Pablo.



    Pablo Gutierrez Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139