I have created InputSource object using my entire string xml request in my application and I am trying to fetch entire xml request from the created InputSource reference. Please find below code snippet and advise some code/ways to get the xmlRequest from the InputSource reference.
org.xml.sax.InputSource is = new org.xml.sax.InputSource(new StringReader(xmlRequest));
Now I wish to get xmlRequest from InputSource reference 'is'.
Can anybody please help me on this.