Webサービス/AxisとContent-Length
をテンプレートにして作成
Search in
this wiki
and
or
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
[[Axis1.1のHTTP Protocol Log>Webサービス/inter-operabil...
*** HTTPの規約では?
[[RFC2068:http://www.mars.dti.ne.jp/~torao/rfc/rfc2068-...
+ message-bodyを含んではいけない全てのレスポンスメッセー...
+ Transfer-Encoding: chunked が適応されている場合
+ Content-Length: が設定されている場合
+ メディアタイプが "multipart/byteranges"の場合
+ 接続を閉じるサーバによる場合
で、Axisのレスポンスは
HTTP/1.1 200 OK
Content-Type: text/xml;charset=utf-8
Date: Sun, 04 Jan 2004 16:11:01 GMT
Server: Apache-Coyote/1.1
Connection: close
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap....
xmlns:xsd="http://www.w3.org/2001/XMLS...
xmlns:xsi="http://www.w3.org/2001/XMLS...
<soapenv:Body>
<helloWorldReturn xmlns="http://test">こんにちは、世界...
</soapenv:Body>
</soapenv:Envelope>
ってことで、Keep-Aliveを終了する
Connection: close
の部分が、5番に対応するのかしら? とにかくどうして「Conte...
*** Axisの開発者はどう考えてるの?
AxisServletの1005行目ぐらいには、
/* My understand of Content-Length
* HTTP 1.0
* -Required for requests, but optional for responses.
* HTTP 1.1
* - Either Content-Length or HTTP Chunking is required.
* Most servlet engines will do chunking if content-le...
*/
//if(clientVersion == HTTPConstants.HEADER_PROTOCOL_V10)...
// res.setContentLength(responseMsg.getContentLength...
な~んて記述がありますね。「ほとんどのServletエンジンはCo...
で、そうしないようなHTTP関連アプリやProxyサーバなどで問...
終了行:
[[Axis1.1のHTTP Protocol Log>Webサービス/inter-operabil...
*** HTTPの規約では?
[[RFC2068:http://www.mars.dti.ne.jp/~torao/rfc/rfc2068-...
+ message-bodyを含んではいけない全てのレスポンスメッセー...
+ Transfer-Encoding: chunked が適応されている場合
+ Content-Length: が設定されている場合
+ メディアタイプが "multipart/byteranges"の場合
+ 接続を閉じるサーバによる場合
で、Axisのレスポンスは
HTTP/1.1 200 OK
Content-Type: text/xml;charset=utf-8
Date: Sun, 04 Jan 2004 16:11:01 GMT
Server: Apache-Coyote/1.1
Connection: close
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap....
xmlns:xsd="http://www.w3.org/2001/XMLS...
xmlns:xsi="http://www.w3.org/2001/XMLS...
<soapenv:Body>
<helloWorldReturn xmlns="http://test">こんにちは、世界...
</soapenv:Body>
</soapenv:Envelope>
ってことで、Keep-Aliveを終了する
Connection: close
の部分が、5番に対応するのかしら? とにかくどうして「Conte...
*** Axisの開発者はどう考えてるの?
AxisServletの1005行目ぐらいには、
/* My understand of Content-Length
* HTTP 1.0
* -Required for requests, but optional for responses.
* HTTP 1.1
* - Either Content-Length or HTTP Chunking is required.
* Most servlet engines will do chunking if content-le...
*/
//if(clientVersion == HTTPConstants.HEADER_PROTOCOL_V10)...
// res.setContentLength(responseMsg.getContentLength...
な~んて記述がありますね。「ほとんどのServletエンジンはCo...
で、そうしないようなHTTP関連アプリやProxyサーバなどで問...
ページ名: