* {http method} is GET or DELETE, or application/xml if {http method} has
* any other value.
*/
public String getHttpInputSerialization() {
StringAttr serialization = (StringAttr) ((WSDLElement) getParent())
.getExtensionAttribute(HTTPConstants.Q_ATTR_INPUT_SERIALIZATION);
if (serialization != null) {
return serialization.getString();
}
//TODO replace determineHttpMethod() with getHttpMethod() if spec is
//modified to define {http method} defaults in the component model
String method = determineHttpMethod();