/** *Statuscode(100)indicatingtheclientcancontinue.
*/ int SC_CONTINUE = 100;
/** *Statuscode(101)indicatingtheserverisswitchingprotocolsaccordingtoUpgradeheader.
*/ int SC_SWITCHING_PROTOCOLS = 101;
/** *Statuscode(200)indicatingtherequestsucceedednormally.
*/ int SC_OK = 200;
/** *Statuscode(201)indicatingtherequestsucceededandcreatedanewresourceontheserver.
*/ int SC_CREATED = 201;
/** *Statuscode(202)indicatingthatarequestwasacceptedforprocessing,butwasnotcompleted.
*/ int SC_ACCEPTED = 202;
/** *Statuscode(203)indicatingthatthemetainformationpresentedbytheclientdidnotoriginatefromtheserver.
*/ int SC_NON_AUTHORITATIVE_INFORMATION = 203;
/** *Statuscode(204)indicatingthattherequestsucceededbutthattherewasnonewinformationtoreturn.
*/ int SC_NO_CONTENT = 204;
/** *Statuscode(205)indicatingthattheagent<em>SHOULD</em>resetthedocumentviewwhichcausedtherequestto *besent.
*/ int SC_RESET_CONTENT = 205;
/** *Statuscode(206)indicatingthattheserverhasfulfilledthepartialGETrequestfortheresource.
*/ int SC_PARTIAL_CONTENT = 206;
/** *Statuscode(300)indicatingthattherequestedresourcecorrespondstoanyoneofasetofrepresentations,each *withitsownspecificlocation.
*/ int SC_MULTIPLE_CHOICES = 300;
/** *Statuscode(301)indicatingthattheresourcehaspermanentlymovedtoanewlocation,andthatfuture *referencesshoulduseanewURIwiththeirrequests.
*/ int SC_MOVED_PERMANENTLY = 301;
/** *Statuscode(302)indicatingthattheresourcehastemporarilymovedtoanotherlocation,butthatfuture *referencesshouldstillusetheoriginalURItoaccesstheresource.Thisdefinitionisbeingretainedfor *backwardscompatibility.SC_FOUNDisnowthepreferreddefinition.
*/ int SC_MOVED_TEMPORARILY = 302;
/** *Statuscode(302)indicatingthattheresourceresidetemporarilyunderadifferentURI.Sincetheredirection *mightbealteredonoccasion,theclientshouldcontinuetousetheRequest-URIforfuturerequests.(HTTP/1.1)To *representthestatuscode(302),itisrecommendedtousethisvariable.
*/ int SC_FOUND = 302;
/** *Statuscode(303)indicatingthattheresponsetotherequestcanbefoundunderadifferentURI.
*/ int SC_SEE_OTHER = 303;
/** *Statuscode(304)indicatingthataconditionalGEToperationfoundthattheresourcewasavailableandnot *modified.
*/ int SC_NOT_MODIFIED = 304;
/** *Statuscode(305)indicatingthattherequestedresource<em>MUST</em>beaccessedthroughtheproxygivenbythe *<code><em>Location</em></code>field.
*/ int SC_USE_PROXY = 305;
/** *Statuscode(307)indicatingthattherequestedresourceresidestemporarilyunderadifferentURI.Thetemporary *URI<em>SHOULD</em>begivenbythe<code><em>Location</em></code>fieldintheresponse.
*/ int SC_TEMPORARY_REDIRECT = 307;
/** *Statuscode(400)indicatingtherequestsentbytheclientwassyntacticallyincorrect.
*/ int SC_BAD_REQUEST = 400;
/** *Statuscode(401)indicatingthattherequestrequiresHTTPauthentication.
*/ int SC_UNAUTHORIZED = 401;
/** *Statuscode(402)reservedforfutureuse.
*/ int SC_PAYMENT_REQUIRED = 402;
/** *Statuscode(403)indicatingtheserverunderstoodtherequestbutrefusedtofulfillit.
*/ int SC_FORBIDDEN = 403;
/** *Statuscode(404)indicatingthattherequestedresourceisnotavailable.
*/ int SC_NOT_FOUND = 404;
/** *Statuscode(405)indicatingthatthemethodspecifiedinthe<code><em>Request-Line</em></code>isnotallowed *fortheresourceidentifiedbythe<code><em>Request-URI</em></code>.
*/ int SC_METHOD_NOT_ALLOWED = 405;
/** *Statuscode(406)indicatingthattheresourceidentifiedbytherequestisonlycapableofgeneratingresponse *entitieswhichhavecontentcharacteristicsnotacceptableaccordingtotheacceptheaderssentintherequest.
*/ int SC_NOT_ACCEPTABLE = 406;
/** *Statuscode(407)indicatingthattheclient<em>MUST</em>firstauthenticateitselfwiththeproxy.
*/ int SC_PROXY_AUTHENTICATION_REQUIRED = 407;
/** *Statuscode(408)indicatingthattheclientdidnotproducearequestwithinthetimethattheserverwas *preparedtowait.
*/ int SC_REQUEST_TIMEOUT = 408;
/** *Statuscode(409)indicatingthattherequestcouldnotbecompletedduetoaconflictwiththecurrentstateof *theresource.
*/ int SC_CONFLICT = 409;
/** *Statuscode(410)indicatingthattheresourceisnolongeravailableattheserverandnoforwardingaddressis *known.Thiscondition<em>SHOULD</em>beconsideredpermanent.
*/ int SC_GONE = 410;
/** *Statuscode(411)indicatingthattherequestcannotbehandledwithoutadefined *<code><em>Content-Length</em></code>.
*/ int SC_LENGTH_REQUIRED = 411;
/** *Statuscode(412)indicatingthatthepreconditiongiveninoneormoreoftherequest-headerfieldsevaluatedto *falsewhenitwastestedontheserver.
*/ int SC_PRECONDITION_FAILED = 412;
/** *Statuscode(413)indicatingthattheserverisrefusingtoprocesstherequestbecausetherequestentityis *largerthantheserveriswillingorabletoprocess.
*/ int SC_REQUEST_ENTITY_TOO_LARGE = 413;
/** *Statuscode(414)indicatingthattheserverisrefusingtoservicetherequestbecausethe *<code><em>Request-URI</em></code>islongerthantheserveriswillingtointerpret.
*/ int SC_REQUEST_URI_TOO_LONG = 414;
/** *Statuscode(415)indicatingthattheserverisrefusingtoservicetherequestbecausetheentityoftherequest *isinaformatnotsupportedbytherequestedresourcefortherequestedmethod.
*/ int SC_UNSUPPORTED_MEDIA_TYPE = 415;
/** *Statuscode(416)indicatingthattheservercannotservetherequestedbyterange.
*/ int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
/** *Statuscode(417)indicatingthattheservercouldnotmeettheexpectationgivenintheExpectrequestheader.
*/ int SC_EXPECTATION_FAILED = 417;
/** *Statuscode(500)indicatinganerrorinsidetheHTTPserverwhichpreventeditfromfulfillingtherequest.
*/ int SC_INTERNAL_SERVER_ERROR = 500;
/** *Statuscode(501)indicatingtheHTTPserverdoesnotsupportthefunctionalityneededtofulfilltherequest.
*/ int SC_NOT_IMPLEMENTED = 501;
/** *Statuscode(502)indicatingthattheHTTPserverreceivedaninvalidresponsefromaserveritconsultedwhen *actingasaproxyorgateway.
*/ int SC_BAD_GATEWAY = 502;
/** *Statuscode(503)indicatingthattheHTTPserveristemporarilyoverloaded,andunabletohandletherequest.
*/ int SC_SERVICE_UNAVAILABLE = 503;
/** *Statuscode(504)indicatingthattheserverdidnotreceiveatimelyresponsefromtheupstreamserverwhile *actingasagatewayorproxy.
*/ int SC_GATEWAY_TIMEOUT = 504;
/** *Statuscode(505)indicatingthattheserverdoesnotsupportorrefusestosupporttheHTTPprotocolversion *thatwasusedintherequestmessage.
*/ int SC_HTTP_VERSION_NOT_SUPPORTED = 505;
}
Messung V0.5 in Prozent
¤ Diese beiden folgenden Angebotsgruppen bietet das Unternehmen0.28Angebot
(Wie Sie bei der Firma Beratungs- und Dienstleistungen beauftragen können 2026-06-22)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.