How to Parse XML from Static Resource using Apex in Salesforce?
Sample XML Code:<message><to>Magulan</to><from>InfallibleTechie</from><title>Welcome</title><body>Sample Message</body></message> XML Static Resource:Sample Apex Code:StaticResource objSR = [ SELECT ID, Body FROM StaticResource WHERE Name = 'Testing' LIMIT 1 ];String strResp = objSR.Body.toString();System.debug( ....