Hi All,
I have a webservice that I have to communicate to with Biztalk. The webservice has no wsdl file available, so I have to do the communication using WCF-basichttp adapter.
In Biztalk I have added a schema for the request and I can send the request to the webservice.
But I get an error as result, this has to do with the fact I have to add an authorization key to the header of the request.
In C# code I am able to create the request and get the proper result.
In C# I add the Header key with next code
Code Snippetrequest.Headers.Set(
"Authorization", "Basic ************");The * present a public key that is used for authentication.
I have a username and password that should be used authorise, but that doesn't work neither.
Does anyone have idea's how to inject this key in the header of my request?
Thanks in advance,