Skip to main content

Posts

Showing posts with the label Password

How to pass username and password in SoapUI Security header for wsdl

Open wsdl in SoapUI and undernder "<soapenv:Envelope" add below in request section: <soapenv:Header>       <wsse:Security S:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:S="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">          <wsse:UsernameToken wsu:id="UsernameToken-ORbTEPzNsEMDfzrI9sscVA22" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">             <wsse:Username>usr</wsse:Username>            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">pas123</wsse:Password>          </wsse:UsernameToken>       </wsse:Security> </soapenv:Header>