Hi,

I am trying to take my OMText element and put the contents in a file,
but I keep going OutOfMemory. 

Here is the server code:
                OMElement data = fac.createOMElement("mtomSample",
omNs);
                OMElement file = fac.createOMElement("file", omNs);

                FileDataSource fileDataSource = new FileDataSource(
                                "C:/temp/local_cert.txt");
                DataHandler dataHandler = new
DataHandler(fileDataSource);

                OMText textData = fac.createOMText(dataHandler, true);
                file.addChild(textData);
                data.addChild(file);

Client code (this goes out of memory):

        OMText binaryNode = (OMText) _imageElement.getFirstOMChild();
        
        FileOutputStream fileOutputStream = new
FileOutputStream("C:/temp/returnFile.txt");
        binaryNode.serialize(fileOutputStream);

Any ideas?

Roshan Punnoose
Phone: 301-497-6039

-----Original Message-----
From: robert lazarski [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 12, 2006 10:47 AM
To: [email protected]
Subject: Re: [Axis2] eager service initialization

Its part of the nightlies under the Service.startUp() interface ...
just have your service implement it .

Robert

On 9/12/06, Michele Mazzucco <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> some time ago somebody raised an issue about eager service
> initialization (i.e. at system startup). Is there any news about it?
>
> Thanks,
> Michele
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

BEGIN:VCARD
VERSION:2.1
N:Punnoose;Roshan
FN:Punnoose, Roshan
ADR;WORK:;2115
LABEL;WORK:2115
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20050413T183207Z
END:VCARD
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to