How to increase SOAP ENVELOPE size in android?
        Posted  
        
            by 
                Narendra
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Narendra
        
        
        
        Published on 2012-12-17T05:02:10Z
        Indexed on 
            2012/12/17
            5:02 UTC
        
        
        Read the original article
        Hit count: 322
        
In my project I am calling a web-service which giving response back as thousands of records from SQL server but as default size of SOAP ENVELOPE is 64KB I am getting only first 15 records in my logcat...Will please somebody tell me to increase my SOAP ENVELOPE size to 10 MB so that I can fetch all the results....I have searched over internet but didn't get any answer regarding this, my code is as below...
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
                  envelope.setOutputSoapObject(request);
                  envelope.dotNet = true;
        © Stack Overflow or respective owner