- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I have recorded with fiddler the traffic between eclipse and the server (soap requests and answers)
The answer is :
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<soapenv:Fault><faultcode>soapenv:Server.generalException</faultcode>
<faultstring>java.lang.OutOfMemoryError: Java heap space; nested exception is:
java.lang.OutOfMemoryError: Java heap space</faultstring>
<detail><ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">XXXXXXXXX</ns1:hostname></detail></soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
So I have an OutOfMemory on the server !
There is no trace of on an outofmemory on the server ... strange !
If I switch from -Xmx1024m to - Xmx2048m on the server
The server is able to respond BUT
The soap answer is around 100Mb
My eclipse cannot handle this
So my question is answered : I know that this OutOfMemory comes from the server
So my question is not answered : The server returns to much information
Views
Replies
Total Likes