You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by ge...@ws.apache.org on 2005/01/12 04:42:49 UTC

[Apache Web Services Wiki] New: FrontPage/Axis/StreamingService

   Date: 2005-01-11T19:42:49
   Editor: ToshiyukiKimura
   Wiki: Apache Web Services Wiki
   Page: FrontPage/Axis/StreamingService
   URL: http://wiki.apache.org/ws/FrontPage/Axis/StreamingService

   Importing old wiki ...

New Page:

##language:en
Apache Axis has support for streaming messages so that all of the message does not have to be turned into a DOM tree before processing: 

or server side: in deploy.wsdd do something similar {{{<service name="Benchmark1Streaming" provider="java:RPC" streaming="on">}}} 

on client side: there is property "axis.streaming" to Boolean.TRUE and/or you can can cast to {{{org.apache.axis.client.Call}}} and use {{{setStreaming(true)}}}. i think both should work.

See [http://cvs.apache.org/viewcvs.cgi/ws-axis/java/samples/perf/ http://cvs.apache.org/viewcvs.cgi/ws-axis/java/samples/perf/] for a wsdd and test case that switches this support on. 

See [http://issues.apache.org/jira/browse/AXIS-1323 discussion of Axis performance] for more information.