Nido
Nido

Reputation: 361

Consuming WSE Web Service using Dynamic Port in BizTalk 2013

We have an application currently running in BizTalk 2006 R2 sending message to WSE2.0 web service using a dynamic send port. The properties it set for soap message port are as follow:

Message(WSE.IntegrityUser) = "some user"
Message(WSE.IntegrityPassword) = "Plain text Password"
Message(WSE.IntegrityPasswordOption) = "Plain text option"
Message(WSE.SoapAction) = "Operation Name"
Message(WSE.AuthenticationScheme) = "Integrated"

and the address for Dynamic port is set as below:

DynamicPort(Microsoft.XLANGs.BaseTypes.Address) = URL

Now I want to upgrade this solution to BizTalk 2013 and found that it no more support WSE. What are the alternatives to keep using Dynamic port?

Upvotes: 0

Views: 143

Answers (1)

Seige
Seige

Reputation: 39

Here is a msdn doc that you can reference to configure your dynamic port in BT with WCF adapters.There is sample code as well.

MSDN Link

Upvotes: -1

Related Questions