soap和soapenv xml例子

soap是这样的:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/">
    <soap:Header/>
    <soap:Body>
        <tem:BillnoteClipInitialization>
            <tem:json>
            {}
            tem:json>
        tem:BillnoteClipInitialization>
    soap:Body>
soap:Envelope>

soapenv是这样的:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
    <soapenv:Header/>
    <soapenv:Body>
        <tem:BillnoteClip>
            <tem:json>
            {}
            tem:json>
            <tem:type>settem:type>
        tem:BillnoteClip>
    soapenv:Body>
soapenv:Envelope>

你可能感兴趣的:(java)