开发者

Consuming WCF from BizTalk 2006R1

开发者 https://www.devze.com 2022-12-30 22:32 出处:网络
I need to create an Orchestration in BizTalk 2006R1 that will consume a WCF basicHTTP web service. Does anyone have a pointers on how to do this please? The WCF service has been created by another tea

I need to create an Orchestration in BizTalk 2006R1 that will consume a WCF basicHTTP web service. Does anyone have a pointers on how to do this please? The WCF service has been created by another team but I am able to request that they create an additional endpoint with binding configuration set to make calling from BizTalk SOAP adapter possible.

I just created a simple test basicHTTP service that runs fine when tested from a command line client. When I got to BizTalk add web referenc开发者_运维百科e I am able to browse to the service but then get a message "Failed to add web reference" and it bombs out!


When you add a web reference, Biztalk reads the metadata from the service.

For this to work meta data exchange must be enabled, this is done with the mex tag and the behaviour configuration.

Try to browse your service to check if the meta data exchange is enabled.


There are some issues with the 'Add Webservice Reference' and the absense of targetnamespace on the root

<WSDL:Definition>

element in the WSDL.

In WCF you control this targetnamespace using a namespace declaration on the service class (not the contract) with a ServiceBehavior.

[ServiceBehavior(Namespace="urn:yournamespace")]
public class YourService : IYourContract
{  }

Try to add this and then run the 'Add Webservice Reference' wizard again.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号