|
⇤ ← Revision 1 as of 2005-01-12 03:42:48
Size: 775
Comment: Importing old wiki ...
|
← Revision 2 as of 2009-09-20 22:48:09 ⇥
Size: 779
Comment: converted to 1.6 markup
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 8: | Line 8: |
| 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://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. |
| Line 10: | Line 10: |
| See [http://issues.apache.org/jira/browse/AXIS-1323 discussion of Axis performance] for more information. | See [[http://issues.apache.org/jira/browse/AXIS-1323|discussion of Axis performance]] for more information. |
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/ for a wsdd and test case that switches this support on.
See discussion of Axis performance for more information.