Heap Space issues with Large Files?

2008-07-31 Thread James Crosson
We are attempting to utilize Axis (Currently 1.4). The data we are sending is ASCII, which we've been sending in a very basic way for some time using: Service service = new Service(); Call call = (Call) service.createCall(); String ret = (String) call.invoke( new Object []

Re: Heap Space issues with Large Files?

2008-07-31 Thread Samisa Abeysinghe
What is the heap size you are using withe the client? Samisa... James Crosson wrote: We are attempting to utilize Axis (Currently 1.4). The data we are sending is ASCII, which we've been sending in a very basic way for some time using: Service service = new Service(); Call call

Heap Space issues with Large Files?

2008-07-30 Thread James Crosson
We are attempting to utilize Axis (Currently 1.4). The data we are sending is ASCII, which we've been sending in a very basic way for some time using: Service service = new Service(); Call call = (Call) service.createCall(); String ret = (String) call.invoke( new Object [] {args[2],args[3]});The