public EndpointReference createDefaultEPR()
{
DefaultJDOMFactory factory = new DefaultJDOMFactory();
Element eprElem = factory.element("EPR", getNamespace());
Element addressElem = factory.element(WSA_ADDRESS, getNamespace());
addressElem.addContent(factory.text(getAnonymousUri()));
eprElem.addContent(addressElem);
return createEPR(eprElem);
}