Most examples have you creating an element like this:
OMElement method = factory.createOMElement("method", nameSpace);
After many hours, of not looking through the documentation, I found that if you do this.
OMElement method = factory.createOMElement("method", null);
You will get <method> instead of <x:method>