How to do a SOAP wsdl web services call from the command line

后端 未结 8 545
失恋的感觉
失恋的感觉 2020-11-30 17:40

I need to make a SOAP webservice call to https://sandbox.mediamind.com/Eyeblaster.MediaMind.API/V2/AuthenticationService.svc?wsdl and to use the operation ClientLogin while

8条回答
  •  天命终不由人
    2020-11-30 17:57

    Here is another sample CURL - SOAP (WSDL) request for bank swift codes

    Request

    curl -X POST http://www.thomas-bayer.com/axis2/services/BLZService \
      -H 'Content-Type: text/xml' \
      -H 'SOAPAction: blz:getBank' \
      -d '
      
        
        
          
            10020200
          
        
      '
    

    Response

    < HTTP/1.1 200 OK
    < Server: Apache-Coyote/1.1
    < Content-Type: text/xml;charset=UTF-8
    < Date: Tue, 26 Mar 2019 08:14:59 GMT
    < Content-Length: 395
    < 
    
    
      
        
          
            BHF-BANK
            BHFBDEFF100
            Berlin
            10117
          
        
      
    
    

提交回复
热议问题