Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 18250 invoked from network); 21 Jun 2009 05:57:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Jun 2009 05:57:13 -0000 Received: (qmail 71675 invoked by uid 500); 21 Jun 2009 05:57:24 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 71557 invoked by uid 500); 21 Jun 2009 05:57:23 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 71548 invoked by uid 99); 21 Jun 2009 05:57:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Jun 2009 05:57:23 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of n-sasagawa@ka2.so-net.ne.jp designates 202.238.83.193 as permitted sender) Received: from [202.238.83.193] (HELO omx12.ms.so-net.ne.jp) (202.238.83.193) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Jun 2009 05:57:12 +0000 Received: from FM-B05870457267.ka2.so-net.ne.jp (pc63f45.tkyoea09.ap.so-net.ne.jp [123.198.63.69]) by omx12.ms.so-net.ne.jp with SMTP id n5L5ugNV006993; Sun, 21 Jun 2009 14:56:48 +0900 (JST) Message-Id: <200906210555.AA00088@FM-B05870457267.ka2.so-net.ne.jp> From: Norio Sasagawa Date: Sun, 21 Jun 2009 14:55:45 +0900 To: axis-dev@ws.apache.org Cc: n-sasagawa@ka2.so-net.ne.jp Subject: I want to send and receive a big size data via Axis 1.4.. MIME-Version: 1.0 X-Mailer: AL-Mail32 Version 1.13 Content-Type: text/plain; charset=us-ascii X-Virus-Checked: Checked by ClamAV on apache.org Dear All, I want to send and receive a big size data via Axis 1.4.. Send and receive class is as follows. I know how to get the returnDatail from the server at a time. By the way, if the returnDatail becomes a big size, it will become to the OutOfMemory Execption. If the returnDetail becomes the limit size, I want to receive its now. And then, I want to receive other returnDetail from the server. I think that the Client prepare the buffer and the Sever send to it by the prepared buffer size. But there's no detailed idea in my head. Is there any document for me? Is there any advice for me? Any help will be appreciate. Thanks in advance. Norio Sasagawa -----<<<<>>>>----- public class ReturnInfo { private java.lang.String result; private java.lang.String[] returnDetail; public ReturnInfo() { } public ReturnInfo( java.lang.String result, java.lang.String[] returnDetail) { this.result = result; this.returnDetail = returnDetail; } } -----<<<<>>>>-----