OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
| Types Summary | |
|---|---|
| HttpRequest | |
| HttpResponse | |
| HttpHeader | |
| HttpHeaderValue | |
| HttpParameter | |
| ListOfParameter | |
| HttpBody | |
type record HttpRequest {
charstring Method ("GET"),
charstring Uri,
charstring Version,
HttpHeaderValue Host,
HttpHeader ContentType optional,
HttpHeaderValue Authorization optional,
set of HttpHeader anotherHeaders optional,
HttpBody Body optional
}
type record HttpResponse {
charstring Version,
integer Code,
HttpHeader ContentType optional,
set of HttpHeader anotherHeaders optional,
HttpBody Body optional
}
type record HttpHeader {
charstring Name,
set length (1..infinity) of HttpHeaderValue ListOfValue
}
type record HttpHeaderValue {
charstring Value optional,
ListOfParameter ParameterList optional
}
type record HttpParameter {
charstring Name,
charstring Value optional
}
type set of HttpParameter ListOfParameter
type union HttpBody {
octetstring values,
BSFXML bsfXml
}