Convert the String into an input stream, then read it into the SOAP message factory.
InputStream is = new ByteArrayInputStream(send.getBytes());
SOAPMessage request = MessageFactory.newInstance().createMessage(null, is);
You can read about how to do this here.