You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by Apache Wiki <wi...@apache.org> on 2005/04/06 04:06:26 UTC

[Ws Wiki] Update of "ja/axis/StreamingService" by ToshiyukiKimura

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.

The following page has been changed by ToshiyukiKimura:
http://wiki.apache.org/ws/ja/axis/StreamingService

The comment on the change is:
Axis Wiki in Japanese

New page:
##language:ja

'''質問: 私のサービスでどのようにして SAX ストリーミングを使うのですか?'''

Apache Axis にはストリーミングメッセージのサポートがあります。それによりメッセージの全てを処理の前に DOM ツリーに変換させる必要がなくなります。

サーバ側では、deploy.wsdd の中で <service name="Benchmark1Streaming" provider="java:RPC" streaming="on"> のようなことを行い、

クライアント側ではプロパティ "axis.streaming" を Boolean.TRUE にし、かつ/または、org.apache.axis.client.Call にキャストして setStreaming(true) を使います。おそらく両方ともうまくいくでしょう。

このサポートを有効にする wsdd とテストケースについては [http://cvs.apache.org/viewcvs.cgi/ws-axis/java/samples/perf/] をご覧下さい。

詳細な情報は [http://issues.apache.org/jira/browse/AXIS-1323 discussion of Axis performance (Axis のパフォーマンスについての議論)] をご覧下さい。