문제

I have a proxy service who uses an XSLT mediator, I want to add a request header to it, this information representes a basic HTTP authentication : Authorization:Basic YWRtaW46YWRtaW4= The last key is created with a login 'admin' and a password 'admin'. How can I add this header to my request in the proxy service as a get request so I can authenticate my proxy before doing the xslt transformation. Thanks

도움이 되었습니까?

해결책

How can I add this header to my request

You should add this as BasicAuth header in your request. If you use SOAP UI, you can see the options to add a SOAPHeader elements where, provide as Authorization :Basic XXX

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top