Hi,
I have added an xsd file in my iFlow .I need to access it in my groovy script. Can anyone advise me. Here is the code snippet I used but it is not working:

import com.sap.gateway.ip.core.customdev.util.Message;
import java.util.HashMap;
def Message processData(Message message) {
def body = message.getBody(java.lang.String) as String;
body = '';
input_file_path= "xsd/chk1.xsd";
def input = new File(input_file_path).getText('UTF-8')
message.setBody(input);
return message;
}