as an example of a document/literal request. While this is an implementation of a "legal" WSDL, this type of messaging is not permitted by the Basic Profile which basically requires that no more than one document appears within the SOAP body. It is this restriction that gives rise to the "Document/literal wrapped" pattern where you create a new document type to carry (wrap) other documents so that you can submit more than one document (type) at a time. So with a BP-compliant document/literal web service there is exactly one process that is applied to each top-level element (document) that can appear as the direct child of the SOAP body element (i.e. no "operations" necessary).
Why is that a good thing? This loosens the coupling between the client and the server. As the domain (business) logic evolves, the processing of particular documents may change - so rather than exposing a fine-grained operation-based interface, a document-oriented web service interface will be coarse-grained and simply specify what document-types it accepts (the WSDL operation names are primarily a "documentation" feature). So for practical reasons no real document-oriented service would simply accept a single little string - it probably wouldn't have enough information in it to define a coarse grained business process around it. A document oriented web service would more likely consume a full-blown document like a purchase order with multiple order items, billing address, shipping address and all the other gory details in one fell swoop.