Method: SOAP::RPC::SOAPlet#do_GET

Defined in:
lib/soap/rpc/soaplet.rb

#do_GET(req, res) ⇒ Object

Raises:

  • (WEBrick::HTTPStatus::MethodNotAllowed)


70
71
72
73
# File 'lib/soap/rpc/soaplet.rb', line 70

def do_GET(req, res)
  res.header['Allow'] = 'POST'
  raise WEBrick::HTTPStatus::MethodNotAllowed, "GET request not allowed"
end