I'm trying to send a message to the WCF-WSHttp adapter with a dynamic send port from an orchestration, but BizTalk seems to always be reverting back to the HTTP Adapter.
According to the docs that I've been able to find, I should just need to set the transport type from my expression shape to get BizTalk to use the WCF-WSHttp adapter, and I AM, but it still seems to be reverting. Below is an example of my expression shape that's setting the properties (as you can see, I've tried both Microsoft.XLANGs.BaseTypes.TransportType and BTS.OutboundTransportType):
Body(BTS.OutboundTransportType) = "WCF-WSHttp";
SendMessagePort(Microsoft.XLANGs.BaseTypes.Address) =
System.String.Format("{0}/Accept{1}", "http://myserver/myservice/
myservice.svc/Accept{0}", messageInfo.MessageType);
SendMessagePort(Microsoft.XLANGs.BaseTypes.TransportType) = "WCF-
WSHttp";