696件ヒット
[1-100件を表示]
(0.010秒)
キーワード
- AbstractServlet (12)
- Accepted (12)
- BadGateway (12)
- BadRequest (12)
- CGIHandler (12)
- ClientError (12)
- Conflict (12)
- Continue (12)
- Created (12)
- DefaultFileHandler (12)
- EOFError (12)
- ERBHandler (12)
- Error (12)
- ExpectationFailed (12)
- FileHandler (12)
- Forbidden (12)
- Found (12)
- GatewayTimeout (12)
- Gone (12)
- HTTPServer (12)
- HTTPServerError (12)
- HTTPServletError (12)
- HTTPVersionNotSupported (12)
- Info (12)
- InternalServerError (12)
- LengthRequired (12)
- MethodNotAllowed (12)
- MountTable (12)
- MovedPermanently (12)
- MultipleChoices (12)
- NoContent (12)
- NonAuthoritativeInformation (12)
- NotAcceptable (12)
- NotFound (12)
- NotImplemented (12)
- NotModified (12)
- OK (12)
- PartialContent (12)
- PaymentRequired (12)
- PreconditionFailed (12)
- ProcHandler (12)
- ProxyAuthenticationRequired (12)
- Redirect (12)
- RequestEntityTooLarge (12)
- RequestRangeNotSatisfiable (12)
- RequestTimeout (12)
- RequestURITooLarge (12)
- ResetContent (12)
- SeeOther (12)
- ServerError (12)
- ServiceUnavailable (12)
- Status (12)
- Success (12)
- SwitchingProtocols (12)
- TemporaryRedirect (12)
- UnsupportedMediaType (12)
- UseProxy (12)
検索結果
先頭5件
-
WEBrick
:: HTTPServer (2.0) -
HTTP サーバの機能を提供するクラスです。
HTTP サーバの機能を提供するクラスです。
以下は HTTP サーバとしてちゃんと動作する例です。
require 'webrick'
srv = WEBrick::HTTPServer.new({:DocumentRoot => '/home/username/public_html/',
:BindAddress => '127.0.0.1',
:Port => 10080})
srv.mount('/hoge.pl', WEBrick::HTTPSe... -
WEBrick
:: HTTPServer :: MountTable (2.0) -
サーバ上のパスとサーブレットの対応関係を管理するためのクラスです。
サーバ上のパスとサーブレットの対応関係を管理するためのクラスです。 -
WEBrick
:: HTTPServerError (2.0) -
-
WEBrick
:: HTTPServlet :: AbstractServlet (2.0) -
サーブレットの抽象クラスです。実装は AbstractServlet のサブクラスで行います。
...ractServlet のサブクラスで行います。
サーブレットは以下のように使われます。WEBrick::HTTPServlet::CGIHandler は
webrick/httpservlet/cgihandler で提供されているサーブレットです。
CGIHandler は AbstractServlet のサブクラスです。
require 'web... -
WEBrick
:: HTTPServlet :: CGIHandler (2.0) -
CGI を扱うためのサーブレットです。
CGI を扱うためのサーブレットです。 -
WEBrick
:: HTTPServlet :: DefaultFileHandler (2.0) -
通常のファイルサーバとしての機能を提供するためのサーブレットです。 WEBrick::HTTPServlet::FileHandler の内部で利用しています。
通常のファイルサーバとしての機能を提供するためのサーブレットです。
WEBrick::HTTPServlet::FileHandler の内部で利用しています。 -
WEBrick
:: HTTPServlet :: ERBHandler (2.0) -
ERB を扱うためのサーブレットです。
ERB を扱うためのサーブレットです。 -
WEBrick
:: HTTPServlet :: FileHandler (2.0) -
通常のファイルサーバとしての機能を提供するためのサーブレット。
通常のファイルサーバとしての機能を提供するためのサーブレット。 -
WEBrick
:: HTTPServlet :: HTTPServletError (2.0) -
ユーザが作成したサーブレット内で例外を発生させるときに使うと便利かもし れません。
ユーザが作成したサーブレット内で例外を発生させるときに使うと便利かもし
れません。