I am trying to transfer content using MTOM (in Axis2). For this I have added the following entry to services.xml true In the client, I am doing the following public static void getResumeContent(String resumeId) throws AxisFault { System.out.println("Resume ID is getResumeContent --"+resumeId); try { ResumeServiceStub rs = new ResumeServiceStub(); rs = new ResumeServiceStub("http://localhost:1234/axis2/services/ResumeService"); GetResumeContent grc = new GetResumeContent(); grc.setResumeId(resumeId); GetResumeContentResponse ...